/* Banka hesapları — kart + liste (ödeme / bilgi sayfası; dar sütuna uyumlu) */
.myt-bank-accounts {
    margin: 0 0 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.45;
    color: inherit;
    max-width: 100%;
    box-sizing: border-box;
}

.myt-bank-accounts__inner {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 100%;
}

.myt-bank-acc-card {
    border-radius: 8px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.95);
    padding: 0.85rem 1rem;
    max-width: 100%;
    box-sizing: border-box;
}

.checkout-body .myt-bank-acc-card {
    background: rgba(248, 250, 252, 0.98);
    border-color: rgba(15, 23, 42, 0.1);
}

.myt-bank-acc-card__title {
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(15, 23, 42, 0.55);
    margin: 0 0 0.65rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.myt-bank-acc-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem 0;
}

.myt-bank-acc-item {
    display: grid;
    grid-template-columns: minmax(6.5rem, 32%) 1fr;
    gap: 0.35rem 0.75rem;
    align-items: start;
}

@media (max-width: 420px) {
    .myt-bank-acc-item {
        grid-template-columns: 1fr;
        gap: 0.15rem 0;
    }
}

.myt-bank-acc-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(15, 23, 42, 0.55);
}

.myt-bank-acc-value {
    font-size: 0.9375rem;
    color: rgba(15, 23, 42, 0.92);
    word-break: break-word;
    overflow-wrap: anywhere;
    font-variant-numeric: tabular-nums;
}

.myt-bank-page-desc {
    margin-top: 1rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: inherit;
    max-width: 100%;
    overflow-wrap: break-word;
}

.myt-bank-page-desc > *:first-child {
    margin-top: 0;
}

.myt-bank-page-desc > *:last-child {
    margin-bottom: 0;
}
