:root {
    --primary: #FD6900;
    --dark: #21211E;
    --white: #FFFFFF;
    --bg: #f7f5f2;
    --bg-soft: #fffaf6;
    --muted: #6f6a66;
    --border: rgba(33, 33, 30, 0.12);
    --shadow: 0 12px 35px rgba(33, 33, 30, 0.08);
    --radius: 20px;
    --radius-sm: 10px;
    --container: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Firefox scrollbar */
* {
    scrollbar-width: auto;
    scrollbar-color: var(--primary) transparent;
}

html {
    scroll-behavior: auto;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Unbounded', sans-serif;
    background: var(--bg);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

button {
    font-family: 'Unbounded', sans-serif;
}

.container {
    width: min(92%, var(--container));
    margin: 0 auto;
}

.narrow {
    max-width: 800px;
}

/* Chrome / Edge / Safari scrollbar */
::-webkit-scrollbar {
    width: 20px;
    height: 20px;
    background: transparent;
}

::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 12px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 12px;
    border: 4px solid transparent;
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
    border-radius: 12px;
    border: 4px solid transparent;
    background-clip: padding-box;
}

::-webkit-scrollbar-corner {
    background: transparent;
}

::-webkit-scrollbar-button {
    display: none !important;
    width: 0;
    height: 0;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    display: none;
    width: 0;
    height: 0;
    background: transparent;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.navbar {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    color: var(--primary);
}

.brand img {
    width: 100%;
    height: 44px;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav a {
    font-size: 14px;
    position: relative;
}

.nav a:hover {
    color: var(--primary);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.burger span {
    width: 26px;
    height: 2px;
    background: var(--dark);
    display: block;
    border-radius: 2px;
}

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 300px 0 80px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    /*transform: scale(1.05);*/
    /*filter: blur(1px);*/
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /*background:*/
    /*    linear-gradient(to top, rgba(247, 245, 242, 1), rgba(247, 245, 242, 0.1));*/
    z-index: 1;
}

.hero-single {
    position: relative;
    z-index: 2;
    display: block;
}

.hero-text {
    max-width: 520px;
    padding: 32px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    box-shadow: 0 18px 50px rgba(33, 33, 30, 0.08);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(1px);
}

.eyebrow {
    color: var(--dark);
    margin-bottom: 18px;
    font-size: 14px;
    opacity: 0.8;
}

.hero h1 {
    font-size: clamp(44px, 8vw, 92px);
    line-height: 0.95;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero h1 span {
    color: var(--primary);
    display: block;
}

.hero p {
    max-width: 640px;
    color: rgba(33, 33, 30, 0.78);
    margin-bottom: 30px;
    font-size: clamp(16px, 2vw, 18px);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 24px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    font-size: 14px;
    transition: 0.35s ease;
}

.btn-primary:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

.section {
    padding: 90px 0;
}

.section.alt {
    background: var(--bg-soft);
}

.section h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 18px;
}

.section-head {
    margin-bottom: 28px;
}

.section-head p,
.section p {
    color: var(--muted);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.7s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-card h3 {
    font-size: clamp(28px, 4vw, 46px);
    color: var(--primary);
    margin-bottom: 10px;
}

.university-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
}

.university-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.7s ease;
}

.university-card:hover {
    transform: translateY(-4px);
}

.university-toggle {
    width: 100%;
    border: none;
    background: transparent;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.university-main {
    display: flex;
    align-items: center;
    gap: 18px;
}

.university-logo {
    width: 72px;
    height: 72px;
    background: #fff7f1;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.university-logo img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.university-basic h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.university-basic p {
    color: var(--muted);
    font-size: 14px;
}

.expand-icon {
    font-size: 28px;
    color: var(--primary);
    line-height: 1;
    transition: transform 0.3s ease;
}

.university-card.active .expand-icon {
    transform: rotate(45deg);
}

.university-extra {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}

.university-card.active .university-extra {
    max-height: 400px;
    padding: 0 24px 24px;
}

.university-search {
    margin-bottom: 20px;
}

.university-search input {
    width: 100%;
    max-width: 360px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--white);
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.university-search input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(253, 105, 0, 0.15);
}

.university-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.university-more-controls {
    margin-top: 8px;
    display: flex;
    gap: 10px;
}

.btn-secondary {
    min-height: 40px;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--white);
    font-size: 13px;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.extra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.desc {
    color: var(--muted);
}

.alumni-grid {
    margin-top: 30px;
    display: flex;
    flex-wrap: nowrap;
    gap: 18px;
    overflow-x: auto;
    padding: 32px 32px 48px;
    scroll-snap-type: x mandatory;
}

.alumni-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 28px 22px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.7s ease;
}

.alumni-card:hover {
    transform: translateY(-4px);
}

.alumni-photo {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.alumni-photo img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff7f1;
}

.alumni-info {
    padding: 0;
}

.alumni-info h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.alumni-info p {
    color: var(--muted);
    font-size: 14px;
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer h3,
.footer h4 {
    margin-bottom: 16px;
    color: var(--primary);
}

.footer p,
.footer a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 10px;
}

.footer a:hover {
    color: var(--primary);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 18px;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(28px) scale(0.94);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.news-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 18px;
    margin-top: 30px;
    overflow-x: auto;
    padding: 32px 32px 48px;
    scroll-snap-type: x mandatory;
}

.news-card {
    flex: 0 0 320px; /* base width of each card */
    scroll-snap-align: start;
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: 430px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.7s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 0;
    color: var(--dark);
}

.news-card:hover {
    transform: translateY(-6px);
}

.news-card:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.news-visual {
    height: 310px;
    min-height: 310px;
    max-height: 310px;
    display: grid;
    gap: 6px;
    padding: 6px;
    background: #f4efe9;
    overflow: hidden;
}

.news-img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 14px;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Layouts */
.news-visual.layout-single {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.news-visual.layout-two_equal {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
}

.news-visual.layout-left_two_right_one {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.news-visual.layout-left_two_right_one .img-1 {
    grid-column: 1;
    grid-row: 1;
}
.news-visual.layout-left_two_right_one .img-2 {
    grid-column: 1;
    grid-row: 2;
}
.news-visual.layout-left_two_right_one .img-3 {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.news-visual.layout-top_one_bottom_two {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.2fr 1fr;
}

.news-visual.layout-top_one_bottom_two .img-1 {
    grid-column: 1 / span 2;
    grid-row: 1;
}
.news-visual.layout-top_one_bottom_two .img-2 {
    grid-column: 1;
    grid-row: 2;
}
.news-visual.layout-top_one_bottom_two .img-3 {
    grid-column: 2;
    grid-row: 2;
}

.news-visual.layout-five_grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.news-visual.layout-five_grid .img-1 {
    grid-column: 1 / span 2;
    grid-row: 1;
}
.news-visual.layout-five_grid .img-2 {
    grid-column: 3;
    grid-row: 1;
}
.news-visual.layout-five_grid .img-3 {
    grid-column: 1;
    grid-row: 2;
}
.news-visual.layout-five_grid .img-4 {
    grid-column: 2;
    grid-row: 2;
}
.news-visual.layout-five_grid .img-5 {
    grid-column: 3;
    grid-row: 2;
}

.news-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    color: var(--muted);
    background: #f4efe9;
    border-radius: 14px;
}

.news-content {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    align-items: flex-start;
}

.news-content h3 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 8px;
    display: block;
    overflow: hidden;
}

.news-date {
    font-size: 13px;
    color: var(--muted);
    opacity: 0.9;
}

/* Modal */
.news-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.news-modal.active {
    display: flex;
}

.news-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(33, 33, 30, 0.55);
}

@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
    .news-modal-overlay {
        background: rgba(33, 33, 30, 0.30);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
}

.news-modal-content {
    position: relative;
    z-index: 2;
    width: min(920px, 100%);
    max-height: 88vh;
    overflow-y: auto;
    background: var(--white);
    border-radius: 28px;
    border: 1px solid var(--border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
    padding-bottom: 10px;
    animation: newsModalIn 0.28s ease;
}

@keyframes newsModalIn {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.news-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--dark);
    color: var(--white);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
}

.news-modal-text {
    padding: 24px 24px 30px;
}

.news-modal-text h3 {
    font-size: clamp(24px, 3vw, 34px);
    margin-bottom: 10px;
}

.news-modal-date {
    margin-bottom: 16px;
}

.news-modal-text p:last-child {
    color: var(--muted);
    white-space: pre-line;
}

/* Carousel */
.news-carousel {
    position: relative;
    padding: 20px 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.news-carousel-stage {
    flex: 1;
    width: 100%;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    background: #f4efe9;
}

.news-carousel-stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-carousel-btn {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border: none;
    border-radius: 50%;
    background: var(--dark);
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
}

.news-carousel-btn:hover {
    transform: scale(1.05);
    background: var(--primary);
}

.news-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 20px 0;
    flex-wrap: wrap;
}

.news-carousel-dots button {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: rgba(33, 33, 30, 0.2);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
}

.news-carousel-dots button.active {
    background: var(--primary);
    transform: scale(1.15);
}

.notice-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}

