:root {
    --kpeef-primary: #0e7490;
    --kpeef-secondary: #0d9488;
    --kpeef-accent: #e0f7fa;
    --kpeef-green: #2d5a3d;
    --kpeef-navy: #0f172a;
    --hero-slider-height: 450px;
    --hero-slider-height-md: 320px;
    --hero-slider-height-sm: 220px;
}

html { font-size: 16px; }

body {
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    color: #333;
}

.top-bar {
    background: var(--kpeef-primary);
    color: #fff;
}

.main-header {
    background: #fff;
    border-top: none;
    border-bottom: 1px solid var(--kpeef-border);
}

.main-header .navbar {
    min-height: 88px;
    padding-top: .65rem;
    padding-bottom: .65rem;
}

.main-header .navbar > .container,
.main-header .navbar > .header-inner {
    align-items: center;
}

.main-header .header-inner {
    padding-left: 0.5rem;
    padding-right: 1rem;
}

@media (min-width: 576px) {
    .main-header .header-inner {
        padding-left: 0.75rem;
        padding-right: 1.25rem;
    }
}

@media (min-width: 992px) {
    .main-header .header-inner {
        padding-left: 1rem;
        padding-right: 2rem;
    }
}

.main-header .navbar-brand {
    margin-right: 1.5rem;
    margin-left: 102px;
    padding: 0;
}

.site-brand {
    flex-shrink: 0;
}

.site-brand-block {
    display: flex;
    align-items: center;
    gap: .85rem;
}

.site-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    flex-shrink: 0;
}

.header-secondary-logo {
    flex-shrink: 0;
    margin-left: auto;
    display: flex;
    align-items: center;
}

.site-logo-secondary {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

@media (min-width: 992px) {
    .header-secondary-logo {
        margin-right: 102px;
        margin-left: 1.5rem;
    }
}

@media (max-width: 991.98px) {
    .header-secondary-logo {
        margin-left: auto;
        margin-right: 0.5rem;
    }

    .site-logo-secondary {
        width: 52px;
        height: 52px;
    }
}

.site-logo-footer {
    width: 64px;
    height: 64px;
}

.site-brand-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--kpeef-green);
    line-height: 1;
    white-space: nowrap;
    letter-spacing: .02em;
}

.site-brand-lines {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    border-left: 2px solid #d9dee5;
    padding-left: .85rem;
}

.site-brand-line {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    color: var(--kpeef-navy);
    text-transform: uppercase;
    letter-spacing: .06em;
    line-height: 1.2;
    white-space: nowrap;
}

.main-nav .nav-link {
    padding: .35rem 1.35rem;
    font-size: .78rem;
    font-weight: 700;
    color: var(--kpeef-navy);
    text-transform: uppercase;
    letter-spacing: .06em;
    white-space: nowrap;
    position: relative;
    border: 0;
    background: transparent;
}

.main-nav-wrap {
    position: relative;
    width: 100%;
}

.nav-search-wrap {
    position: relative;
    flex-shrink: 0;
}

.nav-search-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    padding: 0.35rem 0.5rem;
    color: var(--kpeef-navy);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease;
}

.nav-search-toggle:hover,
.nav-search-toggle:focus {
    color: var(--kpeef-green);
}

.nav-search-toggle.active {
    color: var(--kpeef-green);
}

.nav-search-panel {
    display: none;
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    width: min(340px, calc(100vw - 2rem));
    background: #fff;
    border: 1px solid #e5e9ef;
    box-shadow: 0 10px 28px rgba(16, 29, 54, 0.14);
    border-radius: 0.4rem;
    padding: 0.55rem;
    z-index: 1050;
}

.nav-search-panel.show {
    display: block;
}

.nav-search-form {
    display: flex;
    gap: 0.45rem;
    align-items: center;
}

.nav-search-input {
    border-color: #dde3ea;
}

