* {
    box-sizing: border-box;
}

:root {
    --color-bg: #f8fafc;
    --color-bg-warm: #fff7ea;
    --color-card: #ffffff;
    --color-primary: #1f4f8f;
    --color-primary-dark: #163b6d;
    --color-accent: #f4b942;
    --color-text: #1e293b;
    --color-muted: #64748b;
    --color-border: #e2e8f0;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
}

a {
    color: var(--color-primary);
}

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

.container--narrow {
    width: min(820px, calc(100% - 32px));
}

.hero {
    color: var(--color-text);
}

.hero--bright {
    min-height: 410px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 18% 20%, rgba(244, 185, 66, 0.26), transparent 30%),
        linear-gradient(135deg, #fff7ea 0%, #f8fafc 55%, #eaf3ff 100%);
    overflow: hidden;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 40px;
    align-items: center;
    padding: 28px 0;
}

.hero__content {
    max-width: 620px;
}

.hero h1 {
    font-size: clamp(34px, 4.8vw, 56px);
    line-height: 1.08;
    margin: 0 0 16px;
    color: #173b6b;
}

.hero__text {
    max-width: 620px;
    margin: 0;
    font-size: 19px;
    color: #334155;
}

.hero__media {
    position: relative;
}

.hero__media::before {
    content: '';
    position: absolute;
    inset: -18px;
    border-radius: 32px;
    background: rgba(244, 185, 66, 0.22);
    transform: rotate(-2deg);
}

.hero__media img {
    position: relative;
    display: block;
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center center;
    border-radius: 28px;
    box-shadow: 0 22px 55px rgba(31, 79, 143, 0.20);
}

.eyebrow,
.section-label {
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
    color: #b7791f;
    font-weight: 800;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
}

.button--primary {
    background: var(--color-accent);
    color: #172033;
    box-shadow: 0 10px 25px rgba(244, 185, 66, 0.35);
}

.button--secondary {
    background: #ffffff;
    color: var(--color-primary);
    border: 1px solid #d7e3f3;
}

.section {
    padding: 54px 0;
}

.section--muted {
    background: #eef6ff;
}

.section--programs {
    background: #ffffff;
}

.section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.section__head h2,
.page-header h1,
.article-header h1 {
    margin: 0;
}

.section__head h2 {
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.18;
    color: #173b6b;
}

.cards,
.program-grid {
    display: grid;
    gap: 20px;
}

.cards--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.program-grid {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.card,
.news-card,
.program-card {
    display: block;
    padding: 22px;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    text-decoration: none;
    color: inherit;
    background: var(--color-card);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.card:hover,
.news-card:hover,
.program-card:hover {
    transform: translateY(-3px);
    border-color: var(--color-accent);
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.09);
}

.card h3,
.news-card h2,
.program-card h3 {
    margin-top: 0;
    color: #173b6b;
}

.program-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 30px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #fff1c7;
    color: #925c00;
    font-weight: 800;
}

.program-card p,
.card p {
    margin-bottom: 0;
    color: #475569;
}

.news-list {
    display: grid;
    gap: 10px;
}

.news-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
    text-decoration: none;
    color: inherit;
}

.news-row:hover span {
    color: var(--color-primary);
}

.news-row time,
.news-card time,
.article-header time {
    color: var(--color-muted);
    font-size: 14px;
}

.page-header,
.article-header {
    background: linear-gradient(135deg, #fff7ea, #eef6ff);
    padding: 48px 0;
}

.layout-two-columns {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 32px;
}

.sidebar {
    padding: 20px;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: #fff;
}

.sidebar a {
    display: block;
    padding: 6px 0;
}

.article {
    padding: 48px 0;
    font-size: 18px;
}

.article-image-placeholder {
    margin: 32px 0;
}

.article-image-placeholder div {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    background: #dbeafe;
    border-radius: 16px;
    color: var(--color-muted);
    font-weight: 700;
}

.article-image-placeholder figcaption {
    margin-top: 8px;
    color: var(--color-muted);
    font-size: 14px;
}

blockquote {
    margin: 32px 0;
    padding: 18px 24px;
    border-left: 5px solid var(--color-accent);
    background: #fff7ea;
    font-weight: 700;
}

.site-footer {
    background: #173b6b;
    color: #fff;
    padding: 32px 0;
}

.site-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.site-footer a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 8px;
}

.site-footer__logo {
    display: block;
    max-width: 180px;
    height: auto;
    margin-bottom: 12px;
}

