/* ── Hero: two model cards with a VS divider ────────────────────────────── */
.header-base .eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #7dd3e0;
    margin-bottom: 6px;
}

.vs-hero-section {
    padding-top: 8px;
}

.vs-hero {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.vs-hero-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 20px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    text-decoration: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.vs-hero-card:hover {
    border-color: #04788e;
    box-shadow: 0 6px 20px rgba(4,120,142,.12);
}

.vs-hero-card img {
    max-width: 100%;
    height: 110px;
    object-fit: contain;
    margin-bottom: 6px;
}

.vs-hero-fallback {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #eef6f9;
    color: #04788e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 6px;
}

.vs-hero-manu {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #64748b;
}

.vs-hero-model {
    font-size: 17px;
    font-weight: 700;
    color: #0b2b3c;
}

.vs-hero-divider {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0b2b3c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
}

.vs-hero-meta {
    text-align: center;
    color: #64748b;
    font-size: 13px;
    margin: 0 0 20px;
}

@media (max-width: 600px) {
    .vs-hero {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .vs-hero-divider {
        margin: -4px 0;
    }
}

/* ── Comparison table ────────────────────────────────────────────────────── */
.vs-table-wrap {
    overflow-x: auto;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.vs-table {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
    font-size: 13.5px;
}

.vs-table th,
.vs-table td {
    padding: 11px 16px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #eef2f6;
    border-left: 1px solid #eef2f6;
}

.vs-table th:first-child,
.vs-table td:first-child {
    border-left: none;
}

.vs-table thead th {
    background: #0b2b3c;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    position: sticky;
    top: 0;
    border-left-color: rgba(255,255,255,.14);
}

.vs-table .vs-spec-col {
    width: 200px;
    color: #405568;
    font-weight: 500;
    background: #f8fafc;
}

.vs-table tbody tr:nth-child(even):not(.vs-group-row) {
    background: #fafcfd;
}

.vs-table .vs-group-row td {
    background: #eef6f9;
    color: #0b2b3c;
    font-weight: 700;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: .04em;
    border-left: none;
}

.vs-table tr.is-diff td:not(.vs-spec-col) {
    background: #fff7ed;
    font-weight: 600;
    color: #9a3412;
}

.vs-table tr.is-diff td.vs-spec-col {
    background: #fef3e8;
}

.vs-table .secondary {
    color: #94a3b8;
    font-weight: 400;
}
