

/* Start:/local/assets/css/components/events.css?17787559392385*/
.events-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.events-head h2.title{
    margin-bottom: 0;
}

.events-head__mult{
    display: flex;
    gap: 12px;
    overflow-x: scroll;
    white-space: nowrap;
}

.button .icon-news{
    font-size: 16px;
}



.events-item{
    grid-column: span 4;
    background: var(--light-gray);
    clip-path: polygon(30px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 30px);
    display: flex;
    flex-direction: column;
}

/* .events-item__img{
    height: 240px;
    width: 100%;
    object-fit: cover;
} */

.events-item__img {
    height: 240px;
    min-height: 240px;
    width: 100%;
    object-fit: cover;
    
    /* display: block; */

    clip-path: polygon(
        30px 0%,
        100% 0%,
        100% calc(100% - 30px),
        calc(100% - 30px) 100%,
        0% 100%,
        0% 30px
    );
}

.events-item-info{
    padding: 24px 20px 24px 20px ;
}

.events-item-info__tags{
    color: var(--gray);
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    gap: 16px;
    letter-spacing: 0.2px;
}

.events-item-info__data{
    color: var(--gray);
    font-size: 14px;
    letter-spacing: -0.8px;
}

.events-item-info__text{
    display: block;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: -0.5px;
}

.events-item-info__tags .active{
    color: var(--orange);
}


.events-main .center-button {
    margin: auto;
}

.events-item .events-item-info__text{
}

@media (max-width: 1199px) {
    .events-item-info__text{
        font-size: 16px;
        line-height: 20px;
    }

    .events-item-info{
        padding: 30px 20px 24px 20px;
    }

    .events-item-info__text{
        margin-bottom: 16px;
    }

}
@media (max-width: 1000px) {
    .events-item{
        grid-column: span 6;
    }


}

@media (max-width: 767px) {
    .events-item{
        grid-column: span 12;
    }
    
    .events-head {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: flex-start;
        margin-bottom: 24px;
        gap: 24px;
    }
    
    .events-head__mult.no-scroll{
        width: 100%;
    }
    
}

@media (min-width: 767px) {
    .events-item > a:hover ~ .events-item-info .events-item-info__text,
    .events-item-info__text:hover {
        color: var(--orange);
    }
}
/* End */


/* Start:/local/assets/css/components/faq.css?17859563345847*/
.faq__row {
    display: grid;
    grid-template-columns: minmax(0, 345fr) minmax(0, 1015fr);
    align-items: start;
}

.faq__email {
    display: inline-block;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.6px;
    color: var(--orange);
    text-decoration: none;
}

.faq__email:hover {
    text-decoration: underline;
}

.faq__email-text {
    margin-top: 8px;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.36px;
    color: var(--gray);
}

.faq__items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq__item {
    background: var(--light-gray);
    border-radius: 2px;
}

.faq__item--hidden {
    display: none;
}

/* Отступы держит шапка, а не плашка: тогда кликабельная область — вся плашка по
   ширине и по высоте, без мёртвых полей по краям. Попасть мышью в 20px строки
   вопроса тяжело, на тач-экране тем более. */
.faq__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 24px;
    cursor: pointer;
    user-select: none;
}

/* В раскрытом состоянии нижний отступ шапки — 22px: столько в макете между вопросом
   и словом «Ответ». Закрытая при этом сохраняет ровные 24px со всех сторон. */
.faq__item.is-open .faq__head {
    padding-bottom: 22px;
}

.faq__question {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.64px;
    color: var(--blue-text);
}

/* Стрелка взята вектором из макета (Figma 2721:22537), а не из шрифта иконок: там
   есть только шеврон, а в макете сплошная стрелка с древком. Маска, а не фон, —
   чтобы цвет менялся одним свойством и плавно, как при наведении, так и при
   раскрытии. 4px сверху центрируют её по первой строке вопроса (line-height 20). */
.faq__arrow {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    margin-top: 4px;
    background-color: var(--blue-text);
    -webkit-mask: var(--faq-arrow) no-repeat center / 12px 12px;
    mask: var(--faq-arrow) no-repeat center / 12px 12px;
    transition: transform .3s ease, background-color .3s ease;
}

.faq__list {
    --faq-arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M0 6.75H9.15L4.95 10.95L6 12L12 6L6 0L4.95 1.05L9.15 5.25H0V6.75Z' fill='%23000'/%3E%3C/svg%3E");
}

.faq__head:hover .faq__arrow,
.faq__item.is-open .faq__arrow {
    background-color: var(--orange);
}

/* В макете раскрытая стрелка смотрит вниз, закрытая — вправо: это поворот на 90°,
   а не на 180°, как было бы у шеврона. */
.faq__item.is-open .faq__arrow {
    transform: rotate(90deg);
}

.faq__answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .3s ease;
}

.faq__item.is-open .faq__answer {
    grid-template-rows: 1fr;
}

/* Боковые отступы плашки держит ответ, раз шапка их больше не держит. Нижний —
   только у раскрытой: у свёрнутой строка сетки нулевая, но padding в неё не входит
   и приподнимал бы плашку на свою величину (проверено: 92px вместо 68). */
.faq__answer-inner {
    min-height: 0;
    overflow: hidden;
    padding: 0 24px;
}

.faq__item.is-open .faq__answer-inner {
    padding-bottom: 24px;
}

.faq__answer-label {
    font-size: 13px;
    line-height: 18px;
    letter-spacing: -0.39px;
    color: var(--gray);
}

.faq__answer-text {
    margin-top: 8px;
    max-width: 787px;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: -0.39px;
    color: var(--blue-text);
}

.faq__answer-text p + p,
.faq__answer-text ul,
.faq__answer-text ol {
    margin-top: 8px;
}

.faq__answer-text ul,
.faq__answer-text ol {
    padding-left: 18px;
}

.faq__answer-text li {
    list-style: inherit;
}

.faq__answer-text a {
    color: var(--orange);
}

.faq__more {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.faq__more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 24px;
    border: none;
    border-radius: 2px;
    background: #EEF1F4;
    font-family: "Golos", sans-serif;
    font-size: 14px;
    line-height: 18px;
    color: var(--blue-text);
    cursor: pointer;
    transition: background .3s ease;
}

.faq__more-btn:hover {
    background: var(--light-gray2);
}

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

    .faq__aside {
        margin-bottom: 24px;
    }

    .faq__answer-text {
        max-width: none;
    }
}

@media (max-width: 767px) {
    .faq h2.title {
        font-size: 20px;
        line-height: 25px;
        letter-spacing: -0.8px;
        margin-bottom: 24px;
    }

    /* в макете 375 вопрос набран 14px, а не 16 как на десктопе */
    .faq__question {
        font-size: 14px;
        letter-spacing: -0.56px;
    }

    .faq__head {
        gap: 16px;
        padding: 16px;
    }

    .faq__item.is-open .faq__head {
        padding-bottom: 22px;
    }

    .faq__answer-inner {
        padding: 0 16px;
    }

    .faq__item.is-open .faq__answer-inner {
        padding-bottom: 16px;
    }
}

/* End */
/* /local/assets/css/components/events.css?17787559392385 */
/* /local/assets/css/components/faq.css?17859563345847 */
