@charset "UTF-8";

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	faq (refactored)
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.voice__faq-section {
    padding: 24px 0;
    background: url('../../images/student/st__inner.png') top center;
    background-size: 100% auto;
    background-repeat: repeat-y;
}

/* --- Title Section --- */
.voice__faq-section .faq__title {
    margin-bottom: 40px;
    text-align: center;
}

.voice__faq-section .faq__title-label {
    color: #0385FF;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    font-family: "Helvetica Neue", sans-serif;
}

.voice__faq-section .faq__title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.4;
    color: #333;
}

.voice__faq-section .faq__title-bar {
    display: block;
    width: 60px;
    height: 3px;
    background: #333;
    margin: 0 auto;
}

/* --- Item Container --- */
.voice__faq-section .faq__item {
    margin-bottom: 24px;
    position: relative;
}

/* --- Question (White Box with Shadow) --- */
.voice__faq-section .faq__item--question {
    background: #fff;
    color: #333;
    padding: 10px 20px;
    border: 2px solid #333;
    border-radius: 4px;
    box-shadow: 4px 4px 0 #333;
    /* Hard shadow effect */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.voice__faq-section .open .faq__item--question {
    background: #fff;
}

.voice__faq-section .faq__item--question:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #333;
}

.voice__faq-section .faq__item--question p {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    flex: 1;
    line-height: 1.6;
}

/* Q Icon (Blue Circle) */
.voice__faq-icon--q {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: 24px;
    background: #0385FF;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
    font-family: "Helvetica Neue", sans-serif;
}

/* Arrow Icon (Circle with Chevron) */
.voice__faq-section .faq__item--question img:last-of-type {
    position: static;
    width: 32px;
    height: 32px;
    margin-left: 16px;
    transition: transform 0.3s ease;
}

.voice__faq-section .open .faq__item--question img:last-of-type {
    transform: rotate(180deg);
}

/* --- Answer Section --- */
.voice__faq-section .faq__item--answer {
    display: none;
}

.voice__faq-section .faq__item--answer-inner {
    padding: 20px 0 0 20px;
    display: flex;
    align-items: flex-start;
    position: relative;
}

/* A Icon (White Circle, Blue Border) */
.voice__faq-icon--a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: 24px;
    background: #fff;
    color: #0385FF;
    border: 2px solid #0385FF;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
    font-family: "Helvetica Neue", sans-serif;
    line-height: 1;
}

.voice__faq-section .faq__item--answer p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    flex: 1;
    margin-top: 8px;
}

/* Mobile Responsive */
@media only screen and (max-width: 768px) {
    .voice__faq-section .faq__item--question {
        padding: 10px;
    }

    .voice__faq-icon--q,
    .voice__faq-icon--a {
        width: 36px;
        height: 36px;
        font-size: 18px;
        margin-right: 12px;
    }

    .voice__faq-section .faq__item--question p {
        font-size: 14px;
    }

    .voice__faq-section .faq__item--answer {
        padding: 20px 0 0 10px;
    }

    .voice__faq-section .faq__item--answer p {
        font-size: 13px;
    }
}
