/* =========================================================
   GALLERY PAGE STYLES
   ========================================================= */

/* ---------- GRID WRAPPER ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* ---------- ALBUM CARDS ---------- */
.gallery-card {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: .3s ease;
    border: 1px solid var(--border);
}

.gallery-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
}

/* Album Thumbnail */
.gallery-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius);
}

/* Album Title */
.gallery-card h3 {
    margin-top: 10px;
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
}

/* ---------- INSIDE ALBUM PHOTOS ---------- */
.gallery-photo {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
