* {
  box-sizing: border-box;
}

:root {
  --container: 1200px;
  --red: #0b5fb6;
  --red-dark: #074786;
  --gold: #4aa3ff;
  --blue: #0b5fb6;
  --blue-dark: #074786;
  --blue-light: #eaf4ff;
  --blue-line: #cfe3f7;
  --ink: #222;
  --muted: #666;
  --line: var(--blue-line);
  --page: #f5f9ff;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
}

a {
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  background: url("../assets/banner.jpg") center center / cover no-repeat;
}

.site-header__inner {
  width: 100%;
  margin: 0;
  aspect-ratio: 2048 / 640;
  min-height: 300px;
  padding: 22px 0 28px;
}

.school-logo {
  display: block;
  width: min(250px, 32vw);
  aspect-ratio: 1207 / 224;
  margin: 0 0 24px clamp(10px, 2vw, 28px);
}

.school-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-title {
  display: none;
  width: min(860px, 100%);
  margin-left: auto;
  text-align: center;
  text-shadow:
    0 2px 0 #fff,
    2px 0 0 #fff,
    -2px 0 0 #fff,
    0 -2px 0 #fff,
    0 8px 18px rgba(5, 50, 110, 0.22);
}

.site-title__kicker {
  margin: 0 0 8px;
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 800;
  line-height: 1.25;
}

.site-title h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(180deg, var(--blue), var(--blue-dark));
  box-shadow: 0 8px 18px rgba(7, 71, 134, 0.18);
}