@media (max-width: 1050px) {
    .program-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .hero--bright {
        min-height: auto;
    }

    .hero__grid,
    .cards--3,
    .cards--4,
    .layout-two-columns {
        grid-template-columns: 1fr;
    }

    .hero__media img {
        height: 260px;
    }

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

    .news-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .program-grid {
        grid-template-columns: 1fr;
    }
}


.home-news-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 22px;
    align-items: stretch;
}

.home-news-card,
.home-news-row {
    display: block;
    color: inherit;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.home-news-card:hover,
.home-news-row:hover {
    transform: translateY(-3px);
    border-color: var(--color-accent);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.10);
}

.home-news-card img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.home-news-card__body {
    padding: 22px;
}

.home-news-card h3,
.home-news-row h3 {
    margin: 6px 0 8px;
    color: #173b6b;
    line-height: 1.25;
}

.home-news-card p,
.home-news-row p {
    margin: 0;
    color: #475569;
}

.home-news-card time,
.home-news-row time {
    display: inline-block;
    color: #b7791f;
    font-size: 13px;
    font-weight: 800;
}

.home-news-side {
    display: grid;
    gap: 18px;
}

.home-news-row {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 16px;
    padding: 14px;
    align-items: center;
}

.home-news-row img {
    display: block;
    width: 150px;
    height: 112px;
    object-fit: cover;
    border-radius: 16px;
}

@media (max-width: 900px) {
    .home-news-grid {
        grid-template-columns: 1fr;
    }

    .home-news-card img {
        height: 240px;
    }
}

@media (max-width: 600px) {
    .home-news-row {
        grid-template-columns: 1fr;
    }

    .home-news-row img {
        width: 100%;
        height: 190px;
    }
}

/* News architecture: featured slider + text feed */
.section--news-home {
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.section__head--compact {
    margin-top: 34px;
    margin-bottom: 14px;
}

.featured-slider {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(31, 79, 143, 0.1);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(31, 79, 143, 0.12);
}

.featured-slider__track {
    position: relative;
    min-height: 360px;
    overflow: hidden;
}

.featured-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    min-height: 360px;
    color: inherit;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(18px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

.featured-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.featured-slide__image {
    min-height: 360px;
    background: #eaf1fb;
}

.featured-slide__image img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
}

.featured-slide__placeholder {
    height: 100%;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 800;
    color: #1f4f8f;
}

.featured-slide__content {
    padding: 38px 52px 54px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.featured-slide__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 4px;
}

.featured-slide__meta time,
.news-feed__meta time {
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
}

.news-type,
.news-feed__meta span {
    display: inline-flex;
    width: max-content;
    padding: 5px 10px;
    border-radius: 999px;
    background: #fff4d6;
    color: #8a5a00;
    font-size: 13px;
    font-weight: 700;
}

.featured-slide h3 {
    margin: 0;
    font-size: clamp(20px, 1.6vw, 25px);
    line-height: 1.2;
    color: #1e293b;
}

.featured-slide p {
    margin: 0;
    color: #475569;
    font-size: 17px;
    line-height: 1.6;
}

.more-link {
    display: inline-flex;
    width: max-content;
    margin-top: 6px;
    color: #1f4f8f;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.featured-slider__controls {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 4;
}

.featured-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: #cbd5e1;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9);
    cursor: pointer;
}

.featured-slider__dot.is-active {
    background: #f4b942;
    width: 26px;
    border-radius: 999px;
}


.featured-slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 44px;
    height: 44px;
    transform: translateY(-50%);
    border: 1px solid rgba(31, 79, 143, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: #1f4f8f;
    font-size: 34px;
    line-height: 38px;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(31, 79, 143, 0.18);
}

.featured-slider__arrow:hover {
    background: #f4b942;
    color: #10233f;
}

.featured-slider__arrow--prev {
    left: 18px;
}

.featured-slider__arrow--next {
    right: 18px;
}

.featured-slider:not(:has(.featured-slider__controls)) .featured-slider__track {
    min-height: 360px;
}

.news-feed {
    display: grid;
    gap: 14px;
}

.news-feed__item {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 22px;
    padding: 22px 0;
    border-bottom: 1px solid #e2e8f0;
}

.news-feed__meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-feed__content h2,
.news-feed__content h3 {
    margin: 0 0 8px;
    line-height: 1.25;
}

