.academy-page {
  --deep-blue: var(--deep);
  --display: Georgia, "Times New Roman", "Songti SC", serif;
  --mist: #eef5f3;
  background: var(--ivory);
}

.academy-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px clamp(20px, 5vw, 76px);
  background: rgba(248, 244, 237, 0.94);
  border-bottom: 1px solid rgba(176, 163, 145, 0.28);
  backdrop-filter: blur(12px);
}

.academy-index-hero,
.academy-topic,
.academy-article {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.academy-index-hero {
  padding: 92px 0 42px;
}

.academy-index-hero h1,
.article-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--deep-blue);
  font-family: var(--display);
  font-size: clamp(42px, 7vw, 92px);
  font-weight: 500;
  line-height: 0.98;
}

.academy-index-hero p:not(.eyebrow),
.article-summary,
.topic-heading p:not(.eyebrow) {
  max-width: 780px;
  color: var(--platinum);
  font-size: 19px;
  line-height: 1.9;
}

.academy-topic {
  padding: 32px 0 54px;
}

.topic-heading {
  margin-bottom: 24px;
}

.topic-heading h2 {
  max-width: 900px;
  margin: 0;
  color: var(--deep-blue);
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 66px);
  font-weight: 500;
  line-height: 1.04;
}

.academy-index-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.academy-card a,
.related-card {
  display: block;
  min-height: 100%;
  padding: 28px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(176, 163, 145, 0.28);
  border-radius: 6px;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.academy-card a:hover,
.related-card:hover {
  transform: translateY(-3px);
  border-color: rgba(198, 155, 82, 0.55);
  box-shadow: 0 18px 42px rgba(5, 48, 62, 0.08);
}

.academy-card span,
.related-card span {
  color: var(--champagne);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.academy-card h2 {
  margin: 18px 0 12px;
  color: var(--deep-blue);
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.15;
}

.academy-card p {
  color: var(--platinum);
  line-height: 1.8;
}

.academy-card i {
  color: var(--deep-blue);
  font-style: normal;
  font-weight: 800;
}

.academy-index-cta,
.article-cta {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  background: var(--mist);
  border: 1px solid rgba(176, 163, 145, 0.28);
}

.academy-index-cta h2,
.article-cta h2,
.related-section h2 {
  margin: 0;
  color: var(--deep-blue);
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.1;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  padding-top: 36px;
  color: var(--platinum);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--deep-blue);
  text-decoration: none;
  font-weight: 800;
}

.article-hero {
  padding: 58px 0 36px;
  border-bottom: 1px solid rgba(176, 163, 145, 0.28);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.article-tags span {
  padding: 8px 12px;
  color: var(--deep-blue);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(176, 163, 145, 0.34);
  font-size: 13px;
  font-weight: 800;
}

.article-body {
  max-width: 820px;
  padding: 42px 0 34px;
}

.article-body h2 {
  margin: 54px 0 16px;
  color: var(--deep-blue);
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.1;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  margin: 28px 0 8px;
  color: var(--deep-blue);
  font-size: 18px;
}

.article-body p,
.article-body li {
  color: var(--platinum);
  font-size: 17px;
  line-height: 2;
}

.article-body ol,
.article-body ul {
  padding-left: 24px;
}

.article-body strong {
  color: var(--deep-blue);
}

.article-table-wrap {
  width: 100%;
  margin: 22px 0 30px;
  overflow-x: auto;
  border: 1px solid rgba(176, 163, 145, 0.34);
}

.article-body table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.62);
}

.article-body th,
.article-body td {
  padding: 16px;
  border-bottom: 1px solid rgba(176, 163, 145, 0.24);
  text-align: left;
  color: var(--platinum);
}

.article-body th {
  color: var(--deep-blue);
  font-weight: 800;
}

.faq-question {
  padding-top: 12px;
}

.related-section {
  padding: 24px 0 86px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.related-card strong {
  display: block;
  margin-top: 12px;
  color: var(--deep-blue);
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.18;
}

.nowrap {
  white-space: nowrap;
}

@media (max-width: 860px) {
  .academy-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .academy-index-list,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .academy-index-cta,
  .article-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}
