/* Page hero (listing + detail pages) */
.page-cover {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
    min-height: 420px;
    overflow: hidden;
    background: #172D2D;
}

.page-cover__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.page-cover__fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #172D2D 0%, #627B35 100%);
}

.page-cover__fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, #fff, transparent);
    pointer-events: none;
}

.page-intro {
    background: #fff;
    padding: clamp(2.25rem, 5vw, 3.5rem) 0 clamp(1.5rem, 4vw, 2rem);
    text-align: center;
}

.page-intro .thm-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem;
    margin: 0 0 1.25rem;
    padding: 0;
    font-size: 0.88rem;
    list-style: none;
}

.page-intro .thm-breadcrumb li a {
    color: #627B35;
    text-decoration: none;
    font-weight: 500;
}

.page-intro .thm-breadcrumb li a:hover {
    color: #172D2D;
}

.page-intro .thm-breadcrumb li span {
    color: #9aab9f;
    padding: 0 0.35rem;
}

.page-intro__title {
    font-size: clamp(2.25rem, 6vw, 3.75rem);
    font-weight: 800;
    line-height: 1.12;
    color: #172D2D;
    margin: 0 auto;
    max-width: min(90vw, 42rem);
}

.page-intro__subtitle {
    margin: 1rem auto 0;
    max-width: 42rem;
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    line-height: 1.7;
    color: #5f6f69;
}

.page-intro__extra {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}

.page-intro__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-intro__meta li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #f4f7f5;
    color: #4a5c54;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 999px;
}

.page-intro__meta li i {
    color: #627B35;
    font-size: 0.85rem;
}

@media (max-width: 767px) {
    .page-cover {
        height: 70vh;
        height: 70svh;
        min-height: 320px;
    }

    .page-intro__title {
        max-width: none;
    }
}

/* Related items sections */
.related-items {
    padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(4rem, 7vw, 5rem);
    background: #f4f7f5;
}

.related-items__header {
    text-align: center;
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.related-items__eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #627B35;
    margin-bottom: 0.5rem;
}

.related-items__title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    color: #172D2D;
    margin: 0;
}

/* Listing pagination */
.ks-pagination {
    margin-top: clamp(2rem, 4vw, 3rem);
    display: flex;
    justify-content: center;
}

.ks-pagination .pagination {
    gap: 0.35rem;
    margin: 0;
}

.ks-pagination .page-link {
    border-radius: 999px !important;
    min-width: 2.5rem;
    text-align: center;
    color: #172D2D;
    border-color: #dce5e0;
    font-weight: 600;
}

.ks-pagination .page-item.active .page-link {
    background-color: #627B35;
    border-color: #627B35;
}

.ks-pagination .page-link:hover {
    background-color: #eef3ee;
    color: #172D2D;
}

.ks-pagination .page-item.disabled .page-link {
    color: #9aab9f;
}

/* Single post / article detail content */
.news-details {
    padding-bottom: clamp(2rem, 5vw, 3rem);
}

.news-details__text-1 {
    font-size: clamp(1.05rem, 2.2vw, 1.125rem);
    line-height: 1.9;
    color: #2d3b36;
}

.news-details__text-1 p,
.news-details__text-1 li {
    margin-bottom: 1.25rem;
}

.news-details__text-1 img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.news-details__text-1 blockquote {
    border-left: 4px solid #627B35;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    background: #f4f7f5;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #3d4f47;
}

.comment-one {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e8eeeb;
}

.comment-one__title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #172D2D;
    margin-bottom: 1.25rem;
}

.comment-one__single {
    background: #f4f7f5;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
}

.comment-form {
    margin-top: 2rem;
    background: #f4f7f5;
    border-radius: 16px;
    padding: clamp(1.5rem, 4vw, 2rem);
}

.comment-form__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #172D2D;
    margin-bottom: 1.25rem;
}

/* Newsletter detail */
.newsletter-page {
    --nl-green: #172D2D;
    --nl-accent: #627B35;
    --nl-soft: #f4f7f5;
}

.newsletter-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--nl-green);
    font-weight: 600;
    text-decoration: none;
    padding: 0.55rem 1.1rem;
    border: 2px solid #e0e8e3;
    border-radius: 999px;
    transition: all 0.25s ease;
    margin-top: 1rem;
}

.newsletter-back-link:hover {
    background: var(--nl-green);
    border-color: var(--nl-green);
    color: #fff;
}

.newsletter-detail {
    padding: 0 0 clamp(4rem, 8vw, 6rem);
    background: #fff;
}

