/* ioann-presnya contacts block — BEM */

.contacts {
    max-width: var(--ip-content-max-text);
    margin: 0 auto 144px;
    padding: 0 var(--ip-side-padding);
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.contacts__heading {
    font-family: var(--ip-font-title);
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    color: var(--ip-text);
    margin: 0 0 16px;
}

.contacts__details {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.contacts__line {
    font-family: var(--ip-font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: var(--ip-text);
    margin: 0;
}

.contacts__line a {
    color: inherit;
    text-decoration: none;
}

.contacts__line a:hover {
    text-decoration: underline;
}

.contacts__map {
    width: 100%;
    overflow: hidden;
}

.contacts__map-frame,
.contacts__map iframe {
    display: block;
    width: 100%;
    height: 570px;
    border: 0;
}

.contacts__map--placeholder {
    width: 100%;
    height: 570px;
    background: #d9d9d9;
}

@media (max-width: 767.99px) {
    .contacts {
        padding-left: 0;
        padding-right: 0;
    }

    .contacts__map-frame,
    .contacts__map iframe {
        height: 360px;
    }

    .contacts__map--placeholder {
        height: 360px;
    }
}
