.recent-blog-home,
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.recent-blog-home {
    --recent-blog-accent: var(--theme-primary, #ff3300);
    background: #F3F4F6;
    isolation: isolate;
    overflow: hidden;
    padding: 18px 0 34px;
    position: relative;
    z-index: 0;
}

.recent-blog-home::before {
    display: none;
}

.recent-blog-home::after {
    content: "";
    display: none;
}

.recent-blog-home > .container {
    max-width: none;
    padding-left: clamp(12px, 1.8vw, 30px);
    padding-right: clamp(12px, 1.8vw, 30px);
    position: relative;
    width: 100%;
    z-index: 2;
}

.recent-blog-banner {
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(18, 25, 35, .12);
    height: clamp(450px, 28vw, 520px);
    margin: 0;
    overflow: hidden;
    width: 100%;
}

.recent-blog-banner img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.recent-blog-slider-shell {
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(18, 25, 35, .16);
    overflow: hidden;
    position: relative;
}

.recent-blog-slider,
.recent-blog-slider .owl-stage-outer,
.recent-blog-slider .owl-stage,
.recent-blog-slider .owl-item {
    height: 100%;
}

.recent-blog-slide {
    background: #252a31;
    height: clamp(450px, 28vw, 520px);
    isolation: isolate;
    overflow: hidden;
    position: relative;
}

.recent-blog-slide-image {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    transform: scale(1.01);
    transition: transform 6s ease;
    width: 100%;
    z-index: -2;
}

.recent-blog-slider .owl-item.active .recent-blog-slide-image {
    transform: scale(1.07);
}

.recent-blog-slide-overlay {
    background:
        linear-gradient(90deg, rgba(7, 12, 19, .94) 0%, rgba(7, 12, 19, .72) 47%, rgba(7, 12, 19, .18) 78%),
        linear-gradient(0deg, rgba(7, 12, 19, .8) 0%, transparent 55%);
    inset: 0;
    position: absolute;
    z-index: -1;
}

.recent-blog-slide-content {
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    max-width: 760px;
    padding: clamp(42px, 6vw, 78px);
}

.recent-blog-category {
    align-self: flex-start;
    background: var(--recent-blog-accent);
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    margin-bottom: 16px;
    padding: 8px 15px;
}

.recent-blog-slide-content h2 {
    color: #fff;
    display: -webkit-box;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.15;
    margin: 0 0 16px;
    overflow: hidden;
    text-shadow: 0 3px 18px rgba(0, 0, 0, .25);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.recent-blog-slide-content > p {
    color: rgba(255, 255, 255, .84);
    display: -webkit-box;
    font-size: 17px;
    line-height: 1.75;
    margin: 0 0 24px;
    max-width: 680px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.recent-blog-slide-footer {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
}

.recent-blog-slide-footer time {
    align-items: center;
    color: rgba(255, 255, 255, .78);
    display: inline-flex;
    font-size: 14px;
    gap: 8px;
}

.recent-blog-read-more {
    align-items: center;
    background: var(--recent-blog-accent);
    border: 1px solid var(--recent-blog-accent);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 15px;
    font-weight: 700;
    gap: 9px;
    padding: 12px 20px;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.recent-blog-read-more:hover,
.recent-blog-read-more:focus-visible {
    background: var(--theme-primary-hover, #d92b00);
    border-color: var(--theme-primary-hover, #d92b00);
    color: #fff;
    outline: none;
    transform: translateY(-2px);
}

.recent-blog-control {
    align-items: center;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 15px;
    height: 48px;
    justify-content: center;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background .25s ease, transform .25s ease;
    width: 48px;
    z-index: 5;
}

.recent-blog-control:hover,
.recent-blog-control:focus-visible {
    background: var(--recent-blog-accent);
    border-color: var(--recent-blog-accent);
    color: #fff;
    outline: none;
    transform: translateY(-50%) scale(1.06);
}

.recent-blog-prev {
    left: 20px;
}

.recent-blog-next {
    right: 20px;
}

.recent-blog-dots {
    align-items: center;
    bottom: 24px;
    display: flex;
    gap: 9px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    z-index: 5;
}

.recent-blog-dots button {
    background: rgba(255, 255, 255, .48);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    height: 8px;
    padding: 0;
    transition: background .25s ease, width .25s ease;
    width: 8px;
}

.recent-blog-dots button.is-active {
    background: var(--recent-blog-accent);
    width: 28px;
}

.recent-blog-dots button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.recent-blog-empty {
    background: #fff;
    border: 1px solid #e5e8ec;
    border-radius: 0;
    padding: 80px 24px;
    text-align: center;
}

.recent-blog-empty-icon {
    display: block;
    font-size: 40px;
    margin-bottom: 12px;
}

.recent-blog-empty h2 {
    color: #20242a;
    font-size: 24px;
    margin-bottom: 8px;
}

.recent-blog-empty p {
    color: #747b84;
    margin: 0;
}

@media (max-width: 991px) {
    .recent-blog-home {
        padding: 14px 0 28px;
    }

    .recent-blog-home::before {
        background-size: 132% auto;
        height: 760px;
        min-height: 0;
        opacity: .92;
        top: 210px;
    }

    .recent-blog-slide {
        height: 380px;
    }

    .recent-blog-banner {
        height: 380px;
    }

}

@media (max-width: 575px) {
    .recent-blog-home {
        padding: 10px 0 22px;
    }

    .recent-blog-home::before {
        background-position: bottom center;
        background-size: 230% auto;
        bottom: 0;
        height: 520px;
        opacity: .38;
        top: auto;
    }

    .recent-blog-slider-shell {
        border-radius: 12px;
    }

    .recent-blog-banner {
        border-radius: 12px;
        height: 320px;
    }

    .recent-blog-slide {
        height: 320px;
    }

    .recent-blog-slide-overlay {
        background:
            linear-gradient(0deg, rgba(7, 12, 19, .96) 0%, rgba(7, 12, 19, .66) 68%, rgba(7, 12, 19, .18) 100%);
    }

    .recent-blog-slide-content {
        max-width: none;
        padding: 24px 20px 44px;
    }

    .recent-blog-category {
        font-size: 11px;
        margin-bottom: 11px;
        padding: 6px 12px;
    }

    .recent-blog-slide-content h2 {
        font-size: 25px;
        line-height: 1.18;
        margin-bottom: 8px;
    }

    .recent-blog-slide-content > p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 12px;
        -webkit-line-clamp: 2;
    }

    .recent-blog-read-more {
        font-size: 13px;
        padding: 9px 14px;
    }

    .recent-blog-control {
        height: 40px;
        top: 28px;
        transform: none;
        width: 40px;
    }

    .recent-blog-control:hover,
    .recent-blog-control:focus-visible {
        transform: scale(1.05);
    }

    .recent-blog-prev {
        left: auto;
        right: 66px;
    }

    .recent-blog-next {
        right: 18px;
    }

    .recent-blog-dots {
        bottom: 14px;
    }

}

@media (max-width: 374px) {
    .recent-blog-banner,
    .recent-blog-slide {
        height: 300px;
    }

    .recent-blog-slide-content h2 {
        font-size: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .recent-blog-slide-image,
    .recent-blog-read-more,
    .recent-blog-control,
    .recent-blog-dots button {
        transition: none;
    }
}

/* Full-viewport static home hero */
.recent-blog-home {
    padding: 0;
    width: 100%;
}

.recent-blog-home > .container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

.recent-blog-banner {
    border-radius: 0;
    box-shadow: none;
    height: clamp(680px, 39vw, 760px);
    width: 100%;
}

.recent-blog-banner img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.home-hero-slider {
    --home-hero-accent: var(--theme-primary, #ff3300);
    /* background: #172018; */
    height: clamp(680px, 39vw, 760px);
    overflow: hidden;
    position: relative;
    width: 100%;
}

.home-hero-track,
.home-hero-slide {
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
}

.home-hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity .85s ease;
    z-index: 0;
}

.home-hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.home-hero-slide img {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.home-hero-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .58) 55%, rgba(0, 0, 0, .62));
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.home-hero-content {
    background: transparent;
    border-left: 4px solid var(--home-hero-accent);
    border-radius: 0 18px 18px 0;
    color: #fff;
    left: clamp(76px, 8vw, 150px);
    max-width: 940px;
    padding: 34px 42px 38px;
    position: absolute;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .38);
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 152px);
    z-index: 2;
}

.home-hero-title {
    color: #ffd36a;
    font-size: clamp(36px, 2.8vw, 48px);
    font-weight: 800;
    letter-spacing: -.015em;
    line-height: 1.2;
    margin: 0 0 18px;
    text-shadow: 0 3px 16px rgba(0, 0, 0, .34);
}

.home-hero-highlight {
    color: #fff;
    font-size: clamp(60px, 5.3vw, 92px);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.08;
    margin: 0 0 24px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, .42);
}

.home-hero-description {
    color: rgba(255, 255, 255, .96);
    font-size: 24px;
    line-height: 1.65;
    margin: 0 0 30px;
    max-width: 760px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .42);
}

.home-hero-btn {
    align-items: center;
    background: var(--home-hero-accent);
    border: 1px solid var(--home-hero-accent);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 19px;
    font-weight: 700;
    gap: 9px;
    padding: 16px 30px;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.home-hero-btn:hover,
.home-hero-btn:focus-visible {
    background: var(--theme-primary-hover, #d92b00);
    border-color: var(--theme-primary-hover, #d92b00);
    color: #fff;
    outline: 2px solid rgba(255, 255, 255, .88);
    outline-offset: 3px;
    transform: translateY(-2px);
}

.home-hero-btn span {
    transition: transform .2s ease;
}

.home-hero-btn:hover span,
.home-hero-btn:focus-visible span {
    transform: translateX(4px);
}

.home-hero-arrow {
    align-items: center;
    backdrop-filter: blur(7px);
    background: rgba(0, 0, 0, .22);
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    height: 48px;
    justify-content: center;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background .2s ease, transform .2s ease;
    width: 48px;
    z-index: 3;
}

.home-hero-arrow:hover,
.home-hero-arrow:focus-visible {
    background: rgba(0, 0, 0, .48);
    outline: 2px solid rgba(255, 255, 255, .9);
    outline-offset: 2px;
    transform: translateY(-50%) scale(1.05);
}

.home-hero-arrow--prev {
    left: 24px;
}

.home-hero-arrow--next {
    right: 24px;
}

.home-hero-dots {
    align-items: center;
    bottom: 22px;
    display: flex;
    gap: 9px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    z-index: 3;
}

.home-hero-dots button {
    background: rgba(255, 255, 255, .58);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    height: 8px;
    padding: 0;
    transition: background .25s ease, width .25s ease;
    width: 8px;
}

.home-hero-dots button.is-active {
    background: var(--home-hero-accent);
    width: 28px;
}

.home-hero-dots button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

@media (max-width: 991px) {
    .home-hero-slider,
    .recent-blog-banner {
        height: 560px;
    }

    .home-hero-content {
        left: 76px;
        max-width: 760px;
        padding: 28px 32px 31px;
        width: calc(100% - 152px);
    }

    .home-hero-title {
        font-size: 32px;
    }

    .home-hero-highlight {
        font-size: 62px;
    }

    .home-hero-description {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .home-hero-slider,
    .recent-blog-banner {
        height: 380px;
    }

    .home-hero-content {
        background: transparent;
        border-left-width: 3px;
        border-radius: 0 12px 12px 0;
        left: 54px;
        max-width: none;
        padding: 17px 18px 18px;
        width: calc(100% - 108px);
    }

    .home-hero-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .home-hero-highlight {
        font-size: 38px;
        line-height: 1.1;
        margin-bottom: 13px;
    }

    .home-hero-description {
        display: -webkit-box;
        font-size: 15px;
        line-height: 1.55;
        margin-bottom: 15px;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .home-hero-btn {
        font-size: 15px;
        padding: 11px 19px;
    }

    .home-hero-arrow {
        height: 36px;
        width: 36px;
    }

    .home-hero-arrow--prev {
        left: 14px;
    }

    .home-hero-arrow--next {
        right: 14px;
    }

    .home-hero-dots {
        bottom: 15px;
    }
}

@media (max-width: 374px) {
    .home-hero-slider,
    .recent-blog-banner {
        height: 360px;
    }

    .home-hero-highlight {
        font-size: 34px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero-slide,
    .home-hero-btn,
    .home-hero-arrow,
    .home-hero-dots button {
        transition: none;
    }
}

/* Reference-inspired hero composition */
.home-hero-overlay {
    background: rgba(0, 0, 0, .2);
}

.home-hero-content {
    background: transparent;
    border: 0;
    border-radius: 0;
    left: clamp(154px, 15.1vw, 300px);
    max-width: 1110px;
    padding: 0;
    text-shadow: none;
    top: 48%;
    width: min(58vw, 1150px);
}

.home-hero-title {
    align-items: center;
    color: #111;
    display: flex;
    font-size: clamp(30px, 2.3vw, 45px);
    gap: 22px;
    margin: 0 0 32px;
    max-width: 1080px;
    position: relative;
    text-shadow: 0 2px 10px rgba(61, 36, 5, .2);
    white-space: nowrap;
}

.home-hero-title::before {
    background: #202020;
    content: "";
    height: 58px;
    width: 2px;
}

.home-hero-title::after {
    background: linear-gradient(90deg, #202020, rgba(32, 32, 32, .08));
    content: "";
    flex: 1 1 auto;
    height: 2px;
    min-width: 220px;
}

.home-hero-highlight {
    color: #fff;
    font-size: clamp(60px, 5.1vw, 98px);
    letter-spacing: -.035em;
    line-height: 1.08;
    margin-bottom: 42px;
    max-width: 1110px;
    text-shadow: 0 5px 9px rgba(34, 28, 18, .42);
    white-space: nowrap;
}

.home-hero-description {
    background: transparent;
    border-radius: 0;
    color: #202020;
    font-size: clamp(19px, 1.25vw, 24px);
    font-weight: 600;
    line-height: 1.75;
    margin-bottom: 20px;
    max-width: 1040px;
    padding: 0 0 0 28px;
    text-shadow: none;
}

.home-hero-btn {
    box-shadow: 0 9px 24px rgba(var(--theme-primary-rgb, 255, 51, 0), .24);
    font-size: 18px;
    margin-left: 28px;
    padding: 12px 27px;
    position: relative;
    top: -12px;
}

.home-hero-values {
    align-items: stretch;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 10px;
    bottom: 32px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    left: clamp(282px, 15.1vw, 300px);
    max-width: 960px;
    position: absolute;
    padding: 10px 8px;
    box-shadow: 0 12px 32px rgba(17, 24, 28, .16);
    width: min(50vw, 960px);
    z-index: 3;
}

.home-hero-value {
    align-items: start;
    display: grid;
    gap: 11px;
    grid-template-columns: 58px minmax(0, 1fr);
    min-width: 0;
    padding: 8px 18px 8px 10px;
    position: relative;
}

.home-hero-value + .home-hero-value::before {
    background: rgba(32, 32, 32, .48);
    content: "";
    height: 88%;
    left: 0;
    position: absolute;
    top: 6%;
    width: 1px;
}

.home-hero-value-icon {
    align-items: center;
    background: #202020;
    border: 2px solid #111;
    border-radius: 50%;
    color: #fff;
    display: flex;
    font-size: 23px;
    height: 58px;
    justify-content: center;
    width: 58px;
}

.home-hero-value strong,
.home-hero-value small {
    display: block;
}

.home-hero-value strong {
    color: #111;
    font-size: 25px;
    line-height: 1.2;
    margin-bottom: 6px;
}

.home-hero-value small {
    color: #3f4749;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.home-hero-dots {
    bottom: 10px;
}

.home-hero-dots button {
    background: rgba(32, 32, 32, .48);
}

.home-hero-dots button.is-active {
    background: #111;
}

@media (max-width: 1199px) {
    .home-hero-content {
        left: 100px;
        width: calc(100% - 200px);
    }

    .home-hero-highlight {
        white-space: normal;
    }

    .home-hero-values {
        left: 100px;
        width: calc(100% - 200px);
    }

    .home-hero-highlight {
        font-size: 64px;
    }
}

@media (max-width: 991px) {
    .home-hero-content {
        left: 76px;
        top: 41%;
        width: calc(100% - 152px);
    }

    .home-hero-title {
        font-size: 25px;
        margin-bottom: 22px;
    }

    .home-hero-title::before {
        height: 42px;
    }

    .home-hero-highlight {
        font-size: 52px;
        margin-bottom: 18px;
    }

    .home-hero-description {
        font-size: 17px;
        margin-bottom: 18px;
        padding-left: 0;
    }

    .home-hero-btn {
        margin-left: 0;
        top: -10px;
    }

    .home-hero-values {
        bottom: 22px;
        left: 76px;
        width: calc(100% - 152px);
    }

    .home-hero-value {
        gap: 8px;
        grid-template-columns: 38px minmax(0, 1fr);
        padding: 10px;
    }

    .home-hero-value-icon {
        font-size: 16px;
        height: 36px;
        width: 36px;
    }

    .home-hero-value strong {
        font-size: 15px;
    }

    .home-hero-value small {
        display: none;
    }
}

@media (max-width: 575px) {
    .home-hero-content {
        left: 48px;
        top: 44%;
        width: calc(100% - 96px);
    }

    .home-hero-title {
        font-size: 16px;
        gap: 10px;
        margin-bottom: 14px;
        white-space: normal;
    }

    .home-hero-title::before {
        height: 30px;
    }

    .home-hero-title::after {
        min-width: 35px;
    }

    .home-hero-highlight {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .home-hero-description {
        font-size: 13px;
        margin-bottom: 13px;
        padding: 0;
    }

    .home-hero-btn {
        font-size: 13px;
        padding: 9px 15px;
        top: auto;
    }

    .home-hero-values {
        display: none;
    }

    .home-hero-dots {
        bottom: 12px;
    }
}

/* Inline expanding feature details */
.heritage-community-cards.is-detail-open {
    align-items: start;
    grid-template-columns: calc((100% - 42px) / 4) minmax(0, 1fr);
}

.heritage-community-cards.is-detail-open .heritage-feature-card:not(.is-active) {
    display: none;
}

.heritage-community-cards.is-detail-open .heritage-feature-card.is-active {
    align-self: start;
    grid-column: 1;
    height: var(--heritage-card-height);
    transform: none;
}

.heritage-detail-panel {
    animation: heritagePanelIn .42s cubic-bezier(.2, .75, .25, 1) both;
    background: rgba(255, 255, 255, .96);
    border: 1px solid #e2dccd;
    border-radius: 0;
    box-shadow: 0 18px 48px rgba(35, 48, 34, .13);
    display: flex;
    flex-direction: column;
    grid-column: 2;
    height: var(--heritage-card-height);
    min-height: var(--heritage-card-height);
    min-width: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.heritage-detail-panel[hidden] {
    display: none !important;
}

.heritage-detail-close {
    align-items: center;
    background: #f7f4eb;
    border: 1px solid #ded7c8;
    border-radius: 50%;
    color: var(--heritage-green-dark);
    cursor: pointer;
    display: flex;
    font-size: 16px;
    height: 36px;
    justify-content: center;
    padding: 0;
    position: absolute;
    right: 18px;
    top: 18px;
    transition: background .2s ease, color .2s ease, transform .2s ease;
    width: 36px;
    z-index: 2;
}

.heritage-detail-close:hover,
.heritage-detail-close:focus-visible {
    background: var(--theme-primary-hover, var(--heritage-green));
    color: #fff;
    outline: none;
    transform: rotate(90deg);
}

.heritage-detail-badge {
    background: var(--heritage-green);
    border-radius: 0;
    color: #fff;
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    margin: 0 48px 11px 0;
    padding: 7px 12px;
    text-transform: uppercase;
}

.heritage-detail-header {
    flex: 0 0 auto;
    padding: 28px 28px 15px;
}

.heritage-detail-header > h3 {
    color: var(--heritage-green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(26px, calc(2.1vw + 2px), 34px);
    font-weight: 700;
    letter-spacing: -.015em;
    line-height: 1.2;
    margin: 0 48px 10px 0;
}

.heritage-detail-intro {
    color: #4d564e;
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 22px;
    max-width: 690px;
}

.heritage-detail-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 28px 28px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.heritage-detail-body:focus {
    outline: none;
}

.heritage-detail-body:focus-visible {
    outline: 2px solid #555;
    outline-offset: -3px;
}

.heritage-detail-body::-webkit-scrollbar {
    display: none;
    height: 0;
    width: 0;
}

.heritage-detail-section {
    border-top: 1px solid #dededb;
    padding: 22px 0;
}

.heritage-detail-section h4 {
    color: #222;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 15px;
}

.heritage-detail-about-grid {
    align-items: start;
    display: grid;
    gap: 20px;
    grid-template-columns: minmax(0, 1.35fr) minmax(155px, .65fr);
}

.heritage-detail-copy p {
    color: #505050;
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
}

.heritage-detail-copy p + p {
    margin-top: 12px;
}

.heritage-detail-cover {
    background: #eeeeec;
    border-radius: 8px;
    height: 168px;
    margin: 0;
    overflow: hidden;
}

.heritage-detail-cover img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.heritage-detail-feature-grid,
.heritage-detail-help-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.heritage-detail-feature,
.heritage-detail-help-item {
    align-items: start;
    background: #f5f5f3;
    border: 1px solid #e1e1de;
    border-radius: 8px;
    display: grid;
    gap: 11px;
    grid-template-columns: 36px minmax(0, 1fr);
    min-width: 0;
    padding: 13px;
}

.heritage-detail-feature > span,
.heritage-detail-help-item > span {
    align-items: center;
    background: #292929;
    border-radius: 6px;
    color: #fff;
    display: flex;
    font-size: 14px;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.heritage-detail-feature h5,
.heritage-detail-help-item h5 {
    color: #252525;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
    margin: 0 0 4px;
}

.heritage-detail-feature p,
.heritage-detail-help-item p {
    color: #626260;
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
}

.heritage-detail-goals {
    display: grid;
    gap: 9px 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
}

.heritage-detail-goals li {
    color: #424242;
    font-size: 14px;
    line-height: 1.55;
    padding-left: 20px;
    position: relative;
}

.heritage-detail-goals li::before {
    color: #222;
    content: "\2713";
    font-weight: 900;
    left: 0;
    position: absolute;
    top: 0;
}

.heritage-detail-cta {
    background: #252525;
    border-radius: 8px;
    color: #fff;
    margin-top: 2px;
    padding: 22px;
}

.heritage-detail-cta > p {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.55;
    margin: 0 0 17px;
}

.heritage-detail-action {
    align-items: center;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 7px;
    color: #222;
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    gap: 9px;
    padding: 10px 16px;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.heritage-detail-action:hover,
.heritage-detail-action:focus-visible {
    background: #dededb;
    color: #111;
    outline: none;
    transform: translateY(-1px);
}

@keyframes heritagePanelIn {
    from {
        opacity: 0;
        transform: translateX(24px) scale(.985);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@media (max-width: 1199px) {
    .heritage-community-section {
        --heritage-card-height: 500px;
    }

    .heritage-community-cards.is-detail-open {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .heritage-community-cards.is-detail-open .heritage-feature-card.is-active {
        grid-column: 1;
    }

    .heritage-detail-panel {
        grid-column: 1 / -1;
        min-height: 0;
    }
}

@media (max-width: 767px) {
    .heritage-community-section {
        --heritage-card-height: auto;
    }

    .heritage-detail-panel {
        height: min(560px, calc(100vh - 28px));
        min-height: 0;
    }

    .heritage-detail-header {
        padding: 24px 24px 13px;
    }

    .heritage-detail-body {
        padding: 0 24px 24px;
    }

    .heritage-detail-about-grid,
    .heritage-detail-feature-grid,
    .heritage-detail-help-grid,
    .heritage-detail-goals {
        grid-template-columns: minmax(0, 1fr);
    }

    .heritage-detail-cover {
        height: 210px;
        order: -1;
    }
}

@media (max-width: 575px) {
    .heritage-community-cards.is-detail-open {
        grid-template-columns: minmax(0, 1fr);
    }

    .heritage-community-cards.is-detail-open .heritage-feature-card.is-active,
    .heritage-detail-panel {
        grid-column: 1;
    }

    .heritage-detail-panel {
        height: min(520px, calc(100vh - 24px));
    }

    .heritage-detail-header {
        padding: 21px 21px 12px;
    }

    .heritage-detail-body {
        padding: 0 21px 21px;
    }

    .heritage-detail-header > h3 {
        font-size: 27px;
    }

    .heritage-detail-cover {
        height: 190px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .heritage-detail-panel {
        animation: none;
    }
}

/* Bengali heritage and community section */
.heritage-community-section {
    --heritage-green: var(--theme-primary, #ff3300);
    --heritage-green-dark: var(--theme-heading, #103a20);
    --heritage-red: var(--theme-primary-hover, var(--heritage-green));
    --heritage-card-height: 477px;
    background: #F8F7F4;
    color: #202820;
    overflow: hidden;
    padding: 70px 0 62px;
    position: relative;
}

.heritage-community-section::before,
.heritage-community-section::after {
    display: none;
}

.heritage-community-section::before {
    bottom: -165px;
    left: -95px;
    box-shadow: 0 0 0 28px rgba(148, 163, 184, .045), 0 0 0 58px rgba(31, 41, 55, .025);
}

.heritage-community-section::after {
    right: -155px;
    top: -170px;
}

.heritage-community-section .container {
    position: relative;
    z-index: 1;
}

.heritage-community-main {
    align-items: center;
    display: grid;
    gap: 30px;
    grid-template-columns: minmax(270px, 30fr) minmax(0, 70fr);
}

.heritage-community-intro {
    padding-right: 4px;
}

.heritage-community-label {
    align-items: center;
    color: var(--heritage-green-dark);
    display: inline-flex;
    font-size: 18px;
    font-weight: 800;
    gap: 10px;
    letter-spacing: .14em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.heritage-community-label i {
    color: var(--heritage-red);
    font-size: 20px;
}

.heritage-community-intro h2 {
    color: var(--heritage-green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(37px, calc(3.1vw + 2px), 54px);
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.12;
    margin: 0;
}

.heritage-community-flourish {
    background: var(--heritage-green);
    display: block;
    height: 1px;
    margin: 20px 0 18px 27px;
    position: relative;
    width: 155px;
}

.heritage-community-flourish::before {
    border: 1px solid var(--heritage-green);
    content: "";
    height: 9px;
    left: -22px;
    position: absolute;
    top: -4px;
    transform: rotate(45deg);
    width: 9px;
}

.heritage-community-intro > p {
    color: #49524b;
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
    max-width: 450px;
}

.heritage-community-cards {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.heritage-feature-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    box-shadow: 0 12px 35px rgba(39, 45, 34, .07);
    display: flex;
    flex-direction: column;
    height: var(--heritage-card-height);
    min-width: 0;
    overflow: hidden;
    position: relative;
    transition: box-shadow .3s ease, transform .3s ease;
}

.heritage-feature-card[role="button"] {
    cursor: pointer;
}

.heritage-feature-card:focus-visible {
    box-shadow: 0 0 0 3px rgba(23, 77, 42, .2), 0 19px 42px rgba(39, 45, 34, .13);
    outline: 2px solid var(--heritage-green);
    outline-offset: 3px;
}

.heritage-feature-card:hover {
    box-shadow: 0 19px 42px rgba(39, 45, 34, .13);
    transform: translateY(-6px);
}

.heritage-feature-image {
    background: #f3f4f6;
    height: 220px;
    overflow: hidden;
}

.heritage-feature-image img {
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
    width: 100%;
}

.heritage-feature-card:hover .heritage-feature-image img {
    transform: scale(1.045);
}

.heritage-feature-icon {
    align-items: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    color: var(--heritage-green);
    display: flex;
    font-size: 24px;
    height: 64px;
    justify-content: center;
    left: 50%;
    margin-left: -32px;
    position: absolute;
    top: 188px;
    width: 64px;
    z-index: 1;
}

.heritage-feature-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 44px 17px 24px;
    text-align: center;
}

.heritage-feature-content h3 {
    color: #242a24;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 12px;
}

.heritage-feature-content p {
    color: #59615a;
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 22px;
}

.heritage-feature-content .heritage-feature-link {
    align-items: center;
    color: var(--heritage-green-dark);
    display: inline-flex;
    font-size: 15px;
    font-weight: 700;
    gap: 8px;
    justify-content: center;
    margin-top: auto;
}

.heritage-feature-card:hover .heritage-feature-link,
.heritage-feature-card:focus-visible .heritage-feature-link {
    color: var(--heritage-red);
}

.heritage-feature-content .heritage-feature-link i {
    font-size: 12px;
    transition: transform .2s ease;
}

.heritage-feature-card:hover .heritage-feature-link i,
.heritage-feature-card:focus-visible .heritage-feature-link i {
    transform: translateX(4px);
}

.heritage-values {
    background: linear-gradient(to bottom, rgba(255, 255, 255, .95), rgba(248, 250, 252, .82));
    border: 1px solid #e5e7eb;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(39, 45, 34, .05);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 30px;
    overflow: hidden;
    position: relative;
}

.heritage-values::after {
    background: linear-gradient(90deg, rgba(148, 163, 184, .14), rgba(255, 255, 255, .72), rgba(148, 163, 184, .14));
    bottom: 0;
    content: "";
    height: 9px;
    left: 0;
    position: absolute;
    right: 0;
}

.heritage-value-item {
    align-items: center;
    display: grid;
    gap: 15px;
    grid-template-columns: 48px minmax(0, 1fr);
    min-width: 0;
    padding: 28px 24px 52px;
    position: relative;
    z-index: 1;
}

.heritage-value-item + .heritage-value-item::before {
    background: #e5e7eb;
    content: "";
    height: 60%;
    left: 0;
    position: absolute;
    top: 20%;
    width: 1px;
}

.heritage-value-icon {
    align-items: center;
    color: var(--heritage-green);
    display: flex;
    font-size: 37px;
    justify-content: center;
}

.heritage-value-item h3 {
    color: var(--heritage-green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 7px;
}

.heritage-value-item p {
    color: #59615a;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1199px) {
    .heritage-community-main {
        gap: 38px;
        grid-template-columns: minmax(0, 1fr);
    }

    .heritage-community-intro {
        max-width: 720px;
        padding-right: 0;
    }

    .heritage-community-intro h2 {
        max-width: 680px;
    }

    .heritage-community-cards {
        gap: 22px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .heritage-feature-image {
        height: 245px;
    }

    .heritage-feature-icon {
        top: 213px;
    }
}

@media (max-width: 991px) {
    .heritage-community-section {
        padding: 56px 0 52px;
    }

    .heritage-values {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .heritage-value-item:nth-child(3)::before {
        display: none;
    }

    .heritage-value-item:nth-child(n+3) {
        border-top: 1px solid #e5e7eb;
    }
}

@media (max-width: 575px) {
    .heritage-community-section {
        padding: 20px 0 20px;
    }

    .heritage-community-label {
        margin-bottom: 18px;
    }

    .heritage-community-intro h2 {
        font-size: 36px;
    }

    .heritage-community-cards,
    .heritage-values {
        grid-template-columns: minmax(0, 1fr);
    }

    .heritage-feature-image {
        height: 225px;
    }

    .heritage-feature-icon {
        top: 193px;
    }

    .heritage-value-item {
        padding: 24px 21px 42px;
    }

    .heritage-value-item + .heritage-value-item::before {
        display: none;
    }

    .heritage-value-item:nth-child(n+2) {
        border-top: 1px solid #e5e7eb;
    }
}

.about-pokkho-section {
    background: #fff;
    isolation: isolate;
    overflow: hidden;
    padding: 60px 0;
    position: relative;
}

.about-pokkho-section::after {
    display: none;
}

.about-pokkho-section > .container {
    position: relative;
    z-index: 2;
}

.about-boat-decoration {
    display: none;
}

@keyframes boatFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

.about-pokkho-layout {
    align-items: center;
    display: grid;
    gap: 64px;
    grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
}

.about-pokkho-visual {
    padding: 14px;
    position: relative;
}

.about-pokkho-visual::before {
    border: 1px solid #dfe3e8;
    border-radius: 0;
    content: "";
    inset: 0 28px 28px 0;
    position: absolute;
}

.about-pokkho-image-frame {
    background: #f4f6f8;
    border-radius: 0;
    box-shadow: 0 18px 45px rgba(24, 30, 38, .1);
    height: 570px;
    overflow: hidden;
    position: relative;
}

.about-pokkho-image-frame img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.about-pokkho-label {
    align-items: center;
    display: flex;
    font-size: 14px;
    font-weight: 700;
    gap: 11px;
    letter-spacing: .12em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.about-pokkho-label span {
    background: currentColor;
    display: block;
    height: 2px;
    width: 34px;
}

.about-pokkho-content h2 {
    color: #20242a;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px;
    max-width: 690px;
}

.about-pokkho-intro {
    color: #68707a;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.85;
    margin: 0 0 30px;
}

.about-pokkho-tabs {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 30px;
}

.about-pokkho-tab {
    background: transparent;
    border: 0;
    border-bottom: 2px solid #e3e6e9;
    color: #30353b;
    cursor: pointer;
    font-family: inherit;
    font-size: 22px;
    font-weight: 700;
    outline: 0;
    padding: 0 4px 14px;
    position: relative;
    text-align: left;
    transition: color .25s ease, border-color .25s ease;
}

.about-pokkho-tab::after {
    background: currentColor;
    bottom: -2px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
    width: 100%;
}

.about-pokkho-tab.is-active::after {
    transform: scaleX(1);
}

.about-pokkho-tab:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

.about-pokkho-panel {
    align-items: stretch;
    animation: aboutPanelIn .3s ease;
    display: grid;
    gap: 25px;
    grid-template-columns: minmax(140px, 36fr) minmax(0, 64fr);
}

.about-pokkho-panel[hidden] {
    display: none;
}

.about-pokkho-panel > img {
    border-radius: 0;
    height: 100%;
    max-height: 220px;
    min-height: 190px;
    object-fit: cover;
    width: 100%;
}

.about-pokkho-panel p {
    color: #555e68;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.75;
    margin: 0 0 15px;
}

.about-pokkho-panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-pokkho-panel li {
    align-items: flex-start;
    color: #343a40;
    display: flex;
    gap: 10px;
    line-height: 1.55;
    margin-top: 9px;
}

.about-pokkho-panel li span {
    flex: 0 0 auto;
    font-weight: 700;
}

@keyframes aboutPanelIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .about-pokkho-section {
        padding: 64px 0;
    }

    .about-boat-decoration {
        bottom: 0;
        opacity: .26;
        right: -58px;
        width: 390px;
    }

    .about-pokkho-layout {
        align-items: start;
        gap: 42px;
        grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
    }

    .about-pokkho-image-frame {
        height: 480px;
    }

    .about-pokkho-content h2 {
        font-size: 33px;
    }

    .about-pokkho-panel {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-pokkho-panel > img {
        height: 190px;
        min-height: 0;
    }
}

@media (max-width: 767px) {
    .about-boat-decoration {
        display: none;
    }

    .about-pokkho-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-pokkho-image-frame {
        height: min(120vw, 520px);
    }
}

@media (max-width: 575px) {
    .about-pokkho-section {
        padding: 20px 0;
    }

    .about-pokkho-layout {
        gap: 36px;
    }

    .about-pokkho-content h2 {
        font-size: 30px;
    }

    .about-pokkho-tabs {
        gap: 10px;
    }

    .about-pokkho-tab {
        font-size: 16px;
        padding-left: 2px;
        padding-right: 2px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-boat-decoration,
    .about-pokkho-panel {
        animation: none;
    }
}

@media (min-width: 1400px) {
    .about-boat-decoration {
        bottom: 0;
        right: -60px;
        width: 640px;
    }
}

.more-posts-section {
    --more-posts-accent: var(--theme-primary, #ff3300);
    --more-posts-ink: #20242a;
    background: #F6F7F9;
    isolation: isolate;
    overflow: hidden;
    padding: 72px 0 178px;
    position: relative;
    z-index: 0;
}

.more-posts-section::before {
    display: none;
}

.more-posts-section::after {
    display: none;
}

.more-posts-section > .container {
    position: relative;
    z-index: 2;
}

.more-posts-panel {
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 3;
}

.more-posts-panel::before {
    display: none;
}

.more-posts-panel::after {
    display: none;
}

.more-posts-heading {
    align-items: flex-end;
    display: flex;
    justify-content: space-between;
    margin-bottom: 28px;
}

.more-posts-heading h2 {
    color: var(--more-posts-ink);
    font-family: inherit;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 5px 0 0;
    position: relative;
}

.more-posts-heading h2::after {
    display: none;
}

.more-posts-eyebrow {
    color: var(--more-posts-accent);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.more-posts-subtitle {
    display: none;
}

.more-posts-view-all {
    color: #20242a;
    display: inline-flex;
    font-size: 16px;
    font-weight: 600;
    gap: 6px;
    padding-bottom: 4px;
    position: relative;
}

.more-posts-view-all::after {
    background: currentColor;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(.18);
    transform-origin: left;
    transition: transform .28s ease;
    width: 100%;
}

.more-posts-view-all:hover,
.more-post-body h3 a:hover {
    color: var(--more-posts-accent);
}

.more-posts-view-all:hover::after {
    transform: scaleX(1);
}

.more-posts-view-all span {
    transition: transform .28s ease;
}

.more-posts-view-all:hover span {
    transform: translateX(4px);
}

.more-posts-carousel .owl-stage,
.more-posts-carousel .owl-item {
    display: flex;
    position: relative;
    z-index: 4;
}

/* Native Owl controls are replaced by .more-posts-controls below. */
.more-posts-carousel > .owl-nav,
.more-posts-carousel > .owl-dots,
.more-posts-carousel .owl-controls {
    display: none !important;
}

.more-post-card {
    background: #fff;
    border: 1px solid #e9edf1;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(24, 30, 38, .09);
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    transition: box-shadow .3s ease, transform .3s ease;
    position: relative;
    z-index: 4;
}

.more-post-card:hover {
    box-shadow: 0 18px 42px rgba(24, 30, 38, .15);
    transform: translateY(-5px);
}

.more-post-image {
    background: #ffffff;
    display: block;
    height: 205px;
    overflow: hidden;
}

.more-post-image img {
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
    width: 100%;
}

.more-post-card:hover .more-post-image img {
    transform: scale(1.045);
}

.more-post-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 24px;
}

.more-post-category {
    align-self: flex-start;
    background: var(--more-posts-accent);
    border-radius: 0;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 13px;
    max-width: 100%;
    overflow: hidden;
    padding: 7px 11px;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.more-post-body h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 11px;
}

.more-post-body h3 a {
    color: #20242a;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.more-post-body > p {
    color: #747b84;
    display: -webkit-box;
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 24px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.more-post-author {
    align-items: center;
    border-top: 1px solid #edf0f3;
    display: flex;
    gap: 11px;
    margin-top: auto;
    padding-top: 17px;
}

.more-post-author > img {
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #dce2e7;
    height: 40px;
    flex: 0 0 40px;
    object-fit: cover;
    width: 40px;
}

.more-post-author div {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.more-post-author span {
    color: #30343a;
    font-size: 15px;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.more-post-author time {
    color: #8a9098;
    font-size: 13px;
    margin-top: 2px;
}

.more-posts-controls {
    align-items: center;
    display: flex;
    gap: 13px;
    justify-content: center;
    margin-top: 18px;
    position: relative;
    z-index: 5;
}

.more-posts-prev,
.more-posts-next {
    align-items: center;
    background: #fff;
    border: 1px solid #d9dfe5;
    border-radius: 50%;
    color: #30343a;
    cursor: pointer;
    display: inline-flex;
    font-size: 21px;
    height: 40px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
    width: 40px;
}

.more-posts-prev:hover,
.more-posts-next:hover {
    background: var(--more-posts-accent);
    border-color: var(--more-posts-accent);
    color: #fff;
    transform: translateY(-2px);
}

.more-posts-dots {
    align-items: center;
    display: flex;
    gap: 7px;
    justify-content: center;
}

.more-posts-dots button {
    background: #ccd2d8;
    border: 0;
    border-radius: 0;
    display: block;
    height: 7px;
    padding: 0;
    transition: background .2s ease, width .2s ease;
    width: 7px;
}

.more-posts-dots button.is-active {
    background: var(--more-posts-accent);
    width: 24px;
}

@media (max-width: 991px) {
    .more-posts-section {
        padding: 58px 0 150px;
    }

    .more-posts-section::before {
        background-size: 135% auto;
        height: 48%;
        opacity: .48;
    }

    .more-posts-panel {
        margin-bottom: 0;
        padding: 0;
    }
}

@media (max-width: 575px) {
    .more-posts-section {
        padding: 20px 0 30px;
    }

    .more-posts-section::before {
        background-size: 220% auto;
        height: 30%;
        opacity: .34;
    }

    .more-posts-panel {
        margin-bottom: 0;
        padding: 0;
    }

    .more-posts-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 22px;
        padding-right: 94px;
        position: relative;
    }

    .more-posts-heading h2 {
        font-size: 29px;
    }

    .more-posts-view-all {
        font-size: 15px;
    }

    .more-post-image {
        height: 200px;
    }

    .more-post-body {
        padding: 21px;
    }

}

/* Homepage FAQ */
.home-faq-section {
    --home-faq-red: var(--theme-primary, #ff3300);
    --home-faq-red-dark: color-mix(in srgb, var(--home-faq-red) 34%, #1b1111);
    --home-faq-red-light: rgba(var(--theme-primary-rgb, 255, 51, 0), .08);
    background: #fff;
    color: #2c2524;
    overflow: hidden;
    padding: 60px 0;
    position: relative;
}

.home-faq-section::before {
    display: none;
}

.home-faq-section .container {
    position: relative;
    z-index: 1;
}

.home-faq-layout {
    align-items: start;
    display: grid;
    gap: 65px;
    grid-template-columns: minmax(260px, 32fr) minmax(0, 68fr);
}

.home-faq-intro {
    max-width: 390px;
}

.home-faq-label {
    align-items: center;
    color: var(--home-faq-red-dark);
    display: inline-flex;
    font-size: 15px;
    font-weight: 800;
    gap: 9px;
    letter-spacing: .12em;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.home-faq-label i {
    color: var(--home-faq-red);
    font-size: 18px;
}

.home-faq-intro h2 {
    color: var(--home-faq-red-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, calc(3.8vw + 2px), 60px);
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.08;
    margin: 0;
}

.home-faq-flourish {
    background: rgba(var(--theme-primary-rgb, 255, 51, 0), .35);
    display: block;
    height: 1px;
    margin: 27px 0 24px 37px;
    position: relative;
    width: 102px;
}

.home-faq-flourish::before {
    color: var(--home-faq-red);
    content: "✣";
    font-size: 20px;
    left: -35px;
    line-height: 1;
    position: absolute;
    top: -9px;
}

.home-faq-intro > p {
    color: #655c59;
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
    max-width: 355px;
}

.home-faq-contact {
    align-items: center;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(var(--theme-primary-rgb, 255, 51, 0), .12);
    border-radius: 0;
    box-shadow: 0 10px 28px rgba(var(--theme-primary-rgb, 255, 51, 0), .055);
    display: grid;
    gap: 15px;
    grid-template-columns: 54px minmax(0, 1fr);
    margin-top: 34px;
    max-width: 310px;
    padding: 18px;
}

.home-faq-contact-icon {
    align-items: center;
    background: rgba(var(--theme-primary-rgb, 255, 51, 0), .08);
    border-radius: 50%;
    color: var(--home-faq-red);
    display: flex;
    font-size: 23px;
    height: 54px;
    justify-content: center;
    width: 54px;
}

.home-faq-contact > div {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.home-faq-contact strong {
    color: var(--home-faq-red-dark);
    font-size: 15px;
    margin-bottom: 3px;
}

.home-faq-contact > div > span {
    color: #7b706d;
    font-size: 13px;
}

.home-faq-contact a {
    align-items: center;
    color: var(--home-faq-red-dark);
    display: inline-flex;
    font-size: 15px;
    font-weight: 700;
    gap: 8px;
    margin-top: 9px;
}

.home-faq-contact a:hover {
    color: var(--theme-primary-hover, var(--home-faq-red));
}

.home-faq-contact a i {
    font-size: 12px;
    transition: transform .2s ease;
}

.home-faq-contact a:hover i {
    transform: translateX(4px);
}

.home-faq-accordion {
    display: grid;
    gap: 10px;
}

.home-faq-item {
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(var(--theme-primary-rgb, 255, 51, 0), .1);
    border-radius: 0;
    box-shadow: 0 7px 22px rgba(var(--theme-primary-rgb, 255, 51, 0), .03);
    overflow: hidden;
    transition: background .25s ease, box-shadow .25s ease;
}

.home-faq-item.is-open {
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 11px 28px rgba(var(--theme-primary-rgb, 255, 51, 0), .065);
}

.home-faq-question {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--home-faq-red-dark);
    cursor: pointer;
    display: grid;
    gap: 16px;
    grid-template-columns: 30px minmax(0, 1fr) 20px;
    min-height: 66px;
    padding: 13px 20px;
    text-align: left;
    width: 100%;
}

.home-faq-item.is-open .home-faq-question {
    background: rgba(var(--theme-primary-rgb, 255, 51, 0), .06);
}

.home-faq-question:focus-visible {
    box-shadow: inset 0 0 0 2px var(--home-faq-red);
    outline: none;
}

.home-faq-toggle {
    align-items: center;
    background: rgba(var(--theme-primary-rgb, 255, 51, 0), .08);
    border-radius: 50%;
    color: var(--home-faq-red);
    display: flex;
    font-size: 22px;
    height: 30px;
    justify-content: center;
    line-height: 1;
    width: 30px;
}

.home-faq-toggle::before {
    content: "+";
    margin-top: -2px;
}

.home-faq-item.is-open .home-faq-toggle {
    background: var(--home-faq-red);
    color: #fff;
}

.home-faq-item.is-open .home-faq-toggle::before {
    content: "−";
    margin-top: -3px;
}

.home-faq-question-text {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
}

.home-faq-chevron {
    font-size: 13px;
    justify-self: end;
    transition: transform .3s ease;
}

.home-faq-item.is-open .home-faq-chevron {
    transform: rotate(180deg);
}

.home-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows .35s ease, opacity .3s ease;
}

.home-faq-answer > div {
    overflow: hidden;
}

.home-faq-item.is-open .home-faq-answer {
    grid-template-rows: 1fr;
    opacity: 1;
}

.home-faq-answer p {
    color: #5f5653;
    font-size: 16px;
    line-height: 1.75;
    margin: 0;
    padding: 20px 38px 22px;
}

@media (max-width: 991px) {
    .home-faq-section {
        padding: 68px 0;
    }

    .home-faq-layout {
        gap: 42px;
        grid-template-columns: minmax(0, 1fr);
    }

    .home-faq-intro {
        max-width: 720px;
    }

    .home-faq-intro > p {
        max-width: 620px;
    }
}

@media (max-width: 575px) {
    .home-faq-section {
        padding: 20px 0;
    }

    .home-faq-intro h2 {
        font-size: 40px;
    }

    .home-faq-contact {
        max-width: none;
    }

    .home-faq-question {
        gap: 11px;
        grid-template-columns: 28px minmax(0, 1fr) 16px;
        min-height: 62px;
        padding: 12px 14px;
    }

    .home-faq-toggle {
        height: 28px;
        width: 28px;
    }

    .home-faq-question-text {
        font-size: 17px;
    }

    .home-faq-answer p {
        font-size: 15px;
        padding: 17px 18px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-faq-answer,
    .home-faq-chevron {
        transition: none;
    }
}

/* Latest three homepage blogs */
.home-latest-blog-section {
    --latest-blog-green: var(--theme-primary, #ff3300);
    --latest-blog-green-dark: var(--theme-heading, #103a20);
    background: #f2f2f2;
    overflow: hidden;
    padding: 82px 0 88px;
}

.home-latest-blog-heading {
    margin: 0 auto 34px;
    max-width: 690px;
    text-align: center;
}

.home-latest-blog-heading > span {
    color: var(--latest-blog-green);
    display: block;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .15em;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.home-latest-blog-heading h2 {
    color: var(--latest-blog-green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 12px;
}

.home-latest-blog-heading p {
    color: #687069;
    font-size: 16px;
    line-height: 1.75;
    margin: 0;
}

.home-latest-blog-filters {
    align-items: center;
    background: rgba(255, 255, 255, .7);
    border: 1px solid #e0e5de;
    border-radius: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 210px;
    margin-bottom: 28px;
    overflow: hidden;
}

.home-latest-blog-search,
.home-latest-blog-category {
    align-items: center;
    display: flex;
    min-width: 0;
    position: relative;
}

.home-latest-blog-search {
    border-right: 1px solid #e0e5de;
}

.home-latest-blog-search > i {
    color: var(--latest-blog-green);
    font-size: 15px;
    left: 18px;
    position: absolute;
    z-index: 1;
}

.home-latest-blog-search input,
.home-latest-blog-category select {
    background: transparent;
    border: 0;
    color: #3f4841;
    font-size: 15px;
    height: 50px;
    outline: none;
    width: 100%;
}

.home-latest-blog-search input {
    padding: 0 18px 0 44px;
}

.home-latest-blog-search input::placeholder {
    color: #929a93;
}

.home-latest-blog-category select {
    appearance: none;
    cursor: pointer;
    padding: 0 42px 0 18px;
}

.home-latest-blog-category > i {
    color: var(--latest-blog-green);
    font-size: 12px;
    pointer-events: none;
    position: absolute;
    right: 18px;
}

.home-latest-blog-search:focus-within,
.home-latest-blog-category:focus-within {
    box-shadow: inset 0 0 0 2px rgba(23, 77, 42, .2);
}

.home-latest-blog-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
}

.home-latest-blog-card[hidden] {
    display: none !important;
}

.home-latest-blog-card {
    background: #ffffff;
    border: 1px solid #e3e7e1;
    border-radius: 0;
    box-shadow: 0 12px 32px rgba(28, 47, 31, .075);
    min-width: 0;
    overflow: hidden;
    transition: box-shadow .3s ease, transform .3s ease;
}

.home-latest-blog-card:hover {
    box-shadow: 0 18px 42px rgba(28, 47, 31, .13);
    transform: translateY(-4px);
}

.home-latest-blog-card--featured {
    display: flex;
    flex-direction: column;
    grid-row: 1 / span 2;
}

.home-latest-blog-card--small {
    display: grid;
    grid-template-columns: minmax(170px, 42fr) minmax(0, 58fr);
}

.home-latest-blog-image {
    background: #e7ebe5;
    display: block;
    min-width: 0;
    overflow: hidden;
}

.home-latest-blog-card--featured .home-latest-blog-image {
    height: 325px;
}

.home-latest-blog-card--small .home-latest-blog-image {
    height: 100%;
    min-height: 215px;
}

.home-latest-blog-image img {
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
    width: 100%;
}

.home-latest-blog-card:hover .home-latest-blog-image img {
    transform: scale(1.04);
}

.home-latest-blog-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
    padding: 23px;
}

.home-latest-blog-card--small .home-latest-blog-body {
    padding: 20px;
}

.home-latest-blog-badge {
    color: var(--latest-blog-green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-latest-blog-body h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 10px;
}

.home-latest-blog-card--small .home-latest-blog-body h3 {
    font-size: 20px;
}

.home-latest-blog-body h3 a {
    color: #263027;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.home-latest-blog-body h3 a:hover {
    color: var(--latest-blog-green);
}

.home-latest-blog-body > p {
    color: #6b736c;
    display: -webkit-box;
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 18px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.home-latest-blog-card--small .home-latest-blog-body > p {
    -webkit-line-clamp: 2;
}

.home-latest-blog-meta {
    align-items: center;
    border-top: 1px solid #edf0ec;
    display: flex;
    gap: 9px;
    margin-top: auto;
    padding-top: 13px;
}

.home-latest-blog-meta > img {
    border-radius: 50%;
    height: 34px;
    object-fit: cover;
    width: 34px;
}

.home-latest-blog-meta > div {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.home-latest-blog-meta strong {
    color: #374039;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-latest-blog-meta time {
    color: #929993;
    font-size: 12px;
    margin-top: 1px;
}

.home-latest-blog-grid.is-filtering {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-template-rows: auto;
}

.home-latest-blog-grid.is-filtering .home-latest-blog-card {
    display: flex;
    flex-direction: column;
    grid-row: auto;
}

.home-latest-blog-grid.is-filtering .home-latest-blog-image {
    height: 225px;
    min-height: 0;
}

.home-latest-blog-empty {
    background: rgba(255, 255, 255, .75);
    border: 1px dashed #ced8cd;
    border-radius: 0;
    color: #768077;
    padding: 45px 20px;
    text-align: center;
}

.home-latest-blog-empty[hidden] {
    display: none !important;
}

.home-latest-blog-empty i {
    color: var(--latest-blog-green);
    font-size: 26px;
    margin-bottom: 9px;
}

.home-latest-blog-empty p {
    margin: 0;
}

@media (max-width: 991px) {
    .home-latest-blog-section {
        padding: 66px 0 72px;
    }

    .home-latest-blog-grid {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto;
    }

    .home-latest-blog-card--featured {
        grid-row: auto;
    }
}

@media (max-width: 767px) {
    .home-latest-blog-filters {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-latest-blog-search {
        border-bottom: 1px solid #e0e5de;
        border-right: 0;
    }
}

@media (max-width: 575px) {
    .home-latest-blog-section {
        padding: 52px 0 58px;
    }

    .home-latest-blog-heading h2 {
        font-size: 36px;
    }

    .home-latest-blog-card--small,
    .home-latest-blog-grid.is-filtering .home-latest-blog-card {
        display: flex;
        flex-direction: column;
    }

    .home-latest-blog-card--featured .home-latest-blog-image,
    .home-latest-blog-card--small .home-latest-blog-image,
    .home-latest-blog-grid.is-filtering .home-latest-blog-image {
        height: 220px;
        min-height: 0;
    }
}

/* Homepage announcement section */
.announcement-section {
    --announcement-ink: #17191d;
    --announcement-muted: #68707a;
    --announcement-purple: var(--theme-primary, #ff3300);
    --announcement-green: #16a34a;
    --announcement-orange: #f97316;
    --announcement-blue: #2563eb;
    background: #f6f7f9;
    overflow: hidden;
    padding: 82px 0 76px;
    position: relative;
}

.announcement-section::before,
.announcement-section::after {
    display: none;
}

.announcement-section .container {
    max-width: 1320px;
    position: relative;
    z-index: 1;
}

.announcement-layout {
    align-items: start;
    display: grid;
    gap: clamp(28px, 3vw, 44px);
    grid-template-columns: minmax(250px, 30fr) minmax(0, 70fr);
}

.announcement-intro {
    animation: announcementFadeUp .7s ease both;
    max-width: 390px;
    position: sticky;
    top: 110px;
}

.announcement-badge {
    align-items: center;
    background: rgba(var(--theme-primary-rgb, 255, 51, 0), .1);
    border: 1px solid rgba(var(--theme-primary-rgb, 255, 51, 0), .14);
    border-radius: 999px;
    color: var(--announcement-purple);
    display: inline-flex;
    font-size: 15px;
    font-weight: 800;
    gap: 8px;
    line-height: 1;
    margin-bottom: 20px;
    padding: 10px 15px;
}

.announcement-intro h2 {
    color: var(--announcement-ink);
    font-size: clamp(42px, 4.6vw, 66px);
    font-weight: 800;
    line-height: 1.08;
    margin: 0;
}

.announcement-intro p {
    color: var(--announcement-muted);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.75;
    margin: 22px 0 26px;
}

.announcement-primary-link {
    align-items: center;
    background: var(--announcement-ink);
    border-radius: 999px;
    box-shadow: 0 18px 34px rgba(23, 25, 29, .14);
    color: #fff;
    display: inline-flex;
    font-size: 15px;
    font-weight: 800;
    gap: 9px;
    min-height: 50px;
    padding: 0 24px;
    transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}

.announcement-primary-link:hover,
.announcement-primary-link:focus-visible {
    background: var(--theme-primary-hover, var(--announcement-purple));
    box-shadow: 0 20px 36px rgba(var(--theme-primary-rgb, 255, 51, 0), .25);
    color: #fff;
    outline: 0;
    transform: translateY(-2px);
}

.announcement-primary-link span,
.announcement-card-link span {
    display: inline-block;
    transition: transform .3s ease;
}

.announcement-primary-link:hover span,
.announcement-primary-link:focus-visible span,
.announcement-card-link:hover span,
.announcement-card-link:focus-visible span {
    transform: translateX(4px);
}

.announcement-card-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.announcement-card {
    --announcement-accent: var(--announcement-purple);
    animation: announcementFadeUp .7s ease both;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, .92);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(18, 24, 38, .08);
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    position: relative;
    transition: box-shadow .3s ease, transform .3s ease;
}

.announcement-card:nth-child(2) {
    animation-delay: .08s;
}

.announcement-card:nth-child(3) {
    animation-delay: .16s;
}

.announcement-card:nth-child(4) {
    animation-delay: .24s;
}

.announcement-card--green {
    --announcement-accent: var(--announcement-green);
}

.announcement-card--orange {
    --announcement-accent: var(--announcement-orange);
}

.announcement-card--blue {
    --announcement-accent: var(--announcement-blue);
}

.announcement-card:hover,
.announcement-card:focus-within {
    box-shadow: 0 26px 56px rgba(18, 24, 38, .15);
    transform: translateY(-7px);
}

.announcement-card-visual {
    background:
        radial-gradient(circle at 22% 20%, rgba(255, 255, 255, .95), transparent 26%),
        linear-gradient(135deg, color-mix(in srgb, var(--announcement-accent) 16%, #fff), color-mix(in srgb, var(--announcement-accent) 34%, #fff));
    display: block;
    height: 170px;
    overflow: hidden;
    position: relative;
}

.announcement-card-visual img {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
    width: 100%;
}

.announcement-card:hover .announcement-card-visual img,
.announcement-card:focus-within .announcement-card-visual img {
    transform: scale(1.06);
}

.announcement-illustration {
    align-items: center;
    color: var(--announcement-accent);
    display: flex;
    font-size: 72px;
    height: 100%;
    justify-content: center;
    position: relative;
}

.announcement-illustration::before,
.announcement-illustration::after {
    background: rgba(255, 255, 255, .56);
    border-radius: 50%;
    content: "";
    position: absolute;
}

.announcement-illustration::before {
    height: 92px;
    right: 18px;
    top: 18px;
    width: 92px;
}

.announcement-illustration::after {
    bottom: 20px;
    height: 44px;
    left: 24px;
    width: 44px;
}

.announcement-illustration i {
    position: relative;
    transition: transform .3s ease;
    z-index: 1;
}

.announcement-card:hover .announcement-illustration i,
.announcement-card:focus-within .announcement-illustration i {
    transform: scale(1.08) rotate(-3deg);
}

.announcement-floating-icon {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, .94);
    border-radius: 50%;
    box-shadow: 0 12px 26px rgba(18, 24, 38, .13);
    color: var(--announcement-accent);
    display: flex;
    font-size: 21px;
    height: 58px;
    justify-content: center;
    left: 24px;
    position: absolute;
    top: 141px;
    transition: transform .3s ease;
    width: 58px;
    z-index: 2;
}

.announcement-card:hover .announcement-floating-icon,
.announcement-card:focus-within .announcement-floating-icon {
    transform: scale(1.08);
}

.announcement-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 42px 22px 24px;
}

.announcement-card-meta {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-bottom: 12px;
}

.announcement-card-meta span {
    color: var(--announcement-accent);
    font-size: 12px;
    font-weight: 800;
}

.announcement-card-meta time {
    color: #8a929d;
    font-size: 12px;
    font-weight: 800;
}

.announcement-card h3 {
    color: var(--announcement-ink);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.35;
    margin: 0 0 11px;
}

.announcement-card h3 a {
    color: inherit;
    display: -webkit-box;
    overflow: hidden;
    transition: color .25s ease;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.announcement-card h3 a:hover,
.announcement-card h3 a:focus-visible {
    color: var(--announcement-accent);
    outline: 0;
}

.announcement-card-body > p {
    color: var(--announcement-muted);
    display: -webkit-box;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.65;
    margin: 0 0 22px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.announcement-card-link {
    align-items: center;
    color: var(--announcement-ink);
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    gap: 8px;
    margin-top: auto;
    transition: color .25s ease;
}

.announcement-card-link:hover,
.announcement-card-link:focus-visible {
    color: var(--announcement-accent);
    outline: 0;
}

.announcement-subscribe-banner {
    align-items: center;
    animation: announcementFadeUp .7s ease .12s both;
    background: linear-gradient(135deg, var(--theme-primary-light, #fff1eb) 0%, #fff 48%, rgba(var(--theme-primary-rgb, 255, 51, 0), .07) 100%);
    border: 1px solid rgba(var(--theme-primary-rgb, 255, 51, 0), .12);
    border-radius: 20px;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
    margin-top: 30px;
    padding: 28px;
}

.announcement-subscribe-copy {
    align-items: center;
    display: grid;
    gap: 18px;
    grid-template-columns: 76px minmax(0, 1fr);
}

.announcement-subscribe-icon {
    align-items: center;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 16px 34px rgba(var(--theme-primary-rgb, 255, 51, 0), .14);
    color: var(--announcement-purple);
    display: flex;
    font-size: 34px;
    height: 76px;
    justify-content: center;
    width: 76px;
}

.announcement-subscribe-copy h3 {
    color: var(--announcement-ink);
    font-size: 27px;
    font-weight: 800;
    line-height: 1.35;
    margin: 0 0 6px;
}

.announcement-subscribe-copy p {
    color: var(--announcement-muted);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

.announcement-subscribe-form {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(var(--theme-primary-rgb, 255, 51, 0), .12);
    border-radius: 999px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 6px;
}

.announcement-subscribe-form input {
    background: transparent;
    border: 0;
    color: var(--announcement-ink);
    font-size: 15px;
    font-weight: 600;
    height: 48px;
    min-width: 0;
    outline: 0;
    padding: 0 18px;
}

.announcement-subscribe-form input::placeholder {
    color: #9aa2ad;
}

.announcement-subscribe-form:focus-within {
    box-shadow: 0 0 0 3px rgba(var(--theme-primary-rgb, 255, 51, 0), .16);
}

.announcement-subscribe-form button {
    background: var(--announcement-purple);
    border: 0;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    height: 48px;
    padding: 0 22px;
    transition: background .25s ease, transform .25s ease;
}

.announcement-subscribe-form button:hover,
.announcement-subscribe-form button:focus-visible {
    background: var(--theme-primary-hover, #d92b00);
    outline: 0;
    transform: translateY(-1px);
}

.announcement-feature-row {
    animation: announcementFadeUp .7s ease .18s both;
    background: #fff;
    border: 1px solid #e6eaf0;
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(18, 24, 38, .06);
    display: grid;
    gap: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 20px;
    overflow: hidden;
}

.announcement-feature {
    --announcement-feature-accent: var(--announcement-purple);
    align-items: center;
    display: grid;
    gap: 15px;
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 24px 22px;
}

.announcement-feature + .announcement-feature {
    border-left: 1px solid #e6eaf0;
}

.announcement-feature--green {
    --announcement-feature-accent: var(--announcement-green);
}

.announcement-feature--orange {
    --announcement-feature-accent: var(--announcement-orange);
}

.announcement-feature--blue {
    --announcement-feature-accent: var(--announcement-blue);
}

.announcement-feature-icon {
    align-items: center;
    background: color-mix(in srgb, var(--announcement-feature-accent) 12%, #fff);
    border-radius: 16px;
    color: var(--announcement-feature-accent);
    display: flex;
    font-size: 24px;
    height: 54px;
    justify-content: center;
    width: 54px;
}

.announcement-feature h3 {
    color: var(--announcement-ink);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 5px;
}

.announcement-feature p {
    color: var(--announcement-muted);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
    margin: 0;
}

@keyframes announcementFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1399px) {
    .announcement-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .announcement-section {
        padding: 66px 0 64px;
    }

    .announcement-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .announcement-intro {
        max-width: 780px;
        position: static;
    }

    .announcement-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .announcement-subscribe-banner {
        grid-template-columns: minmax(0, 1fr);
    }

    .announcement-feature-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .announcement-feature + .announcement-feature {
        border-left: 0;
    }

    .announcement-feature:nth-child(2n) {
        border-left: 1px solid #e6eaf0;
    }

    .announcement-feature:nth-child(n+3) {
        border-top: 1px solid #e6eaf0;
    }
}

@media (max-width: 575px) {
    .announcement-section {
        padding: 30px 0 25px;
    }

    .announcement-intro h2 {
        font-size: 38px;
    }

    .announcement-card-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .announcement-card-visual {
        height: 160px;
    }

    .announcement-floating-icon {
        top: 131px;
    }

    .announcement-subscribe-banner {
        padding: 22px;
    }

    .announcement-subscribe-copy {
        grid-template-columns: minmax(0, 1fr);
    }

    .announcement-subscribe-form {
        border-radius: 18px;
        grid-template-columns: minmax(0, 1fr);
    }

    .announcement-subscribe-form button {
        width: 100%;
    }

    .announcement-feature-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .announcement-feature {
        align-items: start;
        grid-template-columns: minmax(0, 1fr);
        padding: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .announcement-intro,
    .announcement-card,
    .announcement-subscribe-banner,
    .announcement-feature-row {
        animation: none;
    }

    .announcement-primary-link,
    .announcement-primary-link span,
    .announcement-card,
    .announcement-card-visual img,
    .announcement-illustration i,
    .announcement-floating-icon,
    .announcement-card-link span,
    .announcement-subscribe-form button {
        transition: none;
    }
}
