/* ==============================
   GALLERY PAGE
============================== */

.gallery-section {
    padding: 70px 20px;
    background: #f7f4ec;
}

.gallery-container {
    max-width: 1200px;
    margin: auto;
}

.gallery-title {
    text-align: center;
    font-size: 30px;
    color: #0d1b5e;
    margin-bottom: 10px;
}

.gallery-subtitle {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
}

.gallery-card img,
.gallery-card video {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.gallery-info {
    padding: 15px;
}

.gallery-info h4 {
    font-size: 16px;
    color: #0d1b5e;
    margin-bottom: 5px;
}

.gallery-info p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 600px) {
    .gallery-card img,
    .gallery-card video {
        height: 180px;
    }
}
