/* /resource/www/css/info/protection_guide.css */

.guide-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 20px;
}

.tab-navigation {
    display: flex;
    justify-content: center; /* 탭 가운데 정렬 */
    gap: 16px; /* 버튼 사이 간격 */
    margin-bottom: 40px;
}

.tab-button {
    padding: 16px 32px;
    font-size: 20px;
    font-weight: 600;
    border: 1px solid #D4D4D4;
    background-color: #FCFCFC;
    cursor: pointer;
    color: #222222;
    border-radius: 999px; /* 둥근 버튼 형태 */
    transition: all 0.3s;
}

.tab-button.active {
    color: #FFFFFF;
    background-color: #00754A;
    border-color: #00754A;
}

.tab-content-wrapper {
    padding: 32px;
    border: 1px solid #EDEDED;
    border-radius: 16px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

.tab-content p {
    font-size: 18px;
    line-height: 1.8;
}

.tab-content ul {
    list-style: none; /* 기본 불릿 제거 */
    padding: 0;
    margin: 0;
}

.tab-content li {
    font-size: 18px;
    line-height: 1.8;
    padding-left: 1.5em; /* · 문자 공간 확보 */
    text-indent: -1.5em; /* · 문자만큼 왼쪽으로 이동 */
    margin-bottom: 8px;
}
