/* ir-news-businessreport.css */

/* ========== 01-header / navbar ========== */
/* Uses common.css .page-header and .navbar-index styles */

/* ========== Banner (sub-navigation) ========== */
/* Banner styles: ir-banner.css (공통) */

/* ========== 02-business-report ========== */

.business-report-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 9.375rem clamp(1.25rem, calc((100vw - 80rem) / 2), 20rem) 15.625rem;
  box-sizing: border-box;
}

.business-report-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}

.section-header {
  padding-bottom: 2.5rem;
}

.section-title {
  font-family: var(--font-paperlogy);
  font-weight: 700;
  font-size: 2.625rem;
  line-height: 1.3;
  color: var(--logogreen);
  margin: 0;
}

/* Featured Report */
.featured-report {
  background-color: var(--logogreen);
  width: 100%;
  height: 20.6875rem;
  position: relative;
  overflow: hidden;
}

.featured-report-inner {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}

.featured-report-text {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  padding: 0 5rem;
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.featured-report-info {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.featured-report-title {
  font-family: var(--font-paperlogy);
  font-weight: 700;
  font-size: 2.625rem;
  line-height: 1.3;
  color: #ffffff;
  margin: 0;
}

.featured-report-date {
  font-family: var(--font-pretendard);
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1.4;
  letter-spacing: -0.0275rem;
  color: var(--darkgreen);
  margin: 0;
}

.featured-report-buttons {
  display: flex;
  gap: 2.5rem;
}

.btn-report {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 3rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(249, 243, 226, 0.7);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.btn-report:hover {
  opacity: 0.8;
}

.btn-report span {
  font-family: var(--font-pretendard);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: #ffffff;
  white-space: nowrap;
}

.btn-download {
  border-color: var(--offwhite);
}

.btn-download span {
  color: var(--offwhite);
}

.btn-icon {
  width: 2rem;
  height: 2rem;
}

.btn-icon.rotated {
  transform: rotate(180deg) scaleY(-1);
}

.featured-report-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 33.114625rem;
  height: 25.6875rem;
}

.featured-report-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Report List */
.report-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
}

.report-item {
  display: flex;
  align-items: center;
  gap: 5rem;
  padding: 1.5rem 0;
  border-top: 1px solid #e0e0e0;
}

.report-item-info {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 3.75rem;
}

.report-item-title {
  flex: 1;
  font-family: var(--font-pretendard);
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1.4;
  letter-spacing: -0.0275rem;
  color: var(--darkgreen);
  margin: 0;
  min-height: 2.625rem;
  display: flex;
  align-items: center;
}

.report-item-date {
  font-family: var(--font-pretendard);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.btn-list-download,
.btn-list-view {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 3rem;
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--gray);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.btn-list-download:hover,
.btn-list-view:hover {
  opacity: 0.7;
}

.btn-list-download span,
.btn-list-view span {
  font-family: var(--font-pretendard);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--gray);
  white-space: nowrap;
}

/* Business Report - Tablet */
@media (max-width: 1199px) {
  .business-report-section {
    padding: 6rem 5%;
  }

  .featured-report {
    height: auto;
    min-height: 20rem;
  }

  .featured-report-inner {
    flex-direction: column;
  }

  .featured-report-text {
    width: 100%;
    padding: 2.5rem;
    order: 2;
  }

  .featured-report-title {
    font-size: 2rem;
  }

  .featured-report-image {
    position: relative;
    width: 100%;
    height: 15rem;
    order: 1;
  }

  .featured-report-image img {
    object-fit: cover;
    object-position: center;
  }

  .report-item {
    gap: 2rem;
  }

  .report-item-info {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .report-item-title {
    font-size: 1.125rem;
    flex-basis: 100%;
  }
}

/* Business Report - Mobile */
@media (max-width: 767px) {
  .business-report-section {
    padding: 4rem 5%;
  }

  .business-report-content {
    gap: 1.5rem;
  }

  .section-header {
    padding-bottom: 1.5rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .featured-report-text {
    padding: 1.5rem;
    gap: 1.25rem;
  }

  .featured-report-title {
    font-size: 1.5rem;
  }

  .featured-report-date {
    font-size: 1rem;
  }

  .featured-report-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-report {
    width: fit-content;
  }

  .featured-report-image {
    height: 12rem;
  }

  .report-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
  }

  .report-item-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    width: 100%;
  }

  .report-item-title {
    font-size: 1rem;
    min-height: auto;
  }

  .report-item-date {
    font-size: 0.875rem;
  }

  .btn-list-download,
  .btn-list-view {
    min-height: 2.75rem;
  }

  .btn-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}
