@charset "utf-8";

/* ============================================
   텔레그램 다운로드 매니저 가이드
   접두사: tg-dlm- (기존 사이트 오염 방지)
   CSS 변수 접두사: --tgdl-
   컬러 톤: 에머랄드 그린(Emerald Green) + 슬레이트 블루(Slate Blue)
============================================ */

:root {
    --tgdl-emerald: #10b981;
    --tgdl-emerald-dark: #059669;
    --tgdl-emerald-deep: #064e3b;
    --tgdl-emerald-light: #ecfdf5;
    --tgdl-emerald-border: #6ee7b7;
    --tgdl-slate: #475569;
    --tgdl-slate-blue: #3b82f6;
    --tgdl-slate-blue-dark: #2563eb;
    --tgdl-slate-blue-light: #eff6ff;
    --tgdl-slate-blue-border: #93c5fd;
    --tgdl-slate-900: #0f172a;
    --tgdl-slate-700: #334155;
    --tgdl-slate-500: #64748b;
    --tgdl-slate-300: #cbd5e1;
    --tgdl-slate-200: #e2e8f0;
    --tgdl-slate-100: #f1f5f9;
    --tgdl-bg: #f0fdf8;
    --tgdl-white: #ffffff;
    --tgdl-green: #22c55e;
    --tgdl-amber: #f59e0b;
    --tgdl-amber-light: #fffbeb;
    --tgdl-red: #ef4444;
    --tgdl-radius: 14px;
}

/* ─── 래퍼 ─── */
.tg-dlm-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    color: var(--tgdl-slate-500);
    background-color: var(--tgdl-bg);
    box-sizing: border-box;
    line-height: 1.7;
    overflow: hidden;
    padding-bottom: 60px;
}

.tg-dlm-wrapper *,
.tg-dlm-wrapper *::before,
.tg-dlm-wrapper *::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

.tg-dlm-wrapper strong {
    font-weight: 700;
    color: var(--tgdl-slate-900);
}

.tg-dlm-wrapper mark {
    background: linear-gradient(120deg, var(--tgdl-emerald-light) 0%, #6ee7b750 100%);
    color: var(--tgdl-emerald-deep);
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

/* ─── 히어로 ─── */
.tg-dlm-hero {
    background: linear-gradient(145deg, #022c22 0%, #064e3b 25%, #10b981 60%, #3b82f6 100%);
    color: var(--tgdl-white);
    padding: 60px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tg-dlm-hero::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border: 60px solid rgba(16, 185, 129, 0.08);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.tg-dlm-hero::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border: 40px solid rgba(59, 130, 246, 0.06);
    border-radius: 50%;
    bottom: -60px;
    left: -50px;
}

.tg-dlm-hero__floating {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.tg-dlm-hero__float-icon {
    position: absolute;
    font-size: 28px;
    opacity: 0.15;
    animation: tg-dlm-float 6s ease-in-out infinite;
}

.tg-dlm-hero__float-icon i {
    color: rgba(255, 255, 255, 0.9);
}

.tg-dlm-hero__float-icon--1 {
    top: 14%;
    left: 8%;
    animation-delay: 0s;
    font-size: 30px;
}

.tg-dlm-hero__float-icon--2 {
    top: 22%;
    right: 10%;
    animation-delay: 1s;
    font-size: 26px;
}

.tg-dlm-hero__float-icon--3 {
    bottom: 20%;
    left: 12%;
    animation-delay: 2s;
}

.tg-dlm-hero__float-icon--4 {
    bottom: 14%;
    right: 9%;
    animation-delay: 3s;
    font-size: 22px;
}

.tg-dlm-hero__float-icon--5 {
    top: 50%;
    left: 5%;
    animation-delay: 4s;
    font-size: 24px;
}

.tg-dlm-hero__float-icon--6 {
    top: 10%;
    right: 26%;
    animation-delay: 5s;
    font-size: 20px;
}

@keyframes tg-dlm-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(6deg);
    }
}

.tg-dlm-hero__inner {
    position: relative;
    z-index: 1;
}

.tg-dlm-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(16, 185, 129, 0.2);
    color: var(--tgdl-emerald-border);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 22px;
    border: 1px solid rgba(110, 231, 183, 0.3);
    backdrop-filter: blur(4px);
}

.tg-dlm-hero__badge i {
    font-size: 16px;
}

.tg-dlm-hero__title {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 18px;
    color: var(--tgdl-white);
}

.tg-dlm-hero__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.50);
    max-width: 620px;
    margin: 0 auto;
}

