@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --bg: #f4f7fb;
    --bg-2: #eef4fa;
    --surface: rgba(255, 255, 255, 0.95);
    --surface-strong: #ffffff;
    --surface-dark: #102d5a;
    --surface-dark-2: rgba(16, 45, 90, 0.95);
    --line: rgba(25, 42, 70, 0.10);
    --line-strong: rgba(25, 42, 70, 0.18);
    --text: #11203a;
    --text-soft: #4b5a71;
    --text-light: #7f8ca1;
    --primary: #1f5aa8;
    --primary-2: #2b7bd1;
    --primary-3: #163f7c;
    --gold: #d8a32d;
    --success: #0f9d58;
    --warning: #e19e2b;
    --danger: #d94f4f;
    --purple: #7c3aed;
    --shadow-lg: 0 18px 42px rgba(16, 45, 90, 0.10);
    --shadow-md: 0 10px 24px rgba(16, 45, 90, 0.08);
    --shadow-sm: 0 4px 14px rgba(16, 45, 90, 0.06);
    --radius-xl: 18px;
    --radius-lg: 14px;
    --radius-md: 10px;
    --radius-sm: 8px;
    --container: 1280px;
    --transition: 180ms ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Manrope', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

.site-body {
    position: relative;
    overflow-x: hidden;
}

.ambient {
    display: none;
}

.ambient--one {
    width: 260px;
    height: 260px;
    top: 80px;
    left: -80px;
    background: radial-gradient(circle, rgba(15, 92, 143, 0.28), transparent 70%);
}

.ambient--two {
    width: 320px;
    height: 320px;
    top: 260px;
    right: -120px;
    background: radial-gradient(circle, rgba(15, 118, 110, 0.22), transparent 70%);
}

.ambient--three {
    width: 380px;
    height: 380px;
    bottom: -120px;
    left: 25%;
    background: radial-gradient(circle, rgba(217, 169, 61, 0.18), transparent 70%);
}

.topbar {
    position: relative;
    z-index: 20;
    color: rgba(255, 255, 255, 0.92);
    background: linear-gradient(90deg, #0f3a73, #1f5aa8 55%, #2b7bd1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 44px;
    padding-block: 8px;
}

.topbar__left,
.topbar__right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.topbar__chip,
.topbar__date,
.topbar__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
}

.topbar__link {
    opacity: 0.95;
    transition: opacity var(--transition), transform var(--transition);
}

.topbar__link:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.topbar__chip svg,
.topbar__date svg,
.topbar__link svg {
    width: 16px;
    height: 16px;
}

.site-header {
    position: relative;
    z-index: 40;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(25, 42, 70, 0.10);
    box-shadow: none;
}

.site-header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding-block: 12px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand__mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: white;
    background: linear-gradient(145deg, var(--primary), var(--primary-2));
    box-shadow: 0 10px 18px rgba(31, 90, 168, 0.18);
    flex: none;
}

.brand__mark span {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-align: center;
}

.brand__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand__text strong {
    font-size: 1rem;
    line-height: 1.2;
}

.brand__text small {
    color: var(--text-soft);
    font-size: 0.8rem;
    line-height: 1.3;
}

.nav-toggle,
.admin-topbar__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(30, 41, 59, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--text);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.nav-toggle svg,
.admin-topbar__toggle svg {
    width: 20px;
    height: 20px;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.site-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 0;
    color: var(--text);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    transition: color var(--transition), border-color var(--transition), transform var(--transition);
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
    color: var(--primary);
    transform: translateY(-1px);
}

.site-nav__icon {
    width: 16px;
    height: 16px;
    flex: none;
}

.site-search {
    min-width: 280px;
}

.site-search__label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 1);
    box-shadow: inset 0 0 0 1px rgba(25, 42, 70, 0.12);
}

.site-search__label input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--text);
}

.site-search__label input::placeholder {
    color: var(--text-light);
}

.site-search__label button {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(145deg, var(--primary), var(--primary-2));
    color: white;
    cursor: pointer;
    box-shadow: 0 10px 18px rgba(31, 90, 168, 0.18);
}

.site-search__label button svg {
    width: 18px;
    height: 18px;
}

.site-main {
    position: relative;
    padding: 24px 0 72px;
}

.flash {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(30, 41, 59, 0.08);
}

.flash--success {
    border-color: rgba(15, 157, 88, 0.18);
    background: rgba(236, 252, 243, 0.9);
}

.flash--danger {
    border-color: rgba(217, 79, 79, 0.18);
    background: rgba(255, 239, 239, 0.92);
}

.flash--info {
    border-color: rgba(15, 92, 143, 0.18);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 24px;
    align-items: stretch;
    margin-top: 8px;
    margin-bottom: 28px;
}

.hero__content,
.hero__feature {
    position: relative;
    min-height: 100%;
}

