﻿*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ── Labels ─────────────────────────────── */
.variant-label {
    text-align: center;
    padding: 60px 20px 10px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    letter-spacing: 4px;
    color: #999;
    text-transform: uppercase;
    font-weight: 300;
}

.variant-title {
    text-align: center;
    padding: 0 20px 50px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #333;
}

hr.divider {
    border: none;
    border-top: 2px dashed #ccc;
    max-width: 960px;
    margin: 60px auto;
}

/* ── Shared wrapper ──────────────────────── */
.v3-wrap {
    background: #fff;
    padding: 70px 50px;
    /*max-width: 960px;*/
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 4px;
}

.v3-heading {
    font-family: 'Fraunces', serif;
    font-size: 40px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.v3-sub {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #aaa;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 60px;
}

/* ── Two-column grid ─────────────────────── */
.v3-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
}

/* ── Shared list ─────────────────────────── */
.v3-list {
    list-style: none;
}

/* ── LEFT column items (circle left, text right) ── */
.v3-item {
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

.v3-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.v3-circle {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 2px solid #ee7404;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: #ee7404;
    background: #fff;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    flex-shrink: 0;
    text-decoration: none;
}

.v3-item:hover .v3-circle {
    background: #154633;
    color: #fff;
    border-color: #ee7404;
}

.v3-line {
    width: 2px;
    flex: 1;
    min-height: 44px;
    background: linear-gradient(to bottom, #ee7404 0%, rgba(238,116,4,0.1) 100%);
    margin: 6px 0;
}

.v3-item:last-child .v3-line {
    display: none;
}

.v3-content {
    padding-top: 14px;
    padding-bottom: 38px;
}

    .v3-content strong {
        font-family: 'Inter', sans-serif;
        font-size: 17px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        color: #1a1a1a;
        display: block;
        margin-bottom: 4px;
        transition: color 0.2s;
        line-height: 1.25;
    }

.v3-item:hover .v3-content strong {
    color: #ee7404;
}

.v3-content span {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #333;
}

/* ═══════════════════════════════════════════
     VERSION B — RIGHT column mirror items
     (text RIGHT of circle, text aligned right)
     but column is mirrored: text — [circle]
  ═══════════════════════════════════════════ */

/* Items where circle is on the RIGHT (mirror) */
/*.v3-item-mirror {
    display: flex;
    flex-direction: row-reverse;*/ /* circle goes to the right */
    /*gap: 22px;
    align-items: flex-start;
}

    .v3-item-mirror .v3-right-side {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-shrink: 0;
    }

    .v3-item-mirror .v3-content {
        padding-top: 14px;
        padding-bottom: 38px;
        text-align: right;
        flex: 1;
    }

        .v3-item-mirror .v3-content strong {
            font-family: 'Nunito Sans', sans-serif;
            font-size: 17px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: #1a1a1a;
            display: block;
            margin-bottom: 4px;
            transition: color 0.2s;
            line-height: 1.25;
            text-align: right;
        }

    .v3-item-mirror:hover .v3-content strong {
        color: #ee7404;
    }

    .v3-item-mirror .v3-content span {
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        font-weight: 300;
        color: #999;
        display: block;
        text-align: right;
    }

    .v3-item-mirror .v3-circle {
        width: 62px;
        height: 62px;
        border-radius: 50%;
        border: 2px solid #ee7404;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Nunito Sans', sans-serif;
        font-size: 19px;
        font-weight: 800;
        color: #ee7404;
        background: #fff;
        transition: background 0.2s, color 0.2s;
        flex-shrink: 0;
        text-decoration: none;
    }

    .v3-item-mirror:hover .v3-circle {
        background: #154633;
        color: #fff;
        border-color: #ee7404;
    }

    .v3-item-mirror .v3-line {
        width: 2px;
        flex: 1;
        min-height: 44px;
        background: linear-gradient(to bottom, #ee7404 0%, rgba(238,116,4,0.1) 100%);
        margin: 6px 0;
    }

    .v3-item-mirror:last-child .v3-line {
        display: none;
    }*/

/* Responsive */
@media (max-width: 680px) {
    .v3-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /*.v3-item-mirror {
        flex-direction: row;
    }

        .v3-item-mirror .v3-content,
        .v3-item-mirror .v3-content strong,
        .v3-item-mirror .v3-content span {
            text-align: left;
        }*/
}

