/* Přidejte nebo upravte v assets/css/style.css */

.locations-section {
    background: var(--white);
    padding-bottom: 0;
    overflow: hidden;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.location-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.location-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.location-icon {
    width: 54px;
    height: 54px;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.location-info h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.hall-tag {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.contact-line {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.contact-line svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.map-wrapper {
    margin-top: 40px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    overflow: hidden;
    line-height: 0; /* Odstraní mezeru pod iframe */
    filter: grayscale(0.2); /* Trochu utlumíme barvy mapy, aby ladily s designem */
    transition: filter 0.3s ease;
    border: 1px solid var(--gray-200);
    border-bottom: none;
}

.map-wrapper:hover {
    filter: grayscale(0);
}

@media (max-width: 992px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
}