body {
    font-family: 'Lato', sans-serif;
}

/* Title bar */
.title-bar {
    width: 10px;
    height: 35px;
    background-color: var(--accent-gold);
    display: inline-block;
    margin-right: 8px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* ===== TABS ===== */
.gallery-tabs-wrapper {
    margin-bottom: 35px;
}

.gallery-tabs {
    display: flex;
    /* gap: 8px; */
}

/* Tab */
.gallery-tab {
    padding: 10px    28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    background: #ffffff;
    color: #0b1d4d;
    /* border: 1px solid #0b1d4d; */
    border-bottom: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Active tab */
.gallery-tab.active {
    background: #0b1d4d;
    color: #ffffff;
}

/* Bottom line */
.gallery-tabs-line {
    width: 100%;
    height: 3px;
    background: #0b1d4d;
}

/* ===== GALLERY CARD ===== */
.gallery-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

/* Image & Video */
.gallery-media {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    background: #000;
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0)
    );
    color: #fff;
}

.gallery-overlay h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.gallery-overlay small {
    font-size: 13px;
    opacity: 0.85;
}
