/* Worldwide Page */

/* Header */
.worldwide-header {
    padding: 3rem 0 1.5rem;
    text-align: center;
}

.worldwide-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text, #1a1a1a);
    margin: 0 0 0.5rem;
}

.worldwide-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted, #6b7280);
    margin: 0;
}

/* Map Section */
.worldwide-map-section {
    padding: 0 0 2rem;
}

.worldwide-map {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Gallery Cards Section */
.worldwide-galleries {
    padding: 2rem 0 4rem;
}

.worldwide-galleries .galleries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

/* Gallery card metadata line */
.gallery-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.75rem;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--color-text-muted, #6b7280);
}

.gallery-dates::before {
    content: "\1F4C5 ";
}

.gallery-locations::before {
    content: "\1F4CD ";
}

/* Responsive */
@media (max-width: 768px) {
    .worldwide-header {
        padding: 2rem 0 1rem;
    }

    .worldwide-header h1 {
        font-size: 1.5rem;
    }

    .worldwide-map {
        height: 350px;
        border-radius: 8px;
    }

    .worldwide-galleries .galleries-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .worldwide-map {
        height: 280px;
    }
}
