/* --- Quote Section --- */
.quote-section {
    padding: 100px 30px;
    text-align: left;
    /* background-image set dynamically via data-field-bg */
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.quote-section .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0;
}

.quote-section blockquote {
    font-family: var(--font-legan);
    font-size: 16px;
    line-height: 1.6;
    color: #FFFFFF;
    margin-bottom: 30px;
    font-style: normal;
    text-align: left;
}

.quote-section cite {
    font-family: var(--font-primary);
    font-size: 24px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    font-style: normal;
    display: block;
    text-align: left;
    text-transform: uppercase;
}