.nav-search-submit {
    flex-shrink: 0;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus {
    color: var(--kpeef-green);
}

.main-nav .nav-link.active,
.main-nav .nav-link.active:hover,
.main-nav .nav-link.active:focus {
    color: #fff !important;
    background: var(--kpeef-green);
    font-weight: 700;
    border-radius: 0.35rem;
    box-shadow: 0 2px 10px rgba(45, 90, 61, 0.28);
}

.main-nav .nav-link.active:not(.dropdown-toggle)::after {
    display: none;
}

.main-nav .nav-item.nav-section-active > .nav-link.dropdown-toggle,
.main-nav .nav-item.nav-section-active > .nav-link.dropdown-toggle:hover,
.main-nav .nav-item.nav-section-active > .nav-link.dropdown-toggle:focus,
.main-nav .nav-item.nav-section-active > .nav-link.dropdown-toggle.show {
    color: #fff !important;
    background: var(--kpeef-green);
    font-weight: 700;
    border-radius: 0.35rem;
    box-shadow: 0 2px 10px rgba(45, 90, 61, 0.28);
}

.main-nav .nav-item.nav-section-active > .nav-link.dropdown-toggle::after,
.main-nav .nav-item.nav-section-active > .nav-link.dropdown-toggle.show::after {
    border-top-color: #fff;
}

.main-nav .dropdown-toggle::after {
    margin-left: .35rem;
    vertical-align: .15em;
    font-size: .65rem;
}

.main-header .dropdown-menu {
    border: 1px solid #e5e9ef;
    box-shadow: 0 8px 24px rgba(16, 29, 54, .12);
    border-radius: .35rem;
    padding: .35rem 0;
}

.main-header .dropdown-item {
    font-size: .85rem;
    font-weight: 500;
    color: var(--kpeef-navy);
    padding: .45rem 1rem;
}

.main-header .dropdown-item:hover,
.main-header .dropdown-item:focus {
    background: #f4f7fa;
    color: var(--kpeef-green);
}

@media (min-width: 992px) {
    .main-nav-wrap {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        width: auto;
        margin-right: 2rem;
    }

    .main-nav {
        gap: 1.25rem;
    }

    .main-nav .nav-link {
        padding: .35rem 2rem;
    }

    .main-header .navbar-collapse {
        flex-grow: 1;
    }
}

@media (max-width: 991.98px) {
    .main-header .navbar {
        min-height: auto;
    }

    .main-header .navbar-brand {
        margin-left: 0.5rem;
    }

    .site-brand-block {
        flex-direction: column;
        align-items: flex-start;
        gap: .25rem;
    }

    .site-brand-lines {
        border-left: 0;
        padding-left: 0;
    }

    .site-brand-line {
        white-space: normal;
        font-size: .68rem;
    }

    .site-logo {
        width: 56px;
        height: 56px;
    }

    .site-brand-title {
        font-size: 1.5rem;
    }

    .main-header .navbar-collapse {
        padding-top: .75rem;
        border-top: 1px solid #e9ecef;
        margin-top: .75rem;
    }

    .main-nav .nav-link {
        padding: .55rem 0;
        font-size: .85rem;
    }

    .nav-search-wrap {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid #e9ecef;
    }

    .nav-search-panel {
        position: static;
        width: 100%;
        margin-top: 0.65rem;
        box-shadow: none;
    }

    .main-nav .nav-link.active::after {
        left: 0;
        bottom: .25rem;
        transform: none;
        width: 42px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .site-brand-title {
        font-size: 1.65rem;
    }

    .site-brand-line {
        font-size: .64rem;
    }

    .site-logo {
        width: 62px;
        height: 62px;
    }

    .main-nav .nav-link {
        padding: .35rem .65rem;
        font-size: .72rem;
    }
}

.nav-link:hover, .dropdown-item:hover { color: var(--kpeef-green) !important; }

.hero-carousel {
    background: var(--kpeef-primary);
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    height: var(--hero-slider-height);
}

.hero-carousel .hero-slide-image,
.hero-placeholder {
    height: var(--hero-slider-height);
    background: linear-gradient(135deg, var(--kpeef-primary), var(--kpeef-secondary));
}

.hero-carousel .hero-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-carousel .carousel-caption {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem 1.5rem 1.5rem;
    text-align: left;
    background: linear-gradient(to top, rgba(0, 0, 0, .65), transparent);
}

.hero-carousel .carousel-caption h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: .35rem;
}

.hero-carousel .carousel-caption p {
    margin-bottom: 0;
    font-size: 1rem;
    opacity: .95;
}

.section-title {
    color: var(--kpeef-primary);
    font-weight: 700;
    border-left: 4px solid var(--kpeef-secondary);
    padding-left: .75rem;
}

.content-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: .5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.site-footer {
    margin-top: 0 !important;
    background: linear-gradient(165deg, #04542f 0%, #15230d 40%, var(--kpeef-primary-dark) 100%);
    color: rgba(255, 255, 255, 0.88);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--kpeef-secondary), #2ecc71, var(--kpeef-secondary));
}

.site-footer-top {
    position: relative;
    z-index: 1;
}

.site-footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.15);
}

.footer-col-title {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid var(--kpeef-secondary);
    display: inline-block;
}

.footer-brand-link {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    color: inherit;
}

.footer-brand-link:hover {
    color: #fff;
}

.footer-brand-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.footer-brand-name {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #fff;
    line-height: 1.2;
}

.footer-brand-tagline {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.85rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    max-width: 18rem;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 1rem;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
    background: var(--kpeef-secondary);
    border-color: var(--kpeef-secondary);
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
}

.footer-links-list li + li {
    margin-top: 0.55rem;
}

.footer-links-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links-list a i {
    font-size: 0.95rem;
    color: #fff;
    opacity: 0.9;
    width: 1.1rem;
    text-align: center;
}

.footer-links-list a:hover {
    color: #fff;
    padding-left: 0.2rem;
    text-decoration: none;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    border-radius: 0.45rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.95rem;
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.55;
    text-decoration: none;
}

