    .home-page {
        --home-green: #172D2D;
        --home-accent: #627B35;
        --home-soft: #f4f7f5;
        --home-shadow: 0 16px 40px rgba(23, 45, 45, 0.08);
    }

    .home-page .main-slider-three {
        border-radius: 0 0 20px 20px;
        overflow: hidden;
    }

    .home-hero__slide {
        min-height: clamp(340px, 58vh, 620px);
    }

    .home-hero__slide .image-layer-three {
        transform: scale(1.02);
    }

    .home-hero__slide .main-slider-three__content {
        padding: clamp(24px, 5vw, 48px) 0;
    }

    .home-hero__slide .main-slider-three__title {
        font-size: clamp(2rem, 5vw, 3.75rem);
        line-height: 1.1;
        max-width: 12ch;
    }

    .home-hero__slide .main-slider-three__text {
        font-size: clamp(1rem, 2.2vw, 1.25rem);
        max-width: 36rem;
        margin-top: 1rem;
    }

    .home-hero__fallback {
        min-height: clamp(340px, 58vh, 620px);
        display: flex;
        align-items: center;
        background: linear-gradient(135deg, rgba(23, 45, 45, 0.96), rgba(98, 123, 53, 0.88));
        color: #fff;
        padding: 3rem 0;
    }

    .home-section {
        padding: clamp(3.5rem, 7vw, 6rem) 0;
    }

    .home-section--soft {
        background: var(--home-soft);
    }

    .home-section__header {
        text-align: center;
        max-width: 720px;
        margin: 0 auto 2.5rem;
    }

    .home-section__eyebrow {
        display: inline-block;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--home-accent);
        margin-bottom: 0.75rem;
    }

    .home-section__title {
        font-size: clamp(1.75rem, 3.5vw, 2.5rem);
        font-weight: 800;
        color: var(--home-green);
        margin: 0;
        line-height: 1.2;
    }

    .home-section__subtitle {
        margin: 0.85rem 0 0;
        color: #5f6f69;
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .home-bio {
        align-items: center;
        row-gap: 2rem;
    }

    .home-bio__media {
        position: relative;
    }

    .home-bio__media img {
        width: 100%;
        max-width: 420px;
        border-radius: 18px;
        box-shadow: var(--home-shadow);
        display: block;
        margin: 0 auto;
        aspect-ratio: 3/4;
        object-fit: cover;
    }

    .home-bio__name {
        margin-top: 1.25rem;
        text-align: center;
        font-family: 'Anton', sans-serif;
        font-size: clamp(1.5rem, 3vw, 2rem);
        color: var(--home-green);
    }

    .home-bio__content {
        padding: 0 clamp(0rem, 2vw, 1rem);
    }

    .home-bio__content .news-details__text-1 {
        font-size: 1.05rem;
        line-height: 1.85;
        color: #33413c;
    }

    .home-card {
        height: 100%;
        background: #fff;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: var(--home-shadow);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .home-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 22px 48px rgba(23, 45, 45, 0.12);
    }

    .home-card__image-wrap {
        position: relative;
        overflow: hidden;
        aspect-ratio: 4/3;
        background: #e8eeea;
    }

    .home-card__image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.45s ease;
    }

    .home-card:hover .home-card__image-wrap img {
        transform: scale(1.05);
    }

    .home-card__overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 45%, rgba(23, 45, 45, 0.55));
    }

    .home-card__body {
        padding: 1.35rem 1.4rem 1.5rem;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .home-card__title {
        font-size: 1.2rem;
        font-weight: 700;
        margin: 0 0 1rem;
        line-height: 1.35;
    }

    .home-card__title a {
        color: var(--home-green);
        text-decoration: none;
    }

    .home-card__title a:hover {
        color: var(--home-accent);
    }

    .home-card__footer {
        margin-top: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding-top: 0.75rem;
        border-top: 1px solid #e8eeeb;
    }

    .home-card__link {
        font-weight: 600;
        color: var(--home-accent);
        text-decoration: none;
    }

    .home-card__arrow {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: var(--home-soft);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--home-green);
        transition: background 0.3s ease, color 0.3s ease;
    }

    .home-card:hover .home-card__arrow {
        background: var(--home-accent);
        color: #fff;
    }

    .home-publications {
        padding-top: 0;
    }

    .home-publications .news-one__single {
        margin-bottom: 0;
    }

    .home-publications .news-one__img img {
        height: 260px;
        object-fit: cover;
        border-radius: 14px;
    }

    .home-publications .news-one__content {
        padding-top: 1rem;
    }

    .home-publications .news-one__title {
        font-size: 1.1rem;
        line-height: 1.4;
        min-height: 3rem;
    }

    .home-events {
        background: linear-gradient(180deg, #fff 0%, var(--home-soft) 100%);
    }

    .home-events__intro {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-right: clamp(0rem, 3vw, 2rem);
    }

    .home-events__intro .section-title__title {
        font-size: clamp(1.75rem, 3.5vw, 2.5rem);
        font-weight: 800;
        color: var(--home-green);
    }

    .home-events__intro p {
        color: #5f6f69;
        line-height: 1.8;
        margin: 1rem 0 1.5rem;
    }

    .home-event-item {
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 1.25rem;
        align-items: center;
        background: #fff;
        border-radius: 16px;
        padding: 1rem;
        box-shadow: var(--home-shadow);
        margin-bottom: 1rem;
    }

    .home-event-item__thumb {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        aspect-ratio: 1;
        background: #e8eeea;
    }

    .home-event-item__thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .home-event-item__date {
        position: absolute;
        left: 8px;
        bottom: 8px;
        background: var(--home-accent);
        color: #fff;
        font-size: 0.72rem;
        font-weight: 700;
        padding: 0.35rem 0.5rem;
        border-radius: 6px;
        line-height: 1.2;
    }

    .home-event-item__title {
        font-size: 1.05rem;
        font-weight: 700;
        margin: 0.35rem 0 0.5rem;
        line-height: 1.35;
    }

    .home-event-item__title a {
        color: var(--home-green);
        text-decoration: none;
    }

    .home-event-item__meta {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem 1.25rem;
        margin: 0;
        padding: 0;
        list-style: none;
        color: #6b7c75;
        font-size: 0.92rem;
    }

    .home-event-item__meta i {
        color: var(--home-accent);
        margin-right: 0.35rem;
    }

    .home-empty {
        text-align: center;
        color: #6b7c75;
        padding: 2rem 1rem;
        background: #fff;
        border-radius: 16px;
        box-shadow: var(--home-shadow);
    }

    @media (max-width: 991px) {
        .home-bio__content {
            text-align: center;
        }

        .home-events__intro {
            text-align: center;
            padding-right: 0;
            margin-bottom: 2rem;
        }
    }

    @media (max-width: 767px) {
        .home-page .container-fluid {
            padding-left: 1rem;
            padding-right: 1rem;
        }

        .home-event-item {
            grid-template-columns: 1fr;
        }

        .home-event-item__thumb {
            aspect-ratio: 16/9;
        }

        .home-publications .news-one__img img {
            height: 220px;
        }

        .home-hero__slide .main-slider-three__title {
            max-width: none;
        }
    }
