:root {
  --news-inner-max: 1300px;
  --news-side-pad: clamp(16px, 4vw, 80px);
  --news-gap: clamp(20px, 3vw, 44px);

  --s1-title-size: clamp(28px, 5vw, 48px);
  /* --s1-title-size: clamp(28px, 5vw, 64px); */
  --s1-text-size: clamp(16px, 1.2vw, 20px);

  --sb-title-size: clamp(16px, 1.6vw, 20px);
  --sb-link-size: clamp(14px, 1.1vw, 16px);
}

.news {
  position: relative;
  z-index: 30;
  background: #fff;
  padding: clamp(20px, 4vh, 40px) 0;
}

.news .container-xxl {
  max-width: var(--news-inner-max);
  padding-inline: var(--news-side-pad);
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  grid-template-areas:
    "title title"
    "main  sidebar";
  gap: var(--news-gap);
  align-items: start;
}

@media (max-width: 575.98px) {
  :root {
    --news-side-pad: clamp(8px, 3.5vw, 16px);
    --news-gap: clamp(12px, 4vw, 18px);
  }
  .news .n-sb-links a {
    padding: 6px 0;
  }
}

/* ===== Section 1 */
.news .grid-title {
  grid-area: title;
  margin: 0;
}

.news .n-main {
  grid-area: main;
}

.news .n-s1-title {
  color: var(--brand-navy);
  font: 800 var(--s1-title-size) / 1.1 system-ui, -apple-system, Segoe UI,
    Roboto, sans-serif;
  letter-spacing: 0.02em;
}
.news .n-s1-figure {
  margin: 0 0 clamp(16px, 3vh, 28px);
  line-height: 0;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12);
}
.news .n-s1-figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.news .n-s1-body {
  max-width: 95ch;
  font-size: var(--s1-text-size);
  line-height: 1.7;
  color: #0f1438;
}

.news .n-sidebar {
  grid-area: sidebar;
  background: transparent;
}
.news .n-sb-title {
  margin: 0 0 10px;
  color: var(--brand-navy);
  font: 800 var(--sb-title-size) / 1.2 system-ui, -apple-system, Segoe UI,
    Roboto, sans-serif;
}
.news .n-sb-links {
  display: grid;
  gap: 12px;
}
.news .n-sb-links a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  color: #303655;
  text-decoration: none;
  font: 600 var(--sb-link-size) / 1.25 system-ui, -apple-system, Segoe UI,
    Roboto, sans-serif;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.news .n-sb-links a::after {
  content: "›";
  font-weight: 800;
  transition: transform 0.15s ease;
  opacity: 0.8;
}
.news .n-sb-links a:hover {
  color: var(--brand-orange);
}
.news .n-sb-links a:hover::after {
  transform: translateX(2px);
}

/* ===== SECTION 2 */
.news .n-s2 {
  margin-top: clamp(20px, 4vh, 40px);
}
.news .n-s2-list {
  display: grid;
  gap: clamp(14px, 3vw, 24px);
}

.news .n-s2-item {
  display: grid;
  grid-template-columns: clamp(110px, 36%, 280px) 1fr;
  gap: clamp(12px, 3.5vw, 28px);
  align-items: start;
  background: #f7f8fb;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: clamp(12px, 3vw, 22px);
}

.news .n-s2-media {
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #0f1746;
}
.news .n-s2-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  max-width: none;
}

.news .n-s2-content {
  min-width: 0;
}
.news .n-s2-title {
  margin: 0 0 8px;
  color: var(--brand-navy);
  font: 800 clamp(20px, 2.6vw, 28px) / 1.2 system-ui, -apple-system, Segoe UI,
    Roboto, sans-serif;
}
.news .n-s2-excerpt {
  margin: 0 0 10px;
  color: #0f1438;
  line-height: 1.6;
  font-size: clamp(15px, 1.1vw, 16px);
}
.news .n-s2-link {
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  color: var(--brand-orange);
}
.news .n-s2-link:hover {
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .news .n-s2-item {
    grid-template-columns: 1fr;
  }
  .news .n-s2-media {
    aspect-ratio: 16 / 9;
  }
}

/* ===== SECTION 3 */
.news .n-s3 {
  margin-top: clamp(24px, 5vh, 48px);
}
.news .n-s3-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3.5vw, 36px);
}
.news .n-s3-card {
  display: grid;
  gap: clamp(10px, 2vw, 14px);
  background: transparent;
}

.news .n-s3-media {
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0f1746;
}
.news .n-s3-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: none;
}

.news .n-s3-title {
  margin: 0;
  color: var(--brand-navy);
  font: 800 32px / 1.15 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.news .n-s3-excerpt {
  margin: 0;
  color: #0f1438;
  line-height: 1.6;
  font-size: clamp(14px, 1.05vw, 16px);
}
.news .n-s3-link {
  display: inline-block;
  color: var(--brand-orange);
  text-decoration: none;
  font-weight: 600;
}
.news .n-s3-link:hover {
  text-decoration: underline;
}

@media (max-width: 575.98px) {
  .news .n-s3-grid {
    grid-template-columns: 1fr;
  }
}