.news-feed__content h2 a,
.news-feed__content h3 a {
    color: #1e293b;
    text-decoration: none;
}

.news-feed__content h2 a:hover,
.news-feed__content h3 a:hover {
    color: #1f4f8f;
}

.news-feed__content p {
    margin: 0;
    color: #475569;
    line-height: 1.55;
}

.news-feed__content .more-link {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
    margin-top: 8px;
    font-size: 13px;
}

.article-header__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.article-image {
    margin: 0 0 28px;
    border-radius: 24px;
    overflow: hidden;
    background: #eef2f7;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content {
    font-size: 18px;
    line-height: 1.75;
    color: #334155;
}

@media (max-width: 860px) {
    .featured-slider__track {
        min-height: 520px;
    }

    .featured-slide {
        grid-template-columns: 1fr;
        grid-template-rows: 240px 1fr;
        min-height: 520px;
    }

    .featured-slide__content {
        padding: 22px 24px 54px;
        justify-content: flex-start;
    }

    .featured-slide__meta {
        margin-bottom: 2px;
    }

    .featured-slide__meta time {
        font-size: 13px;
    }

    .featured-slide__meta .news-type {
        font-size: 12px;
        padding: 5px 10px;
    }

    .featured-slide__image,
    .featured-slide__image img,
    .featured-slide__placeholder {
        min-height: 240px;
        height: 240px;
    }

    .featured-slider__controls {
        left: 50%;
        bottom: 14px;
        top: auto;
    }

    .featured-slider__arrow {
        width: 38px;
        height: 38px;
        font-size: 28px;
        line-height: 32px;
    }

    .featured-slider__arrow--prev {
        left: 10px;
    }

    .featured-slider__arrow--next {
        right: 10px;
    }

    .news-feed__item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .news-feed__meta {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }
}


.card-code {
    display: inline-flex;
    width: max-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: #e8f1ff;
    color: #1f4f8f;
    font-weight: 800;
    margin-bottom: 10px;
}

.document-sections {
    display: grid;
    gap: 24px;
}

.document-section {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.document-section h2 {
    margin: 0 0 16px;
    font-size: 22px;
}

.document-list {
    display: grid;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.document-list a {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f8fafc;
    text-decoration: none;
    color: #1e293b;
    font-weight: 700;
}

.document-list a:hover {
    background: #eef6ff;
    color: #1f4f8f;
}

.document-list span,
.empty-text {
    color: #64748b;
    font-weight: 500;
}

/* Educational programs documents */
.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.program-card {
    display: flex;
    flex-direction: column;
    padding: 26px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07);
    color: #1e293b;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.program-card:hover {
    transform: translateY(-3px);
    border-color: #f4b942;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.11);
}

.program-card__code {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #eef6ff;
    color: #1f4f8f;
    font-weight: 700;
    font-size: 13px;
}

.program-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.2;
}

.program-card p {
    margin: 6px 0;
    color: #64748b;
}

.program-card__more {
    display: inline-flex;
    width: fit-content;
    margin-top: auto;
    padding-top: 18px;
    color: #1f4f8f;
    font-weight: 700;
}

.page-header--compact {
    padding-bottom: 36px;
}

.breadcrumbs {
    margin: 0 0 12px;
    font-size: 14px;
    color: #64748b;
}

.breadcrumbs a {
    color: #1f4f8f;
    text-decoration: none;
}

.program-layout {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.program-sidebar,
.program-panel {
    border-radius: 28px;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.07);
}

.program-sidebar {
    padding: 22px;
    position: sticky;
    top: 96px;
}

.program-sidebar h2 {
    margin: 0 0 16px;
    font-size: 20px;
}

.program-radio-list {
    display: grid;
    gap: 10px;
}

.program-radio {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px;
    border-radius: 18px;
    color: #1e293b;
    text-decoration: none;
    border: 1px solid transparent;
    background: #f8fafc;
}

.program-radio:hover,
.program-radio.active {
    background: #fff7e3;
    border-color: #f4b942;
}

.program-radio__circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #94a3b8;
    margin-top: 2px;
    position: relative;
}

.program-radio.active .program-radio__circle {
    border-color: #1f4f8f;
}

.program-radio.active .program-radio__circle::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: #1f4f8f;
}

.program-radio strong {
    display: block;
    line-height: 1.25;
}

.program-radio small {
    display: block;
    margin-top: 5px;
    color: #64748b;
}

.program-panel {
    overflow: hidden;
}

