.faq-accordion-wrap {
margin: 2.5rem 0 2rem;
font-family: inherit;
}
.faq-accordion-title {
font-size: clamp(1.5rem, 3vw, 1.9rem) !important;
font-weight: 800 !important;
margin-bottom: 1.25rem !important;
color: #1a1a1a !important;
letter-spacing: -0.02em;
} .faq-accordion {
display: flex;
flex-direction: column;
border-radius: 8px;
overflow: hidden;
border: 2px solid #1a1a1a;
box-shadow: 4px 4px 0 #1a1a1a;
} .faq-item {
border-bottom: 2px solid #1a1a1a;
background: #fff;
}
.faq-item:last-child {
border-bottom: none;
} .faq-question {
display: flex !important;
align-items: center !important;
justify-content: space-between !important;
width: 100% !important;
padding: 1.3rem 1.6rem !important;
background: #fff !important;
border: none !important;
cursor: pointer !important;
text-align: left !important;
gap: 1rem;
transition: background 0.15s ease;
}
.faq-question:hover {
background: #f5f5f5 !important;
}
.faq-question-text {
font-size: clamp(1.05rem, 2.2vw, 1.25rem) !important;
font-weight: 700 !important;
color: #1a1a1a !important;
line-height: 1.45 !important;
flex: 1;
} .faq-icon {
flex-shrink: 0;
width: 28px;
height: 28px;
border-radius: 50%;
background: #1a1a1a;
position: relative;
transition: background 0.2s ease;
}
.faq-icon::before,
.faq-icon::after {
content: '';
position: absolute;
background: #fff;
border-radius: 2px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.faq-icon::before { width: 13px; height: 2.5px; }
.faq-icon::after  {
width: 2.5px;
height: 13px;
transition: transform 0.3s ease, opacity 0.3s ease;
} .faq-item--open > .faq-question {
background: #1a1a1a !important;
}
.faq-item--open .faq-question-text {
color: #fff !important;
}
.faq-item--open .faq-icon {
background: #fff;
}
.faq-item--open .faq-icon::before { background: #1a1a1a; }
.faq-item--open .faq-icon::after  {
background: #1a1a1a;
transform: translate(-50%, -50%) rotate(90deg);
opacity: 0;
} .faq-answer {
overflow: hidden;
transition: max-height 0.35s ease;
}
.faq-answer-inner {
padding: 1.2rem 1.6rem 1.5rem !important;
color: #222 !important;
font-size: clamp(1rem, 2vw, 1.2rem) !important;
line-height: 1.85 !important;
border-top: 1px solid #e0e0e0;
}
.faq-answer-inner p {
font-size: clamp(1rem, 2vw, 1.2rem) !important;
line-height: 1.85 !important;
color: #222 !important;
}
.faq-answer-inner p:first-child { margin-top: 0 !important; }
.faq-answer-inner p:last-child  { margin-bottom: 0 !important; } .faq-editor-preview {
opacity: 0.9;
pointer-events: none;
}
.faq-question--preview {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1.3rem 1.6rem;
background: #f5f5f5;
border-bottom: 2px solid #1a1a1a;
gap: 1rem;
}
.faq-answer--preview { display: block !important; }