/* Обращения команды на странице участника Московского марафона */

.marafon-runner-team__appeals {
    padding: 48px 0 56px;
    background: #fcfaf8;
    color: #505769;
    text-align: center;
}

.marafon-runner-team__appeals-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
    max-width: 720px;
    margin: 0 auto;
}

.marafon-runner-team__appeal {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marafon-runner-team__photo {
    display: block;
    width: 160px;
    height: 160px;
    margin-bottom: 20px;
    border: 8px solid #fff;
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(80, 87, 105, .2);
    object-fit: cover;
}

.marafon-runner-team__name {
    margin: 0;
    font-family: 'Circe', Arial, sans-serif;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 700;
    color: #505769;
}

.marafon-runner-team__position {
    max-width: 480px;
    margin: 2px auto 16px;
    font-size: 15px;
    line-height: 1.35;
    color: #505769;
}

.marafon-runner-team__quote {
    max-width: 640px;
    margin: 0 auto;
    font-family: 'GaramondPremrPro', Garamond, serif;
    font-size: 19px;
    font-style: italic;
    line-height: 1.35;
    color: #505769;
}

.marafon-runner-team__video-link {
    display: inline-block;
    margin-top: 12px;
    color: #505769;
    font-size: 15px;
    text-decoration: underline;
}

.marafon-runner-team__video {
    max-width: 420px;
    margin-top: 36px;
    margin-bottom: 20px;
}

.marafon-runner-team__video .swiper-slide a {
    position: relative;
    display: block;
}

.marafon-runner-team__video img {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    background: #0f1420;
}

.marafon-runner-team__video .marafon-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, .75);
    transition: background-color .25s;
}

.marafon-runner-team__video .marafon-video__play::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    width: 0;
    height: 0;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 11px 0 11px 18px;
    /* переменные --marafon-* объявлены в .marafon-runner, а слайдер видео лежит вне этой секции — цвет задаём литералом */
    border-color: transparent transparent transparent #505769;
}

.marafon-runner-team__video .swiper-slide a:hover .marafon-video__play {
    background: #fff;
}

.marafon-runner-team__video-caption {
    margin: 12px 0 0;
    color: #505769;
    font-size: 15px;
    text-align: center;
}

@media (max-width: 767px) {
    .marafon-runner-team__appeals {
        padding: 36px 0 42px;
    }

    .marafon-runner-team__appeals-list {
        gap: 36px;
    }

    .marafon-runner-team__video {
        max-width: 300px;
    }
}
