.dpe-home-page {
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 138px;
}

.dpe-home-page {
    --home-primary: #0f766e;
    --home-primary-dark: #115e59;
    --home-secondary: #0a4191;
    --home-accent: #f59e0b;
    --home-bg: #f6f8fb;
    --home-surface: #ffffff;
    --home-text: #0f172a;
    --home-muted: #64748b;
    --home-border: #dbe7ef;
    --home-shadow: 0 18px 45px rgba(15, 23, 42, .08);
    --home-font: "Nirmala UI", "Segoe UI", Arial, sans-serif;
    --motion-smooth: cubic-bezier(.2, .9, .25, 1);
    margin: 0;
    min-height: 100vh;
    background: var(--home-bg);
    color: var(--home-text);
    font-family: var(--home-font);
    line-height: 1.55;
    scroll-padding-top: 138px;
}

.dpe-home-page.is-loading {
    overflow: hidden;
}

.dpe-home-page.is-loading .home-top-strip {
    opacity: 0;
    transform: translateY(-10px);
}

.dpe-home-page.is-loading .home-header {
    opacity: 0;
    transform: translateY(-14px);
}

.dpe-home-page.is-loading .home-nav a {
    opacity: 0;
    transform: translateY(-6px);
}

.dpe-home-page.is-loading .home-hero-copy {
    opacity: 0;
    transform: translateY(30px);
}

.dpe-home-page.is-loading .home-hero-panel {
    opacity: 0;
    transform: translateY(24px);
}

.dpe-home-page *,
.dpe-home-page *::before,
.dpe-home-page *::after {
    box-sizing: border-box;
}

.dpe-home-page a {
    color: inherit;
    text-decoration: none;
    transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.dpe-home-page [id] {
    scroll-margin-top: 138px;
}

.home-reveal {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(3px);
    transition:
        opacity .72s var(--motion-smooth) var(--reveal-delay, 0ms),
        transform .72s var(--motion-smooth) var(--reveal-delay, 0ms),
        filter .72s var(--motion-smooth) var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

.home-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.home-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background:
        linear-gradient(90deg, rgba(8, 47, 73, .95), rgba(15, 118, 110, .88)),
        url("../img/home-classroom.png?v=20260618") center / cover no-repeat;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .45s ease, visibility .45s ease;
}

.dpe-home-page.is-loading .home-loader {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.home-loader-spinner {
    width: 78px;
    height: 78px;
    border: 6px solid rgba(255, 255, 255, .28);
    border-top-color: #fff;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(2, 6, 23, .28);
    animation: homeRoundLoader 1s linear infinite;
}

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

.home-top-strip {
    background: #082f49;
    color: #e0f2fe;
    font-size: 13px;
}

.home-top-strip-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.home-top-strip i {
    margin-right: 6px;
    color: #67e8f9;
}

.home-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(219, 231, 239, .9);
    box-shadow: 0 10px 35px rgba(15, 23, 42, .06);
    backdrop-filter: blur(14px);
}

.home-header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    gap: 18px;
}

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

.home-brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    flex: 0 0 auto;
    transition: transform .3s var(--motion-smooth);
}

.home-brand:hover img,
.home-brand:focus img {
    transform: scale(1.05);
}

.home-brand span {
    display: grid;
    gap: 1px;
    min-width: 0;
}

.home-brand strong {
    color: var(--home-secondary);
    font-size: 14px;
    font-weight: 700;
}

.home-brand small {
    color: var(--home-muted);
    font-size: 13px;
    font-weight: 600;
}

.home-brand b {
    color: var(--home-text);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
}

.home-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.home-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .28) 46%, transparent 62%);
    transform: translateX(-130%);
    transition: transform .65s var(--motion-smooth);
}

.home-btn:hover,
.home-btn:focus {
    transform: translateY(-2px);
    text-decoration: none;
}

.home-btn:hover::after,
.home-btn:focus::after {
    transform: translateX(130%);
}

.home-btn:active {
    transform: translateY(0) scale(.98);
}

