﻿/* Page Layout */
.bank-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

/* Large left card */
.bank-main-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.bank-main-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

/* Small right card */
.bank-doubloon-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bank-doubloon-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.doubloon-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
}

/* Links */
a {
    display: inline-block;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

a:hover {
    color: #d4af37;
    border-color: #d4af37;
}

/* Responsive layout */
@media (max-width: 768px) {
    .bank-layout {
        grid-template-columns: 1fr;
    }

    .bank-doubloon-card {
        margin-top: 1rem;
    }
}