/* ─── Google Trends AI Writer – Frontend Styles ────────────────────────── */

/* ── FAQ Block ──────────────────────────────────────────────────────────── */
.gtaw-faq {
    margin: 40px 0;
}
.gtaw-faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}
.gtaw-faq-question {
    background: #f8fafc;
    padding: 16px 20px;
    margin: 0;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid #e5e7eb;
}
.gtaw-faq-question::before {
    content: '❓';
    margin-right: 8px;
}
.gtaw-faq-answer {
    padding: 16px 20px;
    background: #fff;
    line-height: 1.7;
}

/* ── How-To Block ───────────────────────────────────────────────────────── */
.gtaw-howto {
    margin: 32px 0;
    counter-reset: howto-step;
}
.gtaw-howto-step {
    display: flex;
    gap: 20px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 12px;
    background: #fff;
    align-items: flex-start;
}
.gtaw-step-number {
    background: #2271b1;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.gtaw-howto-step > div { flex: 1; }
.gtaw-step-name {
    display: block;
    font-weight: 600;
    font-size: 1em;
    margin-bottom: 6px;
}
.gtaw-step-text { margin: 0; color: #374151; line-height: 1.6; }