.home-btn-primary {
    background: var(--home-primary);
    border-color: var(--home-primary);
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(15, 118, 110, .22);
}

.home-btn-primary:hover,
.home-btn-primary:focus {
    background: var(--home-primary-dark);
    border-color: var(--home-primary-dark);
}

.home-btn-outline {
    background: #fff;
    border-color: rgba(15, 118, 110, .34);
    color: var(--home-primary) !important;
}

.home-btn-outline:hover,
.home-btn-outline:focus {
    background: #ecfdf5;
    border-color: var(--home-primary);
}

.home-btn-light {
    background: #fff;
    border-color: rgba(255, 255, 255, .75);
    color: var(--home-secondary) !important;
}

.home-btn-light:hover,
.home-btn-light:focus {
    background: #e0f2fe;
    border-color: #e0f2fe;
}

.home-btn-lg {
    min-height: 48px;
    padding: 12px 20px;
    font-size: 15px;
}

.home-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--home-border);
    border-radius: 8px;
    background: #fff;
    color: var(--home-text);
}

.home-nav {
    border-top: 1px solid rgba(219, 231, 239, .75);
    background: #f8fafc;
}

.home-nav-inner {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.home-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    border-radius: 8px;
    padding: 8px 14px;
    color: #334155;
    font-size: 14px;
    font-weight: 800;
    position: relative;
    overflow: hidden;
}

.home-nav a::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 6px;
    height: 2px;
    border-radius: 999px;
    background: var(--home-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s var(--motion-smooth);
}

.home-nav a:hover,
.home-nav a:focus,
.home-nav a.active {
    background: #e0f2f1;
    color: var(--home-primary-dark);
}

.home-nav a:hover::after,
.home-nav a:focus::after,
.home-nav a.active::after {
    transform: scaleX(1);
}

.home-hero {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    color: #fff;
    background: #0b3a62;
}

.home-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(8, 47, 73, .88) 0%, rgba(10, 65, 145, .58) 48%, rgba(15, 118, 110, .34) 100%),
        url("../img/home-classroom.png?v=20260618"),
        linear-gradient(120deg, #123a64 0%, #1d5f8d 48%, #0f766e 100%);
    background-position: center center, center center, center center;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: cover, cover, cover;
    filter: saturate(1.04) contrast(1.02);
    transform: scale(1.06);
    transform-origin: center;
}

.home-hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(56, 189, 248, .18) 0, rgba(56, 189, 248, 0) 26%),
        radial-gradient(circle at 77% 36%, rgba(45, 212, 191, .20) 0, rgba(45, 212, 191, 0) 30%),
        linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, 0) 42%);
}

.home-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, .18), rgba(2, 6, 23, 0) 48%, rgba(2, 6, 23, .04));
}

.home-hero-inner {
    position: relative;
    z-index: 1;
    min-height: 500px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 36px;
    align-items: center;
    padding: 58px 0 68px;
}

.home-hero-copy {
    max-width: 760px;
}

.home-kicker,
.home-section-eyebrow,
.home-panel-label {
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    border-radius: 8px;
    padding: 5px 9px;
    background: #e0f2f1;
    color: var(--home-primary-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-hero .home-kicker {
    background: rgba(224, 242, 241, .16);
    color: #a7f3d0;
    border: 1px solid rgba(167, 243, 208, .28);
}

.home-hero h1 {
    margin: 16px 0 14px;
    max-width: 850px;
    color: #fff;
    font-size: 56px;
    line-height: 1.08;
    font-weight: 900;
}

.home-hero p {
    margin: 0;
    max-width: 650px;
    color: #dbeafe;
    font-size: 18px;
}

.home-hero-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-hero-panel {
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 8px;
    padding: 24px;
    background: rgba(255, 255, 255, .12);
    box-shadow: 0 24px 55px rgba(2, 6, 23, .24);
    backdrop-filter: blur(18px);
    transition: transform .32s var(--motion-smooth), border-color .32s var(--motion-smooth), box-shadow .32s var(--motion-smooth), background-color .32s var(--motion-smooth);
}

.home-hero-panel:hover,
.home-hero-panel:focus-within {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, .38);
    background: rgba(255, 255, 255, .16);
    box-shadow: 0 30px 70px rgba(2, 6, 23, .28);
}

.home-hero-panel h2 {
    margin: 16px 0 10px;
    color: #fff;
    font-size: 23px;
    font-weight: 900;
}

.home-hero-panel p {
    color: #e0f2fe;
    font-size: 15px;
}

.home-panel-label {
    background: #fef3c7;
    color: #92400e;
}

.home-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: #fff !important;
    font-weight: 900;
}

