.vtk-comparison-grid {
    --vtk-cards-per-row: 2;
    display: grid;
    grid-template-columns: repeat(var(--vtk-cards-per-row), minmax(0, 1fr));
    gap: 32px;
    width: 100%;
}

.vtk-comparison-card {
    position: relative;
    background: #fff;
    border: 1px solid #dce4ef;
    border-radius: 12px;
    padding: 48px 40px 46px;
    min-height: 574px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.02);
}

.vtk-comparison-card.is-highlighted {
    border: 2px solid #00a651;
}

.vtk-comparison-badge {
    position: absolute;
    top: -13px;
    right: 32px;
    min-width: 110px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #00a651;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    letter-spacing: .02em;
}

.vtk-comparison-header {
    border-bottom: 1px solid #dce4ef;
    padding-bottom: 24px;
    margin-bottom: 34px;
}

.vtk-comparison-title {
    color: #00102b;
    font-family: inherit;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 8px;
}

.vtk-comparison-subtitle {
    color: #52698c;
    font-family: inherit;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
    margin: 0;
}

.vtk-comparison-rows {
    display: flex;
    flex-direction: column;
}

.vtk-comparison-row {
    display: grid;
    grid-template-columns: minmax(150px, 1fr) minmax(190px, 1.22fr);
    align-items: center;
    gap: 20px;
    border-bottom: 1px dashed #dce4ef;
    min-height: 51px;
    padding: 10px 0;
}

.vtk-comparison-row:last-child {
    border-bottom: 0;
}

.vtk-comparison-label {
    color: #52698c;
    font-family: inherit;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
}

.vtk-comparison-value {
    color: #00102b;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.5;
    text-align: right;
}

.vtk-value-green .vtk-comparison-value {
    color: #009b3f;
}

@media (max-width: 1024px) {
    .vtk-comparison-grid {
        grid-template-columns: 1fr;
    }

    .vtk-comparison-card {
        min-height: auto;
    }
}

@media (max-width: 600px) {
    .vtk-comparison-card {
        padding: 38px 24px 32px;
    }

    .vtk-comparison-badge {
        right: 24px;
    }

    .vtk-comparison-row {
        grid-template-columns: 1fr;
        gap: 6px;
        align-items: start;
    }

    .vtk-comparison-value {
        text-align: left;
    }
}