a.footer-contact-text:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-copyright {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.02em;
}

.contact-footer-address {
    white-space: pre-line;
    line-height: 1.55;
}

.gallery-card img { height: 160px; width: 100%; object-fit: cover; }

.home-gallery-section {
    background: linear-gradient(180deg, #f4f7fa 0%, #eef3f8 100%);
}

.home-gallery-block {
    margin-bottom: 0;
}

.home-gallery-card {
    display: block;
    height: 100%;
    border: 1px solid #e3e8ef;
    border-radius: .55rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 14px rgba(16, 29, 54, .06);
    transition: border-color .25s, box-shadow .25s, transform .25s;
}

.home-gallery-card:hover {
    border-color: #c5d4e8;
    box-shadow: 0 10px 26px rgba(16, 29, 54, .12);
    transform: translateY(-4px);
}

.home-gallery-thumb {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #e9ecef;
}

.home-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.home-gallery-card:hover .home-gallery-thumb img {
    transform: scale(1.06);
}

.home-gallery-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, var(--kpeef-accent), #dceef9);
    color: var(--kpeef-green);
    font-size: 2.5rem;
}

.home-gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    background: rgba(16, 29, 54, .55);
    color: #fff;
    font-size: .82rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity .25s ease;
}

.home-gallery-overlay i {
    font-size: 1.5rem;
}

.home-gallery-card:hover .home-gallery-overlay {
    opacity: 1;
}

.home-gallery-count {
    position: absolute;
    top: .65rem;
    right: .65rem;
    font-size: .72rem;
    font-weight: 700;
    color: #fff;
    background: rgba(16, 29, 54, .75);
    padding: .2rem .55rem;
    border-radius: 2rem;
    backdrop-filter: blur(4px);
}

.home-gallery-info {
    padding: .9rem 1rem 1rem;
    border-top: 1px solid #eef2f6;
}

.home-gallery-title {
    margin: 0 0 .35rem;
    font-size: .92rem;
    font-weight: 700;
    color: var(--kpeef-navy);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .2s;
}

.home-gallery-card:hover .home-gallery-title {
    color: var(--kpeef-green);
}

.home-gallery-date {
    font-size: .75rem;
    font-weight: 600;
    color: #6c757d;
}

.gallery-album-section {
    background: #f8fafb;
}

.gallery-album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.gallery-album-item {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 1px solid #e3e8ef;
    border-radius: .55rem;
    overflow: hidden;
    background: #fff;
    cursor: zoom-in;
    box-shadow: 0 4px 14px rgba(16, 29, 54, .06);
    transition: border-color .25s, box-shadow .25s, transform .25s;
}

.gallery-album-item:hover {
    border-color: #c5d4e8;
    box-shadow: 0 10px 26px rgba(16, 29, 54, .12);
    transform: translateY(-3px);
}

.gallery-album-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.gallery-album-item:hover img {
    transform: scale(1.04);
}

.gallery-album-item-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .3rem;
    background: rgba(16, 29, 54, .55);
    color: #fff;
    font-size: .82rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity .25s ease;
}

.gallery-album-item-overlay i {
    font-size: 1.5rem;
}

.gallery-album-item:hover .gallery-album-item-overlay,
.gallery-album-item:focus-visible .gallery-album-item-overlay {
    opacity: 1;
}

.gallery-album-item:focus-visible {
    outline: 3px solid var(--kpeef-green);
    outline-offset: 2px;
}

.btn-gallery-back {
    color: var(--kpeef-green);
    border-color: var(--kpeef-green);
    font-weight: 600;
}

.btn-gallery-back:hover {
    background: var(--kpeef-green);
    border-color: var(--kpeef-green);
    color: #fff;
}

body.gallery-lightbox-open {
    overflow: hidden;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.gallery-lightbox[hidden] {
    display: none !important;
}

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16, 29, 54, .88);
    backdrop-filter: blur(4px);
}

.gallery-lightbox-panel {
    position: relative;
    z-index: 1;
    width: min(1100px, 100%);
    max-height: calc(100vh - 2rem);
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: .65rem;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}

.gallery-lightbox-close {
    position: absolute;
    top: .75rem;
    right: .75rem;
    z-index: 3;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(16, 29, 54, .75);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
}

.gallery-lightbox-close:hover {
    background: var(--kpeef-green);
}

.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(16, 29, 54, .75);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
}

.gallery-lightbox-nav:hover:not(:disabled) {
    background: var(--kpeef-green);
}

.gallery-lightbox-nav:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.gallery-lightbox-prev {
    left: .75rem;
}

.gallery-lightbox-next {
    right: .75rem;
}

.gallery-lightbox-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f1720;
    min-height: 280px;
    max-height: calc(100vh - 10rem);
    padding: 1rem;
}

.gallery-lightbox-stage img {
    max-width: 100%;
    max-height: calc(100vh - 12rem);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: .25rem;
}

.gallery-lightbox-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .85rem 1.15rem;
    border-top: 1px solid #e9edf3;
    background: #fafbfc;
}