.hero__content {
    padding: 32px;
    border-radius: var(--radius-xl);
    color: white;
    background:
        linear-gradient(145deg, rgba(8, 48, 74, 0.96), rgba(15, 92, 143, 0.94)),
        linear-gradient(140deg, rgba(15, 118, 110, 0.8), rgba(217, 169, 61, 0.22));
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hero__content::before,
.hero__content::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.hero__content::before {
    width: 260px;
    height: 260px;
    top: -100px;
    right: -90px;
}

.hero__content::after {
    width: 160px;
    height: 160px;
    bottom: -60px;
    left: -30px;
}

.hero__content h1 {
    position: relative;
    margin: 0 0 14px;
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    max-width: 11ch;
}

.hero__content p {
    position: relative;
    margin: 0;
    max-width: 62ch;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
    font-size: 1.02rem;
}

.hero__actions {
    position: relative;
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.hero__metrics {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.metric {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.metric strong {
    display: block;
    font-size: 1.6rem;
    line-height: 1.1;
}

.metric span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
}

.hero__feature {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero__feature-stack {
    display: grid;
    gap: 14px;
    height: 100%;
}

.feature-card {
    position: relative;
    display: block;
    min-height: 100%;
    border-radius: inherit;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(15, 92, 143, 0.9), rgba(15, 118, 110, 0.88));
}

.feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 520px;
    filter: saturate(1.02);
}

.feature-card--hero img {
    min-height: 370px;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(4, 10, 20, 0.06) 0%, rgba(4, 10, 20, 0.18) 30%, rgba(4, 10, 20, 0.68) 100%);
}

.feature-card__overlay {
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    padding: 28px;
    color: white;
}

.feature-card__badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.feature-card__overlay h2 {
    margin: 0 0 8px;
    font-size: clamp(1.5rem, 2vw, 2.2rem);
    line-height: 1.12;
}

.feature-card__overlay p {
    margin: 0;
    max-width: 45ch;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
}

.feature-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-weight: 700;
}

.hero__mini-grid {
    display: grid;
    gap: 14px;
}

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

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

.hero-mini-card {
    position: relative;
    display: block;
    min-height: 168px;
    border-radius: 24px;
    overflow: hidden;
    isolation: isolate;
    box-shadow: var(--shadow-sm);
    background: linear-gradient(145deg, rgba(15, 92, 143, 0.92), rgba(15, 118, 110, 0.88));
}

.hero-mini-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.02);
    transform: scale(1);
    transition: transform var(--transition), filter var(--transition);
}

.hero-mini-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(4, 10, 20, 0.02) 0%, rgba(4, 10, 20, 0.16) 36%, rgba(4, 10, 20, 0.72) 100%);
    z-index: 0;
}

.hero-mini-card:hover img {
    transform: scale(1.04);
    filter: saturate(1.08);
}

.hero-mini-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    color: white;
}

.hero-mini-card__badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 10px;
    margin-bottom: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-mini-card__overlay strong {
    font-size: 1rem;
    line-height: 1.35;
}

.hero-mini-card__overlay small {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.8rem;
}

.top-alert {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
    margin-bottom: 16px;
    padding: 18px 20px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 250, 235, 0.96), rgba(255, 255, 255, 0.88)),
        linear-gradient(145deg, rgba(15, 92, 143, 0.08), rgba(15, 118, 110, 0.08));
    border: 1px solid rgba(225, 158, 43, 0.18);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(18px);
}

.top-alert__icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(225, 158, 43, 0.18), rgba(217, 169, 61, 0.24));
    color: #8a5c00;
    flex: none;
}

.top-alert__icon svg {
    width: 26px;
    height: 26px;
}

.top-alert__content {
    flex: 1;
    min-width: 0;
}

.top-alert__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(225, 158, 43, 0.12);
    color: #8a5c00;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.top-alert__content strong {
    display: block;
    font-size: clamp(1.05rem, 1.55vw, 1.4rem);
    line-height: 1.25;
}

.top-alert__content p {
    margin: 10px 0 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.top-alert__content small {
    display: block;
    margin-top: 8px;
    color: var(--text-light);
    font-size: 0.82rem;
}

.top-alert__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: none;
}

.top-alert__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(145deg, var(--primary), var(--primary-2));
    color: white;
    font-weight: 800;
    box-shadow: 0 16px 28px rgba(15, 92, 143, 0.18);
    transition: transform var(--transition), box-shadow var(--transition);
}

.top-alert__link:hover,
.top-alert__link:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 18px 32px rgba(15, 92, 143, 0.22);
}

.news-band {
    display: flex;
    align-items: stretch;
    gap: 16px;
    margin-top: 12px;
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(30, 41, 59, 0.08);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(18px);
    overflow: hidden;
}

.news-band__label {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: none;
    min-width: 180px;
    padding-right: 16px;
    border-right: 1px solid rgba(30, 41, 59, 0.08);
}

.news-band__label svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
    flex: none;
}

.news-band__label strong {
    display: block;
    font-size: 0.92rem;
    line-height: 1.2;
}

.news-band__label small {
    display: block;
    margin-top: 4px;
    color: var(--text-soft);
    font-size: 0.78rem;
}

.news-band__viewport {
    flex: 1;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.news-band__track {
    display: flex;
    align-items: stretch;
    gap: 12px;
    width: max-content;
    animation: newsTicker 28s linear infinite;
}

.news-band:hover .news-band__track,
.news-band:focus-within .news-band__track {
    animation-play-state: paused;
}

.news-band__item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-width: 280px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(15, 92, 143, 0.06);
    border: 1px solid rgba(15, 92, 143, 0.08);
    white-space: nowrap;
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.news-band__item:hover,
.news-band__item:focus-visible {
    transform: translateY(-1px);
    background: rgba(15, 92, 143, 0.10);
    border-color: rgba(15, 92, 143, 0.14);
}

.news-band__tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.12);
    color: var(--primary-2);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.news-band__item strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.92rem;
}

.news-band__item small {
    color: var(--text-soft);
    font-size: 0.78rem;
}

@keyframes newsTicker {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.site-banner {
    background: #ffffff;
    border-bottom: 1px solid rgba(25, 42, 70, 0.10);
}

.site-banner__inner {
    padding-block: 8px 12px;
}

.site-banner__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    text-align: center;
}

