.gallery-section {
    padding: 70px 24px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 52px;
}

.gallery-tag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #e8651a;
    font-weight: 600;
    margin-bottom: 14px;
}

.gallery-title {
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 300;
    color: #1d4b8f;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.gallery-title strong {
    font-weight: 700;
    color: #e8651a;
}

.header-line {
    width: 50px;
    height: 3px;
    background: #e8651a;
    margin: 20px auto 0;
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.gallery-item {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 6px;
    background: #e8651a;
}
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .gallery-grid {
        gap: 10px;
    }
}

@media (max-width: 640px) {
    .gallery-section {
        padding: 48px 16px 60px;
    }

    .gallery-header {
        margin-bottom: 36px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

@media (max-width: 380px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}