/* Quote Component Frontend Styling */

blockquote.note-quote-component {
    background-color: transparent !important;
    border: none !important;
    margin: 50px auto;
    padding: 0 30px;
    font-style: normal;
    width: min(100vw, 1120px);
    max-width: 1120px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
}

blockquote.note-quote-component * {
    /* Reset any conflicting inherited styles */
    margin: 0;
    padding: 0;
}

blockquote.note-quote-component .note-quote-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Quote Text */
blockquote.note-quote-component .note-quote-text {
    color: #966E32 !important;
    font-family: "Cormorant Garamond", serif !important;
    font-size: clamp(29px, 6vw, 34px) !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 44px !important;
    margin: 0 0 30px 0 !important;
    padding: 0 !important;
    letter-spacing: 0 !important;
}

/* Author Container */
blockquote.note-quote-component .note-quote-author {
    margin-top: 0;
}

/* Author Name */
blockquote.note-quote-component .note-quote-name {
    color: #966E32 !important;
    font-family: "Jost", sans-serif !important;
    font-size: clamp(18px, 4vw, 20px) !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 30px !important;
    letter-spacing: 0.6px !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Author Position */
blockquote.note-quote-component .note-quote-position {
    color: #966E32 !important;
    font-family: "Jost", sans-serif !important;
    font-size: clamp(15px, 3vw, 16px) !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 150% !important;
    letter-spacing: 0.48px !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    blockquote.note-quote-component {
        margin: 30px auto;
    }

    blockquote.note-quote-component .note-quote-text {
        line-height: 1.4;
    }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 480px) {
    blockquote.note-quote-component {
        margin: 20px auto;
    }

    blockquote.note-quote-component .note-quote-text {
        line-height: 1.3;
    }

    blockquote.note-quote-component .note-quote-author {
        margin-top: 12px;
    }
}

/* Mobile extra-small screens (390px and below) */
@media (max-width: 390px) {
    blockquote.note-quote-component {
        padding: 0 40px;
    }
}

/* Print styles */
@media print {
    blockquote.note-quote-component {
        page-break-inside: avoid;
    }
}
