.block-quote .swiper-slide.vertical blockquote {
    flex-direction: column;
}

.block-quote blockquote {
    border: none;
    padding: 0;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.block-quote blockquote p {
    border-left: 4px solid var(--color-gray);
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 2rem;
    margin: 0;
}

.block-quote blockquote cite {
    font-family: var(--global--font-mono);
    color: var(--color-lightergray);
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0.5rem;
}

.block-quote blockquote cite::before {
    content: "\A0";
    text-decoration: line-through;
    padding-right: 0.5rem;
}

.block-quote .img {
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    width: 5rem;
    height: 5rem;
    margin: 0.5rem;
    overflow: hidden;
}

.block-quote .quote-thumbs-swiper .swiper-slide {
    align-self: center;
}

.block-quote .quote-thumbs-swiper .swiper-slide img {
    opacity: 0.5;
    width: 3.75rem;
    height: 3.75rem;
    margin: 0;
}

.block-quote .quote-thumbs-swiper .swiper-slide.swiper-slide-thumb-active img {
    width: 5rem;
    height: 5rem;
    opacity: 1;
}

.block-quote .quote-thumbs-swiper .swiper-wrapper {
    justify-content: center;
    margin: 0.5rem;
}

.block-quote .quote-thumbs-swiper .swiper-slide {
    max-width: 5.5rem;
    max-height: 5.5rem;
}

/** RESPONSIVENESS **/

/* NOT MOBILE FIRST STYLES */

/* Extra small devices (phones, 576px and down) */
@media only screen and (max-width: 576px) {
    /* ---XS ZONE--- */
    .block-quote .swiper-slide.horizontal blockquote {
        flex-direction: column;
    }
}

/* END NOT MOBILE FIRST STYLES */

/* Small devices (portrait tablets and large phones, 576px and up) */
@media only screen and (min-width: 576px) {
    /* ---S ZONE--- */
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    /* ---M ZONE--- */
    .block-quote .swiper-slide.horizontal p {
        max-width: 65%;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    /* ---L ZONE--- */
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    /* ---XL ZONE--- */
}

/* Orientation: Portrait / Landscape */
@media only screen and (orientation: landscape) {
  /* empty */
}

