/**
 * GamesBoard SEO Tools - FAQ Frontend Styles
 * Design matching gamesboard.pl dark theme
 */

.gst-faq {
    margin: 48px 0 24px;
}

.gst-faq-title {
    font-family: var(--font-gigabold, 'SairaSemiCondensed', sans-serif);
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gst-faq-dot {
    color: #FFCC32;
    font-size: 1.4em;
    line-height: 1;
}

.gst-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gst-faq-item {
    background: #181b22;
    border-radius: 10px;
    border: 1px solid #303741;
    overflow: hidden;
    transition: border-color 0.2s;
}

.gst-faq-item[open] {
    border-color: #FFCC32;
}

.gst-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    list-style: none;
    color: #fff;
    font-weight: 600;
    font-size: 1em;
    gap: 12px;
}

.gst-faq-question::-webkit-details-marker {
    display: none;
}

.gst-faq-question::marker {
    display: none;
    content: '';
}

.gst-faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #999;
}

details[open] > .gst-faq-question .gst-faq-chevron {
    transform: rotate(180deg);
    color: #FFCC32;
}

.gst-faq-answer {
    padding: 0 20px 16px;
    color: #b3b3b3;
    line-height: 1.6;
    font-size: 0.95em;
}

.gst-faq-answer p {
    margin: 0 0 8px 0;
}

.gst-faq-answer p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .gst-faq {
        margin: 36px 0 20px;
    }
}

@media (max-width: 700px) {
    .gst-faq-question {
        padding: 14px 16px;
        font-size: 0.95em;
    }

    .gst-faq-answer {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .gst-faq-question {
        padding: 14px 14px;
        min-height: 48px;
    }
}
