.ws-bank-page {
    overflow: hidden;
}

.ws-bank-hero {
    position: relative;
    overflow: hidden;
    margin: 0 0 24px;
    padding: 30px 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #10264a 0%, #173b70 100%);
    color: #ffffff;
}

.ws-bank-hero::after {
    content: "";
    position: absolute;
    top: -75px;
    right: -55px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
}

.ws-bank-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 20px;
}

.ws-bank-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
    font-size: 28px;
}

.ws-bank-hero h1 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.2;
}

.ws-bank-hero p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.7;
}

.ws-bank-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ws-bank-card {
    overflow: hidden;
    border: 1px solid #dfe8f0;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(16, 38, 74, 0.07);
}

.ws-bank-card-head {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 70px;
    padding: 15px 18px;
    border-bottom: 1px solid #e5edf4;
    background: #f7f9fc;
}

.ws-bank-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 7px;
    background: #10264a;
    color: #ffffff;
    font-size: 18px;
}

.ws-bank-card-title {
    margin: 0;
    color: #10264a;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.3;
}

.ws-bank-card-body {
    padding: 18px;
}

.ws-bank-info-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid #edf2f6;
}

.ws-bank-info-row:first-child {
    padding-top: 0;
}

.ws-bank-info-row:last-of-type {
    border-bottom: 0;
}

.ws-bank-label {
    flex: 0 0 105px;
    color: #7b8794;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.6;
}

.ws-bank-value {
    min-width: 0;
    color: #202a36;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.6;
    text-align: right;
    word-break: break-word;
}

.ws-bank-iban-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 15px;
    padding: 14px;
    border: 1px dashed #bfd0df;
    border-radius: 7px;
    background: #f7f9fc;
}

.ws-bank-iban {
    min-width: 0;
    color: #10264a;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: 0.35px;
    word-break: break-all;
}

.ws-bank-copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    gap: 7px;
    min-height: 38px;
    padding: 0 14px;
    border: 0;
    border-radius: 6px;
    background: #10264a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    transition: background 0.2s ease;
}

.ws-bank-copy:hover,
.ws-bank-copy:focus {
    background: #1A9BD4;
    color: #ffffff;
    outline: none;
}

.ws-bank-copy.is-copied {
    background: #1f8a55;
}

.ws-bank-empty {
    padding: 24px;
    border: 1px solid #f0d9a5;
    border-radius: 8px;
    background: #fff8e8;
    color: #725315;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.ws-bank-note {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-top: 20px;
    padding: 15px 17px;
    border-left: 4px solid #1A9BD4;
    border-radius: 0 7px 7px 0;
    background: #f4f9fd;
    color: #536273;
    font-size: 13px;
    line-height: 1.7;
}

.ws-bank-note i {
    margin-top: 3px;
    color: #1A9BD4;
}

@media (max-width: 991px) {
    .ws-bank-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .ws-bank-hero {
        padding: 24px 20px;
    }

    .ws-bank-hero-content {
        align-items: flex-start;
        gap: 14px;
    }

    .ws-bank-hero-icon {
        flex-basis: 50px;
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .ws-bank-hero h1 {
        font-size: 24px;
    }

    .ws-bank-card-head,
    .ws-bank-card-body {
        padding-left: 15px;
        padding-right: 15px;
    }

    .ws-bank-info-row {
        display: block;
    }

    .ws-bank-label {
        display: block;
        margin-bottom: 3px;
    }

    .ws-bank-value {
        text-align: left;
    }

    .ws-bank-iban-box {
        align-items: stretch;
        flex-direction: column;
    }

    .ws-bank-copy {
        width: 100%;
    }
}