.gallery-lightbox-caption {
    font-size: .9rem;
    color: var(--kpeef-navy);
    font-weight: 500;
    flex: 1;
}

.gallery-lightbox-counter {
    font-size: .78rem;
    font-weight: 700;
    color: #6c757d;
    white-space: nowrap;
}

@media (max-width: 575.98px) {
    .gallery-album-grid {
        grid-template-columns: 1fr;
    }

    .gallery-lightbox-nav {
        width: 36px;
        height: 36px;
    }

    .gallery-lightbox-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

.page-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--kpeef-navy) 0%, #06450f 50%, var(--kpeef-primary-light) 100%);
    color: #fff;
    padding: 3.5rem 0;
}

.about-hero h1,
.contact-hero h1 {
    font-weight: 800;
    margin-bottom: .5rem;
}

.about-hero-subtitle,
.contact-hero-subtitle {
    font-size: 1.05rem;
    opacity: .92;
    max-width: 720px;
}

.about-page {
    background: linear-gradient(180deg, #f8fafb 0%, #f4f7fa 100%);
}

.about-sidebar {
    border: 1px solid #e3e8ef;
    border-radius: .6rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 28px rgba(16, 29, 54, .08);
    position: sticky;
    top: 1rem;
}

.about-sidebar-header {
    padding: .9rem 1.15rem;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #fff;
    background: linear-gradient(135deg, var(--kpeef-green), #2d5a3d);
}

.about-sidebar-nav {
    padding: .5rem;
}

.about-sidebar-link {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .7rem .85rem;
    margin-bottom: .25rem;
    border-radius: .4rem;
    text-decoration: none;
    color: var(--kpeef-navy);
    font-size: .88rem;
    font-weight: 600;
    transition: background .2s, color .2s;
}

.about-sidebar-link i {
    width: 1.25rem;
    color: var(--kpeef-green);
    font-size: 1rem;
}

.about-sidebar-link:hover {
    background: var(--kpeef-accent);
    color: var(--kpeef-green);
}

.about-sidebar-link.active {
    background: var(--kpeef-green);
    color: #fff;
}

.about-sidebar-link.active i {
    color: #fff;
}

.about-content-panel {
    border: 1px solid #e3e8ef;
    border-radius: .6rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 28px rgba(16, 29, 54, .08);
}

.about-content-banner img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    display: block;
}

.about-content-body {
    padding: 1.75rem 1.75rem 2rem;
}

.about-content-intro {
    position: relative;
    padding: 1.15rem 1.25rem 1.15rem 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f7fafc 0%, var(--kpeef-accent) 100%);
    border: 1px solid #d9e8f2;
    border-left: 4px solid var(--kpeef-green);
    border-radius: .45rem;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--kpeef-navy);
    font-weight: 500;
}

.about-content-intro-icon {
    position: absolute;
    left: .85rem;
    top: 1rem;
    font-size: 1.35rem;
    color: rgba(30, 57, 38, .2);
}

.about-page-content {
    font-size: 1rem;
    line-height: 1.75;
    color: #44515c;
}

.about-page-content h2,
.about-page-content h3,
.about-page-content h4 {
    color: var(--kpeef-navy);
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: .75rem;
}

.about-page-content h3 {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.15rem;
    padding-bottom: .35rem;
    border-bottom: 2px solid #e9edf3;
}

.about-page-content h3::before {
    content: "";
    width: 4px;
    height: 1.1rem;
    background: var(--kpeef-green);
    border-radius: 2px;
    flex-shrink: 0;
}

.about-page-content p {
    margin-bottom: 1rem;
}

.about-page-content ul,
.about-page-content ol {
    padding-left: 1.25rem;
    margin-bottom: 1.25rem;
}

.about-page-content li {
    margin-bottom: .55rem;
    padding-left: .25rem;
}

.about-page-content ul li::marker {
    color: var(--kpeef-green);
}

.about-page-content a {
    color: var(--kpeef-green);
    font-weight: 600;
    text-decoration: none;
}

.about-page-content a:hover {
    text-decoration: underline;
}

.about-page-empty {
    color: #6c757d;
    font-style: italic;
    padding: 1rem;
    background: #f8fafb;
    border: 1px dashed #d5dde6;
    border-radius: .45rem;
}

@media (max-width: 991.98px) {
    .about-sidebar {
        position: static;
    }

    .about-sidebar-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .35rem;
    }

    .about-sidebar-link {
        margin-bottom: 0;
        font-size: .8rem;
        padding: .6rem .65rem;
    }

    .about-content-body {
        padding: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .about-sidebar-nav {
        grid-template-columns: 1fr;
    }

    .about-hero-subtitle {
        font-size: .92rem;
    }
}