.home-inline-link:hover,
.home-inline-link:focus {
    color: #fef3c7 !important;
}

.dpe-home-page.is-ready .home-top-strip {
    animation: homeHeaderReveal .52s var(--motion-smooth) forwards;
}

.dpe-home-page.is-ready .home-header {
    animation: homeHeaderReveal .58s var(--motion-smooth) .08s forwards;
}

.dpe-home-page.is-ready .home-nav a,
.dpe-home-page.is-ready .home-actions .home-btn {
    animation: homeNavReveal .45s var(--motion-smooth) both;
}

.dpe-home-page.is-ready .home-nav a:nth-child(1),
.dpe-home-page.is-ready .home-actions .home-btn:nth-child(1) {
    animation-delay: .18s;
}

.dpe-home-page.is-ready .home-nav a:nth-child(2),
.dpe-home-page.is-ready .home-actions .home-btn:nth-child(2) {
    animation-delay: .24s;
}

.dpe-home-page.is-ready .home-nav a:nth-child(3) {
    animation-delay: .30s;
}

.dpe-home-page.is-ready .home-nav a:nth-child(4) {
    animation-delay: .36s;
}

.dpe-home-page.is-ready .home-nav a:nth-child(5) {
    animation-delay: .42s;
}

.dpe-home-page.is-ready .home-hero-copy {
    animation: homeContentReveal .78s var(--motion-smooth) .18s forwards;
}

.dpe-home-page.is-ready .home-hero-actions .home-btn {
    opacity: 0;
    animation: homeActionReveal .62s var(--motion-smooth) forwards;
}

.dpe-home-page.is-ready .home-hero-actions .home-btn:nth-child(1) {
    animation-delay: .48s;
}

.dpe-home-page.is-ready .home-hero-actions .home-btn:nth-child(2) {
    animation-delay: .62s;
}

.dpe-home-page.is-ready .home-hero-panel {
    animation: homeContentReveal .78s var(--motion-smooth) .38s forwards;
}

.dpe-home-page.is-ready .home-hero-bg {
    animation:
        homeImageReveal 1.15s var(--motion-smooth) forwards,
        homeHeroBackgroundPan 18s ease-in-out 1.15s infinite alternate;
}

@keyframes homeRoundLoader {
    to {
        transform: rotate(360deg);
    }
}