/* ─── 메인 ─── */
.tg-dlm-main {
    padding: 30px 20px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* ─── 도입부 ─── */
.tg-dlm-intro {
    background-color: var(--tgdl-white);
    padding: 28px 24px;
    border-radius: var(--tgdl-radius);
    border-left: 4px solid var(--tgdl-emerald);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}

.tg-dlm-intro p {
    font-size: 16px;
    margin-bottom: 14px;
}

.tg-dlm-intro p:last-child {
    margin-bottom: 0;
}

/* ─── 섹션 공통 ─── */
.tg-dlm-section {
    background-color: var(--tgdl-white);
    padding: 34px 24px;
    border-radius: var(--tgdl-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--tgdl-slate-200);
}

.tg-dlm-section--accent {
    background: linear-gradient(135deg, var(--tgdl-emerald-light) 0%, #6ee7b715 100%);
    border-color: var(--tgdl-emerald-border);
}

.tg-dlm-section--info {
    background: linear-gradient(135deg, var(--tgdl-slate-blue-light) 0%, var(--tgdl-emerald-light) 100%);
    border-color: var(--tgdl-slate-blue-border);
}

.tg-dlm-section--demo {
    background: linear-gradient(135deg, var(--tgdl-slate-100) 0%, var(--tgdl-emerald-light) 50%, var(--tgdl-slate-blue-light) 100%);
    border-color: var(--tgdl-emerald-border);
}

.tg-dlm-section--dark {
    background: linear-gradient(135deg, #022c22 0%, #064e3b 100%);
    border-color: var(--tgdl-emerald-dark);
    color: var(--tgdl-slate-300);
}

.tg-dlm-section__head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.tg-dlm-section__num {
    font-size: 38px;
    font-weight: 900;
    color: var(--tgdl-emerald);
    opacity: 0.2;
    line-height: 1;
    flex-shrink: 0;
}

.tg-dlm-section__num--accent {
    color: var(--tgdl-emerald-deep);
    opacity: 0.15;
}

.tg-dlm-section__tip-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--tgdl-emerald) 0%, var(--tgdl-slate-blue) 100%);
    color: var(--tgdl-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.tg-dlm-section__title {
    font-size: 20px;
    font-weight: 800;
    color: var(--tgdl-slate-900);
    line-height: 1.35;
    padding-top: 6px;
}

.tg-dlm-section__title i {
    margin-right: 6px;
}

.tg-dlm-section__title--light {
    color: var(--tgdl-white);
}

.tg-dlm-section__desc {
    font-size: 16px;
    margin-bottom: 24px;
}

/* ─── 접근 방법 카드 ─── */
.tg-dlm-access-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.tg-dlm-access-card {
    padding: 22px;
    border-radius: 12px;
    background-color: var(--tgdl-white);
    border: 1px solid var(--tgdl-emerald-border);
    text-align: center;
    transition: transform 0.25s ease;
}

.tg-dlm-access-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.1);
}

.tg-dlm-access-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--tgdl-emerald) 0%, var(--tgdl-slate-blue) 100%);
    color: var(--tgdl-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 10px;
}

.tg-dlm-access-card__title {
    font-size: 15px;
    font-weight: 800;
    color: var(--tgdl-slate-900);
    margin-bottom: 6px;
}

.tg-dlm-access-card__desc {
    font-size: 13px;
    line-height: 1.6;
}

/* ─── 기능 카드 ─── */
.tg-dlm-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.tg-dlm-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 12px;
    background-color: var(--tgdl-emerald-light);
    border: 1px solid var(--tgdl-emerald-border);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tg-dlm-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.1);
}

.tg-dlm-feature__icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--tgdl-emerald) 0%, var(--tgdl-emerald-dark) 100%);
    color: var(--tgdl-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.tg-dlm-feature__body {
    flex: 1;
}

.tg-dlm-feature__title {
    font-size: 15px;
    font-weight: 800;
    color: var(--tgdl-slate-900);
    margin-bottom: 4px;
}

.tg-dlm-feature__desc {
    font-size: 13px;
    line-height: 1.6;
}

/* ─── 스텝 ─── */
.tg-dlm-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tg-dlm-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background-color: var(--tgdl-white);
    border: 1px solid var(--tgdl-slate-200);
    border-radius: 12px;
    transition: transform 0.25s ease;
}

.tg-dlm-step:hover {
    transform: translateX(4px);
}

