.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 20px;
    align-items: stretch;
    justify-content: center;
}

.info-column,
.map-column {
    flex: 1 1 300px;
    max-width: 500px;
    display: flex;
}

.contact-bubble {
    background-color: #f8f8f8;
    border-radius: 12px;
    border: 1px solid #ddd;
    padding: 16px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-text);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-bubble p {
    margin: 6px 0; /* menší mezery mezi řádky */
}

.contact-bubble i {
    margin-right: 8px;
    color: var(--color-primary);
    width: 20px;
    display: inline-block;
    text-align: center;
}

.contact-bubble a {
    color: var(--color-primary);
    text-decoration: none;
}

.contact-bubble a:hover {
    text-decoration: underline;
}

.map-bubble {
    padding: 0;                  /* žádné vnitřní odsazení */
    border: none;                /* zůstává bez vnějšího orámování */
    border-radius: 12px;
    overflow: hidden;            /* ořízne zaoblení iframe */
    flex: 1;
    display: flex;
}

.map-bubble iframe {
    display: block;
    border: none;
    width: 100%;
    height: 100%;
}


/* Mobilní úprava */
@media screen and (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 20px;
    }

    .info-column,
    .map-column {
        max-width: 100%;
        width: 100%;
    }

    .contact-bubble {
        width: 100%;
    }

    .map-bubble iframe {
        height: 300px;
    }
}