.site-nav__inner {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.site-nav a {
  min-height: 58px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  cursor: pointer;
  transition: background-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a.active {
  background: var(--red-dark);
  outline: 0;
}

.main-wrap {
  padding: 22px 0 36px;
}

.content-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.side-card,
.content-card {
  background: #fff;
  border: 1px solid var(--line);
}

.panel-title {
  min-height: 50px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(180deg, var(--blue), var(--blue-dark));
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.side-card ul {
  margin: 0;
  padding: 12px 18px 18px;
  list-style: none;
}

.side-card li {
  border-bottom: 1px solid #ededed;
}

.side-card a {
  display: block;
  padding: 14px 0;
  color: #333;
  font-size: 16px;
  text-decoration: none;
  transition: color 180ms ease;
}

.side-card a:hover,
.side-card a:focus {
  color: var(--blue);
  outline: 0;
}

.article {
  padding: 24px 28px 30px;
}

.article p {
  margin: 0 0 16px;
  color: #333;
  font-size: 17px;
  line-height: 1.9;
}

.article p:last-child {
  margin-bottom: 0;
}

.pdf-tools {
  margin-bottom: 16px;
  display: flex;
  justify-content: flex-end;
}

.pdf-tools a {
  min-height: 40px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 3px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 180ms ease;
}

.pdf-tools a:hover,
.pdf-tools a:focus {
  background: var(--blue-dark);
  outline: 0;
}

.pdf-frame {
  display: block;
  width: 100%;
  height: 760px;
  border: 1px solid #d6d6d6;
  background: #eee;
}

.pdf-page-list {
  margin-top: 28px;
  display: grid;
  gap: 22px;
}

.pdf-page-image {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
  border: 1px solid #d6d6d6;
}

.empty-note {
  padding: 34px;
  color: var(--muted);
  background: #fafafa;
  border: 1px dashed #d8d8d8;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}

.site-footer {
  padding: 34px 0 28px;
  color: #fff;
  background: linear-gradient(180deg, #126dbd, #07508e);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.site-footer__text {
  min-width: 0;
}

.site-footer__text p {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.45;
}

.site-footer__text p:last-child {
  margin-bottom: 0;
}

.site-footer__media {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex: 0 0 auto;
}

.footer-badge {
  width: 74px;
  height: auto;
  margin-top: 10px;
}

.footer-qr {
  text-align: center;
}

.footer-qr img {
  display: block;
  width: 104px;
  height: 104px;
  margin-bottom: 8px;
}

.footer-qr span {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}

.home-page {
  background: #fff;
}

.home-topbar {
  height: 6px;
  background: linear-gradient(90deg, var(--blue-dark) 0 18%, var(--gold) 18% 24%, var(--blue) 24% 100%);
}

.home-main {
  padding-bottom: 60px;
}

.hero-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 48px;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2048 / 592;
  background: #eee;
}

.hero-slider img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 88px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 88px;
  line-height: 1;
  cursor: pointer;
}

.hero-arrow--left {
  left: 14px;
}

.hero-arrow--right {
  right: 14px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-dots span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.hero-dots .is-active {
  background: var(--gold);
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 60px;
  align-items: start;
}

.feature-panel {
  min-width: 0;
}

.feature-panel--video {
  background: linear-gradient(180deg, var(--blue) 0 72px, var(--blue-light) 72px 100%);
}

.feature-panel__head,
.feature-title {
  display: flex;
  align-items: center;
}

.feature-panel__head {
  justify-content: space-between;
}

.feature-title {
  min-height: 72px;
  padding: 0 24px 0 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0 78%, var(--blue-dark) 78% 100%);
  font-size: 28px;
  font-weight: 700;
}

.feature-title--summary {
  min-width: 210px;
}

.feature-title__icon {
  margin-right: 10px;
  font-size: 28px;
  line-height: 1;
}

.feature-media {
  display: block;
  margin: 0 24px 0 24px;
  transform: translateY(-2px);
}

.feature-media img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #2f2f2f;
  background: #fff;
}

.feature-panel--summary {
  background: #f5f9ff;
  padding-bottom: 26px;
}

.more-link {
  margin-right: 12px;
  color: var(--blue);
  font-size: 18px;
  text-decoration: none;
}

.feature-summary {
  padding: 44px 28px 0 28px;
  color: #1f1f1f;
  font-size: 22px;
  line-height: 1.8;
  text-align: justify;
}

.feature-summary p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header__inner {
    min-height: 240px;
  }

  .site-title {
    margin-left: 0;
    text-align: left;
  }

  .site-nav__inner {
    display: flex;
    overflow-x: auto;
  }

  .site-nav a {
    flex: 0 0 auto;
    min-height: 54px;
    padding: 0 18px;
    font-size: 17px;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .side-card ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
  }

  .pdf-frame {
    height: 72vh;
    min-height: 520px;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .feature-summary {
    font-size: 18px;
    padding-top: 24px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100%, calc(100% - 20px));
  }

  .site-header__inner {
    min-height: 190px;
  }

  .site-header__inner {
    padding-top: 16px;
  }

  .school-logo {
    width: min(190px, 54vw);
    margin-left: 8px;
    margin-bottom: 18px;
  }

  .site-title__kicker {
    font-size: 18px;
  }

  .site-title h1 {
    font-size: 25px;
  }

  .side-card ul {
    grid-template-columns: 1fr;
  }

  .article {
    padding: 18px;
  }

  .panel-title {
    min-height: 46px;
    padding: 0 16px;
    font-size: 18px;
  }

  .pdf-tools {
    justify-content: flex-start;
  }

  .site-footer__text p {
    font-size: 15px;
  }

  .site-footer__media {
    width: 100%;
    gap: 18px;
    flex-wrap: wrap;
  }

  .footer-qr img {
    width: 86px;
    height: 86px;
  }

  .hero-shell {
    width: min(100%, calc(100% - 20px));
    padding-bottom: 24px;
  }

  .hero-arrow {
    width: 42px;
    height: 64px;
    font-size: 62px;
  }

  .hero-dots {
    bottom: 10px;
    gap: 8px;
  }

  .hero-dots span {
    width: 12px;
    height: 12px;
  }

  .feature-title {
    min-height: 56px;
    padding: 0 16px;
    font-size: 20px;
  }

  .feature-title__icon {
    font-size: 20px;
  }

  .feature-media {
    margin: 0 12px 0 12px;
  }

  .feature-summary {
    padding: 18px 16px 0 16px;
    font-size: 16px;
    line-height: 1.75;
  }

  .more-link {
    font-size: 16px;
  }
}

.content-page {
  background: #fff;
}

.top-strip {
  height: 4px;
  background: var(--blue);
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(180deg, var(--blue), var(--blue-dark));
  box-shadow: 0 8px 18px rgba(7, 71, 134, 0.18);
}

.top-nav__inner {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.top-nav__item {
  position: relative;
}

.top-nav__link {
  min-height: 58px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  white-space: normal;
}

.top-nav__item:hover .top-nav__link,
.top-nav__item:focus-within .top-nav__link,
.top-nav__item.is-active .top-nav__link {
  background: var(--red-dark);
}

.subnav {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 168px;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  border: 1px solid var(--blue-line);
  box-shadow: 0 12px 22px rgba(7, 71, 134, 0.18);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.subnav--wide {
  width: 224px;
}

.subnav--align-right {
  left: auto;
  right: 0;
  transform: translateY(8px);
}

.top-nav__item:hover > .subnav,
.top-nav__item:focus-within > .subnav {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.top-nav__item:hover > .subnav--align-right,
.top-nav__item:focus-within > .subnav--align-right {
  transform: translateY(0);
}

.subnav a {
  position: relative;
  min-height: 42px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  word-break: break-all;
  border-bottom: 1px solid var(--blue-line);
}

.subnav a:hover,
.subnav a:focus,
.subnav a.is-current {
  color: #fff;
  background: var(--blue);
  outline: 0;
}

.subnav li:last-child > a {
  border-bottom: 0;
}

.subnav__item {
  position: relative;
}

.subnav__link--has-children::after {
  content: "›";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  line-height: 1;
}

.subnav--third {
  left: calc(100% - 1px);
  top: 0;
  width: 210px;
  transform: translateX(8px) translateY(0);
}

.subnav--third-wide {
  width: 190px;
}

.subnav--third-left {
  left: auto;
  right: calc(100% - 1px);
  transform: translateX(-8px) translateY(0);
}

.subnav--third-short {
  top: -1px;
}

.top-nav__item:last-child > .subnav {
  left: auto;
  right: 0;
  width: 288px;
  transform: translateY(8px);
}

.top-nav__item:last-child:hover > .subnav,
.top-nav__item:last-child:focus-within > .subnav {
  transform: translateY(0);
}

.top-nav__item:last-child .subnav--third {
  left: auto;
  right: calc(100% - 1px);
  width: 280px;
  transform: translateX(-8px) translateY(0);
}

.subnav__item:hover > .subnav--third,
.subnav__item:focus-within > .subnav--third {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) translateY(0);
  pointer-events: auto;
}

.subnav__item:hover > .subnav--third-left,
.subnav__item:focus-within > .subnav--third-left {
  transform: translateX(0) translateY(0);
}

.top-nav__item.is-dismissed > .subnav,
.top-nav__item.is-dismissed .subnav--third {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.breadcrumb-band {
  background: var(--blue-light);
}

.breadcrumb {
  min-height: 64px;
  display: flex;
  align-items: center;
  color: #8f969c;
  font-size: 17px;
}

.pdf-layout {
  width: min(1440px, calc(100% - 96px));
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 48px;
  padding: 38px 0 60px;
}

.section-menu {
  border-left: 24px solid var(--blue-dark);
}

.section-menu__title {
  min-height: 76px;
  padding: 0 36px;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--blue);
  font-size: 32px;
  font-weight: 700;
}

.section-menu ul {
  margin: 0;
  padding: 0 2px 0 24px;
  list-style: none;
}

.section-menu li {
  border-bottom: 1px solid #ddd;
}

.section-menu a {
  min-height: 55px;
  display: flex;
  align-items: center;
  color: #333;
  font-size: 24px;
  line-height: 1.35;
  text-decoration: none;
}

.section-menu a:hover,
.section-menu a:focus,
.section-menu a.is-current {
  color: var(--blue);
  outline: 0;
}

.section-menu a.is-strong {
  color: var(--blue);
  font-weight: 700;
}

.section-menu a.section-menu__subitem {
  min-height: 42px;
  padding-left: 18px;
  color: #444;
  font-size: 19px;
}

.section-menu a.section-menu__subitem:hover,
.section-menu a.section-menu__subitem:focus,
.section-menu a.section-menu__subitem.is-current {
  color: var(--blue);
}

.pdf-viewer-wrap {
  min-width: 0;
}

.pdf-viewer-title {
  margin: 0 0 16px;
  color: #333;
  font-size: 26px;
  font-weight: 700;
}

.inline-pdf {
  display: block;
  width: 100%;
  height: 760px;
  border: 0;
  background: #f6f6f6;
  box-shadow: 0 0 0 1px #d7d7d7;
}

.missing-pdf {
  min-height: 420px;
  padding: 48px;
  display: grid;
  place-items: center;
  color: #666;
  background: #f7f7f7;
  border: 1px solid #ddd;
  font-size: 20px;
  line-height: 1.8;
  text-align: center;
}

.text-content-panel {
  padding: 42px 48px;
  background: #f5f9ff;
  font-size: 21px;
  line-height: 1.9;
}

.text-content-panel p {
  margin: 0 0 18px;
}

.intro-layout {
  align-items: start;
}

.intro-article {
  padding: 42px 52px 56px;
  border: 1px solid rgba(7, 71, 134, 0.14);
  background: #fff;
  box-shadow: 0 12px 30px rgba(7, 71, 134, 0.08);
}

.intro-section {
  scroll-margin-top: 96px;
}

.intro-section + .intro-section {
  margin-top: 34px;
}

.intro-section h1,
.intro-section h2 {
  margin: 0 0 16px;
  color: #111;
  font-size: 23px;
  line-height: 1.45;
  font-weight: 800;
}

.intro-section p {
  margin: 0 0 14px;
  color: #222;
  font-size: 18px;
  line-height: 2;
  text-align: justify;
  text-indent: 2em;
}

.intro-figure {
  width: min(760px, 100%);
  margin: 26px auto 0;
  text-align: center;
}

.intro-figure--wide {
  width: min(860px, 100%);
}

.intro-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.video-placeholder {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #222, #555);
  font-size: 24px;
}

.home-page {
  background: #fff;
}

.home-main {
  padding: 0 0 58px;
  background: #fff;
}

.home-carousel {
  position: relative;
  overflow: hidden;
  width: min(1280px, calc(100% - 32px));
  margin: 28px auto 6px;
  background: #0b2744;
  box-shadow: 0 18px 36px rgba(8, 54, 98, 0.18);
}

.home-carousel__viewport {
  position: relative;
  aspect-ratio: 16 / 7;
  min-height: 360px;
  overflow: hidden;
}

.home-carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.045) translateX(18px);
  filter: saturate(0.96) contrast(0.98);
  transition:
    opacity 760ms ease,
    transform 960ms ease,
    filter 960ms ease;
}

.home-carousel__slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1) translateX(0);
  filter: saturate(1.04) contrast(1.02);
}