.tg-dlm-step__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--tgdl-slate-blue) 0%, var(--tgdl-emerald) 100%);
    color: var(--tgdl-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.tg-dlm-step__body {
    flex: 1;
}

.tg-dlm-step__title {
    font-size: 15px;
    font-weight: 800;
    color: var(--tgdl-slate-900);
    margin-bottom: 2px;
}

.tg-dlm-step__text {
    font-size: 13px;
    line-height: 1.6;
}

.tg-dlm-step__text i {
    font-size: 10px;
    color: var(--tgdl-slate-300);
    margin: 0 2px;
}

/* ─── 데모: 다운로드 매니저 시뮬레이션 ─── */
.tg-dlm-demo {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tg-dlm-demo__panel {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--tgdl-emerald-border);
    background-color: var(--tgdl-white);
}

.tg-dlm-demo__panel-header {
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--tgdl-emerald-deep) 0%, var(--tgdl-emerald-dark) 100%);
    color: var(--tgdl-white);
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tg-dlm-demo__panel-header>span>i {
    margin-right: 6px;
}

.tg-dlm-demo__panel-actions {
    display: flex;
    gap: 6px;
}

.tg-dlm-demo__all-btn,
.tg-dlm-demo__clear-btn {
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--tgdl-white);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tg-dlm-demo__all-btn:hover,
.tg-dlm-demo__clear-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.tg-dlm-demo__panel-body {
    padding: 12px;
}

.tg-dlm-demo__panel-footer {
    padding: 10px 16px;
    background-color: var(--tgdl-slate-100);
    border-top: 1px solid var(--tgdl-slate-200);
}

.tg-dlm-demo__reset-btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid var(--tgdl-slate-200);
    background-color: var(--tgdl-white);
    color: var(--tgdl-slate-500);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tg-dlm-demo__reset-btn:hover {
    background-color: var(--tgdl-slate-100);
}

/* 다운로드 아이템 */
.tg-dlm-demo__file {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid var(--tgdl-slate-200);
    background-color: var(--tgdl-white);
    margin-bottom: 6px;
    transition: border-color 0.2s ease;
}

.tg-dlm-demo__file:last-child {
    margin-bottom: 0;
}

.tg-dlm-demo__file:hover {
    border-color: var(--tgdl-emerald-border);
}

.tg-dlm-demo__file-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.tg-dlm-demo__file-info {
    flex: 1;
    min-width: 0;
}

.tg-dlm-demo__file-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--tgdl-slate-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tg-dlm-demo__file-meta {
    font-size: 10px;
    color: var(--tgdl-slate-500);
    display: flex;
    align-items: center;
    gap: 6px;
}

.tg-dlm-demo__file-speed {
    color: var(--tgdl-emerald-dark);
    font-weight: 700;
}

/* 프로그레스 바 */
.tg-dlm-demo__progress {
    flex: 1;
    max-width: 120px;
    height: 6px;
    border-radius: 3px;
    background-color: var(--tgdl-slate-200);
    overflow: hidden;
}

.tg-dlm-demo__progress-bar {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--tgdl-emerald) 0%, var(--tgdl-emerald-dark) 100%);
    transition: width 0.3s ease;
}

.tg-dlm-demo__progress-bar--paused {
    background: linear-gradient(90deg, var(--tgdl-amber) 0%, #d97706 100%);
}

.tg-dlm-demo__progress-bar--done {
    background: linear-gradient(90deg, var(--tgdl-slate-blue) 0%, var(--tgdl-slate-blue-dark) 100%);
}

/* 제어 버튼 */
.tg-dlm-demo__file-actions {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}

.tg-dlm-demo__file-btn {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 1px solid var(--tgdl-slate-200);
    background-color: var(--tgdl-white);
    color: var(--tgdl-slate-500);
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-family: inherit;
    padding: 0;
}

.tg-dlm-demo__file-btn:hover {
    background-color: var(--tgdl-emerald-light);
    border-color: var(--tgdl-emerald-border);
    color: var(--tgdl-emerald-dark);
}

.tg-dlm-demo__file-btn--priority {
    color: var(--tgdl-amber);
}

.tg-dlm-demo__file-btn--priority:hover {
    background-color: var(--tgdl-amber-light);
    border-color: var(--tgdl-amber);
}

/* 상태 뱃지 */
.tg-dlm-demo__file-status {
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tg-dlm-demo__file-status--active {
    background-color: var(--tgdl-emerald-light);
    color: var(--tgdl-emerald-dark);
}

.tg-dlm-demo__file-status--paused {
    background-color: var(--tgdl-amber-light);
    color: #92400e;
}

.tg-dlm-demo__file-status--done {
    background-color: var(--tgdl-slate-blue-light);
    color: var(--tgdl-slate-blue-dark);
}

.tg-dlm-demo__file-status--priority {
    background-color: #fef3c7;
    color: #92400e;
    animation: tg-dlm-priority-pulse 1.5s ease infinite;
}

@keyframes tg-dlm-priority-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* 빈 상태 */
.tg-dlm-demo__empty {
    text-align: center;
    padding: 30px 16px;
    color: var(--tgdl-slate-300);
}

.tg-dlm-demo__empty i {
    font-size: 36px;
    margin-bottom: 10px;
    display: block;
}

.tg-dlm-demo__empty p {
    font-size: 13px;
    font-weight: 600;
    color: var(--tgdl-slate-500);
}

/* ─── 직장인 팁 ─── */
.tg-dlm-tips {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.tg-dlm-tip {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(110, 231, 183, 0.1);
    padding: 22px;
    border-radius: 10px;
    position: relative;
}

.tg-dlm-tip__number {
    position: absolute;
    top: -10px;
    left: 18px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--tgdl-emerald) 0%, var(--tgdl-slate-blue) 100%);
    color: var(--tgdl-white);
    font-weight: 900;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.tg-dlm-tip__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--tgdl-white);
    margin-bottom: 8px;
    padding-top: 6px;
}