.contact-page {
    background: linear-gradient(180deg, #f8fafb 0%, #f4f7fa 100%);
}

.alert-contact-success {
    background: #e8f5ec;
    border: 1px solid #b8dfc4;
    color: var(--kpeef-green);
    font-weight: 500;
    border-radius: .5rem;
}

.contact-info-panel,
.contact-form-panel {
    border: 1px solid #e3e8ef;
    border-radius: .6rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 28px rgba(16, 29, 54, .08);
}

.contact-info-header,
.contact-form-header {
    padding: 1rem 1.25rem;
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #fff;
}

.contact-info-header {
    background: linear-gradient(135deg, var(--kpeef-navy), #1a3058);
}

.contact-form-header {
    background: linear-gradient(135deg, var(--kpeef-green), #2d5a3d);
}

.contact-info-body,
.contact-form-body {
    padding: 1.35rem 1.25rem 1.5rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--kpeef-accent);
    color: var(--kpeef-green);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #6c757d;
    margin-bottom: .15rem;
}

.contact-info-value {
    display: block;
    font-size: .92rem;
    color: var(--kpeef-navy);
    line-height: 1.5;
    white-space: pre-line;
}

.contact-info-link {
    text-decoration: none;
    font-weight: 600;
    transition: color .2s;
}

.contact-info-link:hover {
    color: var(--kpeef-green);
}

.btn-contact-map {
    color: var(--kpeef-navy);
    border: 1px solid #d5dde6;
    background: #fafbfc;
    font-weight: 600;
    font-size: .88rem;
    padding: .6rem 1rem;
}

.btn-contact-map:hover {
    background: var(--kpeef-accent);
    border-color: #b8d4e8;
    color: var(--kpeef-green);
}

.contact-social-label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #6c757d;
    margin-bottom: .5rem;
}

.contact-social-links {
    display: flex;
    gap: .65rem;
}

.contact-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--kpeef-navy);
    color: #fff;
    text-decoration: none;
    transition: background .2s, transform .2s;
}

.contact-social-links a:hover {
    background: var(--kpeef-green);
    transform: translateY(-2px);
}

.contact-form-intro {
    font-size: .9rem;
    color: #5c6670;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.contact-form-label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--kpeef-navy);
    margin-bottom: .35rem;
}

.contact-form-control {
    border: 1px solid #d5dde6;
    border-radius: .4rem;
    padding: .6rem .85rem;
    font-size: .92rem;
    transition: border-color .2s, box-shadow .2s;
}

.contact-form-control:focus {
    border-color: var(--kpeef-green);
    box-shadow: 0 0 0 .2rem rgba(30, 57, 38, .12);
}

.contact-form-control::placeholder {
    color: #adb5bd;
}

.btn-contact-submit {
    background: var(--kpeef-green);
    border-color: var(--kpeef-green);
    color: #fff;
    font-weight: 700;
    font-size: .92rem;
    padding: .65rem 1.5rem;
    border-radius: .4rem;
    transition: background .2s, transform .2s;
}

.btn-contact-submit:hover {
    background: #16301f;
    border-color: #16301f;
    color: #fff;
    transform: translateY(-1px);
}

.contact-map-panel {
    border: 1px solid #e3e8ef;
    border-radius: .6rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 28px rgba(16, 29, 54, .08);
}

.contact-map-header {
    padding: .9rem 1.25rem;
    font-size: .88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #fff;
    background: linear-gradient(135deg, var(--kpeef-primary), #1a5a8a);
}

.contact-map-frame-wrap {
    position: relative;
    width: 100%;
    height: 420px;
    background: #e9ecef;
}

.contact-map-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 991.98px) {
    .contact-hero {
        padding: 2.25rem 0;
    }

    .contact-hero h1 {
        font-size: 1.75rem;
    }

    .contact-hero-subtitle {
        font-size: .92rem;
    }

    .contact-map-frame-wrap {
        height: 300px;
    }
}

.tracking-placeholder {
    min-height: 300px;
}

@media (max-width: 991.98px) {
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item,
    .hero-carousel .hero-slide-image,
    .hero-placeholder {
        height: var(--hero-slider-height-md);
    }

    .hero-carousel .carousel-caption h2 {
        font-size: 1.35rem;
    }
}

@media (max-width: 768px) {
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item,
    .hero-carousel .hero-slide-image,
    .hero-placeholder {
        height: var(--hero-slider-height-sm);
    }

    .hero-carousel .carousel-caption {
        padding: 1.25rem 1rem 1rem;
    }

    .hero-carousel .carousel-caption h2 {
        font-size: 1.1rem;
    }

    .hero-carousel .carousel-caption p {
        font-size: .85rem;
    }
}

.leadership-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid var(--kpeef-accent);
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.leadership-photo-placeholder {
    width: 120px;
    height: 120px;
    background: #f1f3f5;
    border: 4px solid var(--kpeef-accent);
}

.leadership-message {
    max-height: 220px;
    overflow-y: auto;
    white-space: pre-wrap;
    line-height: 1.6;
    color: #555;
    padding: .75rem;
    background: #f8f9fa;
    border-radius: .375rem;
}

