/* Unit Zero FAQ - Base / Minimal Layout */

.uz-faq-section.uz-faq-classic {
    margin: 20px 0;
    font-family: inherit;
    color: inherit;
}

.uz-faq-classic .uz-faq-title {
    font-size: 2rem;
    margin-bottom: 5px;
}

.uz-faq-classic .uz-faq-subtitle {
    margin-bottom: 30px;
    opacity: 0.7;
}

.uz-faq-classic .uz-faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 0;
    background: none;
}

.uz-faq-classic .uz-faq-question {
    padding: 15px 0;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
    color: inherit;
}

.uz-faq-classic .uz-q-prefix {
    display: none; /* Hide prefix in classic mode */
}

.uz-faq-classic .uz-status-tag {
    display: none; /* Hide status tag in classic mode */
}

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

.uz-faq-classic .uz-faq-item.active .uz-faq-answer {
    max-height: 1000px;
}

.uz-faq-classic .uz-faq-answer-content {
    padding: 10px 0 20px 0;
    line-height: 1.5;
}

.uz-faq-classic .uz-q-icon {
    font-size: 1.5rem;
    transition: transform 0.2s;
}

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