.newsletter-article {
    max-width: 760px;
    margin: 0 auto;
}

.newsletter-article__content {
    font-size: clamp(1.05rem, 2.2vw, 1.125rem);
    line-height: 1.9;
    color: #2d3b36;
}

.newsletter-article__content p,
.newsletter-article__content li {
    margin-bottom: 1.25rem;
}

.newsletter-article__content h1,
.newsletter-article__content h2,
.newsletter-article__content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--nl-green);
    line-height: 1.3;
}

.newsletter-article__content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.newsletter-article__content blockquote {
    border-left: 4px solid var(--nl-accent);
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    background: var(--nl-soft);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #3d4f47;
}

.newsletter-comments {
    max-width: 760px;
    margin: clamp(3rem, 6vw, 4.5rem) auto 0;
    padding-top: 2.5rem;
    border-top: 1px solid #e8eeeb;
}

.newsletter-comments .comment-one__title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--nl-green);
    margin-bottom: 1.5rem;
}

.newsletter-comments .comment-one__single {
    background: var(--nl-soft);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
}

.newsletter-comments .comment-one__content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--nl-green);
    margin: 0 0 0.35rem;
}

.newsletter-comments .comment-one__content p {
    margin: 0;
    color: #4a5c54;
    line-height: 1.7;
}

.newsletter-comment-form-wrap {
    max-width: 760px;
    margin: 2rem auto 0;
    background: var(--nl-soft);
    border-radius: 16px;
    padding: clamp(1.5rem, 4vw, 2rem);
}

.newsletter-comment-form-wrap .comment-form__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--nl-green);
    margin-bottom: 1.25rem;
}

/* Event detail */
.tp-event-details__text {
    font-size: clamp(1.05rem, 2.2vw, 1.125rem);
    line-height: 1.9;
    color: #2d3b36;
}

.tp-event-details__text p {
    margin-bottom: 1.25rem;
}

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

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

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

.about-section--dark {
    background: var(--about-green);
    color: #fff;
}

.about-block {
    align-items: center;
    row-gap: 2rem;
}

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

.about-block__content {
    padding: 0 clamp(0rem, 2vw, 1.5rem);
}

.about-block__label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--about-accent);
    margin-bottom: 0.65rem;
}

.about-section--dark .about-block__label {
    color: #a8c48a;
}

.about-block__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--about-green);
    margin: 0 0 1rem;
    line-height: 1.25;
}

.about-section--dark .about-block__title {
    color: #fff;
}

.about-block__body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #33413c;
}

.about-section--dark .about-block__body {
    color: rgba(255, 255, 255, 0.92);
}

.about-block__body p:last-child {
    margin-bottom: 0;
}

.about-quote {
    position: relative;
    padding: clamp(1.5rem, 4vw, 2rem);
    border-left: 4px solid var(--about-accent);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 0 16px 16px 0;
}

.about-quote::before {
    content: '\201C';
    position: absolute;
    top: -0.25rem;
    left: 1rem;
    font-size: 4rem;
    line-height: 1;
    color: rgba(168, 196, 138, 0.35);
    font-family: Georgia, serif;
}

.about-quote .about-block__body {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 500;
    font-size: clamp(1.05rem, 2.5vw, 1.2rem);
}

.about-story .about-block__body {
    font-family: 'Carme', sans-serif;
}

.about-voice .about-block__body {
    font-family: 'Suranna', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 600;
}

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

    .about-quote {
        border-left: none;
        border-top: 4px solid var(--about-accent);
        border-radius: 16px;
        text-align: center;
    }

    .about-quote::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {
    .about-block--reverse .order-lg-1 {
        order: 0 !important;
    }

    .about-block--reverse .order-lg-2 {
        order: 1 !important;
    }
}

/* CTA block (about + home) */
.home-cta {
    margin-top: 0;
}

.home-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: clamp(1.5rem, 4vw, 2.5rem) 0;
}

.home-cta__content {
    flex: 1 1 320px;
}

.home-cta__title {
    color: #fff;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    margin: 0 0 0.5rem;
}

.home-cta__content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
    max-width: 42rem;
}

.home-cta__action {
    flex: 0 0 auto;
}

.home-cta__btn {
    border-radius: 999px !important;
    min-width: 160px;
    text-align: center;
}

@media (max-width: 767px) {
    .home-cta__inner {
        text-align: center;
        justify-content: center;
    }

    .home-cta__content p {
        margin: 0 auto;
    }
}
