/* News Page Styles - Based on Vijver Highlights */

/* Banner Section */
.cc-subpage {
    background-size: cover;
    background-position: center;
}

.intro-header {
    position: relative;
    min-height: 40vh;
    max-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 100px;
}

.intro-content {
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.heading-jumbo {
    margin: 0;
    font-weight: 600;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.25;
}

.header-content-news {
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
    padding: 2rem 1rem;
}

.header-content-news h1 {
    margin: 0;
    font-weight: 600;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.25;
    color: #fff;
}

/* News Detail Page Header - Full Width */
.news-header {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 40vh;
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.news-header .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.news-header .header-content {
    padding: 4rem 2rem;
}

/* News List Section */
.highlight-section {
    margin-left: 0;
    margin-right: 0;
    padding-top: 30px;
}

.section-heading-wrap-highlights {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 80px;
}

.blog-item {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 80px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.blog-preview-image {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 45px;
    transition: opacity 0.6s;
    display: block;
}

.blog-preview-image:hover {
    opacity: 0.85;
}

.blog-summary-wrap {
    text-align: left;
    width: 70%;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

a.blog-heading-link {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 400;
    line-height: 46px;
    text-decoration: none;
    color: #1a1b1f;
}

a.blog-heading-link:hover {
    opacity: 0.8;
}

.paragraph-light {
    opacity: 0.6;
    text-align: left;
    font-style: normal;
}

.label.cc-blog-date {
    opacity: 0.6;
    margin-top: 20px;
}

.label {
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
}

/* Leaf CTA Section */
:root {
    --leaf-min: clamp(220px, 32vw, 360px);
    --leaf-text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.leaf-cta {
    position: relative;
    width: 100%;
    min-height: var(--leaf-min);
    display: grid;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
    font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.leaf-cta__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 50%;
    transform: scale(1.04);
    will-change: transform;
    filter: brightness(0.78) contrast(0.92) saturate(0.9);
    animation: leafZoom 16s ease-in-out both;
}

.leaf-cta__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 80% at 50% 40%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.28) 70%, rgba(0, 0, 0, 0.45) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.28));
    pointer-events: none;
}

.leaf-cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    text-shadow: var(--leaf-text-shadow);
    padding-block: clamp(28px, 4.8vw, 56px);
    padding-inline: 16px;
    max-width: min(1100px, 96vw);
    margin-inline: auto;
}

.leaf-cta__title {
    margin: 0 0 0.5rem;
    font-weight: 600;
    font-size: clamp(18px, 2.6vw, 34px);
    line-height: 1.25;
    letter-spacing: 0.01em;
}

.leaf-cta__subtitle {
    margin: 0;
    font-weight: 700;
    font-size: clamp(13px, 1.5vw, 18px);
    line-height: 1.6;
}

@keyframes leafZoom {
    0% {
        transform: scale(1.06);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1.04);
    }
}

/* Updates Section */
.highlight-updates-section {
    padding-top: 40px;
    padding-bottom: 80px;
}

.blog-heading {
    text-align: center;
    margin-bottom: 60px;
}

.label.cc-light {
    opacity: 0.6;
    margin-top: 40px;
}

.work-heading {
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: 400;
}

.collection-list-wrapper {
    margin-bottom: 150px;
}

.collection-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    place-content: flex-start center;
    margin-left: -15px;
    margin-right: -15px;
}

.blog-preview-wrap {
    width: 33.33%;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 45px;
}

.business-article-heading {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 500;
    line-height: 38px;
    text-decoration: none;
    color: #1a1b1f;
    display: block;
}

.business-article-heading:hover {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 991px) {
    .blog-summary-wrap {
        width: 85%;
    }

    .blog-preview-wrap {
        width: 50%;
        padding-right: 15px;
    }
}

@media (max-width: 600px) {
    :root {
        --leaf-min: clamp(200px, 36vw, 300px);
    }

    .leaf-cta__bg {
        background-position: center 55%;
        transform: scale(1.03);
    }

    .leaf-cta__subtitle {
        line-height: 1.5;
    }

    .blog-summary-wrap {
        width: 95%;
    }

    .blog-preview-wrap {
        width: 100%;
        padding-right: 15px;
    }

    .collection-wrap {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .leaf-cta__bg {
        animation: none;
        transform: scale(1.02);
    }

    * {
        transition: none !important;
        animation: none !important;
    }
}

/* ========================================
   News Detail Page Styles (Individual News Item)
   ======================================== */

.blog-section {
    background-color: #fff;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.blog-detail-header-wrap {
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 2rem;
}

.blog-title {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.3;
    color: #1a1b1f;
}

.blog-title a {
    color: #1a1b1f;
    text-decoration: none;
}

.blog-title a:hover {
    color: #1a1b1f;
    text-decoration: none;
}

.detail-header-image {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 500px;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-bottom: 60px;
    display: block;
}

.detail-header-image-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.rich-text {
    max-width: 800px;
    margin: 40px auto 100px auto;
    font-size: 16px;
    line-height: 1.6;
}

.rich-text p {
    opacity: 0.6;
    margin-top: 15px;
    margin-bottom: 25px;
}

.rich-text h1,
.rich-text h2,
.rich-text h3 {
    color: #1a1b1f;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.rich-text a {
    color: #1a1b1f;
    text-decoration: underline;
}

.rich-text a:hover {
    opacity: 0.8;
}

/* Responsive for News Detail */
@media (max-width: 768px) {
    .blog-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .rich-text {
        font-size: 15px;
        line-height: 1.5;
        margin-left: 15px;
        margin-right: 15px;
    }

    .detail-header-image {
        height: auto;
        min-height: 250px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
}
