:root {
    --hb-accent: #A6E319;
    --hb-dark: #00352f;
    --hb-ink: #173c38;
    --hb-muted: #6a7a77;
    --hb-soft: #edf8ec;
    --hb-container: 1400px;
    --hb-body-font: inherit;
    --hb-heading-font: inherit;
    --hb-base-font-size: 16px;
    --hb-global-button-radius: 999px
}

.hb-section {
    box-sizing: border-box;
    width: 100%;
    position: relative;
    font-family: var(--hb-body-font);
    font-size: var(--hb-base-font-size);
    padding: var(--hb-pad-top, 120px) var(--hb-pad-right, 0) var(--hb-pad-bottom, 120px) var(--hb-pad-left, 0);
    min-height: var(--hb-section-min-height, auto);
    text-align: var(--hb-section-text-align, left)
}

.hb-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: var(--hb-overlay-opacity, 0);
    pointer-events: none;
    border-radius: inherit;
    z-index: 0
}

.hb-section>* {
    position: relative;
    z-index: 1
}

.hb-section * {
    box-sizing: border-box
}

.hb-container {
    width: min(var(--hb-container), calc(100% - 64px));
    max-width: 100%;
    margin: 0 auto
}

.hb-container-full>.hb-container,
.hb-container-full .hb-container {
    width: 100%;
    max-width: none
}

.hb-container>* {
    max-width: var(--hb-content-width, none)
}

.hb-section h1,
.hb-section h2,
.hb-section h3 {
    font-family: var(--hb-heading-font);
    color: var(--hb-heading-color, var(--hb-ink));
    margin-top: 0;
    letter-spacing: var(--hb-heading-spacing, -.03em);
    font-weight: var(--hb-heading-weight, 800);
    line-height: var(--hb-heading-line, 1.05);
    text-transform: var(--hb-heading-transform, none)
}

.hb-section h1,
.hb-section h2 {
    font-size: var(--hb-heading-size, clamp(32px, 4vw, 56px))
}

.hb-section p,
.hb-richtext {
    color: var(--hb-content-color, inherit);
    font-size: var(--hb-content-size, inherit);
    line-height: var(--hb-content-line, 1.7)

}

.hb-section-head p,
.hb-center-head p,
.hb-lead,
.hb-lead-dark {
    color: var(--hb-content-color, inherit);
    font-size: var(--hb-subtitle-size, 18px);
    font-weight: var(--hb-subtitle-weight, 400);
    line-height: var(--hb-subtitle-line, 1.7)
}

.hb-eyebrow {
    padding: 7px 13px;
    border-radius: var(--hb-eyebrow-radius, 999px);
    background: var(--hb-eyebrow-bg, var(--hb-accent));
    color: var(--hb-eyebrow-color, #14322f);
    font-size: var(--hb-eyebrow-size, 11px);
    font-weight: var(--hb-eyebrow-weight, 800);
    letter-spacing: .08em;
    text-transform: uppercase
}

.hb-btn,
.hb-mini-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    font-weight: var(--hb-btn-font-weight, 800);
    font-size: var(--hb-btn-font-size, 16px);
    border-radius: var(--hb-btn-radius, var(--hb-global-button-radius));
    border: var(--hb-btn-border-width, 0) solid var(--hb-btn-border-color, transparent);
    padding: var(--hb-btn-pad-y, 14px) var(--hb-btn-pad-x, 22px);
    line-height: 1.1;
    transition: background-color .2s ease, color .2s ease, transform .2s ease, border-color .2s ease
}