.site-banner__head-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 8px 12px;
    color: var(--primary-3);
    font-size: clamp(1.1rem, 2vw, 1.85rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.site-banner__head-title--right {
    color: white;
    background: var(--primary-3);
}

.site-banner__head-mark {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: white;
    background: linear-gradient(145deg, var(--primary), var(--primary-2));
    border: 4px solid #ffffff;
    box-shadow: 0 8px 18px rgba(25, 42, 70, 0.18);
    flex: none;
}

.site-banner__head-mark span {
    display: inline-block;
    width: 100%;
    padding: 0 8px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-align: center;
}

.site-banner__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px minmax(0, 1fr);
    align-items: stretch;
    overflow: hidden;
    border: 1px solid rgba(25, 42, 70, 0.12);
}

.site-banner__frame {
    position: relative;
    margin: 0;
    min-height: 170px;
    overflow: hidden;
    background: #dce8f7;
}

.site-banner__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-banner__crest {
    display: grid;
    place-items: center;
    gap: 10px;
    padding: 12px;
    color: white;
    background:
        radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.20), transparent 46%),
        linear-gradient(180deg, #2b7bd1, #1f5aa8);
}

.site-banner__crest span {
    display: inline-grid;
    place-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 4px solid rgba(255, 255, 255, 0.8);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-align: center;
}

.site-banner__slogans {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid rgba(25, 42, 70, 0.12);
    border-top: 0;
}

.site-banner__slogans span {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 10px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.45;
}

.site-banner__slogans span:first-child {
    color: white;
    background: var(--primary-3);
}

.site-banner__slogans span:last-child {
    color: var(--primary-3);
    background: #eaf1fb;
    justify-content: flex-end;
    text-align: right;
}

.hero__feature--slider {
    display: flex;
    min-height: 520px;
    background: linear-gradient(145deg, rgba(15, 92, 143, 0.96), rgba(15, 118, 110, 0.92));
}

.hero-slider {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 520px;
}

.hero-slider__viewport {
    position: relative;
    flex: 1;
    min-height: 520px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    overflow: hidden;
    display: grid;
    grid-template-rows: 1fr auto;
    opacity: 0;
    transform: translateX(28px) scale(0.985);
    transition: opacity 420ms ease, transform 420ms ease;
    pointer-events: none;
    background: linear-gradient(145deg, rgba(15, 92, 143, 0.92), rgba(15, 118, 110, 0.88));
    color: white;
}

.hero-slide.is-active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    z-index: 1;
}

.hero-slide__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(4, 10, 20, 0.04) 0%, rgba(4, 10, 20, 0.18) 32%, rgba(4, 10, 20, 0.72) 100%);
}

.hero-slide__overlay {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100%;
    padding: 28px 28px 88px;
    gap: 12px;
}

.hero-slide__badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-slide__overlay h2 {
    margin: 0;
    font-size: clamp(1.7rem, 2.7vw, 2.8rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.hero-slide__overlay p {
    margin: 0;
    max-width: 46ch;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
}

.hero-slide__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-slide__footer span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
}

.hero-slide__footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-weight: 800;
    transition: transform var(--transition), background var(--transition);
}

.hero-slide__footer a:hover,
.hero-slide__footer a:focus-visible {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.22);
}

.hero-slider__controls {
    position: absolute;
    inset: auto 18px 18px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    pointer-events: none;
}

.hero-slider__nav,
.hero-slider__dot {
    border: 0;
    cursor: pointer;
}

.hero-slider__nav {
    pointer-events: auto;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    color: white;
    background: rgba(15, 23, 42, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), background var(--transition);
}

.hero-slider__nav:hover,
.hero-slider__nav:focus-visible {
    transform: translateY(-1px);
    background: rgba(15, 23, 42, 0.42);
}

.hero-slider__nav svg {
    width: 18px;
    height: 18px;
}

.hero-slider__nav--prev svg {
    transform: rotate(180deg);
}

.hero-slider__dots {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.26);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}

.hero-slider__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    transition: width var(--transition), background var(--transition), transform var(--transition);
}

.hero-slider__dot.is-active {
    width: 28px;
    background: white;
}

.hero-slider__dot:hover,
.hero-slider__dot:focus-visible {
    transform: scale(1.12);
}

.panel {
    position: relative;
    padding: 24px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(30, 41, 59, 0.08);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
}

.panel--soft {
    background: rgba(255, 255, 255, 0.7);
}

.panel--accent {
    background:
        linear-gradient(145deg, rgba(15, 92, 143, 0.97), rgba(15, 118, 110, 0.92));
    color: white;
    border-color: rgba(255, 255, 255, 0.08);
}

.panel--accent .section-heading a,
.panel--accent .section-heading span,
.panel--accent .section-heading h2,
.panel--accent p,
.panel--accent small,
.panel--accent strong {
    color: inherit;
}

.panel--accent .notice-item,
.panel--accent .resource-item,
.panel--accent .category-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.10);
}

.section-grid {
    display: grid;
    gap: 24px;
    margin-top: 24px;
}

.section-grid--two {
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.9fr);
}

.section-block {
    margin-top: 24px;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(31, 90, 168, 0.32);
}

.section-heading span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    margin-bottom: 10px;
    border-radius: 0;
    background: var(--primary-2);
    color: white;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    line-height: 1.14;
    letter-spacing: -0.03em;
}

.section-heading a {
    color: var(--primary);
    font-weight: 700;
}

.portal-section {
    margin-top: 24px;
}

.portal-feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.95fr);
    gap: 16px;
}

.portal-feature-card,
.portal-mini-card,
.portal-highlight-card,
.portal-side-card {
    background: #ffffff;
    border: 1px solid rgba(25, 42, 70, 0.10);
    box-shadow: var(--shadow-sm);
}

.portal-feature-card {
    overflow: hidden;
}

.portal-feature-card__media {
    display: block;
}

.portal-feature-card__media img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #dce8f7;
}

.portal-feature-card__body {
    padding: 16px 18px 18px;
}

.portal-feature-card__body h3 {
    margin: 10px 0 8px;
    font-size: 1.12rem;
    line-height: 1.36;
}

