/* FAQ 본문 기본 */
.faq-content {
    line-height: 1.8;
}

/* 문단 간격 */
.faq-content p {
    margin-bottom: 1rem;
}

/* VOD 버튼 스타일 */
.faq-content button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 16px;
    margin-right: 8px;
    margin-top: 8px;

    border-radius: 6px;
    border: 1px solid #C22098;

    background-color: #ffffff;
    color: #C22098;

    font-size: 16px;
    font-weight: 600;
    cursor: pointer;

    transition: all 0.2s ease;
}

/* hover 효과 */
.faq-content button:hover {
    background-color: #C22098;
    color: #ffffff;
}

.vod-btn-active {
    border-color: #C22098;
    color: #C22098;
    background-color: white;
    font-weight: 600;
}

.vod-btn-inactive {
    border-color: #d4d4d8;
    color: #71717a;
    background-color: #f4f4f5;
}