.tg-dlm-tip__title i {
    color: var(--tgdl-emerald-border);
    margin-right: 4px;
}

.tg-dlm-tip__text {
    font-size: 14px;
    color: var(--tgdl-slate-300);
    line-height: 1.7;
}

.tg-dlm-tip__text strong {
    color: var(--tgdl-white);
}

/* ─── 결론 ─── */
.tg-dlm-summary {
    background: linear-gradient(145deg, #022c22 0%, #064e3b 30%, #10b981 65%, #3b82f6 100%);
    color: var(--tgdl-white);
    padding: 44px 28px;
    border-radius: var(--tgdl-radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(6, 78, 59, 0.4);
}

.tg-dlm-summary__title {
    font-size: 24px;
    font-weight: 800;
    color: var(--tgdl-white);
    margin-bottom: 20px;
}

.tg-dlm-summary__body p {
    font-size: 16px;
    margin-bottom: 14px;
    color: var(--tgdl-emerald-border);
}

.tg-dlm-summary strong {
    color: var(--tgdl-white);
}

.tg-dlm-summary__highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 24px 0;
}

.tg-dlm-summary__highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 12px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(110, 231, 183, 0.12);
    border-radius: 10px;
}

.tg-dlm-summary__highlight-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--tgdl-emerald) 0%, var(--tgdl-slate-blue) 100%);
    color: var(--tgdl-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.tg-dlm-summary__highlight strong {
    font-size: 13px;
    color: var(--tgdl-white);
}

.tg-dlm-summary__highlight span {
    font-size: 11px;
    color: var(--tgdl-emerald-border);
    text-align: center;
}

.tg-dlm-summary__checklist {
    list-style: none;
    display: inline-block;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.06);
    padding: 24px 32px;
    border-radius: 12px;
    margin: 0 0 24px;
}

.tg-dlm-summary__checklist li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #a7f3d0;
}

.tg-dlm-summary__checklist li:last-child {
    margin-bottom: 0;
}

.tg-dlm-summary__checklist li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 13px;
    color: var(--tgdl-emerald-border);
}

.tg-dlm-summary__checklist strong {
    color: var(--tgdl-white);
}

.tg-dlm-summary__footer {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    color: var(--tgdl-emerald-border);
    line-height: 1.8;
}

.tg-dlm-summary__footer strong {
    color: var(--tgdl-white);
}

/* ============================================
   반응형
============================================ */
@media (min-width: 768px) {
    .tg-dlm-hero {
        padding: 80px 40px;
    }

    .tg-dlm-hero__title {
        font-size: 38px;
    }

    .tg-dlm-main {
        padding: 40px 36px 0;
        gap: 40px;
    }

    .tg-dlm-intro {
        padding: 36px 32px;
    }

    .tg-dlm-section {
        padding: 40px 36px;
    }

    .tg-dlm-section__title {
        font-size: 24px;
    }

    .tg-dlm-section__num {
        font-size: 44px;
    }

    .tg-dlm-access-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .tg-dlm-features {
        grid-template-columns: repeat(3, 1fr);
    }

    .tg-dlm-feature {
        flex-direction: column;
        text-align: center;
    }

    .tg-dlm-feature__icon {
        margin: 0 auto;
    }

    .tg-dlm-tips {
        grid-template-columns: repeat(3, 1fr);
    }

    .tg-dlm-summary__highlights {
        grid-template-columns: repeat(3, 1fr);
    }

    .tg-dlm-summary {
        padding: 56px 44px;
    }
}

@media (min-width: 1024px) {
    .tg-dlm-hero__title {
        font-size: 44px;
    }

    .tg-dlm-main {
        gap: 46px;
    }
}

/* ============================================
   스크롤 등장 애니메이션
============================================ */
.tg-dlm-motion {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.tg-dlm-motion.is-visible {
    opacity: 1;
    transform: translateY(0);
}