.home-welcome {
    position: relative;
    border-radius: .6rem;
    overflow: hidden;
    background: linear-gradient(135deg, #fff 0%, #f7fafc 55%, var(--kpeef-accent) 100%);
    border: 1px solid #dce8f2;
    box-shadow: 0 8px 28px rgba(16, 29, 54, .08);
}

.home-welcome::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--kpeef-green), var(--kpeef-secondary));
}

.home-welcome-inner {
    display: flex;
    align-items: flex-start;
    gap: 1.35rem;
    padding: 1.75rem 1.75rem 1.75rem 2rem;
}

.home-welcome-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--kpeef-green);
    color: #fff;
    font-size: 1.65rem;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(30, 57, 38, .25);
}

.home-welcome-title {
    margin: 0 0 .35rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--kpeef-navy);
    text-transform: uppercase;
    letter-spacing: .03em;
}

.home-welcome-org {
    margin: 0 0 .75rem;
    font-size: .88rem;
    font-weight: 600;
    color: var(--kpeef-green);
    line-height: 1.4;
}

.home-welcome-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #44515c;
    max-width: 900px;
}

.home-section-header-center {
    justify-content: center;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0 !important;
}

.home-section-header-center .home-section-title {
    font-size: 1.15rem;
}

.home-leadership-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--kpeef-green);
    border-radius: .6rem;
    padding: 1.5rem 1.35rem 1.35rem;
    text-align: center;
    box-shadow: 0 4px 18px rgba(16, 29, 54, .06);
    transition: border-color .25s, box-shadow .25s, transform .25s;
    overflow: hidden;
}

.home-leadership-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--kpeef-green), var(--kpeef-secondary));
}

.home-leadership-card:hover {
    border-color: var(--kpeef-green);
    box-shadow: 0 10px 28px rgba(45, 90, 61, 0.12);
    transform: translateY(-3px);
}

.home-leadership-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: #fff;
    background: var(--kpeef-navy);
    padding: .2rem .55rem;
    border-radius: 2rem;
}

.home-leadership-photo-wrap {
    margin: .5rem auto 1rem;
    width: fit-content;
}

.home-leadership-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    outline: 3px solid var(--kpeef-green);
    box-shadow: 0 6px 18px rgba(16, 29, 54, .12);
}

.home-leadership-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--kpeef-accent), #dceef9);
    color: var(--kpeef-green);
    font-size: 2.5rem;
}

.home-leadership-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--kpeef-navy);
    margin: 0 0 .25rem;
}

.home-leadership-position {
    font-size: .82rem;
    font-weight: 600;
    color: var(--kpeef-primary);
    margin: 0 0 1rem;
    line-height: 1.4;
}

.home-leadership-quote {
    position: relative;
    margin: 0;
    padding: 1rem 1rem 1rem 1.15rem;
    background: #f8fafb;
    border: 1px solid #e9edf3;
    border-radius: .45rem;
    text-align: left;
    font-size: .84rem;
    line-height: 1.65;
    color: #4a5560;
    max-height: 200px;
    overflow-y: auto;
    white-space: pre-wrap;
}

.home-leadership-quote-icon {
    position: absolute;
    top: .5rem;
    left: .6rem;
    font-size: 1.5rem;
    color: rgba(30, 57, 38, .15);
    line-height: 1;
}

.home-leadership-quote span {
    display: block;
    padding-left: 1.25rem;
}

.home-leadership-empty {
    margin: 0;
    padding: 1rem;
    background: #f8fafb;
    border: 1px dashed #d5dde6;
    border-radius: .45rem;
    font-size: .82rem;
    color: #6c757d;
    font-style: italic;
}

@media (max-width: 575.98px) {
    .home-welcome-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.35rem;
    }

    .home-welcome-text {
        font-size: .92rem;
    }
}

.home-panel {
    background: #fff;
    border: 1px solid #e3e8ef;
    border-radius: .5rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(16, 29, 54, .06);
}

.home-panel-header {
    display: flex;
    align-items: center;
    padding: .85rem 1.15rem;
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #fff;
}

