.crn-authors {
    width: 100%;
    margin: 30px 0;
    padding: 0 50px;
}

/* =========================
   HEADER
========================= */

.crn-authors__header {
    display: flex;
    align-items: center;

    margin-bottom: 24px;
}

.crn-authors__title {
    position: relative;

    margin: 0;
    padding-left: 18px;
    padding-right: 20px;

    color: #111;

    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
}

.crn-authors__title::before {
    content: "";

    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    width: 5px;

    background-color: #d60009;
}

.crn-authors__subtitle {
    padding-left: 12px;

    border-left: 1px solid #ccd1d6;

    color: #b2bac3;

    font-size: 14px;
    font-weight: 500;
}

/* =========================
   SLIDER
========================= */

.crn-authors__slider-wrapper {
    position: relative;
}

.crn-authors__slider {
    width: 100%;
    overflow: hidden;
}

.crn-authors__slider .swiper-wrapper {
    align-items: stretch;
}

.crn-authors__slider .swiper-slide {
    height: auto;
}

/* =========================
   CARD
========================= */

.author-slide {
    height: 100%;
    min-height: 285px;

    display: flex;
    flex-direction: column;

    position: relative;

    overflow: hidden;

    background-color: #fff;

    border: 1px solid #ddd;
    border-radius: 11px;
}

/* =========================
   IMAGE
========================= */

.author-slide__image-link {
    display: block;

    width: 100%;
    height: 165px;

    overflow: hidden;

    background-color: #eee;
}

.author-slide__image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .3s ease;
}

.author-slide:hover .author-slide__image {
    transform: scale(1.04);
}

/* =========================
   AUTHOR
========================= */

.author-slide__author {
    position: relative;

    min-height: 36px;

    display: flex;
    align-items: center;
    gap: 7px;

    margin: -18px 11px 0;
    padding: 8px 20px;

    z-index: 2;

    background-color: #d60009;

    border-radius: 7px;

    color: #fff;
    text-decoration: none;

    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
}

.author-slide__author:hover,
.author-slide__author:focus {
    color: #fff;
    text-decoration: none;
}

.author-slide__author i {
    flex-shrink: 0;

    color: #fff;

    font-size: 13px;
}

.author-slide__name {
    display: block;

    overflow: hidden;

    white-space: nowrap;
    text-overflow: ellipsis;
}

/* =========================
   CONTENT
========================= */

.author-slide__content {
    flex: 1;

    padding: 13px 10px 14px;
}

.author-slide__headline {
    margin: 0;

    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

.author-slide__headline-link {
    display: block;

    color: #111;
    text-decoration: none;
}

.author-slide__headline-link:hover {
    color: #d60009;
    text-decoration: none;
}

/* =========================
   NAVIGATION
========================= */

.crn-authors__nav {
    position: absolute;
    top: 50%;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    z-index: 5;

    transform: translateY(-50%);

    border: 0;
    border-radius: 50%;

    background-color: #002a42;

    color: #fff;

    cursor: pointer;
}

.crn-authors__nav i {
    font-size: 13px;
}

.crn-authors__nav--prev {
    left: -44px;
}

.crn-authors__nav--next {
    right: -44px;
}

.crn-authors__nav.swiper-button-disabled {
    opacity: .35;
    cursor: default;
}

/* =========================
   1200
========================= */

@media only screen and (max-width: 1200px) {
    .crn-authors__nav--prev {
        left: 8px;
    }

    .crn-authors__nav--next {
        right: 8px;
    }
}

/* =========================
   1024
========================= */

@media only screen and (max-width: 1024px) {
    .crn-authors__title {
        font-size: 25px;
    }

    .author-slide__image-link {
        height: 155px;
    }

    .author-slide__headline {
        font-size: 15px;
        line-height: 20px;
    }
}

/* =========================
   768
========================= */

@media only screen and (max-width: 768px) {
    .crn-authors {
        width: 100%;
        margin: 25px 0;
        padding: 0;
    }

    .crn-authors__header {
        margin-bottom: 18px;
    }

    .crn-authors__title {
        font-size: 22px;
    }

    .crn-authors__subtitle {
        font-size: 13px;
    }

    .crn-authors__nav {
        width: 30px;
        height: 30px;
    }
}

/* =========================
   576
========================= */

@media only screen and (max-width: 576px) {
    .crn-authors__header {
        align-items: center;
    }

    .crn-authors__title {
        padding-left: 13px;
        padding-right: 12px;

        font-size: 20px;
    }

    .crn-authors__title::before {
        width: 4px;
    }

    .crn-authors__subtitle {
        font-size: 12px;
    }

    .author-slide__author {
        margin-left: 8px;
        margin-right: 8px;

        padding: 7px 9px;

        font-size: 13px;
    }

    .author-slide__content {
        padding: 12px 9px;
    }

    .author-slide__headline {
        font-size: 14px;
        line-height: 19px;
    }

    .crn-authors__nav {
        width: 28px;
        height: 28px;
    }

    .crn-authors__nav--prev {
        left: 5px;
    }

    .crn-authors__nav--next {
        right: 5px;
    }
}

/* =========================
   390
========================= */

@media only screen and (max-width: 390px) {
    .crn-authors__subtitle {
        display: none;
    }
}