/* ============================================================
   БЛОК 4: ЦИТАТА
   ============================================================ */
.quote {
    padding: 60px 20px;
    background: #e7d3df;  /* заданный фон */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

.quote__container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* ===== РАЗДЕЛИТЕЛЬ (полоска + мандала) ===== */
.quote__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.quote__divider:last-of-type {
    margin-bottom: 0;
    margin-top: 30px;
}

.quote__divider-line {
    flex: 1;
    height: 1.5px;
    background: #ae634c;
    opacity: 0.3;
}

.quote__divider-mandala {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    animation: quote-spin 20s linear infinite;
}

.quote__divider-mandala img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ===== ТЕКСТ ЦИТАТЫ ===== */
.quote__text {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 38px;
    font-weight: 400;
    font-style: italic;
    color: #4a3a35;
    line-height: 1.4;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 10px 0;
}

/* ===== АНИМАЦИЯ ===== */
@keyframes quote-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================================
   АДАПТИВ
   ============================================================ */
@media (max-width: 768px) {
    .quote {
        padding: 40px 16px;
        min-height: auto;
    }
    .quote__text {
        font-size: 28px;
        line-height: 1.3;
    }
    .quote__divider-mandala {
        width: 30px;
        height: 30px;
    }
    .quote__divider {
        gap: 12px;
    }
    .quote__divider:last-of-type {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .quote__text {
        font-size: 22px;
        line-height: 1.3;
    }
    .quote__divider-mandala {
        width: 24px;
        height: 24px;
    }
}