.bcb-comparison {
    background: var(--bcb-bg);
    color: var(--bcb-text);
    font-family: var(--bcb-font);
    padding: 24px 12px;
}

.bcb-inner {
    margin: 0 auto;
    max-width: 860px;
}

.bcb-header {
    margin: 0 auto 18px;
    max-width: 760px;
    text-align: center;
}

.bcb-header h2 {
    color: var(--bcb-secondary);
    font-family: var(--bcb-heading-font);
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 6px;
}

.bcb-header p {
    color: var(--bcb-muted);
    font-size: 16px;
    margin: 0;
}

.bcb-grid {
    align-items: stretch;
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(2, minmax(0, 378px));
    justify-content: center;
}

.bcb-card {
    background: var(--bcb-card);
    border: 0;
    border-radius: var(--bcb-radius);
    box-shadow: 0 1px 2px rgba(16, 24, 40, .08);
    color: var(--bcb-text);
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    text-align: center;
    height: 100%;
}

.bcb-brand-head {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 18px 16px 12px;
}

.bcb-brand-head img,
.bcb-logo-placeholder {
    align-items: center;
    border-radius: 6px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .35);
    color: #ffffff;
    display: flex;
    font-family: var(--bcb-heading-font);
    font-size: 28px;
    font-style: italic;
    font-weight: 800;
    height: 64px;
    justify-content: center;
    max-width: 136px;
    object-fit: contain;
    padding: 8px 12px;
    width: 136px;
}

.bcb-logo-placeholder {
    background: #df101b;
}

.bcb-feature-list {
    display: grid;
    gap: 2px;
    list-style: none;
    margin: 8px auto 20px;
    max-width: 260px;
    padding: 0;
}

.bcb-feature-list li {
    color: var(--bcb-text);
    font-size: 16px;
    line-height: 1.25;
    margin: 0;
    position: relative;
}

.bcb-feature-list li::before {
    border-bottom: 3px solid var(--bcb-primary);
    border-right: 3px solid var(--bcb-primary);
    content: "";
    display: inline-block;
    height: 10px;
    margin-right: 6px;
    transform: rotate(45deg);
    vertical-align: 1px;
    width: 5px;
}

.bcb-divider {
    background: var(--bcb-border);
    height: 1px;
    margin: 0 34px 22px;
}

.bcb-payment-box {
    background: var(--bcb-bg);
    border-radius: 5px;
    margin: 0 16px 23px;
    padding: 12px 14px 13px;
}

.bcb-payment-box p {
    color: var(--bcb-text);
    font-size: 15px;
    line-height: 1.45;
    margin: 0;
}

.bcb-bonus {
    display: grid;
    justify-items: center;
    margin: 0 26px 22px;
}

.bcb-bonus strong {
    color: var(--bcb-primary);
    font-size: 18px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.bcb-button {
    align-items: center;
    background: var(--bcb-primary);
    border-radius: 0;
    color: var(--bcb-button-text);
    display: inline-flex;
    font-size: 17px;
    font-weight: 800;
    justify-content: center;
    letter-spacing: .3px;
    margin: auto 0 0;
    min-height: 56px;
    padding: 12px 18px;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
}

.bcb-button:hover,
.bcb-button:focus {
    color: var(--bcb-button-text);
    filter: brightness(.95);
    text-decoration: none;
}

@media (max-width: 820px) {
    .bcb-grid {
        grid-template-columns: minmax(0, 378px);
    }
}

@media (max-width: 420px) {
    .bcb-comparison {
        padding-left: 8px;
        padding-right: 8px;
    }
}
