.quote-section {
    padding: 90px 20px;
}

.quote-carousel {
    max-width: 1080px;
    margin: 0 auto;
}

.quote-slides {
    display: grid;
}

.quote-slide {
    grid-area: 1 / 1;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: stretch;
    gap: 0;
    opacity: 0;
    transform: translateX(48px);
    visibility: hidden;
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.quote-slide--text {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
}

.quote-slide--text .quote-content {
    padding: 0;
    align-items: center;
}

.quote-slide--text .quote-author {
    justify-content: center;
}

.quote-slide.is-active {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

.quote-media {
    position: relative;
    min-height: 320px;
    border-radius: 20px;
    overflow: hidden;
    background: #0d2456;
}

.quote-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-content {
    padding: clamp(28px, 4vw, 56px) clamp(28px, 4vw, 56px) clamp(28px, 4vw, 56px) clamp(36px, 5vw, 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-text {
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.quote-text:not(.quote-text--plain)::before {
    content: "\201C";
}

.quote-text:not(.quote-text--plain) .muted::after {
    content: "\201D";
}

.quote-text .muted {
    color: var(--muted);
    font-weight: 500;
}

.quote-text--plain {
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
    letter-spacing: normal;
    text-align: justify;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.quote-author h4 {
    font-size: 16px;
    font-weight: 600;
}

.quote-author p {
    font-size: 14px;
    color: var(--muted);
}

.quote-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.quote-dot {
    width: 22px;
    height: 4px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(13, 36, 86, 0.16);
    cursor: pointer;
    transition: background 0.24s ease;
}

.quote-dot.is-active {
    background: #d91f2d;
}

@media (max-width: 768px) {
    .quote-section {
        padding: 60px 18px;
    }

    .quote-slide {
        grid-template-columns: 1fr;
    }

    .quote-media {
        min-height: 220px;
    }

    .quote-text {
        font-size: clamp(18px, 5vw, 24px);
    }

    .quote-author {
        margin-top: 20px;
    }
}