.program-passport {
    padding: 30px;
    display: grid;
    gap: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #fff7e3 100%);
    border-bottom: 1px solid #e2e8f0;
}

.program-passport__label {
    display: inline-flex;
    margin-bottom: 10px;
    color: #1f4f8f;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: 12px;
}

.program-passport__title {
    margin: 0 0 10px;
    font-size: 34px;
    line-height: 1.15;
    color: #0f172a;
}

.program-passport p {
    margin: 0;
    max-width: 850px;
    color: #475569;
    font-size: 17px;
}

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

.program-passport__grid div {
    padding: 15px;
    border-radius: 16px;
    background: rgba(255,255,255,.8);
    border: 1px solid rgba(226,232,240,.9);
}

.program-passport__grid span {
    display: block;
    margin-bottom: 6px;
    color: #64748b;
    font-size: 13px;
}

.program-passport__grid strong {
    display: block;
    color: #1e293b;
    line-height: 1.25;
}

.program-tabs {
    display: flex;
    gap: 10px;
    padding: 20px 30px 0;
    overflow-x: auto;
}

.program-tab {
    white-space: nowrap;
    padding: 12px 18px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
    text-decoration: none;
    font-weight: 700;
}

.program-tab:hover,
.program-tab.active {
    background: #1f4f8f;
    color: #fff;
}

.document-box {
    padding: 28px 30px 34px;
}

.document-box__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.document-box__head h1,
.document-box__head h2 {
    margin: 0;
    font-size: 26px;
}

.document-box__head p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.document-box code {
    padding: 2px 6px;
    border-radius: 6px;
    background: #f1f5f9;
}

.document-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.document-list__item a {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #1e293b;
    text-decoration: none;
}

.document-list__item a:hover {
    border-color: #f4b942;
    background: #fffdf7;
}

.document-list__item.missing a {
    opacity: .6;
}

.document-list__icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 34px;
    border-radius: 10px;
    background: #fee2e2;
    color: #991b1b;
    font-size: 12px;
    font-weight: 900;
}

.document-list__title {
    font-weight: 700;
}

.document-list__size {
    color: #64748b;
    font-size: 14px;
}

.empty-state {
    margin: 0;
    padding: 20px;
    border-radius: 18px;
    background: #f8fafc;
    color: #64748b;
}

