/* FAQ Schema Block Frontend Styles */

.faq-item {
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
}


.faq-question-toggle {
    width: 100%;
    background: #f3f4f6;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question-toggle:hover {
    background: #e5e7eb;
}

.faq-question-toggle:active {
    background: #d1d5db;
}

.faq-question {
    display:grid;
    grid-template-columns: auto 35px;
    gap:30px;
    cursor:pointer;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    user-select: none;
    font-weight: 500;
    line-height: 1.5;
}

.faq-question:after {
    content: url("data:image/svg+xml,%3Csvg width='35' height='35' viewBox='0 0 35 35' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.11328 17.6523L25.0583 17.6523' stroke='white' stroke-linecap='round'/%3E%3Cpath d='M17.0859 9.67969V25.6247' stroke='white' stroke-linecap='round'/%3E%3Ccircle cx='17.084' cy='17.084' r='16.584' stroke='white'/%3E%3C/svg%3E%0A");
    height:35px;
}
.faq-question.active:after {
    content: url("data:image/svg+xml,%3Csvg width='35' height='35' viewBox='0 0 35 35' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.11328 17.6523L25.0583 17.6523' stroke='white' stroke-linecap='round'/%3E%3Ccircle cx='17.084' cy='17.084' r='16.584' stroke='white'/%3E%3C/svg%3E%0A");
}

/* Toggle Icon */
.faq-toggle-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="6 9 12 15 18 9"></polyline></svg>') no-repeat center;
    background-size: contain;
    transition: transform 0.3s ease;
    color: #1f2937;
    flex-shrink: 0;
}

.faq-question-toggle.active .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.open {
    max-height: 1000px;
}

.faq-answer-text {
    margin: 0;
    color: #fff;
    font-weight: 200;
    width:90%;
}
@media screen and (min-width:1000px){
    .faq-answer-text {
        width:75%;
    }
}

.faq-answer-text a {
    text-decoration: underline;
    transition: color 0.2s ease;
}

.faq-answer-text a:hover {
    text-decoration: underline;
}