/**
 * FishingBooker Gutenberg Blocks - FAQ Styles
 * 
 * @package FishingBookerGutenbergBlocks
 */

.fbgb-faq-block {
    margin: 2rem 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.fbgb-faq-container {
    max-width: 100%;
    background: #ffffff;
    overflow: hidden;
}

.fbgb-faq-item {
    border-bottom: 1px solid #e6e6e6;
    transition: all 0.3s ease;
}

.fbgb-faq-item:last-child {
    border-bottom: none;
}

.fbgb-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;
    color: #121519;
    width: 100%;
    transition: all 0.3s ease;
}

.fbgb-faq-answer-content p,
.fbgb-faq-answer-content li,
.fbgb-faq-answer-content a {
    font-size: 16px!important;
}

.fbgb-faq-answer-content a {
    text-decoration: underline!important;
}

.fbgb-faq-question-text {
    flex: 1;
    margin-right: 1rem;
    line-height: 1.4;
}

.fbgb-faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #0075C9;
    transition: transform 0.3s ease;
}

.fbgb-faq-icon svg {
    width: 100%;
    height: 100%;
    transform: rotate(180deg);
}

.fbgb-faq-open .fbgb-faq-icon {
    transform: rotate(180deg);
}

.fbgb-faq-icon-horizontal {
    transition: opacity 0.3s ease;
}

.fbgb-faq-open .fbgb-faq-icon-horizontal {
    opacity: 0;
}

.fbgb-faq-answer {
    display: none;
    overflow: hidden;
    padding-bottom: 8px;
}