.secReport {
  position: relative;
  padding: 85px 0;
}
.secReport .exceptionText {
  padding-top: 40px;
}
.secReport .wrap .more {
  justify-content: left;
}
.secReport .content {
  border-bottom: 1px solid #DBDBDB;
  height: 100%;
  display: block;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.secReport .content .imgWrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.secReport .content .imgWrap .imgArea {
  overflow: hidden;
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
}
.secReport .content .imgWrap .imgArea img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.secReport .content .txArea {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.secReport .content .txArea .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.secReport .content .txArea .bottom .date {
  font-size: 15px;
  font-weight: 400;
}
.secReport .content .txArea .tx {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.secReport .content .txArea .title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-align: center;
  position: relative;
  width: 100%;
  padding: 5px 0;
}
.secReport .content .txArea .title:after, .secReport .content .txArea .title:before {
  content: "";
  position: absolute;
  height: 20px;
  width: 15px;
}
.secReport .content .txArea .title:before {
  content: "";
  top: 0;
  left: 0;
  border-top: 1px solid #473933;
  border-left: 1px solid #473933;
}
.secReport .content .txArea .title:after {
  content: "";
  bottom: 0;
  right: 0;
  border-bottom: 1px solid #473933;
  border-right: 1px solid #473933;
}
.secReport .content .txArea .cat {
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 5px;
  color: #747474;
  padding: 10px 0 15px;
}
.secReport .content .txArea .tx {
  font-size: 13px;
  line-height: 130%;
}

@media only screen and (max-width: 767px) {
  .secReport {
    padding: 0 0 85px;
  }
  .secReport .content {
    padding: 20px;
    gap: 20px;
  }
  .secReport .content .imgWrap {
    grid-template-columns: 1fr;
  }
  .secReport .content .txArea {
    gap: 10px;
  }
  .secReport .content .txArea .title {
    font-size: clamp(14px, 4.1vw, 16px);
  }
  .secReport .content .txArea .bottom .date {
    font-size: 13px;
  }
}/*# sourceMappingURL=style.css.map */