/* ==========================================================================
   Central ICT Club Bangladesh
   FAQ accordion
   ========================================================================== */

.faq {
    max-width: 820px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--line);
}

.faq__item:first-child {
    border-top: 1px solid var(--line);
}

/* the question is a full width button so the whole row is clickable */
.faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 22px 4px;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--ink);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s var(--ease);
}

.faq__q:hover {
    color: var(--blue-600);
}

.faq__chev {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--slate-400);
    transition: transform 0.3s var(--ease), color 0.2s var(--ease);
}

/* point the chevron up once the panel is open */
.faq__q[aria-expanded="true"] .faq__chev {
    transform: rotate(180deg);
    color: var(--green-600);
}

.faq__a {
    padding: 0 4px 24px;
}

.faq__a p {
    margin: 0;
    color: var(--slate-700);
    line-height: 1.65;
}

.faq__a p + p {
    margin-top: 12px;
}
