.maps {
    width: 100%;
    background-color: var(--color-beige);
    padding: 80px 0;
    margin-bottom: 0;
}

.maps__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.maps__header h2 {
    font-size: clamp(26px, 4.5vw, 38px);
    margin-bottom: 15px;
    color: var(--text-color);
}

.maps__header p {
    font-size: 16px;
    color: var(--color-text-soft);
}

.maps__wrapper {
    display: flex;
    gap: 2rem;
}

.maps__title {
    font-size: 18px;
    font-weight: 600;
    padding: 14px 20px;
    text-align: center;
    border-radius: var(--radius-sm);
    margin: 15px 15px 10px;
}

.maps__item {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--color-beige-map);
    box-shadow: 0 8px 25px var(--color-shadow-light);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid transparent;
    padding-bottom: 15px;
}

.maps__item:hover {
    box-shadow: 0 15px 40px var(--color-shadow-strong);
    border-color: var(--color-accent-border);
}

.maps__item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            var(--color-white-40),
            transparent);
    transition: 0.6s;
}

.maps__item:hover::after {
    left: 100%;
}

.maps__iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .maps {
        padding: 50px 0;
    }

    .maps__header h2 {
        font-size: 24px;
    }

    .maps__wrapper {
        flex-direction: column;
    }

    .maps__iframe {
        height: 300px;
    }
}