

/* Start:/local/components/custom/webinar.registration/templates/.default/style.css?17684229704643*/
.webinar-registration-wrapper {
    width: 100%;
    padding: 40px 20px;
    background: #f5f5f5;
}

.webinar-registration-container {
    display: flex;
    gap: 40px;
    max-width: 1612px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.webinar-registration-left {
    flex: 0 0 600px;
}

.webinar-registration-right {
    flex: 1;
}

.webinar-registration-left img{
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.webinar-title {
    font-size: 48px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.4;
}
.webinar-title span{
    color: var(--color-primary);
}

.webinar-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    position: relative;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: #ff6b35;
}

.form-control.error {
    border-color: #f44336;
}

.error-message {
    display: none;
    color: #f44336;
    font-size: 12px;
    margin-top: 5px;
}

.error-message.show {
    display: block;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #ff6b35;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #ff5722;
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.form-agreement {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: #666;
}

.form-agreement input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.form-agreement label {
    cursor: pointer;
    user-select: none;
}

.form-result {
    padding: 15px;
    border-radius: 4px;
    display: none;
    font-size: 14px;
}

.form-result.success {
    display: block;
    background: #4caf50;
    color: #fff;
}

.form-result.error {
    display: block;
    background: #f44336;
    color: #fff;
}

/* Timer Styles */
.webinar-timer {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    justify-content: flex-start;
    flex-direction: row;
}

.timer-item {
    text-align: center;
}

.timer-value {
    background: #ff6b35;
    color: #fff;
    font-size: 115px;
    font-weight: 700;
    padding: 50px 24px;
    border-radius: 8px;
    min-width: 100px;
    line-height: 1;
}

.timer-label {
    font-size: 24px;
    color: #666;
    margin-top: 0;
    text-transform: lowercase;
}

/* Webinar Info */
.webinar-info h3 {
    font-size: 48px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}
.webinar-info h3 span{
    color: var(--color-primary);
}

.webinar-info h3::after {
    content: '';
    display: block;
    width: 100%;
    height: 8px;
    background: #ff6b35;
    margin-top: 40px;
}

.webinar-details {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.webinar-details p {
    margin: 20px 0;
    font-size: 26px;
    color: #555;
}

.webinar-details strong {
    color: #333;
}

.webinar-more {
    display: inline-block;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 24px;
    transition: color 0.3s;
}

.webinar-more:hover {
    color: #ff5722;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .webinar-registration-container {
        flex-direction: column;
    }

    .webinar-registration-left {
        flex: 1;
        max-width: 100%;
    }

    .webinar-timer {
        gap: 4px;
    }

    .timer-value {
        font-size: 26px;
        padding: 15px 20px;
        min-width: 80px;
    }
}

@media (max-width: 576px) {
    .webinar-registration-wrapper {
        padding: 20px 10px;
    }

    .webinar-registration-container {
        padding: 20px;
    }

    .webinar-title {
        font-size: 28px;
    }

    .timer-value {
        font-size: 44px;
        padding: 12px 15px;
        min-width: 60px;
    }

    .timer-label {
        font-size: 12px;
    }
    .webinar-info h3 {
        font-size: 28px;
    }
    .webinar-details p {
        font-size: 18px;
    }
}

/* End */


/* Start:/local/components/custom/photo.slider/templates/.default/style.css?17684070367758*/
/* ============================================
   Фото слайдер
   ============================================ */

.photo-slider-wrapper {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 80px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.photo-slider {
    position: relative;
}

/* Swiper контейнер */
.photo-slider__swiper {
    width: 100%;
    padding: 20px 0 60px;
    overflow: visible;
}

/* Слайд */
.photo-slider__slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-slider__slide-inner {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    position: relative; /* Важно для правильного позиционирования */
}

.photo-slider__slide-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Обертка изображения */
.photo-slider__image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 66.67%; /* Соотношение 3:2 */
    overflow: hidden;
    background: #e9ecef;
}

/* ИСПРАВЛЕНИЕ: Изображение */
.photo-slider__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1; /* Добавлено: изображение над фоном */
    display: block; /* Добавлено: убираем inline отступы */
}


/* Оверлей */
.photo-slider__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            transparent 100%
    );
    padding: 30px 25px 25px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2; /* Добавлено: оверлей поверх изображения */
}

.photo-slider__slide-inner:hover .photo-slider__overlay {
    transform: translateY(0);
}

/* Контент оверлея */
.photo-slider__content {
    color: #ffffff;
}


.photo-slider__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 10px;
    color: #ffffff;
}