.portal-feature-card__body p {
    margin: 10px 0 0;
    color: var(--text-soft);
    line-height: 1.76;
}

.portal-feature-card__more {
    display: inline-flex;
    align-items: center;
    margin-top: 14px;
    color: var(--primary);
    font-weight: 800;
}

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

.portal-mini-card {
    overflow: hidden;
}

.portal-mini-card__media {
    position: relative;
    display: block;
}

.portal-mini-card__media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #dce8f7;
}

.portal-mini-card__overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 12px 12px 10px;
    background: linear-gradient(180deg, transparent, rgba(5, 13, 28, 0.78));
    color: white;
}

.portal-mini-card__overlay span {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    margin-bottom: 6px;
    background: rgba(31, 90, 168, 0.88);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.portal-mini-card__overlay strong {
    display: block;
    font-size: 0.95rem;
    line-height: 1.34;
}

.portal-columns {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(260px, 0.78fr);
    gap: 16px;
    margin-top: 24px;
}

.portal-columns--wide {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.portal-panel {
    padding: 18px;
    background: #ffffff;
    border: 1px solid rgba(25, 42, 70, 0.10);
    box-shadow: var(--shadow-sm);
}

.portal-highlight-card {
    overflow: hidden;
}

.portal-highlight-card__media {
    display: block;
}

.portal-highlight-card__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #dce8f7;
}

.portal-highlight-card--tall .portal-highlight-card__media img {
    aspect-ratio: 16 / 10;
}

.portal-highlight-card--document .portal-highlight-card__media img {
    object-fit: contain;
    padding: 18px;
    background: #eef4fa;
}

.portal-highlight-card__body {
    padding: 14px 16px 16px;
}

.portal-highlight-card__body h3 {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.38;
}

.portal-highlight-card__body p {
    margin: 10px 0 0;
    color: var(--text-soft);
    line-height: 1.75;
}

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

.portal-list-item {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 10px;
    border: 1px solid rgba(25, 42, 70, 0.10);
    background: #ffffff;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.portal-list-item:hover,
.portal-list-item:focus-visible {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(31, 90, 168, 0.18);
}

.portal-list-item img {
    width: 86px;
    height: 64px;
    object-fit: cover;
    background: #dce8f7;
}

.portal-list-item svg {
    width: 34px;
    height: 34px;
    color: var(--primary);
    margin-top: 6px;
}

.portal-list-item__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.portal-list-item strong {
    font-size: 0.95rem;
    line-height: 1.35;
}

.portal-list-item span {
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.portal-list-item small {
    color: var(--text-soft);
    font-size: 0.82rem;
}

.portal-sidebar {
    display: grid;
    gap: 12px;
    align-content: start;
}

.portal-side-card {
    overflow: hidden;
}

.portal-side-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #dce8f7;
}

.portal-side-card__body {
    padding: 12px 14px 14px;
}

.portal-side-card__body strong {
    display: block;
    margin-bottom: 6px;
    line-height: 1.35;
}

.portal-side-card__body small {
    color: var(--text-soft);
    line-height: 1.6;
}

.portal-quick-links {
    display: grid;
    gap: 10px;
}

.portal-quick-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    color: #ffffff;
    background: var(--primary);
    border: 1px solid rgba(25, 42, 70, 0.08);
    font-weight: 800;
}

.portal-quick-links a:nth-child(2) {
    background: #2b7bd1;
}

.portal-quick-links a:nth-child(3) {
    background: #1a79a0;
}

.portal-quick-links svg {
    width: 18px;
    height: 18px;
    flex: none;
}

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

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

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

.news-card {
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(30, 41, 59, 0.08);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.news-card__media {
    display: block;
}

.news-card__media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: linear-gradient(140deg, rgba(15, 92, 143, 0.18), rgba(15, 118, 110, 0.18));
}

.news-card__body {
    padding: 18px;
}

.news-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    color: var(--text-soft);
    font-size: 0.84rem;
    margin-bottom: 10px;
}

.news-card__body h3,
.news-card__body h2 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.35;
}

.news-card__body p {
    margin: 10px 0 0;
    color: var(--text-soft);
    line-height: 1.72;
}

.news-card--stack {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
}

.news-card--stack .news-card__media img {
    height: 100%;
    aspect-ratio: auto;
    min-height: 100%;
}

.news-card--stack .news-card__body {
    padding: 16px;
}

.notice-list,
.resource-list,
.stack-links,
.related-list,
.quick-links {
    display: grid;
    gap: 12px;
}

.notice-item,
.resource-item,
.stack-links a,
.related-list a,
.quick-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 15px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(30, 41, 59, 0.08);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.notice-item:hover,
.resource-item:hover,
.stack-links a:hover,
.related-list a:hover,
.quick-links a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.notice-item {
    align-items: flex-start;
    flex-direction: column;
}

.notice-item__date {
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.notice-item strong {
    line-height: 1.45;
}

.notice-item small,
.resource-item small,
.related-list small,
.stack-links small {
    color: var(--text-soft);
}

.resource-item svg,
.quick-links svg,
.stack-links svg,
.related-list svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex: none;
}

.resource-item {
    justify-content: space-between;
}

.resource-item__cta {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(15, 92, 143, 0.08);
}

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

.category-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 106px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(30, 41, 59, 0.08);
    transition: transform var(--transition), box-shadow var(--transition);
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.category-card strong {
    font-size: 1rem;
    line-height: 1.35;
}

.category-card span {
    margin-top: 10px;
    color: var(--text-soft);
    font-size: 0.88rem;
}

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

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

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

