@charset "UTF-8";

/* 탭 네비게이션 */
.inquiry-tabs {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--text-dim);
    margin-bottom: 40px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 30px;
    color: var(--text-dim);
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    font-family: 'dungGeunMo';
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* Q&A 리스트 (아코디언) */
.qna-item {
    background: var(--card-bg);
    border: 1px solid var(--text-dim);
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
}

.qna-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.qna-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #0d1117;
}

.qna-item.open .qna-body {
    max-height: 2000px;
    opacity: 1;
    padding: 30px 20px;
    border-top: 1px solid var(--text-dim);
}

.qna-arrow {
    transition: transform 0.3s ease;
}

.qna-item.open .qna-arrow {
    transform: rotate(180deg);
}

.upload-icon {
    text-align: center;
}