@charset "utf-8";

/* Intro Section */
.info-intro .img-box {
  margin-bottom: 20px;
}

/* Report Grid Section */
.report-grid-wrap {
  border-top: 1px solid #e0e0e0;
}

.img-box > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.report-grid {
  display: flex;
  flex-wrap: wrap;
}

.report-item {
  width: 50%;
  padding: 30px;
  box-sizing: border-box;
  border-bottom: 1px solid #e0e0e0;
}

/* Rule [7]: Dividers using borders */
.report-item:nth-child(odd) {
  padding-left: 0;
}

.report-item:nth-child(even) {
  padding-right: 0;
}

/* Rule [11]: Custom class for card-style titles to avoid base heading hierarchy conflicts */
.report-tit {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  color: #111111;
  padding-bottom: 24px;
}

/* Rule [11]: Target standard tags inside wrappers to avoid base class override issues */
.report-item a {
  color: inherit;
  text-decoration: underline;
}

/* Responsive Styles (Rule [5]) */
@media screen and (max-width: 1024px) {
  .report-tit {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .info-intro .img-box {
    margin-bottom: 30px;
    height: 160px;
  }

  .report-item {
    width: 100%;
    padding: 30px 0;
  }

  .report-item:nth-child(even) {
    border-bottom: 1px solid #e0e0e0;
  }

  .report-tit {
    font-size: 22px;
    padding-bottom: 15px;
  }
}