.gallery-card {
    position: relative;
    min-height: 260px;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(140deg, rgba(15, 92, 143, 0.18), rgba(15, 118, 110, 0.18));
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-card__overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 16px;
    color: white;
    background: linear-gradient(180deg, transparent, rgba(4, 10, 20, 0.78));
}

.gallery-card__overlay strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.gallery-card__overlay span {
    display: block;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.6;
    font-size: 0.9rem;
}

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

.gallery-photo {
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(30, 41, 59, 0.08);
}

.gallery-photo img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.gallery-photo figcaption {
    padding: 14px 16px;
    color: var(--text-soft);
    line-height: 1.6;
}

.timeline {
    position: relative;
    display: grid;
    gap: 18px;
    padding-left: 16px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 5px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(15, 92, 143, 0.8), rgba(15, 118, 110, 0.5));
}

.timeline-item {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 14px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(145deg, var(--primary), var(--primary-2));
    box-shadow: 0 0 0 4px rgba(15, 92, 143, 0.12);
}

.timeline-item__date {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(30, 41, 59, 0.08);
}

.timeline-item__date strong {
    font-size: 1rem;
}

.timeline-item__date span {
    color: var(--text-soft);
    font-size: 0.86rem;
}

.timeline-item__body {
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(30, 41, 59, 0.08);
    box-shadow: var(--shadow-sm);
}

.timeline-item__tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(15, 92, 143, 0.09);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.timeline-item__body h2 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    line-height: 1.4;
}

.timeline-item__body p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.75;
}

.page-hero {
    padding: 24px;
    margin-bottom: 24px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(30, 41, 59, 0.08);
    box-shadow: var(--shadow-sm);
}

.page-hero__crumbs {
    display: inline-block;
    color: var(--text-soft);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.page-hero p {
    margin: 10px 0 0;
    max-width: 70ch;
    color: var(--text-soft);
    line-height: 1.8;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.38fr) minmax(320px, 0.82fr);
    gap: 24px;
}

.article {
    padding: 0;
    overflow: hidden;
}

.article__head,
.article__summary,
.article__content,
.article__foot {
    padding: 22px 24px;
}

.article__head h1 {
    margin: 10px 0 14px;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.article__category {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15, 92, 143, 0.09);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    color: var(--text-soft);
}

.article__meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.article__media img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
}

.article__summary {
    color: var(--text-soft);
    line-height: 1.8;
    font-weight: 600;
}

.article__content {
    line-height: 1.9;
    color: var(--text);
}

.article__content p {
    margin-top: 0;
}

.article__foot {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(30, 41, 59, 0.08);
}

.article-sidebar {
    display: grid;
    gap: 18px;
}

.related-list a {
    align-items: center;
}

.related-list img {
    width: 78px;
    height: 58px;
    object-fit: cover;
    border-radius: 14px;
    flex: none;
}

.table-wrap {
    overflow-x: auto;
    border-radius: 18px;
    border: 1px solid rgba(30, 41, 59, 0.08);
}

.table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
    background: rgba(255, 255, 255, 0.86);
}

.table thead th {
    padding: 16px 18px;
    text-align: left;
    font-size: 0.82rem;
    color: var(--text-soft);
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(15, 92, 143, 0.04);
    border-bottom: 1px solid rgba(30, 41, 59, 0.08);
}

.table tbody td {
    padding: 16px 18px;
    vertical-align: top;
    border-bottom: 1px solid rgba(30, 41, 59, 0.08);
}

.table tbody tr:hover {
    background: rgba(15, 92, 143, 0.03);
}

.table__empty {
    text-align: center;
    color: var(--text-soft);
    padding: 30px 18px;
}

.table-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.table-title strong {
    display: block;
    line-height: 1.4;
}

.table-title small {
    display: block;
    color: var(--text-soft);
}

.table-thumb {
    width: 54px;
    height: 40px;
    object-fit: cover;
    border-radius: 12px;
    flex: none;
    background: linear-gradient(140deg, rgba(15, 92, 143, 0.16), rgba(15, 118, 110, 0.16));
}

.table-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.panel__header h1,
.panel__header h2 {
    margin: 0;
    font-size: clamp(1.4rem, 2vw, 2rem);
    line-height: 1.15;
}

.panel__header p {
    margin: 8px 0 0;
    color: var(--text-soft);
}

.panel__header-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.panel__footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 18px;
}

.panel__subsection {
    margin-top: 18px;
}

.toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.toolbar__search {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 300px;
}

.toolbar__search .input {
    flex: 1;
}

.toolbar__extra {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

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

.form-grid--inline {
    align-items: end;
}

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

.field--full {
    grid-column: 1 / -1;
}

.field__label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
}

.field__help {
    color: var(--text-soft);
    font-size: 0.82rem;
    line-height: 1.55;
}

.field__preview {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(15, 92, 143, 0.05);
    border: 1px solid rgba(15, 92, 143, 0.08);
}

.field__preview img {
    width: 110px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
}

.input,
.check {
    width: 100%;
}

.input {
    display: block;
    width: 100%;
    padding: 13px 14px;
    border-radius: 16px;
    border: 1px solid rgba(30, 41, 59, 0.12);
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition), background var(--transition);
}

.input::placeholder {
    color: var(--text-light);
}

.input:focus {
    border-color: rgba(15, 92, 143, 0.32);
    box-shadow: 0 0 0 4px rgba(15, 92, 143, 0.08);
    background: white;
}

.input--editor {
    min-height: 240px;
    resize: vertical;
    line-height: 1.75;
}

textarea.input {
    min-height: 150px;
}

select.input {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--text-soft) 50%), linear-gradient(135deg, var(--text-soft) 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(50% - 2px), calc(100% - 14px) calc(50% - 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 42px;
}

.check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid rgba(30, 41, 59, 0.08);
    background: rgba(255, 255, 255, 0.72);
    cursor: pointer;
}

