:root {
    --proland-green: #5b922f;
    --proland-green-dark: #37631f;
    --proland-ink: #252b2d;
    --proland-muted: #66706f;
    --proland-mist: #f3f6f1;
    --proland-line: #dce4d8;
    --proland-white: #ffffff;
}

.proland-news {
    color: var(--proland-ink);
    background: var(--proland-white);
}

.proland-news-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(64px, 9vw, 112px) 24px;
    background:
        radial-gradient(circle at 85% 15%, rgba(141, 190, 71, .28), transparent 34%),
        linear-gradient(135deg, #233329 0%, #355d2a 58%, #5b922f 100%);
    color: var(--proland-white);
}

.proland-news-hero::after {
    content: "";
    position: absolute;
    inset: auto -80px -150px auto;
    width: 340px;
    height: 340px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
}

.proland-news-hero__inner,
.proland-news-feed {
    width: min(1180px, 100%);
    margin-inline: auto;
}

.proland-news-hero__inner {
    position: relative;
    z-index: 1;
}

.proland-news-eyebrow {
    margin: 0 0 12px;
    color: #b8db83;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.proland-news-hero h1 {
    max-width: 760px;
    margin: 0 0 18px;
    color: var(--proland-white);
    font-size: clamp(2.25rem, 5vw, 4.4rem);
    line-height: 1.04;
}

.proland-news-hero p:last-child {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.65;
}

.proland-news-feed {
    padding: clamp(52px, 7vw, 88px) 24px;
}

.proland-news-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: 2px solid var(--proland-green);
    border-radius: 8px;
    background: var(--proland-green);
    color: var(--proland-white) !important;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none !important;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.proland-news-button:hover,
.proland-news-button:focus-visible {
    border-color: var(--proland-green-dark);
    background: var(--proland-green-dark);
    transform: translateY(-1px);
}

.proland-news-button--secondary {
    flex: 0 0 auto;
    background: transparent;
    color: var(--proland-green-dark) !important;
}

.proland-news-feed #cff {
    float: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

.proland-news-feed #cff .cff-header,
.proland-news-feed #cff [class*="cff-header"],
.proland-news-feed #cff [class*="cff-feed-header"],
.proland-news-feed #cff [class*="cff-page-header"],
.proland-news-feed #cff [class*="cff-cover"],
.proland-news-feed #cff [class*="cff-page-info"],
.proland-news-feed #cff .cff-likebox,
.proland-news-feed #cff [class*="cff-likebox"],
.proland-news-feed #cff > :not(.proland-news-posts),
.proland-news-feed #cff .cff-author,
.proland-news-feed #cff .cff-share-container,
.proland-news-feed #cff .cff-view-comments-wrap {
    display: none !important;
}

.proland-news-feed #cff .cff-load-more {
    display: none !important;
}

.proland-news-feed #cff .cff-posts-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}

.proland-news-feed #cff .cff-item {
    position: relative;
    display: flex;
    flex-direction: column;
    float: none;
    width: auto;
    min-width: 0;
    height: 100%;
    margin: 0 !important;
    padding: 0 0 22px !important;
    overflow: hidden;
    border: 1px solid var(--proland-line) !important;
    border-radius: 12px;
    background: var(--proland-white);
    box-shadow: 0 14px 34px rgba(24, 43, 29, .08);
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.proland-news-feed #cff .cff-item:hover,
.proland-news-feed #cff .cff-item:focus-visible {
    border-color: rgba(91, 146, 47, .6) !important;
    box-shadow: 0 18px 42px rgba(24, 43, 29, .14);
    outline: none;
    transform: translateY(-4px);
}

.proland-news-feed #cff .cff-item::before {
    content: attr(data-label);
    display: block;
    order: 2;
    margin: 26px 28px 10px;
    color: var(--proland-green);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.proland-news-feed #cff .proland-featured-card {
    grid-column: 1 / -1;
}

.proland-news-feed #cff .proland-featured-card .proland-news-card-image {
    aspect-ratio: 21 / 8;
}

.proland-news-feed #cff .cff-item > * {
    order: 3;
}

.proland-news-feed #cff .proland-news-card-image {
    order: 1;
    width: 100%;
    aspect-ratio: 16 / 10;
    margin: 0;
    overflow: hidden;
    background: var(--proland-mist);
}

