.author--block{
   height: 190px; 
}

.authors.slider {
    overflow: hidden;
}

.authors.slider .swiper-pagination {
    bottom: 1.25rem !important;
    left: 0.875rem !important;
}

.authors.slider .swiper-button-prev {
    bottom: 0.75rem !important;
    right: 68px !important;
}

.authors.slider .swiper-button-next {
    bottom: 0.75rem !important;
    right: 1rem !important;
}

.author--info {
    display: flex;
    gap: clamp(16px, 2vw, 20px);
    align-items: center;
}


.author--long-list {
    display: flex;
    gap: 1.5rem;
    flex-wrap: nowrap;
    margin: 0 calc(-1 * 1rem);
    padding: var(--g4) 1rem var(--g4) 1rem;
    overflow-x: auto;
}

.author--long {
    padding: clamp(1.25rem, 2vw, 1.5rem);
    border: 1px solid #E6E9F2;
    border-radius: 12px;
    min-width: 420px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
}

.author--long:hover {
    background: #F5F7FC7A;
}

.author--name {
    font-weight: 600;
    font-size: clamp(15px, 2vw, 16px);
    line-height: clamp(23px, 3vw, 26px);
    color: #333338
}


.author--name:hover {
    color: #1C4ADE;
}

.author--long:hover svg path {
    opacity: 1;
    stroke: #1C4ADE;
}

.author-image--rounded {
    width: 72px;
    height: 72px;
}

.author-image--rounded img {
    border-radius: 50%;
}

@media screen and (max-width: 1350px) {
    .author--long-list {
        min-width: auto;
        overflow: auto;
    }

    .authors.slider {
        overflow: visible !important;
    }
}
@media screen and (max-width: 991px) {
    .author--long {
        min-width: 420px;
    }
}


@media screen and (max-width: 768px) {
    .author--long-list {
        gap: 0.75rem;
    }

    .authors.slider .swiper-pagination {
        bottom: 2rem !important;
        left: calc(50% - 75px) !important;
    }

    .authors.slider .swiper-button-prev {
        display: none !important;
    }

    .authors.slider .swiper-button-next {
        display: none !important;
    }
}
@media screen and (max-width: 666px) {
  .author--long {
        min-width: calc(100vw - 300px);
    }
}

@media screen and (max-width: 574px) {
  .author--arrow{
    display: none;
  }
}



@media screen and (max-width: 425px) {
  .author--long {
        min-width: 280px;
    }
}

@media screen and (max-width: 380px) {
  .authors.slider .slider__wrapper {
        height: 128px;
    }
} 

@media screen and (max-width: 375px) {
    .author--long {
        max-width: calc(100vw - 95px) !important;
    }

    .author--long-list {
        gap: 0.5rem;
    }
}

.author--block .h3 {
    font-size: clamp(var(--h3-size-mobile), 3vw, var(--h3-size-desktop));
}