.photo-slider__text {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Кнопки навигации */
.photo-slider__button {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

.photo-slider__button:hover {
    background: #4285f4;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(66, 133, 244, 0.4);
}

.photo-slider__button:active {
    transform: scale(0.95);
}

.photo-slider__button.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.photo-slider__button--prev {
    left: 20px;
}

.photo-slider__button--next {
    right: 20px;
}

/* Убираем стандартные стили Swiper */
.photo-slider__button::after {
    display: none;
}

/* Пагинация */
.photo-slider__pagination {
    bottom: 20px !important;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.photo-slider__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #cbd5e0;
    opacity: 1;
    transition: all 0.3s ease;
}

.photo-slider__pagination .swiper-pagination-bullet-active {
    background: #4285f4;
    width: 32px;
    border-radius: 6px;
}

/* Эффекты для активного слайда */
.swiper-slide-active .photo-slider__slide-inner {
    transform: scale(1.02);
}

/* ИСПРАВЛЕНИЕ: Анимация загрузки */
.photo-slider__image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            90deg,
            #e9ecef 0%,
            #f8f9fa 50%,
            #e9ecef 100%
    );
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    z-index: 0; /* Изменено: под изображением */
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* ИСПРАВЛЕНИЕ: Скрываем shimmer после загрузки */
.photo-slider__image.loaded ~ .photo-slider__image-wrapper::before,
.photo-slider__image-wrapper:has(.photo-slider__image) ::before {
    opacity: 0;
    visibility: hidden;
}

/* Адаптив */
@media (max-width: 1024px) {
    .photo-slider-wrapper {
        padding: 60px 0;
    }

    .photo-slider__button {
        width: 50px;
        height: 50px;
    }

    .photo-slider__button--prev {
        left: 10px;
    }

    .photo-slider__button--next {
        right: 10px;
    }
}

/* ИСПРАВЛЕНИЕ: Мобильная версия - полтора слайда */
@media (max-width: 768px) {
    .photo-slider-wrapper {
        padding: 40px 0;
    }

    .photo-slider__swiper {
        padding: 10px 0 50px;
        overflow: visible; /* Важно для показа части следующего слайда */
    }

    /* Контейнер для правильного отображения */
    .container {
        padding-left: 20px;
        padding-right: 0; /* Убираем правый отступ для показа части слайда */
    }

    .photo-slider__slide-inner {
        border-radius: 15px;
    }

    .photo-slider__title {
        font-size: 18px;
    }

    .photo-slider__text {
        font-size: 13px;
    }

    .photo-slider__overlay {
        padding: 20px 20px 20px;
        /* Всегда показываем оверлей на мобильных */
        transform: translateY(0);
        background: linear-gradient(
                to top,
                rgba(0, 0, 0, 0.9) 0%,
                rgba(0, 0, 0, 0.5) 70%,
                transparent 100%
        );
    }

    /* Скрываем кнопки навигации на мобильных */
    .photo-slider__button {
        display: none;
    }
}

@media (max-width: 480px) {
    .photo-slider-wrapper {
        padding: 30px 0;
    }

    .container {
        padding-left: 15px;
    }

    .photo-slider__title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .photo-slider__text {
        font-size: 12px;
    }

    .photo-slider__overlay {
        padding: 15px;
    }

    .photo-slider__pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .photo-slider__pagination .swiper-pagination-bullet-active {
        width: 24px;
    }
}

/* Ландшафтная ориентация */
@media (max-height: 600px) and (orientation: landscape) {
    .photo-slider-wrapper {
        padding: 30px 0;
    }

    .photo-slider__image-wrapper {
        padding-bottom: 50%; /* Меньшая высота в landscape */
    }
}

/* End */


/* Start:/local/components/custom/webinar.news/templates/.default/style.css?17685738139629*/
/* ============================================
   Секция "Направления вебинаров"
   ============================================ */

.webinar-news {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

/* Заголовок */
.webinar-news__title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    color: #2C3E50;
    margin-bottom: 20px;
}

.webinar-news__title .text-accent {
    color: #3498DB;
    position: relative;
    display: inline-block;
}

.webinar-news__subtitle {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    color: #5F6368;
    max-width: 900px;
    margin: 0 auto 60px;
}

/* Направления */
.webinar-directions {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.webinar-direction {
    position: relative;
}

.webinar-direction__title {
    font-size: 32px;
    font-weight: 700;
    color: #3498DB;
    margin-bottom: 40px;
    padding-bottom: 15px;
    position: relative;
}

/* Сетка карточек */
.webinar-cards {
    display: grid;
    gap: 30px;
    align-content: stretch;
    justify-content: stretch;
    align-items: baseline;
    width: 100%;
}

.webinar-cards--no-group {
    margin-top: 60px;
}

/* Карточка вебинара */
.webinar-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.webinar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3498DB 0%, #2ECC71 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.webinar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(52, 152, 219, 0.2);
}

.webinar-card:hover::before {
    transform: scaleX(1);
}

.webinar-card__inner {
    display: flex;
    flex-direction: row;
    height: 100%;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

/* Темы вебинаров */
.webinar-card__themes {
    padding: 30px 30px 20px;
    background: #F8F9FA;
    border-bottom: 1px solid #E9ECEF;
    flex: inherit;
    display: block;
    max-width: 410px;
}

.webinar-card__label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #E67E22;
    margin-bottom: 12px;
}

.webinar-card__themes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.webinar-card__themes-list li {
    font-size: 14px;
    line-height: 1.8;
    color: #2C3E50;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.webinar-card__themes-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498DB;
    font-weight: 700;
    font-size: 14px;
}

.webinar-card__themes-list li:last-child {
    margin-bottom: 0;
}

/* Информация о лекторе */
.webinar-card__lecturer {
    display: flex;
    gap: 25px;
    padding: 30px;
    flex: 1;
}

.webinar-card__photo {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #F8F9FA;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.webinar-card:hover .webinar-card__photo {
    transform: scale(1.05);
    border-color: #3498DB;
}

.webinar-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.webinar-card__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.webinar-card__host {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.webinar-card__host-name {
    font-size: 20px;
    font-weight: 700;
    color: #2C3E50;
}

.webinar-card__description {
    font-size: 14px;
    line-height: 1.6;
    color: #5F6368;
    flex: 1;
}

.webinar-card__description p {
    margin: 0 0 10px;
}

.webinar-card__description p:last-child {
    margin-bottom: 0;
}

/* Ссылка */
.webinar-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #3498DB;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.webinar-card__link:hover {
    color: #2980B9;
    gap: 12px;
}

.webinar-card__link svg {
    transition: transform 0.3s ease;
}

.webinar-card__link:hover svg {
    transform: translateX(4px);
}

/* Анимации появления */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.webinar-direction,
.webinar-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.webinar-direction:nth-child(1) { animation-delay: 0.1s; }
.webinar-direction:nth-child(2) { animation-delay: 0.2s; }
.webinar-direction:nth-child(3) { animation-delay: 0.3s; }
.webinar-direction:nth-child(4) { animation-delay: 0.4s; }

.webinar-card:nth-child(1) { animation-delay: 0.1s; }
.webinar-card:nth-child(2) { animation-delay: 0.2s; }
.webinar-card:nth-child(3) { animation-delay: 0.3s; }
.webinar-card:nth-child(4) { animation-delay: 0.4s; }

/* Состояния */
.webinar-card.active {
    border: 2px solid #3498DB;
    box-shadow: 0 12px 40px rgba(52, 152, 219, 0.3);
}

/* Адаптив */
@media (max-width: 1280px) {
    .webinar-cards {
        grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .webinar-news {
        padding: 80px 0 100px;
    }

    .webinar-news__title {
        font-size: 36px;
    }

    .webinar-direction__title {
        font-size: 38px;
        margin-bottom: 30px;
    }

    .webinar-directions {
        gap: 60px;
    }

    .webinar-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .webinar-news {
        padding: 60px 0 80px;
    }

    .webinar-news__title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .webinar-news__subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .webinar-direction__title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .webinar-directions {
        gap: 50px;
    }

    .webinar-card__themes {
        padding: 25px  20px 15px;
    }

    .webinar-card__themes-list li {
        font-size: 13px;
        padding-left: 18px;
        margin-bottom: 6px;
    }

    .webinar-card__lecturer {
        flex-direction: column;
        padding: 25px 20px;
        gap: 20px;
    }

    .webinar-card__photo {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .webinar-card__info {
        text-align: center;
    }

    .webinar-card__host-name {
        font-size: 17px;
    }

    .webinar-card__description {
        font-size: 13px;
        text-align: left;
    }

    .webinar-card__link {
        justify-content: center;
        font-size: 13px;
    }

    .webinar-card:hover {
        transform: translateY(-4px);
    }
    .webinar-card__inner {
        display: flex;
        flex-direction: column-reverse;
        height: 100%;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .webinar-news {
        padding: 40px 0 60px;
    }

    .webinar-news__title {
        font-size: 24px;
        line-height: 1.3;
    }

    .webinar-news__subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .webinar-direction__title {
        font-size: 38px;
        margin-bottom: 20px;
    }

    .webinar-directions {
        gap: 40px;
    }

    .webinar-card {
        border-radius: 15px;
    }

    .webinar-card__themes {
        padding: 20px 15px;
        width: 100%;
    }

    .webinar-card__label {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .webinar-card__themes-list li {
        font-size: 12px;
    }

    .webinar-card__lecturer {
        padding: 20px 15px;
    }

    .webinar-card__photo {
        width: 140px;
        height: 140px;
    }

    .webinar-card__host-name {
        font-size: 16px;
    }

    .webinar-card__description {
        font-size: 12px;
    }
}

/* Landscape ориентация */
@media (max-height: 600px) and (orientation: landscape) {
    .webinar-news {
        padding: 30px 0 40px;
    }

    .webinar-news__title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .webinar-news__subtitle {
        margin-bottom: 25px;
    }

    .webinar-direction__title {
        font-size: 38px;
        margin-bottom: 20px;
    }

    .webinar-directions {
        gap: 30px;
    }

    .webinar-card__lecturer {
        flex-direction: row;
        padding: 20px;
    }

    .webinar-card__photo {
        width: 140px;
        height: 140px;
    }
}

/* End */


/* Start:/local/components/custom/testimonials.slider/templates/.default/style.css?176842698511328*/
/* ============================================
   Секция отзывов
   ============================================ */

.testimonials-section {
    padding: 100px 0;
    background: #F8F9FA;
    position: relative;
    overflow: hidden;
}

/* Заголовок */
.testimonials-section__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    color: #2C3E50;
    margin-bottom: 60px;
}

/* Обертка слайдера */
.testimonials-slider-wrapper {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Swiper контейнер */
.testimonials-slider {
    overflow: visible;
    padding-bottom: 60px;
}

.testimonials-slider .swiper-wrapper {
    align-items: stretch;
}

.testimonials-slider .swiper-slide {
    height: auto;
}

/* Карточка отзыва */
.testimonial-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(52, 152, 219, 0.15);
    border-color: #3498DB;
}

/* Кавычки */
.testimonial-card__quote {
    position: absolute;
    top: 30px;
    right: 30px;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover .testimonial-card__quote {
    opacity: 0.5;
}

/* Заголовок */
.testimonial-card__header {
    margin-bottom: 20px;
}

.testimonial-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0;
    line-height: 1.4;
}

/* Контент */
.testimonial-card__content {
    flex: 1;
    margin-bottom: 30px;
}

.testimonial-card__text {
    font-size: 16px;
    line-height: 1.7;
    color: #5F6368;
    margin: 0;
}

/* Футер */
.testimonial-card__footer {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #E9ECEF;
}

/* Аватар */
.testimonial-card__avatar {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #F8F9FA;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Автор */
.testimonial-card__author {
    flex: 1;
}

.testimonial-card__author-name {
    font-size: 16px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 4px;
}

.testimonial-card__author-position {
    font-size: 14px;
    color: #95A5A6;
}

/* Рейтинг */
.testimonial-card__rating {
    display: flex;
    gap: 4px;
    margin-left: auto;
}

.testimonial-card__star {
    color: #E9ECEF;
    transition: color 0.3s ease;
}

.testimonial-card__star.active {
    color: #F39C12;
}

/* Навигация */
.testimonials-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.testimonials-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid #E9ECEF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    color: #2C3E50;
}

.testimonials-button:hover {
    background: #3498DB;
    border-color: #3498DB;
    color: #FFFFFF;
    transform: scale(1.1);
}

.testimonials-button:active {
    transform: scale(0.95);
}

.testimonials-button.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.testimonials-button.swiper-button-disabled:hover {
    background: #FFFFFF;
    border-color: #E9ECEF;
    color: #2C3E50;
    transform: scale(1);
}

.testimonials-button--prev {
    left: 0;
}

.testimonials-button--next {
    right: 0;
}

/* Пагинация */
.testimonials-pagination {
    text-align: center;
    margin-top: 40px;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #CBD5E0;
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: #3498DB;
    width: 32px;
    border-radius: 6px;
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Эффект свечения */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3498DB, #2ECC71, #3498DB);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(10px);
}

.testimonial-card:hover::before {
    opacity: 0.3;
}

/* Градиент для заголовка */
.testimonials-section__title {
    background: linear-gradient(90deg, #2C3E50 0%, #3498DB 50%, #2C3E50 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

/* Адаптив */
@media (max-width: 1280px) {
    .testimonials-section {
        padding: 80px 0;
    }

    .testimonials-section__title {
        font-size: 42px;
        margin-bottom: 50px;
    }

    .testimonials-slider-wrapper {
        padding: 0 50px;
    }

    .testimonial-card {
        padding: 35px;
    }
}

@media (max-width: 1024px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-section__title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .testimonials-slider-wrapper {
        padding: 0 40px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonials-button {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 50px 0;
    }

    .testimonials-section__title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .testimonials-slider-wrapper {
        padding: 0 20px;
    }

    .testimonials-slider {
        padding-bottom: 50px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-card__title {
        font-size: 18px;
    }

    .testimonial-card__text {
        font-size: 15px;
    }

    .testimonial-card__quote svg {
        width: 30px;
        height: 24px;
    }

    .testimonial-card__avatar {
        width: 50px;
        height: 50px;
    }

    .testimonial-card__author-name {
        font-size:  15px;
    }

    .testimonial-card__author-position {
        font-size: 13px;
    }

    .testimonial-card__star {
        width: 18px;
        height: 18px;
    }

    .testimonials-button {
        width: 40px;
        height: 40px;
    }

    .testimonials-button svg {
        width: 20px;
        height: 20px;
    }

    .testimonials-navigation {
        display: none;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-section__title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .testimonials-slider-wrapper {
        padding: 0 15px;
    }

    .testimonial-card {
        padding: 20px;
        border-radius: 15px;
    }

    .testimonial-card__title {
        font-size: 17px;
    }

    .testimonial-card__text {
        font-size: 14px;
    }

    .testimonial-card__footer {
        flex-wrap: wrap;
        gap: 10px;
    }

    .testimonial-card__avatar {
        width: 45px;
        height: 45px;
    }

    .testimonial-card__author-name {
        font-size: 14px;
    }

    .testimonial-card__author-position {
        font-size: 12px;
    }

    .testimonial-card__rating {
        width: 100%;
        margin-left: 0;
        justify-content: center;
    }

    .testimonial-card__star {
        width: 16px;
        height: 16px;
    }
}

/* Очень маленькие экраны */
@media (max-width: 360px) {
    .testimonials-section__title {
        font-size: 22px;
    }

    .testimonial-card {
        padding: 18px;
    }

    .testimonial-card__text {
        font-size: 13px;
    }
}

/* Темная тема */
@media (prefers-color-scheme: dark) {
    .testimonials-section {
        background: #1A1A1A;
    }

    .testimonials-section__title {
        color: #FFFFFF;
    }

    .testimonial-card {
        background: #2C2C2C;
        border-color: #3A3A3A;
    }

    .testimonial-card:hover {
        border-color: #5DADE2;
    }

    .testimonial-card__title {
        color: #FFFFFF;
    }

    .testimonial-card__text {
        color: #B0B0B0;
    }

    .testimonial-card__footer {
        border-top-color: #3A3A3A;
    }

    .testimonial-card__author-name {
        color: #FFFFFF;
    }

    .testimonial-card__author-position {
        color: #808080;
    }

    .testimonials-button {
        background: #2C2C2C;
        border-color: #3A3A3A;
        color: #FFFFFF;
    }

    .testimonials-button:hover {
        background: #5DADE2;
        border-color: #5DADE2;
    }

    .testimonials-pagination .swiper-pagination-bullet {
        background: #3A3A3A;
    }

    .testimonials-pagination .swiper-pagination-bullet-active {
        background: #5DADE2;
    }
}

/* Уменьшенное движение */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Высокая контрастность */
@media (prefers-contrast: high) {
    .testimonial-card {
        border: 3px solid #000000;
    }

    .testimonial-card__text {
        color: #000000;
    }
}

/* Печать */
@media print {
    .testimonials-navigation,
    .testimonials-pagination {
        display: none;
    }

    .testimonial-card {
        box-shadow: none;
        border: 2px solid #000000;
        page-break-inside: avoid;
    }
}

/* Accessibility */
.testimonial-card:focus-visible {
    outline: 3px solid #3498DB;
    outline-offset: 2px;
}

.testimonials-button:focus-visible {
    outline: 3px solid #3498DB;
    outline-offset: 2px;
}

/* End */
/* /local/components/custom/webinar.registration/templates/.default/style.css?17684229704643 */
/* /local/components/custom/photo.slider/templates/.default/style.css?17684070367758 */
/* /local/components/custom/webinar.news/templates/.default/style.css?17685738139629 */
/* /local/components/custom/testimonials.slider/templates/.default/style.css?176842698511328 */