.home-panel-downloads .home-panel-header {
    background: linear-gradient(135deg, var(--kpeef-green), #2d5a3d);
}

.home-panel-contact .home-panel-header {
    background: linear-gradient(135deg, var(--kpeef-navy), #1a3058);
}

.home-panel-body {
    padding: 1.15rem;
}

.home-download-list {
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.home-download-link {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .7rem .85rem;
    border: 1px solid #e9edf3;
    border-radius: .4rem;
    text-decoration: none;
    color: var(--kpeef-navy);
    background: #fafbfc;
    transition: border-color .2s, background .2s, transform .2s;
}

.home-download-link:hover {
    border-color: #c5d4e8;
    background: #f0f6fc;
    color: var(--kpeef-green);
    transform: translateX(2px);
}

.home-download-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: .35rem;
    background: #fde8e8;
    color: #c0392b;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.home-download-text {
    flex: 1;
    min-width: 0;
}

.home-download-title {
    display: block;
    font-size: .88rem;
    font-weight: 600;
    line-height: 1.35;
}

.home-download-meta {
    display: block;
    font-size: .72rem;
    color: #6c757d;
    margin-top: .15rem;
}

.home-download-action {
    color: var(--kpeef-green);
    font-size: 1rem;
    flex-shrink: 0;
}

.home-panel-link {
    display: inline-flex;
    align-items: center;
    font-size: .85rem;
    font-weight: 600;
    color: var(--kpeef-green);
    text-decoration: none;
}

.home-panel-link:hover {
    color: var(--kpeef-navy);
    text-decoration: underline;
}

.home-panel-empty {
    font-size: .88rem;
    color: #6c757d;
}

.home-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.home-contact-item {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    font-size: .88rem;
    line-height: 1.5;
    color: #444;
}

.home-contact-item a {
    color: var(--kpeef-navy);
    text-decoration: none;
    font-weight: 500;
}

.home-contact-item a:hover {
    color: var(--kpeef-green);
    text-decoration: underline;
}

.home-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--kpeef-accent);
    color: var(--kpeef-green);
    flex-shrink: 0;
    font-size: 1rem;
}

.btn-home-contact {
    background: var(--kpeef-green);
    border-color: var(--kpeef-green);
    color: #fff;
    font-weight: 600;
    font-size: .9rem;
    padding: .6rem 1rem;
}

.btn-home-contact:hover {
    background: #16301f;
    border-color: #16301f;
    color: #fff;
}

.home-content-block {
    background: #fff;
    border: 1px solid #e3e8ef;
    border-radius: .5rem;
    padding: 1.25rem 1.35rem 1.35rem;
    box-shadow: 0 4px 16px rgba(16, 29, 54, .06);
}

.home-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.15rem;
    padding-bottom: .85rem;
    border-bottom: 2px solid #eef2f6;
}

.home-section-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--kpeef-navy);
    text-transform: uppercase;
    letter-spacing: .04em;
    display: flex;
    align-items: center;
}

.home-section-title i {
    color: var(--kpeef-green);
    font-size: 1.15rem;
}

.home-section-link {
    font-size: .82rem;
    font-weight: 600;
    color: var(--kpeef-green);
    text-decoration: none;
    white-space: nowrap;
}

.home-section-link:hover {
    color: var(--kpeef-navy);
    text-decoration: underline;
}

.home-news-list {
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

.home-news-card {
    border: 1px solid #e9edf3;
    border-radius: .45rem;
    overflow: hidden;
    background: #fafbfc;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.home-news-card:hover {
    border-color: #c5d4e8;
    box-shadow: 0 6px 18px rgba(16, 29, 54, .08);
    transform: translateY(-1px);
}

.home-news-card-link {
    display: flex;
    align-items: stretch;
    text-decoration: none;
    color: inherit;
    min-height: 110px;
}

.home-news-thumb {
    width: 140px;
    flex-shrink: 0;
    background: #e9ecef;
    overflow: hidden;
}

.home-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-news-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--kpeef-accent), #dceef9);
    color: var(--kpeef-green);
    font-size: 2rem;
}

.home-news-body {
    flex: 1;
    padding: .9rem 1rem;
    min-width: 0;
}

.home-news-date {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    color: #fff;
    background: var(--kpeef-green);
    padding: .15rem .5rem;
    border-radius: 2rem;
    margin-bottom: .45rem;
}

.home-news-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--kpeef-navy);
    margin: 0 0 .35rem;
    line-height: 1.35;
    transition: color .2s;
}

.home-news-card:hover .home-news-title {
    color: var(--kpeef-green);
}

.home-news-excerpt {
    font-size: .84rem;
    color: #5c6670;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-news-arrow {
    display: flex;
    align-items: center;
    padding: 0 1rem;
    color: #adb5bd;
    font-size: 1.25rem;
    transition: color .2s, transform .2s;
}

.home-news-card:hover .home-news-arrow {
    color: var(--kpeef-green);
    transform: translateX(3px);
}

.home-notice-list {
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.home-notice-item {
    border: 1px solid #e9edf3;
    border-radius: .45rem;
    background: #fafbfc;
    transition: border-color .2s, background .2s;
}

.home-notice-item:hover {
    border-color: #c5d4e8;
    background: #f4f8fb;
}

.home-notice-link {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .85rem 1rem;
    text-decoration: none;
    color: inherit;
}

.home-notice-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff3cd;
    color: #b8860b;
    flex-shrink: 0;
    font-size: 1.1rem;
    border: 1px solid #ffe8a3;
}

.home-notice-content {
    flex: 1;
    min-width: 0;
}

.home-notice-title {
    display: block;
    font-size: .92rem;
    font-weight: 600;
    color: var(--kpeef-navy);
    line-height: 1.35;
    transition: color .2s;
}

.home-notice-item:hover .home-notice-title {
    color: var(--kpeef-green);
}