.check input {
    width: 18px;
    height: 18px;
    margin: 0;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    grid-column: 1 / -1;
    margin-top: 4px;
    flex-wrap: wrap;
}

.notice {
    padding: 14px 16px;
    margin-bottom: 16px;
    border-radius: 16px;
    background: rgba(15, 92, 143, 0.06);
    border: 1px solid rgba(15, 92, 143, 0.12);
}

.notice--danger {
    background: rgba(217, 79, 79, 0.08);
    border-color: rgba(217, 79, 79, 0.16);
}

.btn,
.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn {
    padding: 12px 16px;
}

.btn--block {
    width: 100%;
}

.btn svg,
.action-btn svg {
    width: 16px;
    height: 16px;
    flex: none;
}

.btn--primary {
    color: white;
    background: linear-gradient(145deg, var(--primary), var(--primary-2));
    box-shadow: 0 16px 28px rgba(15, 92, 143, 0.22);
}

.btn--primary:hover {
    transform: translateY(-1px);
}

.btn--ghost,
.btn--soft {
    color: var(--text);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(30, 41, 59, 0.10);
}

.btn--soft {
    background: rgba(15, 92, 143, 0.06);
    color: var(--primary);
}

.btn:hover,
.action-btn:hover {
    transform: translateY(-1px);
}

.action-btn {
    padding: 10px 12px;
    font-size: 0.9rem;
}

.action-btn--soft {
    background: rgba(15, 92, 143, 0.08);
    color: var(--primary);
}

.action-btn--ghost {
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
    border: 1px solid rgba(30, 41, 59, 0.08);
}

.action-btn--secondary {
    background: rgba(15, 118, 110, 0.10);
    color: var(--primary-2);
}

.action-btn--danger {
    background: rgba(217, 79, 79, 0.12);
    color: var(--danger);
}

.action-btn__icon {
    width: 15px;
    height: 15px;
}

.action-stack {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.inline-form {
    display: inline-flex;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: rgba(30, 41, 59, 0.06);
    color: var(--text-soft);
}

.badge--success {
    background: rgba(15, 157, 88, 0.12);
    color: #0f7a43;
}

.badge--muted {
    background: rgba(30, 41, 59, 0.08);
    color: var(--text-soft);
}

.badge--warning {
    background: rgba(225, 158, 43, 0.14);
    color: #8a5c00;
}

.badge--danger {
    background: rgba(217, 79, 79, 0.12);
    color: var(--danger);
}

.badge--purple {
    background: rgba(124, 58, 237, 0.12);
    color: var(--purple);
}

.badge--neutral {
    background: rgba(30, 41, 59, 0.08);
    color: var(--text-soft);
}

.pagination {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.pagination__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 42px;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(30, 41, 59, 0.08);
    color: var(--text);
}

.pagination__link--active {
    color: white;
    background: linear-gradient(145deg, var(--primary), var(--primary-2));
    border-color: transparent;
}

.pagination__link--prev,
.pagination__link--next {
    padding-inline: 14px;
}

.pagination__icon {
    width: 14px;
    height: 14px;
}

.pagination__icon--prev {
    transform: rotate(180deg);
}

.dashboard {
    display: grid;
    gap: 22px;
}

.dashboard__hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px;
}

.dashboard__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dashboard__hero h1 {
    margin: 0 0 10px;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.08;
}

.dashboard__hero p {
    margin: 0;
    max-width: 62ch;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.86);
}

.dashboard__hero-card {
    display: grid;
    gap: 12px;
    min-width: 220px;
}

.dashboard__hero-card-inner {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.dashboard__hero-card-inner strong {
    display: block;
    font-size: 2rem;
    line-height: 1.05;
}

.dashboard__hero-card-inner span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.stat-card {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.80);
    border: 1px solid rgba(30, 41, 59, 0.08);
    box-shadow: var(--shadow-sm);
}

.stat-card span {
    display: block;
    color: var(--text-soft);
    font-size: 0.86rem;
    margin-bottom: 10px;
}

.stat-card strong {
    font-size: 1.9rem;
    line-height: 1.05;
}

.dashboard-table {
    display: grid;
    gap: 10px;
}

.dashboard-table__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(30, 41, 59, 0.08);
}

.dashboard-table__row strong {
    display: block;
    line-height: 1.4;
}

.dashboard-table__row small {
    color: var(--text-soft);
}

.dashboard-table__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--text-soft);
    font-size: 0.88rem;
}

.dashboard-table--compact .dashboard-table__row {
    padding-block: 12px;
}

.detail-card {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(30, 41, 59, 0.08);
    box-shadow: var(--shadow-sm);
}

.detail-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.detail-card__head strong {
    display: block;
    font-size: 1.1rem;
}

.detail-card__head small {
    color: var(--text-soft);
}

.detail-card__meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    color: var(--text-soft);
    font-size: 0.88rem;
}

.detail-card h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
}

.detail-card p {
    margin: 0;
    line-height: 1.75;
    color: var(--text);
}

.contact-card {
    display: grid;
    gap: 12px;
}

.contact-card__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 15px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(30, 41, 59, 0.08);
}

.contact-card__item svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex: none;
}

.map-frame {
    margin-top: 18px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(30, 41, 59, 0.08);
    box-shadow: var(--shadow-sm);
}

.map-frame__placeholder {
    min-height: 220px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 20px;
    background:
        linear-gradient(140deg, rgba(15, 92, 143, 0.12), rgba(15, 118, 110, 0.10)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 8px, rgba(255, 255, 255, 0.03) 8px 16px);
}

.map-frame__placeholder strong {
    display: block;
    margin-bottom: 8px;
}

.map-frame__placeholder p {
    margin: 0;
    max-width: 44ch;
    line-height: 1.75;
    color: var(--text-soft);
}

