.promo p {
    font-size: 24px;
    letter-spacing: 0.72px;
}
.sections .contacts > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--grey-2);
    > div {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
        &:not(:last-of-type) {
            padding-bottom: 10px;
            border-bottom: 1px solid var(--grey-white);
        }
        h3 {
            display: grid;
            align-items: center;
            grid-template-columns: 50px 1fr;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 0.6px;
        }
        p,
        div * {
            color: var(--text);
            letter-spacing: 0.16px;
        }
        a {
            white-space: nowrap;
        }
    }
    .schedule > div {
        white-space: nowrap;
    }
    .address p {
        max-width: 350px;
    }
    .email a {
        color: var(--blue);
        font-weight: 600;
        text-decoration-line: underline;
    }
}
.map {
    h2 {
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 0.6px;
        margin-bottom: 10px;
    }
    [class*="ymaps-2"][class*="-ground-pane"] {
        filter: saturate(0);
    }
    #map {
        height: 517px;
        border-radius: 20px;
        border: 1px solid var(--blue);
        overflow: hidden;
    }
}
.sections .social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    > p {
        color: var(--blue);
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 0.6px;
    }
    > div {
        flex-grow: 1;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        align-items: center;
        gap: 10px;
        a {
            display: flex;
            height: 50px;
            padding-inline: 10px;
            justify-content: center;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 0.6px;
            border-radius: 16px;
            background: var(--grey-white);
            &::before {
                font: 100 25px/1 'icon';
                color: inherit;
                width: 32px;
                height: 32px;
                flex-shrink: 0;
                display: grid;
                place-items: center;
            }
        }
    }
}
@media screen and (max-width: 768px) {
    .promo {
        margin-bottom: 20px;
        h1 {
            font-size: 24px;
            letter-spacing: 0.72px;
        }
        p {
            font-size: 16px;
            letter-spacing: 0.48px;
        }
    }
    .sections .contacts {
        padding: 10px;
    }
    .sections .social {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
        > div {
            width: 100%;
            grid-template-columns: 1fr;
        }
    }
}
@media screen and (hover:hover) {
    .sections .contacts > div .email a:hover {
        color: var(--orange);
    }
}