.cv-list {
    display: grid;
    gap: 14px;
}
.cv-row {
    display: grid;
    gap: 18px;
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, #18181b 0%, #09090b 100%);
    border: 1px solid #3f3f46;
}
.cv-rank {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(251, 191, 36, 0.55);
    color: #fbbf24;
    font-weight: 900;
    font-size: 1.05rem;
    background: rgba(251, 191, 36, 0.08);
}
.cv-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}
.cv-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.cv-copy strong {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}
.cv-logo {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: #27272a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cv-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.cv-brand h3,
.cv-promo strong {
    color: #ffffff;
    margin: 0;
    display: block;
}
.cv-brand span,
.cv-promo span,
.cv-feature small {
    color: #a1a1aa;
    font-size: 0.88rem;
}
.cv-promo strong {
    font-size: 1.08rem;
    font-weight: 800;
    margin-bottom: 4px;
}
.cv-feature {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cv-pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    color: #6ee7b7;
    font-size: 0.78rem;
    font-weight: 700;
}
.cv-action a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    background: linear-gradient(to bottom, #fbbf24, #f59e0b);
    color: #451a03;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.28);
}
.cv-related-grid {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}
.cv-related-grid a {
    display: block;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fef08a;
    font-weight: 700;
    text-decoration: none;
}
@media (min-width: 900px) {
    .cv-row {
        grid-template-columns: 60px 1fr 1fr 190px;
        align-items: center;
    }
}
