.emd-gallery {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.emd-gallery-label {
    color: #888;
    font-size: 14px;
    font-style: italic;
    margin: 0 0 10px;
}

.emd-gallery-title {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.emd-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 10px;
    gap: 12px;
}

.emd-gallery-item {
    overflow: hidden;
    border-radius: 10px;
}

.emd-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.emd-gallery-item:hover img {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .emd-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .emd-gallery-title {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .emd-gallery-grid {
        grid-template-columns: 1fr;
    }
}