.home-carousel__slide.is-leaving {
  z-index: 0;
  opacity: 0;
  transform: scale(1.02) translateX(-18px);
}

.home-carousel__dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 2;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}

.home-carousel__dot {
  width: 22px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  transition: width 260ms ease, background 260ms ease;
}

.home-carousel__dot.is-active {
  width: 38px;
  background: #fff;
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: 56px;
  padding: 34px 0 30px;
  align-items: start;
}

.home-feature {
  min-width: 0;
}

.home-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.home-section-title {
  position: relative;
  min-width: 136px;
  min-height: 42px;
  padding: 0 22px 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0 78%, var(--blue-dark) 78% 100%);
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(7, 71, 134, 0.16);
}

.home-section-title::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 0;
  width: 18px;
  height: 42px;
  background: linear-gradient(115deg, var(--blue-dark) 0 48%, transparent 50% 100%);
}

.home-title-icon {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  object-fit: contain;
}

.home-more {
  margin-top: 12px;
  color: #0a75d1;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.home-more:hover,
.home-more:focus {
  color: var(--blue-dark);
  outline: 0;
}

.home-video-card {
  display: block;
  margin: 6px 24px 0 18px;
  border: 1px solid rgba(7, 71, 134, 0.32);
  background: #111;
  box-shadow: 0 16px 28px rgba(12, 70, 130, 0.13);
}

.home-video-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
}

