/* icon */
.faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #f2f3f7;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    transition: transform 0.25s ease, background 0.2s ease;

    flex: 0 0 26px;
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* =========================
    ANIMATED CONTENT WRAPPER
    ========================= */

.faq-content {
    transition: height 0.35s ease;
}

.faq-content-inner {
    padding: 0 16px 16px;
    color: #555;
}