/* ════════════════════════════════════════════
   Summerland AEO — Frontend CSS
   FAQ Accordion + Quick Answer block
   ════════════════════════════════════════════ */

/* Quick Answer block */
.aeo-quick-answer {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1.5px solid #86efac;
    border-left: 5px solid #16a34a;
    border-radius: 10px;
    padding: 16px 20px;
    margin: 20px 0;
}
.aeo-quick-answer-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #16a34a;
    margin-bottom: 8px;
}
.aeo-quick-answer-text {
    font-size: 15px;
    color: #1e293b;
    line-height: 1.6;
}

/* FAQ block */
.aeo-faq-block {
    margin: 28px 0;
}
.aeo-faq-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}
.aeo-faq-item {
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow .2s;
}
.aeo-faq-item:hover { box-shadow: 0 4px 14px rgba(0,0,0,.07); }
.aeo-faq-q {
    padding: 14px 18px;
    font-weight: 600;
    font-size: 15px;
    color: #1e3a5f;
    cursor: pointer;
    background: #f8fafc;
    position: relative;
    user-select: none;
    transition: background .15s;
}
.aeo-faq-q::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #3b82f6;
    transition: transform .25s;
}
.aeo-faq-q[aria-expanded="true"] { background: #eff6ff; }
.aeo-faq-q[aria-expanded="true"]::after { transform: translateY(-50%) rotate(45deg); }
.aeo-faq-a {
    display: none;
    padding: 14px 18px;
    font-size: 14px;
    color: #374151;
    line-height: 1.7;
    background: #fff;
    border-top: 1px solid #e2e8f0;
}