.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15, 92, 143, 0.08);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
}

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

.gallery-admin-card {
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(30, 41, 59, 0.08);
    box-shadow: var(--shadow-sm);
}

.gallery-admin-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.gallery-admin-card__body {
    padding: 14px 16px;
}

.gallery-admin-card__body strong {
    display: block;
    line-height: 1.45;
}

.gallery-admin-card__body small {
    display: block;
    margin-top: 8px;
    color: var(--text-soft);
}

.gallery-admin-card__actions {
    padding: 0 16px 16px;
}

.login-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 20% 10%, rgba(15, 92, 143, 0.16), transparent 28%),
        radial-gradient(circle at 84% 20%, rgba(15, 118, 110, 0.16), transparent 24%),
        linear-gradient(180deg, #eaf2f9 0%, #f5f9fd 100%);
}

.login-shell {
    width: min(100% - 32px, 560px);
}

.login-card {
    padding: 30px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(30, 41, 59, 0.08);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
}

.login-card h1 {
    margin: 20px 0 10px;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    line-height: 1.15;
}

.login-card p {
    margin: 0 0 18px;
    color: var(--text-soft);
    line-height: 1.75;
}

.login-form {
    display: grid;
    gap: 16px;
}

.login-card__footer {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.admin-body {
    background:
        radial-gradient(circle at 10% 10%, rgba(15, 92, 143, 0.08), transparent 24%),
        linear-gradient(180deg, #eef4fa 0%, #f7fbff 100%);
}

.admin-shell {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    min-height: 100vh;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    align-self: start;
    height: 100vh;
    overflow: auto;
    padding: 18px;
    background: linear-gradient(180deg, #07121d 0%, #0e1b2d 100%);
    color: rgba(255, 255, 255, 0.92);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-sidebar__brand {
    margin-bottom: 18px;
}

.brand--admin .brand__mark,
.brand--login .brand__mark {
    background: linear-gradient(145deg, var(--primary), var(--primary-2));
}

.brand--admin .brand__text strong,
.brand--login .brand__text strong {
    color: white;
}

.brand--admin .brand__text small,
.brand--login .brand__text small {
    color: rgba(255, 255, 255, 0.72);
}

.admin-menu {
    display: grid;
    gap: 18px;
}

.admin-menu__group {
    display: grid;
    gap: 8px;
}

.admin-menu__label {
    padding: 6px 10px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-menu__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 13px;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.82);
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.admin-menu__link:hover,
.admin-menu__link:focus-visible,
.admin-menu__link--active {
    color: white;
    background: rgba(255, 255, 255, 0.09);
    transform: translateX(2px);
}

.admin-menu__icon {
    width: 16px;
    height: 16px;
    flex: none;
}

.admin-main {
    min-width: 0;
}

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 24px;
    background: rgba(247, 251, 255, 0.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(30, 41, 59, 0.08);
}

.admin-topbar__title {
    flex: 1;
    min-width: 0;
}

.admin-topbar__title strong {
    display: block;
    font-size: 1.1rem;
}

.admin-topbar__title span {
    display: block;
    margin-top: 4px;
    color: var(--text-soft);
    font-size: 0.88rem;
}

.admin-topbar__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-topbar__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(30, 41, 59, 0.08);
}

.admin-content {
    padding: 24px;
}

.admin-content .panel {
    background: rgba(255, 255, 255, 0.86);
}

.admin-content .panel--soft {
    background: rgba(255, 255, 255, 0.72);
}

.admin-content .panel--accent {
    background: linear-gradient(145deg, rgba(15, 92, 143, 0.95), rgba(15, 118, 110, 0.92));
}

.admin-body .input,
.admin-body select.input,
.admin-body textarea.input {
    background: rgba(255, 255, 255, 0.96);
}

.admin-body .table {
    background: rgba(255, 255, 255, 0.94);
}

.admin-body .brand__mark span {
    color: white;
}

.admin-body .flash,
.admin-body .notice,
.admin-body .detail-card {
    background: rgba(255, 255, 255, 0.9);
}

.admin-body .badge--purple {
    background: rgba(124, 58, 237, 0.12);
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero,
.panel,
.page-hero,
.news-card,
.gallery-card,
.stat-card,
.timeline-item__body,
.timeline-item__date,
.dashboard__hero,
.dashboard__hero-card-inner,
.login-card {
    animation: floatUp 0.55s ease both;
}

.hero__feature,
.news-card,
.category-card,
.resource-item,
.notice-item,
.gallery-card,
.gallery-photo,
.timeline-item__body,
.timeline-item__date,
.dashboard__hero,
.stat-card,
.login-card,
.panel {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .news-band__track {
        animation: none !important;
    }

    .hero-slide {
        transform: none !important;
    }
}

@media (max-width: 1240px) {
    .hero,
    .section-grid--two,
    .article-layout {
        grid-template-columns: 1fr;
    }

    .hero__feature--slider,
    .hero-slider,
    .hero-slider__viewport {
        min-height: 460px;
    }

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

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

    .gallery-strip,
    .gallery-strip--albums,
    .gallery-grid,
    .gallery-admin-grid,
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .site-header__inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .site-nav {
        display: none;
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 6px;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }

    body.nav-open .site-nav {
        display: grid;
        padding: 16px;
        background: rgba(247, 251, 255, 0.96);
        backdrop-filter: blur(18px);
        border-bottom: 1px solid rgba(30, 41, 59, 0.08);
        box-shadow: var(--shadow-md);
        transform: translateY(-12px);
        transition: opacity var(--transition), transform var(--transition);
    }

    body.nav-open .site-nav {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .site-search {
        grid-column: 1 / -1;
        min-width: 0;
    }

    .nav-toggle,
    .admin-topbar__toggle {
        display: inline-flex;
    }

    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: fixed;
        inset: 0 auto 0 0;
        width: 300px;
        transform: translateX(-102%);
        transition: transform var(--transition);
        z-index: 30;
    }

    body.sidebar-open .admin-sidebar {
        transform: translateX(0);
    }

    .hero__feature--slider,
    .hero-slider,
    .hero-slider__viewport {
        min-height: 440px;
    }
}

@media (max-width: 720px) {
    .topbar {
        display: none;
    }

    .topbar__inner,
    .topbar__left,
    .topbar__right,
    .section-heading,
    .panel__header,
    .toolbar,
    .dashboard__hero,
    .dashboard__hero-card,
    .admin-topbar,
    .admin-topbar__actions,
    .article__foot {
        align-items: flex-start;
        flex-direction: column;
    }

    .topbar__left,
    .topbar__right,
    .site-nav {
        width: 100%;
    }

    .top-alert {
        align-items: flex-start;
        flex-direction: column;
    }

    .top-alert__actions {
        width: 100%;
    }

    .top-alert__link {
        width: 100%;
    }

    .news-band {
        flex-direction: column;
        align-items: stretch;
    }

    .news-band__label {
        min-width: 0;
        padding-right: 0;
        padding-bottom: 12px;
        border-right: 0;
        border-bottom: 1px solid rgba(30, 41, 59, 0.08);
    }

    .news-band__viewport {
        -webkit-mask-image: none;
        mask-image: none;
    }

    .site-header__inner {
        grid-template-columns: 1fr auto;
    }

    .site-banner__head {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .site-banner__head-mark {
        order: -1;
        margin-inline: auto;
    }

    .site-banner__grid,
    .site-banner__slogans,
    .portal-feature-grid,
    .portal-columns,
    .portal-columns--wide,
    .portal-mini-grid {
        grid-template-columns: 1fr;
    }

    .site-banner__frame {
        min-height: 128px;
    }

    .site-banner__crest {
        min-height: 120px;
    }

    .site-banner__slogans span:last-child {
        justify-content: flex-start;
        text-align: left;
    }

    .portal-columns {
        gap: 14px;
    }

    .portal-panel {
        padding: 16px;
    }

    .portal-list-item {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .portal-list-item img {
        width: 72px;
        height: 58px;
    }

    .portal-quick-links a {
        width: 100%;
    }

    .hero__metrics,
    .news-grid--latest,
    .news-grid--featured,
    .category-grid,
    .gallery-strip,
    .gallery-strip--albums,
    .gallery-grid,
    .gallery-admin-grid,
    .stats-grid,
    .form-grid,
    .timeline-item {
        grid-template-columns: 1fr;
    }

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

    .hero__mini-grid--1,
    .hero__mini-grid--2 {
        grid-template-columns: 1fr;
    }

    .hero__feature--slider,
    .hero-slider,
    .hero-slider__viewport {
        min-height: 420px;
    }

    .hero-slide__overlay {
        padding: 22px 22px 78px;
    }

    .hero-slider__controls {
        inset: auto 14px 14px;
    }

    .feature-card--hero img {
        min-height: 320px;
    }

    .hero-mini-card {
        min-height: 154px;
    }

    .site-nav {
        top: 164px;
    }

    .timeline {
        padding-left: 10px;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item::before {
        left: -11px;
    }

    .hero__content,
    .panel,
    .page-hero,
    .login-card,
    .dashboard__hero,
    .admin-content {
        padding: 20px;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 22px), var(--container));
    }

    .site-header__inner {
        gap: 14px;
    }

    .site-banner__head-title {
        min-height: 42px;
        padding: 6px 10px;
        font-size: 0.98rem;
    }

    .site-banner__head-mark {
        width: 52px;
        height: 52px;
    }

    .site-banner__head-mark svg {
        width: 24px;
        height: 24px;
    }

    .site-banner__slogans span {
        min-height: 38px;
        padding: 9px 12px;
        font-size: 0.72rem;
    }

    .brand__mark {
        width: 46px;
        height: 46px;
    }

    .top-alert {
        padding: 16px;
        gap: 14px;
    }

    .top-alert__icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

    .news-band {
        padding: 12px 14px;
    }

    .news-band__item {
        min-width: 220px;
        padding: 10px 12px;
        gap: 8px;
    }

    .news-band__item strong {
        font-size: 0.88rem;
    }

    .hero__feature--slider,
    .hero-slider,
    .hero-slider__viewport {
        min-height: 360px;
    }

    .hero-slide__overlay {
        padding: 18px 18px 70px;
        gap: 10px;
    }

    .hero-slide__overlay h2 {
        font-size: clamp(1.35rem, 6vw, 2rem);
    }

    .hero-slide__overlay p {
        max-width: none;
        font-size: 0.92rem;
    }

    .hero-slide__footer {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .hero-slide__footer a {
        width: 100%;
    }

    .hero-slider__controls {
        inset: auto 12px 12px;
    }

    .hero-slider__nav {
        width: 40px;
        height: 40px;
    }

    .hero-slider__dots {
        padding: 7px 10px;
    }

    .hero-slider__dot.is-active {
        width: 24px;
    }

    .feature-card img {
        min-height: 360px;
    }

    .feature-card--hero img {
        min-height: 300px;
    }

    .hero-mini-card {
        min-height: 142px;
    }

    .hero__content h1 {
        max-width: none;
    }

    .dashboard__hero-card,
    .panel__header-actions,
    .form-actions {
        width: 100%;
    }

    .btn,
    .action-btn {
        width: 100%;
    }

    .admin-topbar {
        padding-inline: 16px;
    }

    .admin-content {
        padding: 16px;
    }
}