.home-feature--summary {
  padding-bottom: 20px;
}

.home-summary-box {
  margin-top: 6px;
  padding: 28px 34px;
  min-height: 172px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.9)),
    var(--blue-light);
}

.home-summary-box p {
  margin: 0;
  color: #17334f;
  font-size: 16px;
  line-height: 2;
  text-align: justify;
}

.home-band {
  padding: 0;
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0.9), rgba(247, 251, 255, 0.9)),
    url("scu-icons/cghjbg.jpg") center bottom / cover no-repeat,
    radial-gradient(ellipse at 24% 100%, rgba(11, 95, 182, 0.08) 0 26%, transparent 27%),
    radial-gradient(ellipse at 72% 0%, rgba(11, 95, 182, 0.08) 0 30%, transparent 31%),
    repeating-linear-gradient(12deg, rgba(11, 95, 182, 0.035) 0 1px, transparent 1px 5px),
    #f7fbff;
  border-top: 1px solid #eef5fc;
  border-bottom: 1px solid #eef5fc;
}

.home-resource-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: 56px;
  padding: 0 0 8px;
}

.home-resource-group {
  min-width: 0;
}

.home-link-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
}

.home-link-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-link-grid a {
  position: relative;
  min-height: 36px;
  padding: 0 14px 0 20px;
  display: flex;
  align-items: center;
  color: #17334f;
  background: rgba(255, 255, 255, 0.88);
  border-left: 4px solid var(--blue);
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(207, 227, 247, 0.7);
}

