/* versus -- fixed two-zone side-by-side comparison */
.cw-versus {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 0;
}
.cw-vs-panel {
    padding: 18px 20px;
    background: var(--cw-surface);
    border: 1px solid var(--cw-border);
    border-radius: var(--cw-radius);
}
.cw-vs-panel--left { border-top-right-radius: 0; border-bottom-right-radius: 0; }
.cw-vs-panel--right { border-top-left-radius: 0; border-bottom-left-radius: 0; border-left: 0; }
.cw-vs-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--cw-accent-soft);
    color: var(--cw-accent);
    margin-bottom: 8px;
}
.cw-vs-title { margin: 0 0 10px; font-size: 1rem; font-weight: 700; color: var(--cw-text); }
.cw-vs-bullets { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.cw-vs-bullet {
    position: relative;
    padding-left: 18px;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--cw-text);
}
.cw-vs-bullet::before {
    content: "";
    position: absolute;
    left: 2px; top: 8px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--cw-accent);
}
.cw-vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}
.cw-vs-vs {
    display: grid;
    place-items: center;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--cw-bg);
    border: 1px solid var(--cw-border);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--cw-muted);
}
@media (max-width: 560px) {
    .cw-versus { grid-template-columns: 1fr; }
    .cw-vs-panel--left, .cw-vs-panel--right {
        border-radius: var(--cw-radius);
        border-left: 1px solid var(--cw-border);
    }
    .cw-vs-divider { padding: 8px 0; }
}