.home-notice-excerpt {
    display: block;
    font-size: .78rem;
    color: #6c757d;
    margin-top: .15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-notice-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .25rem;
    flex-shrink: 0;
}

.home-notice-meta time {
    font-size: .72rem;
    font-weight: 600;
    color: #6c757d;
    white-space: nowrap;
}

.home-notice-arrow {
    color: #adb5bd;
    font-size: .9rem;
    transition: color .2s, transform .2s;
}

.home-notice-item:hover .home-notice-arrow {
    color: var(--kpeef-green);
    transform: translateX(2px);
}

@media (max-width: 575.98px) {
    .home-news-card-link {
        flex-direction: column;
        min-height: 0;
    }

    .home-news-thumb {
        width: 100%;
        height: 140px;
    }

    .home-news-arrow {
        display: none;
    }

    .home-notice-link {
        flex-wrap: wrap;
    }

    .home-notice-meta {
        flex-direction: row;
        align-items: center;
        width: 100%;
        padding-left: calc(40px + .85rem);
        justify-content: space-between;
    }
}

/* News pages */
.news-hero-subtitle {
    font-size: 1.05rem;
    opacity: .92;
    max-width: 720px;
}

.news-page,
.news-article-page {
    background: linear-gradient(180deg, #f8fafb 0%, #f4f7fa 100%);
}

.news-list-card {
    border: 1px solid #e3e8ef;
    border-radius: .6rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 18px rgba(16, 29, 54, .06);
    transition: border-color .25s, box-shadow .25s, transform .25s;
}

.news-list-card:hover {
    border-color: #c5d4e8;
    box-shadow: 0 12px 30px rgba(16, 29, 54, .1);
    transform: translateY(-4px);
}

.news-list-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.news-list-thumb {
    height: 200px;
    overflow: hidden;
    background: #e9ecef;
}

.news-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.news-list-card:hover .news-list-thumb img {
    transform: scale(1.05);
}

.news-list-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, var(--kpeef-accent), #dceef9);
    color: var(--kpeef-green);
    font-size: 2.75rem;
}

.news-list-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.15rem 1.2rem 1.25rem;
}

.news-list-date {
    display: inline-block;
    width: fit-content;
    font-size: .72rem;
    font-weight: 700;
    color: #fff;
    background: var(--kpeef-green);
    padding: .18rem .55rem;
    border-radius: 2rem;
    margin-bottom: .65rem;
}

.news-list-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--kpeef-navy);
    line-height: 1.4;
    margin: 0 0 .55rem;
    transition: color .2s;
}

.news-list-card:hover .news-list-title {
    color: var(--kpeef-green);
}

.news-list-excerpt {
    font-size: .88rem;
    color: #5c6670;
    line-height: 1.55;
    margin: 0 0 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.news-list-read-more {
    font-size: .82rem;
    font-weight: 700;
    color: var(--kpeef-green);
    margin-top: auto;
}

.news-empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    background: #fff;
    border: 1px dashed #d5dde6;
    border-radius: .6rem;
}

.news-empty-icon {
    font-size: 2.5rem;
    color: var(--kpeef-green);
    opacity: .45;
    margin-bottom: 1rem;
    display: block;
}

.news-detail-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .65rem;
    margin-bottom: .75rem;
}

.news-detail-category {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #fff;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .35);
    padding: .2rem .6rem;
    border-radius: 2rem;
}

.news-detail-hero-date {
    font-size: .85rem;
    opacity: .92;
}

.news-article-panel {
    border: 1px solid #e3e8ef;
    border-radius: .6rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 28px rgba(16, 29, 54, .08);
}

.news-article-banner img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.news-article-body {
    padding: 1.75rem 1.75rem 2rem;
}

.news-article-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--kpeef-navy);
    font-weight: 500;
    margin: 0;
}

.news-article-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #44515c;
}

.news-article-content h2,
.news-article-content h3,
.news-article-content h4 {
    color: var(--kpeef-navy);
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: .75rem;
}

.news-article-content p {
    margin-bottom: 1rem;
}

.news-article-content ul,
.news-article-content ol {
    padding-left: 1.25rem;
    margin-bottom: 1.25rem;
}

.news-article-content li {
    margin-bottom: .5rem;
}

.news-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: .4rem;
    margin: 1rem 0;
}

.news-article-content a {
    color: var(--kpeef-green);
    font-weight: 600;
    text-decoration: none;
}

.news-article-content a:hover {
    text-decoration: underline;
}

.btn-news-back {
    color: var(--kpeef-green);
    border-color: var(--kpeef-green);
    font-weight: 600;
}

.btn-news-back:hover {
    background: var(--kpeef-green);
    border-color: var(--kpeef-green);
    color: #fff;
}

@media (max-width: 575.98px) {
    .news-hero-subtitle {
        font-size: .92rem;
    }

    .news-article-body {
        padding: 1.25rem;
    }

    .news-list-thumb {
        height: 180px;
    }
}
