﻿/* Maps */
.maps-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap; /* na mniejsze ekrany złamie na dół */
    max-width: 900px;
    margin: 0 auto;
}

.map-item {
    flex: 1 1 300px;
    max-width: 400px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #5a3e1b;
}

.map-header {
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #6d4c41;
}

.map-thumbnail {
    display: block;
    width: 100%;
    height: 200px;
    border: 2px solid #A0522D;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(165, 105, 30, 0.25);
    margin-bottom: 0.5rem;
    cursor: pointer;
}

    .map-thumbnail iframe {
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

.map-address {
    font-size: 0.95rem;
    line-height: 1.3;
    color: #6d4c41;
    font-weight: 600;
}
