@charset "utf-8";

/* ── CSS Custom Properties (원본 user.css에서 추출) ── */
:root {
    --primary: #9440e3;
    --mainsize: 1280px;
    --k-font: 'pretendard';
    --e-font: "Poppins", sans-serif;
    --k-point: 'GangwonEduPowerExtraBoldA';
}

/* ── 위젯 영역 내 기본 리셋 (Elementor 전역 영향 없음) ── */
.tv2e-scope *,
.tv2e-scope *::before,
.tv2e-scope *::after {
    box-sizing: border-box;
}
.tv2e-scope ul,
.tv2e-scope ol,
.tv2e-scope dl,
.tv2e-scope dt,
.tv2e-scope dd {
    margin: 0;
    padding: 0;
    list-style: none;
}
.tv2e-scope h1,
.tv2e-scope h2,
.tv2e-scope h3,
.tv2e-scope h4,
.tv2e-scope h5,
.tv2e-scope h6,
.tv2e-scope p {
    margin: 0;
    padding: 0;
}
.tv2e-scope a {
    color: #000;
    text-decoration: none;
}
.tv2e-scope img {
    border: 0;
    vertical-align: middle;
}

/* ── 원본 user.css에서 필요한 공통 스타일 (스코프 변경) ── */
.tv2e-scope .inner {
    max-width: var(--mainsize);
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* 섹션 제목 공통 */
.tv2e-scope .group-tit {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 60px;
}
.tv2e-scope .group-tit .sub-tit {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    word-break: keep-all;
}
.tv2e-scope .group-tit .main-tit {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    color: #000;
    white-space: pre-line;
    word-break: keep-all;
}

/* 버튼 공통 */
.tv2e-scope .btn--primary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    background-color: #000;
    color: #fff;
    border-radius: 100px;
    border: 1px solid transparent;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
@media (hover: hover) {
    .tv2e-scope .btn--primary:hover {
        background-color: transparent;
        color: #111;
        border-color: #111;
    }
}

/* col-2 레이아웃 */
.tv2e-scope .col-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* 반응형 - 섹션 제목 */
@media (max-width: 768px) {
    .tv2e-scope .group-tit .main-tit {
        font-size: 26px;
    }
    .tv2e-scope .group-tit {
        padding-bottom: 40px;
    }
}
@media (max-width: 480px) {
    .tv2e-scope .group-tit .main-tit {
        font-size: 22px;
    }
}