.proland-news-feed #cff .proland-news-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.proland-news-feed #cff .proland-news-card-image--contain {
    background: #fff;
}

.proland-news-feed #cff .proland-news-card-image--contain img {
    padding: 34px;
    object-fit: contain;
}

.proland-news-feed #cff .cff-item:hover .proland-news-card-image img,
.proland-news-feed #cff .cff-item:focus-visible .proland-news-card-image img {
    transform: scale(1.025);
}

.proland-news-feed #cff .proland-video-card video,
.proland-news-feed #cff .proland-video-card iframe,
.proland-news-feed #cff .proland-video-card .cff-html5-video,
.proland-news-feed #cff .proland-video-card .cff-iframe-wrap {
    display: none !important;
}

.proland-news-feed #cff .proland-news-play-marker {
    position: absolute;
    z-index: 4;
    top: 150px;
    left: 50%;
    display: grid;
    width: 64px;
    height: 64px;
    padding-left: 4px;
    border: 2px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    background: rgba(35, 51, 41, .86);
    color: #fff;
    font-size: 24px;
    place-items: center;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.proland-news-feed #cff .cff-media-wrap,
.proland-news-feed #cff .cff-photo,
.proland-news-feed #cff .cff-album-cover,
.proland-news-feed #cff .cff-video-poster,
.proland-news-feed #cff .cff-embed-wrap,
.proland-news-feed #cff .cff-shared-link,
.proland-news-feed #cff .cff-html5-video,
.proland-news-feed #cff .cff-iframe-wrap,
.proland-news-feed #cff .cff-post-thumbnail {
    order: 1;
    width: 100% !important;
    margin: 0 !important;
}

.proland-news-feed #cff .cff-media-wrap img,
.proland-news-feed #cff .cff-photo img,
.proland-news-feed #cff .cff-album-cover img,
.proland-news-feed #cff .cff-video-poster img,
.proland-news-feed #cff .cff-embed-wrap img,
.proland-news-feed #cff .cff-shared-link img,
.proland-news-feed #cff .cff-post-thumbnail img {
    display: block;
    width: 100% !important;
    height: 360px !important;
    margin: 0 !important;
    object-fit: cover;
}

.proland-news-feed #cff .cff-post-text,
.proland-news-feed #cff .cff-post-desc,
.proland-news-feed #cff .cff-text {
    margin: 0 !important;
    padding: 0 28px !important;
    color: #424b49;
    font-size: .98rem;
    line-height: 1.65;
}

.proland-news-feed #cff .proland-news-card-title {
    order: 3;
    margin: 0 28px 12px;
    color: var(--proland-ink);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.25;
}

.proland-news-feed #cff .cff-post-text {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
}

.proland-news-feed #cff .cff-date,
.proland-news-feed #cff .cff-post-links {
    margin: 17px 28px 0 !important;
    padding: 0 !important;
    color: var(--proland-muted);
    font-size: .84rem;
}

.proland-news-feed #cff .cff-post-links {
    margin-top: auto !important;
    padding-top: 18px !important;
}

.proland-news-feed #cff .cff-post-links a,
.proland-news-feed #cff .cff-viewpost-facebook {
    color: var(--proland-green-dark) !important;
    font-weight: 750;
    text-decoration: none !important;
}

.proland-news--notice {
    width: min(760px, calc(100% - 40px));
    margin: 50px auto;
    padding: 28px;
    border: 1px solid var(--proland-line);
    border-radius: 10px;
    background: var(--proland-mist);
    text-align: center;
}

@media (max-width: 760px) {
    .proland-news-feed #cff .cff-posts-wrap {
        grid-template-columns: 1fr;
    }

    .proland-news-feed #cff .proland-featured-card {
        grid-column: auto;
    }

    .proland-news-feed #cff .proland-featured-card .proland-news-card-image {
        aspect-ratio: 16 / 10;
    }

    .proland-news-feed #cff .cff-media-wrap img,
    .proland-news-feed #cff .cff-photo img,
    .proland-news-feed #cff .cff-album-cover img,
    .proland-news-feed #cff .cff-video-poster img,
    .proland-news-feed #cff .cff-embed-wrap img,
    .proland-news-feed #cff .cff-shared-link img,
    .proland-news-feed #cff .cff-post-thumbnail img {
        height: auto !important;
        max-height: 380px;
    }
}