@keyframes homeHeaderReveal {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes homeNavReveal {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes homeImageReveal {
    from {
        opacity: .78;
        transform: scale(1.06);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes homeHeroBackgroundPan {
    from {
        background-position: center center, 50% 50%, center center;
    }

    to {
        background-position: center center, 52% 48%, center center;
    }
}

@keyframes homeContentReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes homeActionReveal {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes homeSoftFade {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-important-marquee {
    border-bottom: 1px solid rgba(245, 158, 11, .35);
    background: #fff7ed;
}

.home-marquee-inner {
    min-height: 48px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 14px;
}

.home-marquee-label {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    border-radius: 8px;
    padding: 6px 12px;
    background: #b91c1c;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.home-important-marquee marquee {
    color: #7c2d12;
    font-size: 15px;
    font-weight: 800;
}

.home-important-marquee a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #7c2d12 !important;
}

.home-important-marquee a:hover,
.home-important-marquee a:focus {
    color: #0f766e !important;
}

.home-greeting {
    background: var(--home-surface);
    border-bottom: 1px solid var(--home-border);
}

.home-greeting-inner {
    display: block;
    padding: 30px 0;
}

.home-greeting h2,
.home-section-head h2,
.home-info-card h2 {
    color: var(--home-text);
    font-weight: 900;
    line-height: 1.2;
}

.home-greeting h2 {
    margin: 10px 0 8px;
    font-size: 32px;
}

.home-greeting p {
    margin: 0;
    color: var(--home-muted);
    font-size: 16px;
}

.home-band {
    padding: 54px 0;
    background: #eef6f8;
}

.home-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.home-section-head h2 {
    margin: 10px 0 0;
    font-size: 36px;
}

.home-notice-board {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 16px;
}

.home-updates-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 18px;
    align-items: start;
}

.home-update-panel {
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 8px;
    background: var(--home-surface);
    box-shadow: var(--home-shadow);
}

.home-update-panel-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--home-border);
    background: linear-gradient(135deg, #ffffff, #f0fdfa);
}

.home-update-panel-head h3 {
    margin: 0;
    color: var(--home-text);
    font-size: 24px;
    font-weight: 900;
    line-height: 1.2;
}

.home-update-list {
    display: grid;
    gap: 14px;
    max-height: 520px;
    overflow-y: auto;
    padding: 16px;
    scrollbar-gutter: stable;
}

.home-update-list .home-notice {
    min-height: auto;
    box-shadow: none;
}

.home-new-gif {
    display: inline-block;
    width: 42px;
    height: auto;
    margin-right: 8px;
    vertical-align: middle;
}

.home-notice,
.home-info-card {
    border: 1px solid var(--home-border);
    border-radius: 8px;
    background: var(--home-surface);
    box-shadow: var(--home-shadow);
    transition: transform .3s var(--motion-smooth), box-shadow .3s var(--motion-smooth), border-color .3s var(--motion-smooth);
    will-change: transform;
}

.home-notice:hover,
.home-notice:focus-within,
.home-info-card:hover,
.home-info-card:focus-within {
    transform: translateY(-5px);
    border-color: rgba(15, 118, 110, .28);
    box-shadow: 0 24px 58px rgba(15, 23, 42, .12);
}

.home-notice {
    min-height: 174px;
    padding: 22px;
}

.home-notice-feature {
    background: linear-gradient(135deg, #ffffff, #ecfdf5);
    border-left: 4px solid var(--home-primary);
}

.home-badge {
    display: inline-flex;
    border-radius: 8px;
    padding: 4px 8px;
    background: #dc2626;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.home-notice span:not(.home-badge) {
    color: var(--home-secondary);
    font-size: 13px;
    font-weight: 900;
}

.home-notice h3 {
    margin: 10px 0;
    color: var(--home-text);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.35;
}

.home-notice p {
    margin: 0;
    color: var(--home-muted);
}

.home-notice p + p {
    margin-top: 12px;
}

.home-notice a,
.home-info-card a,
.home-doc-list a b,
.home-footer a {
    color: var(--home-primary);
    font-weight: 900;
}

.home-notice a:hover,
.home-info-card a:hover,
.home-doc-list a:hover b,
.home-footer a:hover {
    color: var(--home-secondary);
}

.home-cards-section {
    padding: 56px 0;
    background: var(--home-bg);
}

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

.home-info-card {
    min-height: 285px;
    padding: 24px;
}

.home-card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 8px;
    background: #e0f2f1;
    color: var(--home-primary);
    font-size: 20px;
    transition: transform .3s var(--motion-smooth), background-color .3s var(--motion-smooth), color .3s var(--motion-smooth);
}

.home-info-card:hover .home-card-icon,
.home-info-card:focus-within .home-card-icon {
    transform: translateY(-2px) scale(1.06);
    background: var(--home-primary);
    color: #fff;
}

.home-info-card .home-section-eyebrow {
    background: #eff6ff;
    color: var(--home-secondary);
}

.home-info-card h2 {
    margin: 12px 0 10px;
    font-size: 24px;
}

.home-info-card p {
    min-height: 72px;
    margin: 0 0 18px;
    color: var(--home-muted);
}

.home-contact-list {
    display: grid;
    gap: 8px;
    color: var(--home-primary-dark);
    font-size: 14px;
}

.home-documents {
    background: #fff;
}

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

.home-doc-list a {
    min-height: 68px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--home-border);
    border-radius: 8px;
    padding: 14px 16px;
    background: #f8fafc;
    transition: transform .28s var(--motion-smooth), border-color .28s var(--motion-smooth), box-shadow .28s var(--motion-smooth), background-color .28s var(--motion-smooth);
}

.home-doc-list a:hover,
.home-doc-list a:focus {
    border-color: rgba(15, 118, 110, .35);
    background: #ecfdf5;
    box-shadow: 0 12px 26px rgba(15, 23, 42, .07);
    transform: translateY(-1px);
}

.home-doc-list i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #e0f2f1;
    color: var(--home-primary);
    transition: transform .28s var(--motion-smooth), background-color .28s var(--motion-smooth), color .28s var(--motion-smooth);
}

.home-doc-list a:hover i,
.home-doc-list a:focus i {
    transform: scale(1.08) rotate(-3deg);
    background: var(--home-primary);
    color: #fff;
}

.home-doc-list span {
    min-width: 0;
    color: var(--home-text);
    font-weight: 800;
}

.home-footer {
    background: #082f49;
    color: #dbeafe;
}

.home-footer-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 14px;
}

