@charset "UTF-8";

/* ══════════════════════════════════════════════════════════════
   Company (Our Company) v7 — Icon Card Grid (no numbering)
   Scoped to #body-company-v7
   Brand palette:  Green #00853e  Gold #fbbb10  Dark #282e3e
   2×2 equal-weight cards — no ordinals, no implied ranking.
   ══════════════════════════════════════════════════════════════ */

#body-company-v7 {
    background: #f5f6f4;
    padding: 0 0 70px;
    font-family: 'Montserrat', 'Roboto', sans-serif;
    color: #282e3e;
}

/* ── Intro ─────────────────────────────────────────────────── */
#body-company-v7 .cv7-intro {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 64px 24px 48px;
}

#body-company-v7 .cv7-kicker {
    display: inline-block;
    padding: 5px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(0, 133, 62, 0.08);
    color: #026e35;
    margin-bottom: 16px;
}

#body-company-v7 .cv7-intro h2 {
    font-size: 36px;
    font-weight: 800;
    color: #282e3e;
    margin: 0 0 16px;
    line-height: 1.2;
}

#body-company-v7 .cv7-intro hr {
    width: 60px;
    height: 3px;
    border: none;
    background: linear-gradient(90deg, #00853e, #fbbb10);
    margin: 0 auto 20px;
    border-radius: 2px;
}

#body-company-v7 .cv7-intro p {
    font-size: 16px;
    line-height: 1.75;
    color: #555;
    margin: 0 0 16px;
}

/* ── Heritage band ────────────────────────────────────────── */
#body-company-v7 .cv7-band {
    background: #282e3e;
    display: flex;
    justify-content: center;
    padding: 40px 24px;
    margin: 0 0 60px;
}

#body-company-v7 .cv7-band-item {
    flex: 0 1 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    position: relative;
}

#body-company-v7 .cv7-band-item + .cv7-band-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

#body-company-v7 .cv7-band-num {
    font-size: 30px;
    font-weight: 800;
    color: #fbbb10;
    line-height: 1.2;
    margin-bottom: 6px;
}

#body-company-v7 .cv7-band-label {
    font-size: 13px;
    font-weight: 600;
    color: #cdd2de;
    line-height: 1.4;
}

/* ── Card grid ────────────────────────────────────────────── */
#body-company-v7 .cv7-grid {
    max-width: 1100px;
    margin: 0 auto 70px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

#body-company-v7 .cv7-card {
    background: #fff;
    border-radius: 14px;
    overflow: visible;
    position: relative;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

#body-company-v7 .cv7-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.14);
}

#body-company-v7 .cv7-card-img {
    border-radius: 14px 14px 0 0;
    overflow: hidden;
}

#body-company-v7 .cv7-card-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

/* Icon badge straddling image/body boundary */
#body-company-v7 .cv7-card-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00853e, #00a34a);
    border: 4px solid #fff;
    margin: -28px 0 0 28px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#body-company-v7 .cv7-card-badge i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    /* style.css sets `i.fa, #glyphicons i { min-width: 55px; margin-top: 0;
       font-size: 36px }`. min-width only bites once the <i> is no longer
       display:inline — as soon as we make it a flex box it is forced to
       55px wide inside a 48px circle, pushing the glyph ~3.5px right of
       centre. Reset min-width (and margin) alongside the font-size. */
    min-width: 0;
    max-width: none;
    margin: 0;
    line-height: 1;
    color: #fff;
    font-size: 20px;
}

#body-company-v7 .cv7-card-body {
    padding: 16px 28px 28px;
}

#body-company-v7 .cv7-card-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: #282e3e;
    margin: 0 0 12px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 12px;
}

#body-company-v7 .cv7-card-body h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #00853e, #fbbb10);
}

#body-company-v7 .cv7-card-body p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* ── Quote ────────────────────────────────────────────────── */
#body-company-v7 .cv7-quote {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

#body-company-v7 .cv7-quote blockquote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    color: #282e3e;
    border: none;
    padding: 0;
    margin: 0;
}

#body-company-v7 .cv7-quote-author {
    display: block;
    margin-top: 16px;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    color: #026e35;
    letter-spacing: 0.3px;
}

/* ── Responsive (768px) ───────────────────────────────────── */
@media (max-width: 768px) {
    #body-company-v7 .cv7-intro {
        padding: 48px 20px 36px;
    }

    #body-company-v7 .cv7-intro h2 {
        font-size: 28px;
    }

    #body-company-v7 .cv7-band {
        flex-wrap: wrap;
        gap: 20px 0;
        padding: 32px 12px;
        margin-bottom: 44px;
    }

    #body-company-v7 .cv7-band-item {
        flex: 0 0 50%;
        padding: 0 12px;
    }

    #body-company-v7 .cv7-band-item:nth-child(3)::before {
        display: none;
    }

    #body-company-v7 .cv7-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 52px;
        padding: 0 16px;
    }

    #body-company-v7 .cv7-card-img img {
        height: 200px;
    }

    #body-company-v7 .cv7-quote blockquote {
        font-size: 17px;
    }
}
