.quote-section {
    padding: 120px 20px;
    text-align: center;
}

.quote-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.quote-mark {
    font-size: 60px;
    color: #0d2456;
    margin-bottom: 20px;
    line-height: 1;
}

.quote-text {
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.02em;
}

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

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

.quote-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

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

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

@media (max-width:768px) {

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

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

    .quote-mark {
        font-size: 48px;
    }

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

}

@media (max-width:480px) {

    .quote-text {
        font-size: 22px;
    }

    .quote-author img {
        width: 42px;
        height: 42px;
    }

}