.home-footer a {
    color: #a7f3d0;
    position: relative;
}

.home-footer a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .26s var(--motion-smooth);
}

.home-footer a:hover::after,
.home-footer a:focus::after {
    transform: scaleX(1);
}

.home-footer span:last-child {
    display: flex;
    gap: 14px;
}

.gr-hero {
    padding: 56px 0 46px;
    background:
        linear-gradient(90deg, rgba(8, 47, 73, .95), rgba(15, 118, 110, .78)),
        url("../img/bg1.jpg") center / cover no-repeat;
    color: #fff;
}

.gr-hero-inner {
    max-width: 860px;
}

.gr-hero .home-section-eyebrow {
    background: rgba(224, 242, 241, .16);
    color: #a7f3d0;
    border: 1px solid rgba(167, 243, 208, .28);
}

.gr-hero h1 {
    margin: 14px 0 10px;
    color: #fff;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.15;
}

.gr-hero p {
    max-width: 700px;
    margin: 0;
    color: #dbeafe;
    font-size: 17px;
}

.gr-table-section {
    padding: 42px 0 60px;
    background: var(--home-bg);
}

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

.gr-summary h2 {
    margin: 10px 0 0;
    color: var(--home-text);
    font-size: 32px;
    font-weight: 900;
    line-height: 1.2;
}

.gr-table-wrap {
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 8px;
    background: var(--home-surface);
    box-shadow: var(--home-shadow);
}

.gr-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

.gr-table th,
.gr-table td {
    padding: 15px 18px;
    border-bottom: 1px solid var(--home-border);
    vertical-align: middle;
}