.hb-btn-primary,
.hb-mini-btn {
    background: var(--hb-btn-bg, var(--hb-accent));
    color: var(--hb-btn-color, #051F20) !important;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 25px;
}

.hb-btn-primary:hover,
.hb-mini-btn:hover {
    background: var(--hb-btn-hover-bg, var(--hb-btn-bg, var(--hb-accent)));
    color: var(--hb-btn-hover-color, var(--hb-btn-color, #15342f)) !important
}

.hb-btn-ghost {
    background: var(--hb-btn2-bg, transparent);
    color: var(--hb-btn2-color, #fff) !important;
    border: var(--hb-btn2-border-width, 1px) solid var(--hb-btn2-border-color, #fff);
    border-radius: var(--hb-btn2-radius, var(--hb-global-button-radius))
}

.hb-btn-ghost:hover {
    background: var(--hb-btn2-hover-bg, var(--hb-btn2-bg, transparent));
    color: var(--hb-btn2-hover-color, var(--hb-btn2-color, #fff)) !important
}

.hb-btn-small {
    padding: 10px 18px
}

.hb-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: inherit
}

.hb-hero {
    min-height: var(--hb-section-min-height, 760px);
    display: flex;
    align-items: var(--hb-section-align, center);
    color: #fff
}

.hb-hero::before {
    z-index: 1
}

.hb-hero>.hb-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden
}

.hb-hero>.hb-hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: var(--hb-image-fit, cover);
    object-position: var(--hb-image-position, center center)
}

.hb-hero>.hb-hero-inner {
    position: relative;
    z-index: 2
}

.hb-hero .hb-container {
    display: flex;
    min-height: inherit;
    flex-direction: column;
    justify-content: var(--hb-section-align, center);
    align-items: var(--hb-content-align, flex-start);
    text-align: var(--hb-section-text-align, left)
}


.hb-hero h1 {
    font-size: var(--hb-heading-size, clamp(52px, 7vw, 100px));
    line-height: var(--hb-heading-line, .9);
    margin: 20px 0;
    color: var(--hb-heading-color, #fff)
}

.hb-hero h1 span {
    color: var(--hb-accent)
}

.hb-hero .hb-actions {
    justify-content: var(--hb-content-align, flex-start)
}

.hb-lead {
    max-width: 720px
}

.hb-two-col {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 80px;
    align-items: var(--hb-section-align, center)
}

.hb-copy {
    max-width: 620px
}

.hb-lead-dark {
    font-size: var(--hb-subtitle-size, 21px);
    font-weight: var(--hb-subtitle-weight, 700)
}

.hb-richtext {
    color: var(--hb-content-color, var(--hb-muted));
    margin: 18px 0
}


.hb-mission-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: var(--hb-image-fit, cover);
    object-position: var(--hb-image-position, center center);
    border-radius: var(--hb-image-radius, 0);
    box-shadow: var(--hb-image-shadow, none)
}

.hb-map-visual {
    min-height: 420px;
    display: grid;
    place-items: center;
    /* background-image: radial-gradient(#c7d6d1 1.2px, transparent 1.2px); */
    background-size: 8px 8px;
    border-radius: 30px
}

.hb-map-placeholder {
    position: relative;
    width: 70%;
    height: 260px
}

.hb-map-placeholder span {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--hb-accent);
    box-shadow: 0 0 0 10px rgba(154, 222, 0, .18)
}

.hb-map-placeholder span:nth-child(1) {
    left: 20%;
    top: 35%
}

.hb-map-placeholder span:nth-child(2) {
    left: 57%;
    top: 22%
}

.hb-map-placeholder span:nth-child(3) {
    right: 9%;
    bottom: 25%
}

.hb-section-head {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-end;
    margin-bottom: 36px
}

.hb-section-head h2,
.hb-center-head h2 {
    margin-bottom: 8px
}

.hb-section-head p,
.hb-center-head p {
    margin: 0
}

.hb-text-link {
    color: var(--hb-accent) !important;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 13px
}

.hb-card-grid {
    display: grid;
    grid-template-columns: repeat(var(--hb-grid-cols, 3), minmax(0, 1fr));
    gap: var(--hb-gap, 22px)
}

.hb-item {
    opacity: var(--hb-item-opacity, 1);
    color: var(--hb-item-color, inherit)
}

.hb-card,
.hb-product,
.hb-story,
.hb-stat,
.hb-social-item {
    background: var(--hb-item-bg, var(--hb-card-bg, #fff));
    color: var(--hb-item-color, var(--hb-card-text, inherit));
    border: var(--hb-item-border-width, var(--hb-card-border-width, 0)) var(--hb-item-border-style, solid) var(--hb-item-border-color, var(--hb-card-border-color, transparent));
    border-radius: var(--hb-item-radius, var(--hb-card-radius, 16px));
    box-shadow: var(--hb-item-shadow, var(--hb-card-shadow, 0 12px 36px rgba(20, 57, 52, .08)));
    transition: transform .2s ease, box-shadow .2s ease
}

.hb-card:hover,
.hb-product:hover,
.hb-story:hover,
.hb-mission-item:hover,
.hb-social-item:hover {
    transform: translateY(calc(-1 * var(--hb-item-hover-y, var(--hb-card-hover-y, 0px))))
}

.hb-card {
    overflow: hidden
}

.hb-card-media,
.hb-story-media,
.hb-product-media {
    aspect-ratio: var(--hb-item-image-aspect, var(--hb-card-image-ratio, 1.45 / 1));
    height: var(--hb-item-image-height, auto);
    overflow: hidden;
    background: #eef2ef;
    border-radius: var(--hb-item-image-radius, 0);
    box-shadow: var(--hb-item-image-shadow, none)
}

.hb-card-media img,
.hb-story-media img,
.hb-product-media img {
    width: 100%;
    height: 100%;
    object-fit: var(--hb-item-image-fit, var(--hb-image-fit, cover));
    object-position: var(--hb-item-image-position, var(--hb-image-position, center center));
    display: block
}

.hb-placeholder {
    width: 100%;
    height: 100%;
    min-height: 180px;
    background: linear-gradient(135deg, #dfe9e4, #f8faf8)
}

.hb-placeholder-tall {
    min-height: 360px
}

.hb-card-body {
    padding: var(--hb-card-padding, 20px)
}

.hb-card-body small,
.hb-story small {
    color: var(--hb-item-meta-color, #7b8a86);
    font-size: var(--hb-item-meta-size, inherit)
}

.hb-card-body h3,
.hb-story h3,
.hb-product h3,
.hb-mission-item h3 {
    font-size: var(--hb-item-title-size, 19px);
    font-weight: var(--hb-item-title-weight, 700);
    line-height: var(--hb-item-title-line, 1.25);
    color: var(--hb-item-title-color, var(--hb-ink));
    margin: 7px 0
}

.hb-card-body p,
.hb-story p,
.hb-product p,
.hb-mission-item p {
    font-size: var(--hb-item-text-size, 13px);
    line-height: var(--hb-item-text-line, 1.7);
    color: var(--hb-item-text-color, var(--hb-muted))
}

.hb-progress {
    height: var(--hb-progress-height, 5px);
    border-radius: var(--hb-progress-radius, 10px);
    background: var(--hb-progress-bg, #e8eee9);
    overflow: hidden;
    margin: 18px 0
}

.hb-progress span {
    display: block;
    height: 100%;
    background: var(--hb-item-accent, var(--hb-progress-color, var(--hb-accent)))
}

.hb-card-foot {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    font-size: 11px
}

.hb-item .hb-mini-btn {
    background: var(--hb-item-btn-bg, var(--hb-btn-bg, var(--hb-accent)));
    color: var(--hb-item-btn-color, var(--hb-btn-color, #15342f)) !important;
    border: var(--hb-item-btn-border-width, var(--hb-btn-border-width, 0)) solid var(--hb-item-btn-border-color, var(--hb-btn-border-color, transparent));
    border-radius: var(--hb-item-btn-radius, var(--hb-btn-radius, var(--hb-global-button-radius)));
    font-size: var(--hb-item-btn-size, var(--hb-btn-font-size, 11px));
    font-weight: var(--hb-item-btn-weight, var(--hb-btn-font-weight, 800))
}

.hb-item .hb-mini-btn:hover {
    background: var(--hb-item-btn-hover-bg, var(--hb-btn-hover-bg, var(--hb-accent)));
    color: var(--hb-item-btn-hover-color, var(--hb-btn-hover-color, #15342f)) !important
}

.hb-mission {
    background-color: var(--hb-soft)
}


.hb-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 0;
    align-items: stretch;
}

.hb-mission-items {
    display: grid;
    grid-template-rows: 1fr 1fr;
    background: #fff;
    border-radius: 20px;
}

.hb-mission-item {
    padding: var(--hb-card-padding, 30px);
    display: flex;
    flex-direction: column;
    justify-content: center
}


.hb-icon-dot {
    color: var(--hb-item-accent, var(--hb-accent));
    font-size: 22px
}

.hb-mission-image {
    overflow: hidden;
    min-height: 470px
}

.hb-mission-image img {
    height: 100%
}

.hb-horizontal-cards,
.hb-product-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, 1fr);
    overflow-x: auto;
    gap: var(--hb-gap, 18px);
    padding-bottom: 12px;
    scroll-snap-type: x proximity
}

.hb-horizontal-cards>*,
.hb-product-row>* {
    scroll-snap-align: start
}

.hb-program-card {
    min-width: 260px
}

.hb-impact-grid {
    gap: 90px
}

.hb-stats {
    display: grid;
    grid-template-columns: repeat(var(--hb-grid-cols, 2), 1fr);
    gap: var(--hb-gap, 18px);
    margin: 30px 0
}

.hb-stat {
    padding: 14px 0;
    border-top: 1px solid #dce5e1;
    background: transparent;
    box-shadow: none;
    border-radius: 0
}

.hb-stat strong {
    display: block;
    font-size: var(--hb-item-value-size, 28px);
    color: var(--hb-item-value-color, var(--hb-ink))
}

.hb-stat span {
    font-size: var(--hb-item-text-size, 12px);
    color: var(--hb-item-text-color, var(--hb-muted))
}

.hb-impact-image {
    min-height: 560px;
    object-fit: var(--hb-image-fit, cover)
}

.hb-product-row {
    grid-auto-columns: minmax(200px, 1fr)
}

.hb-product {
    padding: var(--hb-card-padding, 14px)
}

.hb-product-media {
    aspect-ratio: var(--hb-item-image-aspect, 1 / 1);
    margin-bottom: 14px;
    border-radius: var(--hb-item-image-radius, 10px)
}

.hb-price {
    display: block;
    color: var(--hb-item-value-color, var(--hb-ink));
    font-size: var(--hb-item-value-size, inherit);
    margin-bottom: 10px
}

.hb-story {
    padding-bottom: 10px;
    background: transparent;
    box-shadow: none;
    border: 0
}

.hb-story-media {
    border-radius: var(--hb-item-image-radius, var(--hb-card-radius, 14px));
    margin-bottom: 16px
}

.hb-cta-wrap {
    color: #fff
}

.hb-cta {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: var(--hb-section-align, center);
    max-width: 650px
}

.hb-cta h2 {
    color: var(--hb-heading-color, #fff) !important;
    margin: 14px 0
}

.hb-social-grid {
    display: grid;
    grid-template-columns: repeat(var(--hb-grid-cols, 5), minmax(0, 1fr));
    gap: var(--hb-gap, 12px)
}

.hb-social-item {
    overflow: hidden;
    aspect-ratio: var(--hb-item-image-aspect, .78 / 1);
    display: block
}

.hb-social-item img {
    width: 100%;
    height: 100%;
    object-fit: var(--hb-item-image-fit, var(--hb-image-fit, cover));
    object-position: var(--hb-item-image-position, var(--hb-image-position, center center))
}

.hb-social-item .hb-placeholder {
    min-height: 100%
}

@media(min-width:992px) {
    .hb-hide-desktop {
        display: none !important
    }
}

@media(max-width:991px) and (min-width:601px) {
    .hb-hide-tablet {
        display: none !important
    }
}

@media(max-width:991px) {
    .hb-section {
        padding: var(--hb-pad-top-tablet, 70px) var(--hb-pad-right-tablet, 0) var(--hb-pad-bottom-tablet, 70px) var(--hb-pad-left-tablet, 0)
    }

    .hb-container {
        width: min(var(--hb-container), calc(100% - 36px))
    }

    .hb-two-col,
    .hb-mission-grid {
        grid-template-columns: 1fr
    }

    .hb-card-grid {
        grid-template-columns: repeat(var(--hb-grid-cols-tablet, 2), minmax(0, 1fr));
        gap: var(--hb-gap-tablet, 18px)
    }

    .hb-social-grid {
        grid-template-columns: repeat(var(--hb-grid-cols-tablet, 3), minmax(0, 1fr));
        gap: var(--hb-gap-tablet, 18px)
    }

    .hb-stats {
        grid-template-columns: repeat(var(--hb-grid-cols-tablet, 2), 1fr)
    }

    .hb-section h1,
    .hb-section h2 {
        font-size: var(--hb-heading-size-tablet, var(--hb-heading-size, clamp(32px, 4vw, 56px)))
    }

    .hb-mission-image {
        min-height: 380px;
        order: -1;
        border-radius: var(--hb-card-radius, 20px)
    }

    .hb-impact-grid {
        gap: 35px
    }
}

@media(max-width:600px) {
    .hb-hide-mobile {
        display: none !important
    }

    .hb-section {
        padding: var(--hb-pad-top-mobile, 55px) var(--hb-pad-right-mobile, 0) var(--hb-pad-bottom-mobile, 55px) var(--hb-pad-left-mobile, 0)
    }

    .hb-section h1,
    .hb-section h2 {
        font-size: var(--hb-heading-size-mobile, var(--hb-heading-size, 36px))
    }

    .hb-card-grid {
        grid-template-columns: repeat(var(--hb-grid-cols-mobile, 1), minmax(0, 1fr));
        gap: var(--hb-gap-mobile, 14px)
    }

    .hb-social-grid {
        grid-template-columns: repeat(var(--hb-grid-cols-mobile, 2), minmax(0, 1fr));
        gap: var(--hb-gap-mobile, 14px)
    }

    .hb-section-head {
        align-items: flex-start;
        flex-direction: column
    }

    .hb-stats {
        grid-template-columns: repeat(var(--hb-grid-cols-mobile, 2), 1fr)
    }

    .hb-horizontal-cards {
        grid-auto-columns: 82%
    }

    .hb-product-row {
        grid-auto-columns: 72%
    }
}


.hb-card-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, 1fr);
}

/* =========================================================
   HOMEBUILDER / HERO STACKING FIX
   - Keep the builder under the site header
   - Keep hero buttons clickable
   - Keep hero image/overlays from intercepting clicks
========================================================= */

#ccprod-homebuilder,
.ccprod-homebuilder {
    margin-top: -100px !important;
    position: relative !important;
    z-index: auto !important;
    pointer-events: auto !important;
}

/* Keep the site/template header above the negatively-offset hero.
   Do not change the header's position mode here, so sticky/fixed
   header behavior remains untouched. */
.custom-premium-header,
#t3-header,
.t3-header,
#t4-header-wrap,
.t4-header {
    z-index: 9999 !important;
}

/* Create a local stacking context only for the hero. */
#ccprod-homebuilder .hb-hero,
.ccprod-homebuilder .hb-hero {
    position: relative !important;
    isolation: isolate;
}

/* Hero media is visual only and must never block links/buttons. */
#ccprod-homebuilder .hb-hero > .hb-hero-media,
.ccprod-homebuilder .hb-hero > .hb-hero-media {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

#ccprod-homebuilder .hb-hero > .hb-hero-media img,
.ccprod-homebuilder .hb-hero > .hb-hero-media img {
    pointer-events: none !important;
}

/* All hero/section visual overlays remain non-interactive. */
#ccprod-homebuilder .hb-section::before,
.ccprod-homebuilder .hb-section::before,
#ccprod-homebuilder .hb-hero::before,
.ccprod-homebuilder .hb-hero::before,
#ccprod-homebuilder .hb-hero::after,
.ccprod-homebuilder .hb-hero::after,
#ccprod-homebuilder .hb-hero-media::before,
.ccprod-homebuilder .hb-hero-media::before,
#ccprod-homebuilder .hb-hero-media::after,
.ccprod-homebuilder .hb-hero-media::after {
    pointer-events: none !important;
}

/* Hero content sits above the background but does not escape
   above the page header. */
#ccprod-homebuilder .hb-hero > .hb-hero-inner,
.ccprod-homebuilder .hb-hero > .hb-hero-inner {
    position: relative !important;
    z-index: 2 !important;
    pointer-events: auto !important;
}

#ccprod-homebuilder .hb-hero .hb-actions,
.ccprod-homebuilder .hb-hero .hb-actions {
    position: relative !important;
    z-index: 3 !important;
    pointer-events: auto !important;
}

#ccprod-homebuilder .hb-hero .hb-actions .hb-btn,
.ccprod-homebuilder .hb-hero .hb-actions .hb-btn {
    position: relative !important;
    z-index: 4 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* Let the anchor itself receive clicks when clicking an icon/span. */
#ccprod-homebuilder .hb-hero .hb-actions .hb-btn *,
.ccprod-homebuilder .hb-hero .hb-actions .hb-btn * {
    pointer-events: none !important;
}

.hb-eyebrow {
    margin: 0 auto !important;
}


/* ==========================================
   EVENT CONTAINER
========================================== */

.ccprod-event-container {
    margin-top: 45px;
}


/* ==========================================
   EVENT CARD
========================================== */

.ccprod-event-card {
    width: 100%;
    max-width: 760px;

    background: #ffffff;

    border-radius: 22px;

    padding: 24px 30px 22px;

    box-sizing: border-box;

    color: #000;

    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.12);
    position: relative;
    top: -150px;
}


/* ==========================================
   TOP
========================================== */

.ccprod-event-card-top {

    display: grid;

    grid-template-columns:
        145px
        125px
        minmax(0, 1fr);

    gap: 22px;

    align-items: start;
}


/* ==========================================
   EVENT INFO
========================================== */

.ccprod-event-info-label {

    font-size: 16px;

    line-height: 1.3;

    margin-bottom: 24px;
}


.ccprod-event-info-label strong {

    display: block;

    font-weight: 700;
}


/* ==========================================
   CONTRIBUTION
========================================== */

.ccprod-event-contribution {

    font-size: 16px;

    line-height: 1.35;
}


.ccprod-event-contribution strong {

    display: block;

    font-size: 17px;

    font-weight: 700;
}


/* ==========================================
   EVENT DATE
========================================== */

.ccprod-event-date {

    font-size: 16px;

    line-height: 1.35;
}


.ccprod-event-date span {

    display: block;
}


.ccprod-event-date strong {

    display: block;

    margin-top: 3px;

    font-weight: 700;
}


/* ==========================================
   COUNTDOWN
========================================== */

.ccprod-event-countdown {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(78px, 1fr));

    gap: 8px;
}


.ccprod-countdown-box {

    min-height: 132px;

    border: 1px solid #c9c9c9;

    border-radius: 21px;

    background: #ffffff;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    box-sizing: border-box;
}


.ccprod-countdown-number {

    font-size: 38px;

    line-height: 1;

    font-weight: 700;

    margin-bottom: 22px;
}


.ccprod-countdown-label {

    font-size: 15px;

    line-height: 1;

    font-weight: 400;
}


/* ==========================================
   DIVIDER
========================================== */

.ccprod-event-divider {

    width: 100%;

    height: 1px;

    background: #d4d4d4;

    margin: 23px 0;
}


/* ==========================================
   BOTTOM
========================================== */

.ccprod-event-card-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}


/* ==========================================
   CONTRIBUTORS
========================================== */

.ccprod-contributors {

    display: flex;

    align-items: center;

    gap: 17px;
}


.ccprod-avatar-group {

    display: flex;

    align-items: center;

    min-width: 152px;
}


.ccprod-avatar {

    width: 49px;

    height: 49px;

    border-radius: 50%;

    object-fit: cover;

    border: 2px solid #ffffff;

    margin-left: -14px;

    box-sizing: border-box;
}


.ccprod-avatar:first-child {

    margin-left: 0;
}


.ccprod-contributor-text {

    font-size: 22px;

    line-height: 1.22;

    font-weight: 400;

    color: #050505;
}


/* ==========================================
   DONATE BUTTON
========================================== */

.ccprod-donate-btn {

    min-width: 196px;

    min-height: 60px;

    padding: 15px 25px;

    border-radius: 40px;

    background: #A6E319;

    color: #000000;

    border: 0;

    text-decoration: none;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    font-size: 16px;

    font-weight: 700;

    line-height: 1;

    box-sizing: border-box;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.ccprod-donate-btn:hover,
.ccprod-donate-btn:focus {

    background: #8dd900;

    color: #000000;

    text-decoration: none;

    transform: translateY(-2px);
}


.ccprod-donate-btn svg {

    width: 22px;

    height: 22px;

    flex: 0 0 22px;
}


/* ==========================================
   INTRO IMAGE
========================================== */
/* 
.hb-map-visual img {

    width: 100%;

    max-width: 100%;

    height: auto;

    display: block;
} */


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

    .ccprod-event-card {

        max-width: 100%;
    }


    .ccprod-event-card-top {

        grid-template-columns: 1fr 1fr;
    }


    .ccprod-event-countdown {

        grid-column: 1 / -1;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .ccprod-event-container {

        margin-top: 30px;
    }


    .ccprod-event-card {

        padding: 22px;
    }


    .ccprod-event-card-top {

        grid-template-columns: 1fr 1fr;

        gap: 20px;
    }


    .ccprod-event-countdown {

        grid-column: 1 / -1;
    }


    .ccprod-countdown-box {

        min-height: 105px;
    }


    .ccprod-countdown-number {

        font-size: 30px;

        margin-bottom: 13px;
    }


    .ccprod-event-card-bottom {

        flex-direction: column;

        align-items: stretch;
    }


    .ccprod-donate-btn {

        width: 100%;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 520px) {

    .ccprod-event-card {

        padding: 20px 16px;

        border-radius: 18px;
    }


    .ccprod-event-card-top {

        grid-template-columns: 1fr;

        gap: 15px;
    }


    .ccprod-event-info-label {

        margin-bottom: 12px;
    }


    .ccprod-event-countdown {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .ccprod-countdown-box {

        min-height: 100px;

        border-radius: 16px;
    }


    .ccprod-countdown-number {

        font-size: 28px;
    }


    .ccprod-contributors {

        align-items: flex-start;

        flex-direction: column;

        gap: 12px;
    }


    .ccprod-contributor-text {

        font-size: 19px;
    }


    .ccprod-avatar {

        width: 45px;

        height: 45px;
    }

}

/* =========================================================
   OS SERVICES BOOKING - REFERENCE SLIDER
========================================================= */

.ccprod-osb-services {
    overflow: hidden;
}

.ccprod-osb-services .hb-container {
    overflow: visible;
}

/* HEADER */
.ccprod-osb-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 40px;
}

.ccprod-osb-heading {
    width: 100%;
    max-width: 560px;
}

.ccprod-osb-heading h2 {
    margin: 0 0 12px !important;
    color: #082f2b !important;
    font-size: 48px !important;
    line-height: 1.04 !important;
    font-weight: 700 !important;
    letter-spacing: -1.5px !important;
}

.ccprod-osb-heading p {
    max-width: 520px;
    margin: 0 !important;
    color: #263f3a !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
}

.ccprod-osb-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 13px;
    flex: 0 0 auto;
}

.ccprod-osb-view-all {
    min-width: 150px;
    min-height: 46px;
    padding: 12px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: #9bea00;
    color: #082f2b !important;
    text-decoration: none !important;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    transition: background-color .2s ease, transform .2s ease;
}

.ccprod-osb-view-all:hover {
    background: #8ed900;
    color: #082f2b !important;
    transform: translateY(-1px);
}

.ccprod-osb-filter-wrap {
    position: relative;
}

.ccprod-osb-filter {
    min-width: 145px;
    height: 46px;
    margin: 0;
    padding: 0 38px 0 18px;
    border: 1px solid #d8e0dd;
    border-radius: 999px;
    outline: 0;
    background-color: #fff;
    color: #70807c;
    font-size: 11px;
    box-shadow: none;
    cursor: pointer;
}

.ccprod-osb-nav {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #bcc8c4;
    border-radius: 50%;
    background: #fff;
    color: #173c38;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.ccprod-osb-nav svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ccprod-osb-nav:hover {
    border-color: #082f2b;
    background: #082f2b;
    color: #fff;
}

/* SLIDER */
.ccprod-osb-slider {
    position: relative;
    width: 100%;
}

.ccprod-osb-track {
    width: 100%;
    display: flex;
    align-items: stretch;
    gap: 22px;
    margin: 0;
    padding: 4px 3px 32px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.ccprod-osb-track::-webkit-scrollbar {
    display: none;
}

/* =========================================================
   EXACT CARD STYLE
========================================================= */
.ccprod-osb-card {
    position: relative;
    /* flex: 0 0 calc((100% - 66px) / 4);
    width: calc((100% - 66px) / 4);
    min-width: calc((100% - 66px) / 4); */
    display: flex;
    flex-direction: column;
    margin: 0;
    background: #fff;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    box-shadow: 0 10px 28px rgba(5, 31, 31, .13);
    transition: transform .25s ease, box-shadow .25s ease;
}

.ccprod-osb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(5, 31, 31, .17);
}

/* IMAGE */
.ccprod-osb-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 0;
    overflow: hidden;
    background: #e8ecea;
}

.ccprod-osb-image-link {
    width: 100%;
    height: 100%;
    display: block;
}

.ccprod-osb-image img,
.ccprod-osb-image-placeholder {
    width: 100%;
    height: 100%;
    display: block;
}

.ccprod-osb-image img {
    object-fit: cover;
    object-position: center;
    transition: transform .35s ease;
}

.ccprod-osb-card:hover .ccprod-osb-image img {
    transform: scale(1.025);
}

.ccprod-osb-image-placeholder {
    background: linear-gradient(135deg, #e5ece8, #f6faf7);
}

/* CATEGORY PILL */
.ccprod-osb-category {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    min-height: 31px;
    padding: 7px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #fff;
    color: #07866a;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .06);
}

/* FAVORITE */
.ccprod-osb-favorite {
    position: absolute;
    top: 17px;
    right: 17px;
    z-index: 4;
    width: 42px;
    height: 42px;
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #29413d;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .08);
    transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.ccprod-osb-favorite svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ccprod-osb-favorite:hover,
.ccprod-osb-favorite.active {
    background: #9bea00;
    color: #082f2b;
}

.ccprod-osb-favorite:hover {
    transform: scale(1.04);
}

.ccprod-osb-favorite.active svg {
    fill: currentColor;
}

/* BODY */
.ccprod-osb-card-content {
    min-height: 245px;
    padding: 23px 23px 22px;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    background: #fff;
}

.ccprod-osb-card-content h3 {
    margin: 0 0 12px !important;
    padding: 0 !important;
    color: #07342f !important;
    font-size: 20px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    letter-spacing: -.3px !important;
}

.ccprod-osb-card-content h3 a {
    color: #07342f !important;
    text-decoration: none !important;
}

.ccprod-osb-card-content h3 a:hover {
    color: #07342f !important;
}

.ccprod-osb-description {
    min-height: 48px;
    margin: 0 0 24px !important;
    padding: 0 !important;
    color: #899591 !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
    font-weight: 400 !important;
}

.ccprod-osb-description-empty {
    visibility: hidden;
}

/* RATING / DURATION */
.ccprod-osb-meta {
    min-height: 20px;
    margin-top: auto;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.ccprod-osb-rating,
.ccprod-osb-duration {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    line-height: 1;
}

.ccprod-osb-rating {
    color: #d9aa00;
}

.ccprod-osb-rating svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.ccprod-osb-rating span {
    color: #b68e00;
}

.ccprod-osb-duration {
    margin-left: auto;
    color: #8c9794;
}

.ccprod-osb-duration svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: #677773;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* PROGRESS */
.ccprod-osb-progress {
    position: relative;
    width: 100%;
    height: 6px;
    margin: 0 0 25px;
    overflow: hidden;
    border-radius: 999px;
    background: #e9eeec;
}

.ccprod-osb-progress span {
    width: 82%;
    height: 100%;
    display: block;
    border-radius: inherit;
    background: #9bea00;
}

/* FOOTER */
.ccprod-osb-card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.ccprod-osb-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ccprod-osb-price small {
    margin: 0 0 6px !important;
    color: #9aa5a2 !important;
    font-size: 9px !important;
    line-height: 1 !important;
    font-weight: 400 !important;
    letter-spacing: .02em;
}

.ccprod-osb-price strong {
    color: #008768;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
}

/* ROUND GREEN ARROW */
.ccprod-osb-arrow {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #9bea00;
    color: #07342f !important;
    text-decoration: none !important;
    transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.ccprod-osb-arrow svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ccprod-osb-arrow:hover {
    background: #07342f;
    color: #fff !important;
    transform: translateX(2px);
}

.ccprod-osb-empty {
    padding: 35px 25px;
    border-radius: 12px;
    background: #f3f7f5;
    color: #6a7a77;
    text-align: center;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1199px) {
    .ccprod-osb-card {
        flex-basis: calc((100% - 44px) / 3);
        width: calc((100% - 44px) / 3);
        min-width: calc((100% - 44px) / 3);
    }

    .ccprod-osb-heading h2 {
        font-size: 42px !important;
    }
}

@media (max-width: 900px) {
    .ccprod-osb-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .ccprod-osb-header-actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .ccprod-osb-card {
        flex-basis: calc((100% - 22px) / 2);
        width: calc((100% - 22px) / 2);
        min-width: calc((100% - 22px) / 2);
    }
}

@media (max-width: 600px) {
    .ccprod-osb-header {
        margin-bottom: 24px;
    }

    .ccprod-osb-heading h2 {
        font-size: 34px !important;
    }

    .ccprod-osb-heading p {
        font-size: 14px !important;
    }

    .ccprod-osb-view-all {
        min-width: 110px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .ccprod-osb-filter {
        min-width: 125px;
    }

    .ccprod-osb-nav {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .ccprod-osb-card {
        flex: 0 0 88%;
        width: 88%;
        min-width: 88%;
    }

    .ccprod-osb-card-content {
        min-height: 235px;
        padding: 21px 19px 20px;
    }

    .ccprod-osb-card-content h3 {
        font-size: 19px !important;
    }

    .ccprod-osb-description {
        font-size: 12px !important;
    }

    .ccprod-osb-category {
        top: 14px;
        left: 14px;
    }

    .ccprod-osb-favorite {
        top: 13px;
        right: 13px;
        width: 40px;
        height: 40px;
    }
}

.vm-home-shop {
    overflow: hidden
}

.vm-shop-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 35px
}

.vm-shop-head h2 {
    margin: 0 !important;
    color: #062d29 !important;
    font-size: 42px !important;
    font-weight: 700 !important;
    letter-spacing: -1px !important
}

.vm-view-all {
    min-width: 150px;
    padding: 13px 28px;
    border-radius: 999px;
    background: #98df00;
    color: #062d29 !important;
    text-align: center;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 700
}

.vm-slider {
    position: relative
}

.vm-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 28px
}

.vm-track::-webkit-scrollbar {
    display: none
}

.vm-product-card {
    flex: 0 0 calc((100% - 88px)/5);
    min-width: calc((100% - 88px)/5);
    background: #F5F5F5;
    scroll-snap-align: start
}

.vm-product-image {
    position: relative;
    height: 245px;
    background: #f3f4f3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.vm-product-image>a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center
}

.vm-product-image img {
    width: 82%;
    height: 82%;
    object-fit: contain;
    transition: transform .25s ease
}

.vm-product-card:hover .vm-product-image img {
    transform: scale(1.04)
}

.vm-product-placeholder {
    width: 100%;
    height: 100%;
    display: block;
    background: #eef1ef
}

.vm-product-price {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    color: #0A4D3C;
    font-size: 18px;
    font-weight: 700
}

.vm-product-body {
    padding: 14px 18px 18px;
    text-align: center
}

.vm-product-body h3 {
    margin: 0 0 7px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #111 !important
}

.vm-product-body h3 a {
    font-size: 20px;
    color: #000;
    text-decoration: none !important
}

.vm-product-body p {
    height: 34px;
    margin: 0 0 14px !important;
    overflow: hidden;
    color: #000;
    font-size: 18px;
    line-height: 1.55;
    text-overflow: ellipsis
}

.vm-add-form {
    margin: 0
}

.vm-product-body .hb-actions {
    justify-content: center;
}


.vm-slider-nav {
    display: flex;
    align-items: center;
    gap: 25px
}

.vm-slider-line {
    height: 1px;
    background: #e3e8e5;
    flex: 1;
}

.vm-slider-arrow {
    width: 39px;
    height: 39px;
    padding: 0;
    border: 1px solid #aebbb7;
    border-radius: 50%;
    background: #fff;
    color: #173c38;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.vm-slider-arrow:hover {
    background: #062d29;
    color: #fff;
    border-color: #062d29
}

.vm-no-products {
    padding: 25px;
    background: #f5f7f6;
    text-align: center
}

@media(max-width:1199px) {
    .vm-product-card {
        flex-basis: calc((100% - 66px)/4);
        min-width: calc((100% - 66px)/4)
    }
}

@media(max-width:900px) {
    .vm-product-card {
        flex-basis: calc((100% - 44px)/3);
        min-width: calc((100% - 44px)/3)
    }

    .vm-shop-head h2 {
        font-size: 34px !important
    }
}

@media(max-width:650px) {
    .vm-shop-head {
        align-items: flex-start
    }

    .vm-shop-head h2 {
        font-size: 28px !important
    }

    .vm-view-all {
        min-width: 100px;
        padding: 11px 18px
    }

    .vm-product-card {
        flex: 0 0 78%;
        min-width: 78%
    }

    .vm-product-image {
        height: 230px
    }
}
/* FULL WIDTH SHOP SECTION */
.vm-home-shop .hb-container {
    width: 100% !important;
    max-width: none !important;
    padding-left: 30px;
    padding-right: 30px;
    margin: 0 !important;
}

.vm-home-shop {
    width: 100%;
    max-width: none;
}

/* Keep heading aligned nicely */
.vm-shop-head {
    width: 100%;
}

/* Slider uses complete available width */
.vm-slider,
.vm-track {
    width: 100%;
    max-width: none;
}

/* 5 products across full width */
.vm-product-card {
    flex: 0 0 calc((100% - 88px) / 5);
    min-width: calc((100% - 88px) / 5);
}

/* =========================================================
   ARTICLE STORY SLIDER
========================================================= */

.ccprod-article-stories {
    overflow: hidden;
}


/* FULL WIDTH */
.ccprod-article-stories .hb-container {
    width: 100% !important;
    max-width: none !important;
    padding: 0 90px !important;
}

.ccprod-stories-head h2 {
    color: #051F1F;
    font-size: 45px !important;
    font-weight: 700;
    margin-bottom: 20px;
}

.ccprod-stories-all {
    color: #0A4D3C !important;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 700;
}

.ccprod-stories-all i {
    margin-left: 5px;
}


/* SLIDER */
.ccprod-story-slider {
    width: 100%;
    position: relative;
}

.ccprod-story-track {
    display: flex;
    gap: 28px;

    width: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    padding: 0 0 20px;

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.ccprod-story-track::-webkit-scrollbar {
    display: none;
}


/* CARD */
.ccprod-story-card {
    flex: 0 0 calc((100% - 56px) / 3);
    min-width: calc((100% - 56px) / 3);

    background: transparent;

    scroll-snap-align: start;
}


/* IMAGE */
.ccprod-story-image {
    display: block;

    width: 100%;
    height: 305px;

    margin-bottom: 18px;

    overflow: hidden;

    background: #eef1ef;

    text-decoration: none;
}

.ccprod-story-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .35s ease;
}

.ccprod-story-card:hover .ccprod-story-image img {
    transform: scale(1.025);
}

.ccprod-story-placeholder {
    display: block;

    width: 100%;
    height: 100%;

    background: #eef1ef;
}


/* META */
.ccprod-story-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 11px;
}

.ccprod-story-meta span {
    display: inline-flex;

    align-items: center;

    gap: 6px;
}

.ccprod-story-meta svg {
    width: 13px;
    height: 13px;

    fill: none;

    stroke: #b5ca00;

    stroke-width: 1.6;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* TITLE */


.ccprod-story-card h3 a {
    color: #000;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
}


/* DESCRIPTION */
.ccprod-story-card p {
    margin: 0 0 18px;
    color: #000;
    font-size: 16px;
    line-height: 1.6;
}


/* READ MORE */
.ccprod-story-more {
    color: #005f50 !important;

    text-decoration: none !important;

    font-size: 11px;

    font-weight: 700;
}


/* CONTROLS */
.ccprod-story-controls {
    display: flex;

    align-items: center;

    gap: 25px;

    margin-top: 20px;
}

.ccprod-story-controls button {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    border: 1px solid #aab7b3;

    border-radius: 50%;

    background: #fff;

    color: #173c38;

    cursor: pointer;

    transition: .2s;
}

.ccprod-story-controls button:hover {
    background: #062d29;

    border-color: #062d29;

    color: #fff;
}

.ccprod-story-control-line {
    height: 1px;

    flex: 1;

    background: #e1e7e4;
}


/* TABLET */
@media (max-width: 1000px) {

    .ccprod-article-stories .hb-container {
        padding: 0 30px !important;
    }

    .ccprod-story-card {
        flex-basis: calc((100% - 28px) / 2);
        min-width: calc((100% - 28px) / 2);
    }

    .ccprod-stories-head h2 {
        font-size: 36px !important;
    }

}


/* MOBILE */
@media (max-width: 600px) {

    .ccprod-article-stories .hb-container {
        padding: 0 18px !important;
    }

    .ccprod-stories-head h2 {
        font-size: 29px !important;
    }

    .ccprod-story-card {
        flex: 0 0 87%;
        min-width: 87%;
    }

    .ccprod-story-image {
        height: 230px;
    }

}

/* =========================================================
   IMPACT SECTION
========================================================= */

#ccprod-homebuilder .hb-impact-reference {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #ffffff;
}


/* =========================================================
   RIGHT BACKGROUND IMAGE
========================================================= */

#ccprod-homebuilder
.hb-impact-reference
.hb-impact-media {

    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;

    width: 60%;

    overflow: hidden;

    pointer-events: none;
}


#ccprod-homebuilder
.hb-impact-reference
.hb-impact-media img {

    position: absolute;

    inset: 0;

    display: block;

    width: 100% !important;
    height: 100% !important;

    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: cover;
    object-position: center center;

    border: 0;
}


/*
 * Fade image into white from the left.
 */

#ccprod-homebuilder
.hb-impact-reference
.hb-impact-media::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            rgba(255,255,255,.98) 4%,
            rgba(255,255,255,.88) 15%,
            rgba(255,255,255,.42) 32%,
            rgba(255,255,255,.08) 48%,
            rgba(255,255,255,0) 65%
        );

    pointer-events: none;
}


/*
 * Soft white fade along bottom,
 * like the reference screenshot.
 */

#ccprod-homebuilder
.hb-impact-reference
.hb-impact-media::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 34%;

    z-index: 3;

    background:
        linear-gradient(
            0deg,
            #ffffff 0%,
            rgba(255,255,255,.92) 18%,
            rgba(255,255,255,.45) 50%,
            rgba(255,255,255,0) 100%
        );

    pointer-events: none;
}


/* =========================================================
   CONTENT CONTAINER
========================================================= */

#ccprod-homebuilder
.hb-impact-reference
.hb-impact-inner {

    position: relative;

    z-index: 10;

    width: 100%;
    max-width: 1400px;

    min-height: 610px;

    margin: 0 auto;

    padding:
        85px
        24px
        75px;

    display: flex;

    align-items: center;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

#ccprod-homebuilder
.hb-impact-reference
.hb-impact-content {

    position: relative;

    width: 47%;
    max-width: 570px;
}


/* TITLE */

#ccprod-homebuilder
.hb-impact-reference
.hb-impact-title {

    margin:
        0
        0
        18px !important;

    padding: 0 !important;
}


/* CONTENT */

#ccprod-homebuilder
.hb-impact-reference
.hb-richtext {

    max-width: 500px;

    margin-bottom: 28px;

    color: #334744;

    font-size: 13px;
    line-height: 1.85;
}


#ccprod-homebuilder
.hb-impact-reference
.hb-richtext p {

    margin:
        0
        0
        10px;
}


/* =========================================================
   STATS GRID
========================================================= */

#ccprod-homebuilder
.hb-impact-reference
.hb-impact-stats {

    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 11px;

    width: 100%;

    margin:
        0
        0
        30px;
}


/* =========================================================
   STAT CARD
========================================================= */

#ccprod-homebuilder
.hb-impact-reference
.hb-impact-stat {

    display: grid;

    grid-template-columns:
        42px
        minmax(0, 1fr);

    grid-template-rows:
        auto
        auto;

    align-items: center;

    column-gap: 12px;

    min-height: 68px;

    padding:
        10px
        14px;

    border:
        1px
        solid
        #dbe4df;

    border-radius: 10px;

    background:
        rgba(
            255,
            255,
            255,
            .88
        );

    backdrop-filter:
        blur(4px);

    -webkit-backdrop-filter:
        blur(4px);

    box-shadow:
        0
        2px
        7px
        rgba(
            14,
            48,
            44,
            .025
        );
}


/* =========================================================
   ICON
========================================================= */

#ccprod-homebuilder
.hb-impact-reference
.hb-impact-icon {

    grid-column: 1;
    grid-row: 1 / span 2;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 50%;

    background: #eaf4ef;

    color: #145c54;

    font-size: 17px;

    flex: 0 0 auto;
}


#ccprod-homebuilder
.hb-impact-reference
.hb-impact-icon img {

    display: block;

    width: 22px !important;
    height: 22px !important;

    max-width: 22px !important;
    max-height: 22px !important;

    margin: 0 !important;

    object-fit: contain;
}


/* =========================================================
   STAT VALUE
========================================================= */

#ccprod-homebuilder
.hb-impact-reference
.hb-impact-stat strong {

    grid-column: 2;
    grid-row: 1;

    display: block;

    margin: 0;

    color: #0b413c;

    font-size: 23px;
    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -.02em;
}


/* =========================================================
   STAT LABEL
========================================================= */

#ccprod-homebuilder
.hb-impact-reference
.hb-impact-stat-label {

    grid-column: 2;
    grid-row: 2;

    display: block;

    margin-top: 2px;

    color: #303b39;

    font-size: 10px;
    line-height: 1.25;

    font-weight: 500;
}


/* =========================================================
   BUTTON
========================================================= */

#ccprod-homebuilder
.hb-impact-reference
.hb-impact-button {

    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    gap: 7px;

    min-height: 40px;

    padding:
        0
        20px !important;

    border: 0 !important;

    border-radius:
        999px !important;

    background:
        #A6E319 !important;

    color:
        #000 !important;

    font-family: inherit;

    font-size:
        16px !important;

    line-height: 1;

    font-weight:
        700 !important;

    text-decoration:
        none !important;

    box-shadow:
        none !important;

    transition:
        background-color
        .2s ease;
}


#ccprod-homebuilder
.hb-impact-reference
.hb-impact-button:hover {

    background:
        #82cc00 !important;

    color:
        #103a34 !important;

    text-decoration:
        none !important;
}


#ccprod-homebuilder
.hb-impact-reference
.hb-impact-button svg {

    display: block;

    width: 15px;
    height: 15px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    #ccprod-homebuilder
    .hb-impact-reference
    .hb-impact-inner {

        min-height: 560px;

        padding-top: 65px;
        padding-bottom: 65px;
    }


    #ccprod-homebuilder
    .hb-impact-reference
    .hb-impact-content {

        width: 55%;
    }


    #ccprod-homebuilder
    .hb-impact-reference
    .hb-impact-media {

        width: 58%;
    }


    #ccprod-homebuilder
    .hb-impact-reference
    .hb-impact-title {

        font-size:
            32px !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    #ccprod-homebuilder
    .hb-impact-reference {

        display: flex;

        flex-direction: column;
    }


    /*
     * Image becomes normal top image on mobile.
     */

    #ccprod-homebuilder
    .hb-impact-reference
    .hb-impact-media {

        position: relative;

        top: auto;
        right: auto;
        bottom: auto;

        order: 1;

        width: 100%;
        height: 380px;
    }


    #ccprod-homebuilder
    .hb-impact-reference
    .hb-impact-media::before {

        background:
            linear-gradient(
                0deg,
                #ffffff 0%,
                rgba(255,255,255,.55) 18%,
                rgba(255,255,255,0) 45%
            );
    }


    #ccprod-homebuilder
    .hb-impact-reference
    .hb-impact-media::after {

        display: none;
    }


    #ccprod-homebuilder
    .hb-impact-reference
    .hb-impact-inner {

        order: 2;

        min-height: 0;

        padding:
            35px
            16px
            50px;

        display: block;
    }


    #ccprod-homebuilder
    .hb-impact-reference
    .hb-impact-content {

        width: 100%;
        max-width: none;
    }


    #ccprod-homebuilder
    .hb-impact-reference
    .hb-impact-title {

        font-size:
            29px !important;
    }


    #ccprod-homebuilder
    .hb-impact-reference
    .hb-impact-stats {

        max-width: none;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    #ccprod-homebuilder
    .hb-impact-reference
    .hb-impact-stats {

        grid-template-columns:
            1fr;
    }


    #ccprod-homebuilder
    .hb-impact-reference
    .hb-impact-media {

        height: 310px;
    }

}