.notice-item {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding: 22px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    text-align: left;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--dark);
}

.notice-item:hover {
    transform: translateY(-3px);
}

.notice-item:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.notice-item-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.notice-item-main h3 {
    font-size: 18px;
    line-height: 1.4;
}

.notice-date {
    font-size: 13px;
    color: var(--muted);
    white-space: nowrap;
}

.notice-modal {
    position: fixed;
    inset: 0;
    z-index: 3100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.notice-modal.active {
    display: flex;
}

.notice-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(33, 33, 30, 0.55);
}

@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
    .notice-modal-overlay {
        background: rgba(33, 33, 30, 0.30);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
}

.notice-modal-content {
    position: relative;
    z-index: 2;
    width: min(760px, 100%);
    max-height: 88vh;
    overflow-y: auto;
    background: var(--white);
    border-radius: 28px;
    border: 1px solid var(--border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
    animation: noticeModalIn 0.28s ease;
}

@keyframes noticeModalIn {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.notice-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--dark);
    color: var(--white);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
}

.notice-modal-text {
    padding: 30px 28px 28px;
}

.notice-modal-text h3 {
    font-size: clamp(24px, 3vw, 34px);
    margin-bottom: 10px;
}

.notice-modal-date {
    margin-bottom: 18px;
}