.home-link-grid a::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid #1682da;
  transform: translateY(-50%);
}

.home-link-grid a:hover,
.home-link-grid a:focus,
.home-report-link:hover,
.home-report-link:focus {
  color: var(--blue-dark);
  background: #fff;
  outline: 0;
  box-shadow: 0 8px 18px rgba(7, 71, 134, 0.12);
}

.home-report {
  padding-top: 30px;
}

.home-report-link {
  width: fit-content;
  min-height: 34px;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #17334f;
  font-size: 14px;
  text-decoration: none;
}

.home-report-link span {
  min-width: 34px;
  padding: 2px 8px;
  color: #fff;
  background: linear-gradient(90deg, #9fb4c8, #cbd9e6);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 1100px) {
  .top-nav__inner {
    display: flex;
    overflow-x: auto;
  }

  .top-nav__item {
    flex: 0 0 150px;
  }

  .pdf-layout {
    width: min(var(--container), calc(100% - 32px));
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .subnav {
    width: 170px;
  }

  .home-intro,
  .home-resource-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-intro {
    padding-top: 28px;
  }

  .home-carousel {
    width: min(100%, calc(100% - 20px));
    margin-top: 20px;
  }

  .home-carousel__viewport {
    aspect-ratio: 16 / 9;
    min-height: 240px;
  }

  .home-video-card {
    margin-right: 0;
  }
}

@media (max-width: 640px) {
  .top-nav__link {
    min-height: 54px;
    padding: 0 18px;
    font-size: 17px;
  }

  .top-nav__inner {
    min-height: 54px;
  }

  .top-nav__item {
    flex-basis: 118px;
  }

  .subnav {
    width: 150px;
  }

  .subnav a {
    min-height: 38px;
    font-size: 15px;
  }

  .breadcrumb {
    min-height: 48px;
    font-size: 14px;
  }

  .pdf-layout {
    padding: 22px 0 36px;
  }

  .section-menu {
    border-left-width: 14px;
  }

  .section-menu__title {
    min-height: 58px;
    padding: 0 20px;
    font-size: 24px;
  }

  .section-menu a {
    min-height: 46px;
    font-size: 18px;
  }

  .section-menu a.section-menu__subitem {
    min-height: 40px;
    padding-left: 12px;
    font-size: 16px;
  }

  .inline-pdf {
    height: 70vh;
    min-height: 480px;
  }

  .text-content-panel {
    padding: 24px 18px;
    font-size: 17px;
  }

  .intro-article {
    padding: 24px 18px 32px;
  }

  .intro-section h1,
  .intro-section h2 {
    font-size: 20px;
  }

  .intro-section p {
    font-size: 16px;
    line-height: 1.85;
  }

  .home-main {
    padding-bottom: 34px;
  }

  .home-intro {
    padding: 20px 0 24px;
  }

  .home-carousel {
    margin-top: 14px;
  }

  .home-carousel__viewport {
    min-height: 190px;
  }

  .home-carousel__dots {
    bottom: 10px;
    gap: 5px;
  }

  .home-carousel__dot {
    width: 14px;
    height: 3px;
  }

  .home-carousel__dot.is-active {
    width: 26px;
  }

  .home-section-title {
    min-width: 112px;
    min-height: 36px;
    padding: 0 16px 0 12px;
    font-size: 16px;
  }

  .home-section-title::after {
    right: -15px;
    width: 15px;
    height: 36px;
  }

  .home-video-card {
    margin: 6px 0 0;
  }

  .home-summary-box {
    padding: 20px 16px;
    min-height: 0;
  }

  .home-summary-box p {
    font-size: 15px;
    line-height: 1.85;
  }

  .home-resource-grid {
    padding-bottom: 18px;
  }

  .home-link-grid,
  .home-link-grid--two {
    grid-template-columns: 1fr;
  }

  .home-link-grid a {
    min-height: 38px;
  }

  .home-report {
    padding-top: 24px;
  }
}