@media (max-width: 980px) {
    .program-cards,
    .program-layout,
    .program-passport__grid {
        grid-template-columns: 1fr;
    }

    .program-sidebar {
        position: static;
    }

    .program-passport__title {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .program-passport,
    .document-box {
        padding: 22px;
    }

    .program-tabs {
        padding: 18px 22px 0;
    }

    .document-box__head {
        display: block;
    }

    .document-box__head p {
        margin-top: 8px;
    }

    .document-list__item a {
        grid-template-columns: 46px 1fr;
    }

    .document-list__size {
        grid-column: 2;
    }
}

/* Program detail refinement: tabs first, OPP text only inside OPP tab */
.section--program-detail {
    padding-top: 54px;
}

.program-tabs--top {
    padding: 24px 30px 18px;
    border-bottom: 1px solid #e2e8f0;
    background: #fff;
}

.program-passport--inside {
    margin: 0 0 28px;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: none;
}

.program-panel > .program-passport {
    display: none;
}

.program-passport--inside.program-passport {
    display: grid;
}

.document-box__head {
    align-items: center;
}

.document-box__head h1,
.document-box__head h2 {
    font-size: 24px;
}

@media (max-width: 640px) {
    .section--program-detail {
        padding-top: 28px;
    }

    .program-tabs--top {
        padding: 18px 22px 14px;
    }

    .program-passport--inside {
        margin-bottom: 22px;
    }
}

/* About page */
.about-hero {
    padding: 64px 0 44px;
    background: linear-gradient(120deg, #fff8ea 0%, #ffffff 45%, #eef6ff 100%);
}

.about-hero__grid {
    display: grid;
    grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.about-hero__photo {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    padding: 14px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.09);
}

.about-hero__photo img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 22px;
    object-fit: cover;
}

.about-hero h1 {
    margin: 8px 0 18px;
    max-width: 820px;
    color: #123d70;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
}

.about-hero .lead {
    max-width: 850px;
    color: #243b53;
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.55;
}

.about-hero p:not(.section-label) {
    color: #42526e;
    line-height: 1.7;
}

.about-section {
    background: #f8fbff;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.about-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 26px;
    padding: clamp(24px, 3vw, 36px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.about-card--wide {
    grid-column: 1 / -1;
}

.about-card h2 {
    margin: 0 0 16px;
    color: #123d70;
    font-size: clamp(24px, 3vw, 34px);
}

.about-card p {
    color: #42526e;
    line-height: 1.75;
    margin: 0 0 14px;
}

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

.about-card--stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    background: #fff8ea;
}

.about-card--stats div {
    background: #ffffff;
    border: 1px solid #f7dfaa;
    border-radius: 20px;
    padding: 18px;
}

.about-card--stats strong {
    display: block;
    color: #bf7a00;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1;
    margin-bottom: 8px;
}

.about-card--stats span {
    color: #123d70;
    font-weight: 700;
}

@media (max-width: 860px) {
    .about-hero__grid,
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* About page */
.about-hero {
    background: linear-gradient(135deg, #fff7ea 0%, #f8fafc 58%, #eef6ff 100%);
    padding: 50px 0;
}

.about-hero__grid {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}

.about-hero__photo img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 26px;
    box-shadow: 0 20px 44px rgba(31, 79, 143, 0.18);
}

.about-hero h1 {
    margin: 0 0 14px;
    color: #173b6b;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
}

.about-hero .lead {
    margin: 0 0 14px;
    color: #334155;
    font-size: 19px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.about-card {
    padding: 26px;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.about-card--wide {
    grid-column: 1 / -1;
}

.about-card h2 {
    margin: 0 0 14px;
    color: #173b6b;
    font-size: 26px;
    line-height: 1.2;
}

.about-card p {
    margin: 0 0 12px;
    color: #475569;
}

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

.about-card--stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    background: #173b6b;
    color: #fff;
}

.about-card--stats div {
    padding: 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.10);
}

.about-card--stats strong {
    display: block;
    color: #f4b942;
    font-size: 30px;
    line-height: 1;
    margin-bottom: 8px;
}

.about-card--stats span {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.86);
}

.timeline-list {
    display: grid;
    gap: 12px;
}

.timeline-list div {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
}

.timeline-list div:last-child {
    border-bottom: 0;
}

.timeline-list strong {
    color: #b7791f;
    font-size: 18px;
}

.timeline-list span {
    color: #475569;
}

@media (max-width: 800px) {
    .about-hero__grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-hero__photo {
        max-width: 360px;
    }

    .about-card--stats,
    .timeline-list div {
        grid-template-columns: 1fr;
    }
}

/* Anti-corruption page */
.anti-corruption-section .button {
    margin-top: 18px;
}
.check-list {
    margin: 0;
    padding-left: 20px;
    color: #334155;
}
.check-list li {
    margin-bottom: 10px;
}


/* Library page */
.library-hero {
    background: linear-gradient(135deg, #fff7ea 0%, #eef6ff 100%);
}
.library-section .about-card--stats.library-stats {
    align-content: start;
}
.library-arrivals {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}
.library-arrivals__year {
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background: #f8fafc;
    overflow: hidden;
}
.library-arrivals__year summary {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    color: #173b6b;
    font-weight: 800;
}
.library-arrivals__year summary span {
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 700;
}
.library-arrivals__year ol {
    margin: 0;
    padding: 0 22px 20px 42px;
    color: #475569;
}
.library-arrivals__year li {
    margin-bottom: 9px;
}

/* Library page fixes */
.library-section .library-grid {
    grid-template-columns: 1fr;
}
.library-section .about-card--wide {
    grid-column: 1 / -1;
}
.library-section .library-stats.about-card--wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.library-arrivals__year summary::marker {
    color: #b7791f;
}
@media (max-width: 900px) {
    .library-section .library-stats.about-card--wide {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 560px) {
    .library-section .library-stats.about-card--wide {
        grid-template-columns: 1fr;
    }
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.partner-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.partner-card span {
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
}

.partner-card strong {
    color: #0f172a;
    font-size: 16px;
    line-height: 1.35;
}

.check-list--columns {
    columns: 2;
    column-gap: 32px;
}

.check-list--columns li {
    break-inside: avoid;
}

@media (max-width: 768px) {
    .check-list--columns {
        columns: 1;
    }
}

/* Final document and content layout fixes */
.about-section .about-grid {
    grid-template-columns: 1fr;
}
.about-section .about-card--stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 900px) {
    .about-section .about-card--stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 560px) {
    .about-section .about-card--stats {
        grid-template-columns: 1fr;
    }
}

.document-section--wide {
    grid-column: 1 / -1;
}
.document-groups {
    display: grid;
    gap: 22px;
}
.document-group {
    padding-top: 4px;
}
.document-group + .document-group {
    border-top: 1px solid var(--color-border);
    padding-top: 22px;
}
.document-group h3 {
    margin: 0 0 12px;
    color: #173b6b;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
}
.document-list--numbered {
    list-style: decimal;
    padding-left: 28px;
}
.document-list--numbered .document-list__item {
    padding-left: 4px;
}
.document-list--numbered .document-list__item::marker {
    color: #b7791f;
    font-weight: 800;
}
.document-list--numbered .document-list__item a {
    grid-template-columns: minmax(0, 1fr) auto;
}
.document-list--numbered .document-list__icon {
    display: none;
}
@media (max-width: 640px) {
    .document-list--numbered .document-list__item a {
        grid-template-columns: 1fr;
    }
}

.document-details {
    display: block;
}

.document-details summary {
    cursor: pointer;
    list-style: none;
    font-size: 26px;
    font-weight: 800;
    color: #173b6b;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.document-details summary::-webkit-details-marker {
    display: none;
}

.document-details summary::after {
    content: "⌄";
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #eef6ff;
    color: #1f4f8f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform .2s ease;
}

.document-details[open] summary::after {
    transform: rotate(180deg);
}

.document-details summary + * {
    margin-top: 18px;
}

/* Leadership page */
.leadership-list {
    display: grid;
    gap: 24px;
}

.leadership-card {
    display: grid;
    grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 42px);
    align-items: start;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    padding: clamp(24px, 4vw, 42px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
}

.leadership-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    overflow: hidden;
    background: #f8fbff;
    border: 1px solid #e2e8f0;
}

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

.leadership-photo--empty {
    background: linear-gradient(135deg, #f8fbff, #eef6ff);
}

.leadership-info h2 {
    margin: 6px 0 12px;
    color: #123d70;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.12;
}

.leadership-degree {
    margin: 0 0 8px;
    color: #102a43;
    font-weight: 800;
}

.leadership-info p:not(.section-label) {
    color: #42526e;
    line-height: 1.75;
}

@media (max-width: 760px) {
    .leadership-card {
        grid-template-columns: 1fr;
    }

    .leadership-photo {
        max-width: 260px;
    }
}

/* Applicants admission campaign page */
.applicants-page {
    display: grid;
    gap: 28px;
}

.applicants-intro-card,
.applicants-documents {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 28px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
}

.applicants-intro-card {
    padding: clamp(24px, 4vw, 42px);
    background:
        radial-gradient(circle at 92% 8%, rgba(244, 185, 66, 0.18), transparent 26%),
        linear-gradient(135deg, #ffffff 0%, #fffaf0 100%);
}

.applicants-intro-card h2 {
    margin: 0 0 12px;
    color: #173b6b;
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.16;
}

.applicants-intro-card p:not(.section-label) {
    max-width: 900px;
    margin: 0;
    color: #42526e;
    font-size: 18px;
}

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

.applicants-info-card {
    padding: 24px;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.applicants-info-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #eef6ff;
    color: #1f4f8f;
    font-weight: 900;
}

.applicants-info-card h3 {
    margin: 0 0 10px;
    color: #173b6b;
    font-size: 21px;
}

.applicants-info-card p {
    margin: 0;
    color: #475569;
}

.applicants-documents {
    padding: clamp(24px, 4vw, 34px);
}

.applicants-documents__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.applicants-documents__head h2 {
    margin: 0;
    color: #173b6b;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.18;
}

.applicants-documents__head > p {
    max-width: 360px;
    margin: 0;
    color: #64748b;
    text-align: right;
}

@media (max-width: 900px) {
    .applicants-info-grid {
        grid-template-columns: 1fr;
    }

    .applicants-documents__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .applicants-documents__head > p {
        max-width: none;
        text-align: left;
    }
}

/* Applicants extended pages */
.applicants-info-card--link {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.applicants-info-card--link:hover {
    transform: translateY(-4px);
    border-color: rgba(31, 79, 143, 0.25);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.1);
}

.card-link,
.specialty-card__more {
    display: inline-block;
    margin-top: 16px;
    color: #1f4f8f;
    font-weight: 800;
}

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

.specialty-card {
    display: flex;
    min-height: 240px;
    padding: 26px;
    flex-direction: column;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    background: #ffffff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.specialty-card:hover {
    transform: translateY(-5px);
    border-color: rgba(31, 79, 143, 0.25);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.11);
}

.specialty-card__code {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #eef6ff;
    color: #1f4f8f;
    font-weight: 900;
}

.specialty-card h3 {
    margin: 0 0 12px;
    color: #173b6b;
    font-size: 22px;
}

.specialty-card p {
    margin: 0;
    color: #475569;
    line-height: 1.65;
}

.specialty-card__more {
    margin-top: auto;
    padding-top: 18px;
}

.specialty-hero .button,
.specialty-bottom-actions .button {
    margin-right: 10px;
}

.specialty-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.button--light {
    background: #ffffff;
    color: #173b6b;
}

.button--outline-light {
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: transparent;
    color: #ffffff;
}

.specialty-layout {
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: 26px;
    align-items: start;
}

.specialty-summary,
.content-card {
    border: 1px solid var(--color-border);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.specialty-summary {
    position: sticky;
    top: 96px;
    padding: 24px;
}

.specialty-summary dl,
.people-list {
    display: grid;
    gap: 16px;
    margin: 0;
}

.specialty-summary dt,
.people-list dt {
    margin-bottom: 4px;
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.specialty-summary dd,
.people-list dd {
    margin: 0;
    color: #173b6b;
    font-weight: 800;
    line-height: 1.45;
}

.specialty-content {
    display: grid;
    gap: 22px;
}

.content-card {
    padding: clamp(22px, 3vw, 32px);
}

.content-card h2 {
    margin: 0 0 14px;
    color: #173b6b;
    font-size: clamp(24px, 2.7vw, 34px);
    line-height: 1.18;
}

.content-card p {
    margin: 0 0 12px;
    color: #42526e;
    line-height: 1.75;
}

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

.content-card--accent {
    background: linear-gradient(135deg, #f7fbff 0%, #fff8ec 100%);
}

.check-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    color: #42526e;
    line-height: 1.65;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #1f4f8f;
    font-weight: 900;
}

.specialty-bottom-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.timeline-grid {
    display: grid;
    gap: 20px;
}

.timeline-card {
    padding: 26px;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.timeline-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: #eef6ff;
    color: #1f4f8f;
    font-weight: 900;
}

.timeline-card h2 {
    margin: 0 0 14px;
    color: #173b6b;
}

.timeline-card ul {
    margin: 0;
    padding-left: 20px;
    color: #42526e;
    line-height: 1.7;
}

.table-scroll {
    overflow-x: auto;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.data-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
    vertical-align: top;
}

.data-table th {
    background: #f8fafc;
    color: #173b6b;
    font-size: 13px;
    text-transform: uppercase;
}

.data-table td {
    color: #42526e;
}

.data-table tr:last-child td {
    border-bottom: 0;
}

.competitive-table th:not(:nth-child(2)),
.competitive-table td:not(:nth-child(2)) {
    text-align: center;
}

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

.notice-text {
    padding: 14px 16px;
    border-radius: 14px;
    background: #fff8ec;
    color: #173b6b !important;
    font-weight: 800;
}

@media (max-width: 980px) {
    .specialty-cards,
    .committee-grid,
    .specialty-layout {
        grid-template-columns: 1fr;
    }

    .specialty-summary {
        position: static;
    }
}


.breadcrumbs {
    padding: 18px 0 0;
    font-size: 14px;
    color: var(--color-muted);
}

.breadcrumbs .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumbs a {
    color: var(--color-primary);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs__separator {
    color: #94a3b8;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.info-card {
    padding: 20px;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background: #f8fafc;
}

.info-card h3 {
    margin: 0 0 8px;
    color: var(--color-primary-dark);
}

.info-card p {
    margin: 0;
}

@media (max-width: 860px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

.mt-24{margin-top:24px}.narrow{width:min(860px,calc(100% - 32px));margin:0 auto}.info-card h2{margin:0 0 12px;color:var(--color-primary-dark)}.info-card p+p{margin-top:12px}.site-form{display:grid;gap:14px;margin-top:20px}.site-form label{display:grid;gap:8px;font-weight:700}.site-form textarea,.site-form input{border:1px solid var(--color-border);border-radius:14px;padding:14px 16px;font:inherit;background:#fff;color:var(--color-text)}.site-form small{color:var(--color-muted);font-style:italic}.site-form button{width:max-content;border:0;border-radius:999px;background:var(--color-primary);color:#fff;font-weight:800;padding:12px 22px;cursor:pointer}.required{color:#dc2626}.alert{padding:14px 16px;border-radius:14px;margin:18px 0;font-weight:700}.alert-success{background:#e9f9ee;color:#166534}.alert-error{background:#fff1f2;color:#9f1239}.document-row span{display:block;color:var(--color-muted);font-size:14px}

.contacts-map {
    position: relative;
    width: 100%;
    min-height: 360px;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(30, 64, 175, .12);
}
.contacts-map iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}
.button-link {
    display: inline-flex;
    margin-top: 14px;
    color: #1f5fa8;
    font-weight: 700;
    text-decoration: none;
}
.feature-list { margin: 12px 0 18px; padding-left: 1.2rem; }
.feature-list li { margin: 6px 0; }

.teacher-cards .teacher-card {
    display: flex;
    flex-direction: column;
    min-height: 210px;
    padding: 22px;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    background: var(--color-card);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}
.teacher-card__body {
    flex: 1 1 auto;
}
.teacher-card h3 {
    margin: 0 0 12px;
    color: #173b6b;
    font-size: 20px;
    line-height: 1.25;
}
.teacher-card p {
    margin: 0;
    color: #475569;
    line-height: 1.5;
}
.teacher-card__link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 22px;
    padding: 11px 16px;
    border-radius: 999px;
    background: var(--color-primary);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}
.teacher-card__link:hover {
    background: var(--color-primary-dark);
}
.teacher-card__link--disabled {
    background: #e2e8f0;
    color: #64748b;
}
.department-content h3 {
    margin-top: 28px;
}
.department-contacts p:last-child {
    margin-bottom: 0;
}
@media (max-width: 900px) {
    .teacher-cards.cards--3 { grid-template-columns: 1fr; }
}

/* News article: plain official text layout */
.container--article {
    width: min(980px, calc(100% - 32px));
}

.article-header--plain {
    padding: 38px 0 16px;
    background: transparent;
}

.article-header--plain h1 {
    margin: 14px 0 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    color: #0f172a;
}

.article--plain {
    padding-bottom: 64px;
}

.article--plain .article-content {
    font-size: 18px;
    line-height: 1.75;
    color: #243244;
}

.article--plain .article-content h2 {
    margin: 0 0 26px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.25;
    text-align: center;
    color: #0f172a;
}

.article--plain .article-content p {
    margin: 0 0 20px;
}

.news-article-float {
    float: left;
    width: 324px;
    max-width: 36%;
    margin: 8px 34px 18px 0;
}

.news-article-float img {
    display: block;
    width: 100%;
    height: auto;
}

.news-article-float figcaption {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.35;
    color: #64748b;
}

.news-article-float + p {
    margin-top: 0;
}

.article--plain ol {
    margin: 0 0 24px 24px;
    padding-left: 20px;
}

.article--plain li {
    margin-bottom: 14px;
    padding-left: 4px;
}

.news-signature {
    margin-top: 30px !important;
    font-weight: 700;
    text-align: right;
}

.article-back-link {
    clear: both;
    margin-top: 34px;
}

.article-back-link a {
    font-weight: 700;
    text-decoration: none;
}

.article-back-link a:hover {
    text-decoration: underline;
}

@media (max-width: 980px) {
    .news-article-float {
        float: none;
        width: 100%;
        max-width: 360px;
        margin: 0 auto 24px;
    }

    .article--plain .article-content {
        font-size: 16px;
    }

    .news-signature {
        text-align: left;
    }
}

/* Program page semantic intro: one H1 followed by text */
.page-intro--program {
    max-width: 980px;
    margin: 0 auto 28px;
}

.page-intro--program h1 {
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    font-weight: 800;
    color: var(--color-navy, #0b2f5b);
}

.page-title__subtitle {
    display: block;
    margin-top: 10px;
    font-size: 0.46em;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-text-muted, #667085);
}

.page-intro--program p {
    margin: 0;
    max-width: 760px;
    font-size: 17px;
    line-height: 1.65;
    color: var(--color-text-muted, #52657a);
}

.program-sidebar__hint,
.document-box__lead {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--color-text-muted, #667085);
}

.program-passport__title {
    margin: 0 0 12px;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.18;
    font-weight: 800;
    color: var(--color-navy, #0b2f5b);
}