.notice-modal-text p:last-of-type {
    color: var(--muted);
    white-space: pre-line;
}

.notice-files {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notice-file-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #fff7f1;
    border: 1px solid rgba(253, 105, 0, 0.15);
    color: var(--dark);
    font-size: 14px;
}

.notice-file-link:hover {
    background: var(--primary);
    color: var(--white);
}

.notice-file-link span {
    overflow-wrap: anywhere;
}

.notice-file-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.notice-file-name {
    overflow-wrap: anywhere;
}

.notice-file-type {
    display: inline-block;
    width: fit-content;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(253, 105, 0, 0.12);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.notice-file-link:hover .notice-file-type {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
}

.notice-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.notice-more-controls {
    margin-top: 8px;
    display: flex;
    gap: 10px;
}

/* Programs page */
.programs-page main {
    background: var(--bg);
}

.programs-hero h1 {
    font-size: clamp(32px, 5vw, 42px);
    margin-bottom: 14px;
}

.programs-hero p {
    color: var(--muted);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.program-card {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(33, 33, 30, 0.06);
    padding: 24px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.program-card-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.program-label {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.program-card--featured {
    border-color: rgba(253, 105, 0, 0.4);
    box-shadow: 0 16px 45px rgba(253, 105, 0, 0.18);
}

.program-card--featured .program-label {
    color: var(--primary);
}

.program-card h2 {
    font-size: 18px;
}

.program-price {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
}

.program-duration {
    font-size: 13px;
    color: var(--muted);
}

.program-description {
    font-size: 14px;
    color: var(--muted);
}

.program-benefits {
    list-style: none;
    padding-left: 0;
    margin: 4px 0 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
}

.program-benefits li::before {
    content: "•";
    color: var(--primary);
    margin-right: 6px;
}

.program-cta {
    margin-top: auto;
}

.program-btn {
    width: 100%;
    justify-content: center;
}

.programs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.programs-more-controls {
    margin-top: 4px;
    display: flex;
    gap: 10px;
}

/* About page */
.about-hero h1 {
    font-size: clamp(32px, 5vw, 42px);
    margin-bottom: 10px;
}

.about-kicker {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}

.about-lead {
    color: var(--muted);
    font-size: 15px;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 24px;
}

.about-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-card {
    background: var(--white);
    border-radius: 22px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 26px rgba(33, 33, 30, 0.06);
    padding: 22px 20px;
}

.about-card h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.about-card p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 10px;
}

.about-card p:last-child {
    margin-bottom: 0;
}

.about-metrics .about-stats {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-stats li {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(33,33,30,0.08);
}

.about-stats li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}

.stat-value {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin: 2px 0 4px;
}

.about-stats p {
    font-size: 13px;
}

.about-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
    gap: 20px;
}

.about-services-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    color: var(--muted);
}

.about-services-list li::before {
    content: "•";
    color: var(--primary);
    margin-right: 6px;
}

.about-quote {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-quote-text {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: var(--dark);
}

.about-image-card {
    padding: 0;
    min-height: 320px;
    overflow: hidden;
}

.about-image-fill {
    width: 100%;
    height: 100%;
    min-height: 320px;
    display: block;
    object-fit: cover;
}

/* Responsive layout */
@media (max-width: 992px) {
    .about-layout,
    .about-bottom {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content,
    .stats-grid,
    .footer-grid,
    .extra-grid,
    .news-grid,
    .programs-grid {
        grid-template-columns: 1fr;
    }

    .alumni-card {
        grid-template-columns: 1fr;
        flex: 0 0 280px;
    }
}

@media (max-width: 768px) {
    .news-card {
        height: auto;
        flex: 0 0 260px;
    }

    .news-visual {
        height: 260px;
        min-height: 260px;
        max-height: 260px;
    }

    .news-modal-gallery.has-grid {
        grid-template-columns: 1fr;
    }

    .news-modal-gallery img {
        height: 220px;
    }

    .news-carousel {
        padding: 16px 16px 0;
        gap: 8px;
    }

    .news-carousel-stage {
        height: 240px;
    }

    .news-carousel-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 20px;
    }

    .burger {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 80px;
        right: 4%;
        width: 260px;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 18px;
        box-shadow: var(--shadow);
        padding: 18px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav.show {
        display: flex;
    }

    .hero {
        min-height: 74vh;
        padding: 88px 0 42px;
        align-items: flex-start;
    }

    .hero-single {
        width: 100%;
    }

    .hero-text {
        max-width: 100%;
        padding: 22px 18px;
        border-radius: 18px;
    }

    .eyebrow {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .hero h1 {
        font-size: clamp(30px, 10vw, 44px);
        line-height: 1;
        margin-bottom: 16px;
    }

    .hero p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .btn-primary {
        min-height: 44px;
        padding: 12px 18px;
        font-size: 13px;
    }

    .university-main {
        align-items: flex-start;
    }

    .university-toggle {
        align-items: flex-start;
    }

    .brand span {
        font-size: 28px;
    }

    .notice-item-main {
        flex-direction: column;
        align-items: flex-start;
    }

    .notice-modal-text {
        padding: 26px 18px 22px;
    }
}
@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
        padding: 82px 0 36px;
    }

    .hero-text {
        padding: 18px 16px;
        border-radius: 16px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 13px;
    }
}