.bckx-offers {
    --bckx-navy: #08223a;
    --bckx-teal: #0b968f;
    --bckx-gold: #e9ad20;
    --bckx-border: #d5e2e7;
    margin-block: 2rem;
}

.bckx-offers__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.bckx-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--bckx-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(8, 34, 58, .07);
}

.bckx-card__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 190px;
    padding: 1.25rem;
    background: #f4f9fa;
}

.bckx-card__logo {
    display: block;
    width: 100%;
    max-width: 110px;
    max-height: 76px;
    object-fit: contain;
}

.bckx-card__logo-placeholder {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--bckx-navy), var(--bckx-teal));
}

.bckx-card__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    padding: 1.35rem;
}

.bckx-card__provider {
    margin: 0 0 .35rem;
    color: #557184;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.bckx-card__title {
    margin: 0 0 .65rem;
    color: var(--bckx-navy);
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    line-height: 1.22;
}

.bckx-card__description,
.bckx-card__process {
    margin: 0 0 .85rem;
    color: #38576b;
    font-size: .95rem;
    line-height: 1.55;
}

.bckx-card__process {
    padding-left: .75rem;
    border-left: 3px solid var(--bckx-gold);
    font-size: .88rem;
}

.bckx-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: .78rem 1.05rem;
    border-radius: 10px;
    background: var(--bckx-teal);
    color: #fff !important;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none !important;
    transition: transform .18s ease, background-color .18s ease;
}

.bckx-card__button:hover,
.bckx-card__button:focus-visible {
    background: #087b76;
    transform: translateY(-1px);
}

.bckx-card__button:focus-visible {
    outline: 3px solid rgba(233, 173, 32, .5);
    outline-offset: 3px;
}

.bckx-offers__updated {
    margin: 1rem 0 0;
    color: #5c7484;
    font-size: .82rem;
    line-height: 1.45;
}

.bckx-admin-hint {
    padding: .8rem 1rem;
    border-left: 4px solid #e9ad20;
    background: #fff8e4;
    color: #503c08;
}

@media (max-width: 960px) {
    .bckx-offers__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .bckx-card {
        grid-template-columns: 1fr;
    }

    .bckx-card__brand {
        min-height: 112px;
    }

    .bckx-card__logo {
        max-width: 128px;
    }
}
