/* FAQ page — loaded after styles.css and blog.css */

.faq-main {
    background: transparent;
}

.faq-main .faq-container {
    max-width: 720px;
    margin: 0 auto;
}

.faq-page-title {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #f5f5f5;
    line-height: 1.2;
}

.faq-lede {
    font-size: 1.125rem;
    color: #a3a3a3;
    margin-bottom: 48px;
    line-height: 1.65;
    max-width: 36em;
}

.faq-section {
    margin-bottom: 48px;
}

.faq-section:last-of-type {
    margin-bottom: 0;
}

.faq-section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8a8a8a;
    margin: 0 0 16px;
    line-height: 1.3;
}

.faq-section-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(50, 55, 70, 0.45);
}

.faq-item {
    border-bottom: 1px solid rgba(50, 55, 70, 0.35);
}

.faq-item:first-of-type {
    border-top: 1px solid rgba(50, 55, 70, 0.35);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    margin: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 500;
    color: #f5f5f5;
    line-height: 1.45;
    text-align: left;
}

.faq-q:hover {
    color: #8aadcc;
}

.faq-text {
    flex: 1;
    min-width: 0;
}

.faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(90, 122, 154, 0.45);
    border-radius: 50%;
    color: #8a8a8a;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.faq-icon svg {
    width: 10px;
    height: 10px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s ease;
}

.faq-item.open .faq-q {
    color: #7a9dc8;
}

.faq-item.open .faq-icon {
    border-color: rgba(122, 157, 200, 0.65);
    color: #7a9dc8;
    background: rgba(122, 157, 200, 0.12);
}

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

.faq-a[hidden] {
    display: none;
}

.faq-panel-inner {
    padding: 0 0 20px;
    font-size: 1rem;
    line-height: 1.75;
    color: #b3b3b3;
}

.faq-panel-inner p + p {
    margin-top: 12px;
}

.faq-panel-inner a {
    color: #7a9dc8;
    text-decoration: underline;
}

.faq-panel-inner a:hover {
    color: #8aadcc;
}

@media (max-width: 768px) {
    .faq-page-title {
        font-size: 1.65rem;
    }

    .faq-q {
        font-size: 1rem;
        padding: 16px 0;
    }
}