.gr-table th {
    background: #0f766e;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.gr-table th:first-child,
.gr-table td:first-child {
    width: 110px;
    text-align: center;
}

.gr-table th:last-child,
.gr-table td:last-child {
    width: 190px;
    text-align: right;
}

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

.gr-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.gr-table tbody tr:hover {
    background: #ecfdf5;
}

.gr-table td {
    color: var(--home-text);
    font-size: 15px;
    font-weight: 700;
}

.gr-download-btn {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(15, 118, 110, .28);
    border-radius: 8px;
    padding: 8px 13px;
    background: #fff;
    color: var(--home-primary) !important;
    font-size: 13px;
    font-weight: 900;
}

.gr-download-btn:hover,
.gr-download-btn:focus {
    background: var(--home-primary);
    border-color: var(--home-primary);
    color: #fff !important;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .home-hero h1 {
        font-size: 44px;
    }

    .home-hero-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .home-hero-panel {
        max-width: 620px;
    }

    .home-card-grid,
    .home-notice-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-notice-feature {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .home-top-strip-inner {
        justify-content: flex-start;
        gap: 8px 16px;
        padding: 9px 0;
    }

    .home-header-inner {
        min-height: 74px;
    }

    .home-brand img {
        width: 48px;
        height: 48px;
    }

    .home-brand strong,
    .home-brand small {
        display: none;
    }

    .home-brand b {
        font-size: 16px;
    }

    .home-actions {
        display: none;
    }

    .home-menu-btn {
        display: inline-grid;
        place-items: center;
    }

    .home-nav {
        display: none;
    }

    .home-nav.is-open {
        display: block;
    }

    .home-nav-inner {
        align-items: stretch;
        flex-direction: column;
        padding: 10px 0;
    }

    .home-nav a {
        justify-content: center;
    }

    .home-hero,
    .home-hero-inner {
        min-height: auto;
    }

    .home-hero-bg {
        background-position: center center, center center, center center;
        background-size: cover, cover, cover;
    }

    .home-hero-inner {
        padding: 42px 0 48px;
    }

    .home-hero p {
        font-size: 16px;
    }

    .home-hero h1 {
        font-size: 34px;
    }

    .home-greeting h2,
    .home-section-head h2 {
        font-size: 26px;
    }

    .gr-hero h1 {
        font-size: 34px;
    }

    .gr-summary {
        display: block;
    }

    .gr-summary .home-btn {
        width: max-content;
        margin-top: 14px;
    }

    .home-section-head {
        display: block;
    }

    .home-updates-layout {
        grid-template-columns: 1fr;
    }

    .home-update-list {
        max-height: 440px;
    }

    .home-card-grid,
    .home-notice-board,
    .home-doc-list {
        grid-template-columns: 1fr;
    }

    .home-info-card {
        min-height: auto;
    }

    .home-info-card p {
        min-height: 0;
    }
}

@media (max-width: 480px) {
    .home-container {
        width: min(100% - 24px, 1180px);
    }

    .home-brand {
        gap: 10px;
    }

    .home-brand b {
        font-size: 14px;
    }

    .home-hero h1 {
        font-size: 30px;
    }

    .home-hero-actions {
        display: grid;
    }

    .home-btn {
        width: 100%;
    }

    .home-hero-panel,
    .home-notice,
    .home-info-card {
        padding: 18px;
    }

    .home-update-panel-head {
        display: block;
        padding: 16px 18px;
    }

    .home-update-panel-head h3 {
        margin-top: 6px;
        font-size: 22px;
    }

    .home-update-list {
        padding: 12px;
    }

    .home-doc-list a {
        grid-template-columns: 34px minmax(0, 1fr);
    }

    .home-doc-list a b {
        grid-column: 2;
    }

    .gr-hero {
        padding: 42px 0 36px;
    }

    .gr-hero h1 {
        font-size: 30px;
    }

    .gr-summary h2 {
        font-size: 26px;
    }

    .gr-table-wrap {
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .gr-table,
    .gr-table thead,
    .gr-table tbody,
    .gr-table tr,
    .gr-table th,
    .gr-table td {
        display: block;
        width: 100%;
    }

    .gr-table thead {
        display: none;
    }

    .gr-table tr {
        margin-bottom: 12px;
        border: 1px solid var(--home-border);
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
        overflow: hidden;
    }

    .gr-table tbody tr:nth-child(even),
    .gr-table tbody tr:hover {
        background: #fff;
    }

    .gr-table td,
    .gr-table td:first-child,
    .gr-table td:last-child {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        width: 100%;
        padding: 12px 14px;
        border-bottom: 1px solid var(--home-border);
        text-align: right;
    }

    .gr-table td::before {
        content: attr(data-label);
        color: var(--home-muted);
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
    }

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

    .gr-summary .home-btn,
    .gr-download-btn {
        width: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dpe-home-page *,
    .dpe-home-page *::before,
    .dpe-home-page *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .home-hero-bg,
    .home-hero-copy,
    .home-hero-panel,
    .home-reveal {
        opacity: 1;
        filter: none;
        transform: none;
    }
}
