.contact-block {
    padding: 40px 0 5px;
}

.contact-block__inner {
    width: min(100% - 40px, 1680px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
    gap: 28px;
    align-items: stretch;
}

.contact-block__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
    margin-top: -70px;
}

.contact-team-card {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(6, 41, 57, 0.14);
    background: #fff;
}

.contact-team-member {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-team-photo {
    width: clamp(78px, 7vw, 118px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #d9e7ed 0%, #9ebbc6 52%, var(--main) 100%);
    box-shadow: 0 14px 28px rgba(6, 41, 57, 0.16);
}

.contact-team-photo::before {
    content: "";
    position: absolute;
    width: 42%;
    height: 42%;
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.74);
}

.contact-team-photo::after {
    content: "";
    position: absolute;
    width: 74%;
    height: 44%;
    left: 50%;
    bottom: -8%;
    transform: translateX(-50%);
    border-radius: 46% 46% 0 0;
    background: rgba(255, 255, 255, 0.72);
}

.contact-team-photo span {
    position: relative;
    z-index: 2;
    margin-top: 28%;
    color: var(--main);
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.contact-team-photo--image {
    background: #eef3f5;
}

.contact-team-photo--image::before,
.contact-team-photo--image::after {
    display: none;
}

.contact-team-photo--image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: var(--team-photo-position, center center);
    transform: var(--team-photo-transform, none);
}

.contact-team-photo--image span {
    display: none;
}

.contact-team-member:nth-child(2) .contact-team-photo {
    background: linear-gradient(145deg, #f1e1c4 0%, #c6a96d 55%, #7f683c 100%);
}

.contact-team-member:nth-child(3) .contact-team-photo {
    background: linear-gradient(145deg, #dfe8df 0%, #9ab19c 54%, #4f6f5b 100%);
}

.contact-team-member:nth-child(4) .contact-team-photo {
    background: linear-gradient(145deg, #ece5dc 0%, #c5b4a0 50%, #735f50 100%);
}

.contact-team-name {
    margin-top: 12px;
    color: var(--main);
    font-size: 16px;
    font-weight: 700;
    line-height: 120%;
}

.contact-team-role {
    margin-top: 4px;
    color: var(--lText);
    font-size: 13px;
    line-height: 135%;
}

.contact-photo-fan {
    min-height: 210px;
    position: relative;
    margin-top: 42px;
}

.contact-photo-fan__item {
    position: absolute;
    width: min(38%, 260px);
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 8px solid #fff;
    background: #fff;
    box-shadow: 0 18px 36px rgba(6, 41, 57, 0.16);
}

.contact-photo-fan__item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.contact-photo-fan__item--1 {
    left: 0;
    bottom: 0;
    transform: rotate(-5deg);
}

.contact-photo-fan__item--2 {
    left: 30%;
    bottom: 20px;
    transform: rotate(3deg);
}

.contact-photo-fan__item--3 {
    right: 0;
    bottom: 0;
    transform: rotate(-2deg);
}

.contact-block__map,
.contact-block__map .map,
.contact-block .map-holder {
    height: 100%;
    min-height: 760px !important;
}

.contact-block__map {
    margin-top: -210px;
}

@media (max-width: 1280px) {
    .contact-block__inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-block__map {
        margin-top: 0;
    }

    .contact-block__content {
        margin-top: 0;
    }

    .contact-block__map,
    .contact-block__map .map,
    .contact-block .map-holder {
        min-height: 520px !important;
    }
}

@media (max-width: 860px) {
    .contact-team-card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-photo-fan {
        min-height: 180px;
    }
}

@media (max-width: 768px) {
    .contact-block__map {
        order: 1;
    }

    .contact-block__content {
        order: 2;
    }
}

@media (max-width: 600px) {
    .contact-block {
        padding-top: 24px;
    }

    .contact-block__inner {
        width: min(100% - 24px, 1680px);
    }

    .contact-team-card {
        grid-template-columns: 1fr;
    }

    .contact-team-photo {
        width: 110px;
    }

    .contact-photo-fan {
        min-height: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-photo-fan__item {
        position: static;
        width: 100%;
        transform: none;
    }

    .contact-block__map,
    .contact-block__map .map,
    .contact-block .map-holder {
        min-height: 340px !important;
    }
}
