@charset "utf-8";
/* CSS Document */
.review-slider {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    box-sizing: border-box;
    position: relative;
}

.review-slider .review-viewport {
    width: 100%;
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
}

.review-slider .review-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.review-slider .review-slide {
    max-width: calc((100% - 24px) / 2);
    flex: 0 0 calc((100% - 24px) / 2) !important;
    box-sizing: border-box;
}

.review-card {
    height: 100%;
    max-height: 450px;
    margin: 10% 5%;
    padding: 10% 5% 1% 5%;
    box-sizing: border-box;
    background-color: rgba(255,255,255,0.75);
    border-radius: 20px;
    overflow-y: scroll;
    box-shadow: 0 0 15px 2px rgba(0,0,0,0.34);
    position: relative;
}

.review-stars {
    display: block;
    margin-top: 40px;
    margin-bottom: 12px;
    color: #fec720;
    font-size: 2em;
}

.review-stars::before {
    content: "“";
    font-family: "Source Serif 4", serif;
    color: #bee9d6;
    font-size: 3.8em;
    position: absolute;
    top: 18%;
    left: 6%;
}

.review-text {
    margin-bottom: 18px;
    font-style: italic;
}

.review-meta {
    margin-top: 18px;
}

.review-name {
    display: block;
    font-style: italic;
}

.review-subtitle {
    display: block;
}

.review-source,
.review-date {
    display: inline-block;
    font-size: 0.8em;
    font-style: italic;
}

.review-source-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.8em;
}

.review-arrow {
    cursor: pointer;
    flex: 0 0 auto;
    border: none;
    background: transparent;
    font-size: 2em;
    line-height: 1;
    color: #404041;
}

.review-arrow.is-disabled {
    opacity: 0;
    pointer-events: none;
}

.review-arrow.is-hidden {
    display: none;
}

@media screen and (max-width: 900px) {
    .review-slider {
        gap: 12px;
    }

    .review-card {
        padding: 36px;
        max-height: 420px;
    }

    .review-stars {
        margin-top: 28px;
        font-size: 1.6em;
    }

    .review-stars::before {
        top: 12px;
        left: 20px;
        font-size: 3.2em;
    }
}

@media screen and (max-width: 768px) {
    .review-slider .review-track {
        gap: 0;
    }

    .review-slider .review-slide {
        flex: 0 0 100% !important;
        max-width: 100%;
    }

    .review-card {
        padding: 32px;
        max-height: 400px;
    }

    .review-arrow {
        font-size: 1.7em;
    }
}

@media screen and (max-width: 480px) {
    .review-slider {
        gap: 6px;
    }

    .review-card {
        padding: 28px 24px;
        max-height: 380px;
        border-radius: 16px;
    }

    .review-stars {
        margin-top: 22px;
        font-size: 1.35em;
    }

    .review-stars::before {
        top: 10px;
        left: 18px;
        font-size: 2.8em;
    }

    .review-text {
        font-size: 0.95em;
    }

    .review-source,
    .review-date,
    .review-source-link {
        font-size: 0.75em;
    }

    .review-arrow {
        font-size: 1.4em;
    }
}
