#iframe-mapa {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}
.map-placeholder {
    margin-top: 10px;
    width: 100%;
    height: 400px;
    background-color: var(--color-mapa);
    border-radius: 8px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: 1;
}
.placeholder-text {
    color: #888;
    font-family: sans-serif;
    font-weight: bold;
}
#kontejner {
    display: flex;
    flex-direction: column;
}
#informace {
    width: auto;
}
.social-link {
    margin: 10px 0 0 10px;
    display: flex;
    flex-direction: row;
    gap: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    align-items: center;
    transition: margin-left 0.15s ease-in;
}
.social-link:hover {
    margin-left: 15px;
}
.ikony-flex {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}
strong {
    font-size: 1.1rem;
}
.adresy {
    margin: 10px 0 0 20px;
    display: block;
}
@media (max-width: 400px) {
    .email {
        flex-direction: column;
        align-items: normal;
    }
    #email {
        margin-left: 20px;
    }
}
@media (min-width: 1000px) {
    .map-placeholder {
        flex-wrap: auto;
        height: 600px;
    }
    #kontejner {
        flex-direction: row;
        margin-top: 20px;
    }
    #informace {
        width: 600px;
    }
    p {
        margin-top: 30px;
    }
}