/*
 * tips334/style.css  v1.0.0
 * 텔레그램 스토리 날씨 위젯 가이드
 * 테마: 스카이 블루 + 선셋 오렌지 (스토리·날씨 감성)
 * 그누보드5 완전 격리 | BEM | 모바일 퍼스트
 */

/* ─── 전체 리셋 ─── */
#tg-334-wrapper,
#tg-334-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    text-decoration: none;
    list-style: none;
    background: none;
    font-style: normal;
}
#tg-334-wrapper h1, #tg-334-wrapper h2, #tg-334-wrapper h3 {
    font-size: inherit; font-weight: inherit; color: inherit; line-height: 1.35;
}
#tg-334-wrapper strong { font-weight: 700; color: inherit; }
#tg-334-wrapper p { margin-bottom: 14px !important; line-height: 1.85 !important; }
#tg-334-wrapper p:last-child { margin-bottom: 0 !important; }
#tg-334-wrapper button { cursor: pointer; }
#tg-334-wrapper a { color: inherit; }
#tg-334-wrapper ol, #tg-334-wrapper ul { list-style: none; }

/* ─── 디자인 토큰 ─── */
#tg-334-wrapper {
    --sky-400: #38bdf8;
    --sky-500: #0ea5e9;
    --sky-600: #0284c7;
    --sky-700: #0369a1;
    --sky-900: #0c4a6e;
    --sky-950: #082f49;
    --sun-300: #fcd34d;
    --sun-400: #fbbf24;
    --sun-500: #f59e0b;
    --sun-600: #d97706;
    --ora-400: #fb923c;
    --ora-500: #f97316;
    --sl-50:   #f8fafc;
    --sl-100:  #f1f5f9;
    --sl-200:  #e2e8f0;
    --sl-400:  #94a3b8;
    --sl-500:  #64748b;
    --sl-700:  #334155;
    --sl-800:  #1e293b;
    --sl-900:  #0f172a;
    --text-main: #1e293b;
    --text-sub:  #475569;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 14px rgba(0,0,0,.06);
    --shadow-md: 0 8px 28px rgba(0,0,0,.12);
    --fs-xs: .8rem;
    --fs-sm: .9rem;
    --fs-base: 1rem;
    --fs-lg: 1.2rem;

    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    font-size: var(--fs-base);
    color: var(--text-main);
    line-height: 1.7;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

/* Material Symbols */
#tg-334-wrapper .material-symbols-outlined {
    font-family: 'Material Symbols Outlined', sans-serif;
    font-weight: normal; font-style: normal; font-size: inherit;
    line-height: 1; display: inline-block; white-space: nowrap;
    direction: ltr; -webkit-font-smoothing: antialiased; vertical-align: middle;
}

/* 스크롤 등장 */
#tg-334-wrapper .tg-334-motion { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
#tg-334-wrapper .tg-334-motion.is-visible { opacity: 1; transform: translateY(0); }

/* ═════════════════════════════════════════
   히어로
═════════════════════════════════════════ */
#tg-334-wrapper .tg-334-hero {
    position: relative;
    background: linear-gradient(160deg, var(--sky-900) 0%, #1e1b4b 50%, #831843 100%);
    border-radius: var(--radius-lg);
    padding: 64px 28px 72px;
    text-align: center;
    overflow: hidden;
}

#tg-334-wrapper .tg-334-hero__bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(56,189,248,.22) 0%, transparent 65%);
    pointer-events: none;
}

/* 구름 애니메이션 */
#tg-334-wrapper .tg-334-hero__clouds {
    position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
#tg-334-wrapper .tg-334-hero__cloud {
    position: absolute; font-size: 2.8rem; opacity: .25;
    animation: tg334CloudFloat linear infinite;
}
#tg-334-wrapper .tg-334-hero__cloud--1 { top: 12%; left: 5%;  animation-duration: 22s; animation-delay: 0s; }
#tg-334-wrapper .tg-334-hero__cloud--2 { top: 28%; left: 70%; animation-duration: 30s; animation-delay: -8s; }
#tg-334-wrapper .tg-334-hero__cloud--3 { top: 8%;  left: 40%; animation-duration: 26s; animation-delay: -14s; }

@keyframes tg334CloudFloat {
    0%   { transform: translateX(0) translateY(0); }
    50%  { transform: translateX(18px) translateY(-8px); }
    100% { transform: translateX(0) translateY(0); }
}

#tg-334-wrapper .tg-334-hero__inner {
    position: relative; z-index: 1;
    max-width: 740px; margin: 0 auto;
}

#tg-334-wrapper .tg-334-hero__badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(56,189,248,.15); border: 1px solid rgba(56,189,248,.35);
    color: var(--sky-400); font-size: .85rem; font-weight: 700;
    padding: 6px 18px; border-radius: 999px;
    margin-bottom: 22px !important;
}
#tg-334-wrapper .tg-334-hero__badge .material-symbols-outlined { font-size: 1.1rem; }

#tg-334-wrapper .tg-334-hero__title {
    font-size: clamp(1.55rem, 4.2vw, 2.2rem);
    font-weight: 900; color: #fff;
    line-height: 1.38; letter-spacing: -.02em;
    margin-bottom: 16px;
}
#tg-334-wrapper .tg-334-hero__title em {
    font-style: normal; color: var(--sun-300);
    text-shadow: 0 0 28px rgba(251,191,36,.5);
}

#tg-334-wrapper .tg-334-hero__subtitle {
    color: rgba(255,255,255,.65); line-height: 1.8;
    margin-bottom: 36px !important;
    max-width: 540px; margin-left: auto; margin-right: auto;
}

/* 히어로 위젯 배지 목록 */
#tg-334-wrapper .tg-334-hero__widgets {
    display: flex; flex-wrap: wrap;
    align-items: center; justify-content: center; gap: 10px;
}
#tg-334-wrapper .tg-334-hero__widget {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px; padding: 8px 18px;
    color: #fff; font-size: var(--fs-sm); font-weight: 700;
    backdrop-filter: blur(4px);
    transition: background .2s;
}
#tg-334-wrapper .tg-334-hero__widget:hover { background: rgba(255,255,255,.18); }
#tg-334-wrapper .tg-334-hero__widget-icon { font-size: 1.3rem; }
#tg-334-wrapper .tg-334-hero__widget-label { font-size: .88rem; }

/* ═════════════════════════════════════════
   레이아웃
═════════════════════════════════════════ */
#tg-334-wrapper .tg-334-main { display: flex; flex-direction: column; gap: 28px; }

/* 도입부 */
#tg-334-wrapper .tg-334-intro {
    background: #fff; border: 1px solid var(--sl-200);
    border-top: 4px solid var(--sky-600);
    border-radius: var(--radius-md);
    padding: 36px 28px; text-align: center;
    box-shadow: var(--shadow-sm);
}
#tg-334-wrapper .tg-334-intro__icon {
    font-size: 2.4rem; color: var(--sky-500); margin-bottom: 14px;
}
#tg-334-wrapper .tg-334-intro__icon .material-symbols-outlined { font-size: 2.4rem; }
#tg-334-wrapper .tg-334-intro__title {
    font-size: clamp(1.1rem, 2.8vw, 1.35rem); font-weight: 800;
    color: var(--sl-900); margin-bottom: 14px;
    letter-spacing: -.01em; line-height: 1.45;
}
#tg-334-wrapper .tg-334-intro p { color: var(--text-sub); max-width: 680px; margin-left: auto; margin-right: auto; }

/* 공통 섹션 */
#tg-334-wrapper .tg-334-section {
    background: #fff; border: 1px solid var(--sl-200);
    border-radius: var(--radius-md); padding: 44px 32px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}
#tg-334-wrapper .tg-334-section--sky {
    background: linear-gradient(160deg, var(--sky-950), var(--sky-900) 50%, #1e1b4b);
    border-color: rgba(255,255,255,.07);
}

/* 레이블 */
#tg-334-wrapper .tg-334-section__label {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--sl-100); color: var(--sl-700);
    font-size: .88rem; font-weight: 700; letter-spacing: .03em;
    padding: 7px 20px; border-radius: 999px;
    margin-bottom: 22px;
}
#tg-334-wrapper .tg-334-section__label--sky {
    background: rgba(255,255,255,.18);
    color: #fff;
    border: 1px solid rgba(255,255,255,.35);
    text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
#tg-334-wrapper .tg-334-section__label--guide { background: rgba(14,165,233,.08); color: var(--sky-700); }
#tg-334-wrapper .tg-334-section__label--pro   { background: rgba(251,191,36,.12); color: var(--sun-600); }
#tg-334-wrapper .tg-334-section__label .material-symbols-outlined { font-size: 1.1rem; }

/* 섹션 제목 */
#tg-334-wrapper .tg-334-section__title {
    font-size: clamp(1.2rem, 3vw, 1.5rem); font-weight: 900;
    color: var(--sl-900); letter-spacing: -.02em; line-height: 1.38;
    margin-bottom: 16px;
    display: flex; align-items: center; justify-content: center;
    gap: 10px;
}
#tg-334-wrapper .tg-334-section__title--light { color: #fff !important; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
/* 다크 섹션 내 title 아이콘: 밝은 하늘색 → 흰색으로 강제 */
#tg-334-wrapper .tg-334-section--sky .tg-334-section__title .material-symbols-outlined { color: rgba(255,255,255,.9) !important; }
#tg-334-wrapper .tg-334-section__title .material-symbols-outlined { font-size: 1.5rem; color: var(--sky-500); }
#tg-334-wrapper .tg-334-section > p, #tg-334-wrapper .tg-334-section__desc--light {
    max-width: 680px; margin-left: auto; margin-right: auto;
}
#tg-334-wrapper .tg-334-section > p { color: var(--text-sub); }
#tg-334-wrapper .tg-334-section__desc--light { color: rgba(255,255,255,.88) !important; margin-bottom: 32px !important; }

/* ═════════════════════════════════════════
   특징 카드 3종
═════════════════════════════════════════ */
#tg-334-wrapper .tg-334-cards {
    display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 10px;
}
#tg-334-wrapper .tg-334-card {
    background: var(--sl-50); border: 1px solid var(--sl-200);
    border-radius: var(--radius-md); padding: 30px 24px;
    display: flex; flex-direction: column; gap: 14px;
    transition: box-shadow .28s, transform .28s, border-color .28s;
}
#tg-334-wrapper .tg-334-card:hover {
    box-shadow: var(--shadow-md); transform: translateY(-5px);
    border-color: var(--sky-400);
}
#tg-334-wrapper .tg-334-card__icon {
    width: 58px; height: 58px; border-radius: 15px;
    background: var(--sky-950); display: flex;
    align-items: center; justify-content: center;
}
#tg-334-wrapper .tg-334-card__icon--temp { background: linear-gradient(135deg, #f59e0b, #d97706); }
#tg-334-wrapper .tg-334-card__icon--moon { background: linear-gradient(135deg, #312e81, #1e1b4b); }
#tg-334-wrapper .tg-334-card__emoji { font-size: 1.9rem; line-height: 1; }
#tg-334-wrapper .tg-334-card__title {
    font-size: var(--fs-lg); font-weight: 800; color: var(--sl-900); letter-spacing: -.01em;
}
#tg-334-wrapper .tg-334-card__desc { font-size: var(--fs-base); color: var(--text-sub); line-height: 1.8; word-break: keep-all; }

/* ═════════════════════════════════════════
   스토리 데모
═════════════════════════════════════════ */
#tg-334-wrapper .tg-334-demo {
    display: flex; flex-direction: column;
    align-items: center; gap: 32px;
}

/* 폰 스토리 프레임 */
#tg-334-wrapper .tg-334-story { display: flex; flex-direction: column; align-items: center; gap: 14px; }

#tg-334-wrapper .tg-334-story__frame {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 36px; padding: 10px;
    box-shadow: 0 20px 48px rgba(0,0,0,.45), inset 0 2px 4px rgba(255,255,255,.06);
    width: 230px;
}
#tg-334-wrapper .tg-334-story__screen {
    border-radius: 28px; height: 400px;
    background: linear-gradient(160deg, #0c4a6e 0%, #1e1b4b 60%, #831843 100%);
    position: relative; overflow: hidden;
    display: flex; flex-direction: column;
}

/* 스토리 헤더 */
#tg-334-wrapper .tg-334-story__header {
    padding: 14px 12px 8px; z-index: 2; position: relative;
}
#tg-334-wrapper .tg-334-story__progress {
    height: 3px; background: rgba(255,255,255,.22);
    border-radius: 999px; margin-bottom: 10px;
}
#tg-334-wrapper .tg-334-story__progress-bar {
    height: 100%; width: 45%; background: #fff;
    border-radius: 999px;
}
#tg-334-wrapper .tg-334-story__user {
    display: flex; align-items: center; gap: 8px;
}
#tg-334-wrapper .tg-334-story__avatar {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--sky-500); color: #fff;
    font-size: .75rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #fff;
}
#tg-334-wrapper .tg-334-story__name {
    font-size: .82rem; font-weight: 700; color: #fff;
}

/* 배경 도시 */
#tg-334-wrapper .tg-334-story__bg-area {
    flex: 1; display: flex; align-items: flex-end; justify-content: center;
    padding-bottom: 40px; font-size: 4rem; opacity: .2;
}

/* 위젯 드롭 영역 */
#tg-334-wrapper .tg-334-story__widgets {
    position: absolute; inset: 0; pointer-events: none;
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 8px; padding: 60px 12px 60px;
}

/* 스토리 위 위젯 아이템 */
#tg-334-wrapper .tg-334-story__widget-item {
    background: rgba(0,0,0,.45); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 10px; padding: 8px 14px;
    font-size: .78rem; font-weight: 700; color: #fff;
    display: flex; align-items: center; gap: 7px;
    animation: tg334WidgetPop .25s cubic-bezier(.175,.885,.32,1.275) both;
    pointer-events: none;
}
@keyframes tg334WidgetPop {
    from { opacity: 0; transform: scale(.6) translateY(10px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
#tg-334-wrapper .tg-334-story__widget-item .tg-334-story__widget-icon { font-size: 1.15rem; }

/* 힌트 텍스트 */
#tg-334-wrapper .tg-334-story__hint {
    position: absolute; bottom: 12px; left: 0; right: 0;
    font-size: .72rem; color: rgba(255,255,255,.42);
    text-align: center; line-height: 1.5;
    margin-bottom: 0 !important;
    padding: 0 12px;
}

/* 데모 컨트롤 패널 */
#tg-334-wrapper .tg-334-demo__panel {
    display: flex; flex-direction: column; gap: 16px;
    width: 100%; max-width: 300px; text-align: left;
}
#tg-334-wrapper .tg-334-demo__panel-title {
    font-size: var(--fs-base); font-weight: 800;
    color: #fff;
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 4px !important;
}
#tg-334-wrapper .tg-334-demo__panel-title .material-symbols-outlined { font-size: 1.2rem; color: var(--sky-400); }

#tg-334-wrapper .tg-334-widget-btns {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
#tg-334-wrapper .tg-334-widget-btn {
    display: flex; flex-direction: column; align-items: center;
    gap: 8px; padding: 16px 10px;
    background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25);
    border-radius: 14px;
    color: #fff; font-size: var(--fs-xs);
    font-weight: 700; transition: background .2s, border-color .2s, transform .15s;
}
#tg-334-wrapper .tg-334-widget-btn:hover {
    background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3);
    transform: translateY(-2px);
}
#tg-334-wrapper .tg-334-widget-btn.is-active {
    background: rgba(56,189,248,.18); border-color: var(--sky-400);
    color: var(--sky-400);
}
#tg-334-wrapper .tg-334-widget-btn__icon { font-size: 1.9rem; line-height: 1; }
#tg-334-wrapper .tg-334-widget-btn__text { font-size: .75rem; }

#tg-334-wrapper .tg-334-reset-btn {
    display: flex; align-items: center; justify-content: center;
    gap: 6px; padding: 12px; width: 100%;
    background: transparent; border: 1px solid rgba(239,68,68,.3);
    border-radius: 10px; color: rgba(239,68,68,.75);
    font-size: var(--fs-sm); font-weight: 700;
    transition: background .2s;
}
#tg-334-wrapper .tg-334-reset-btn:hover { background: rgba(239,68,68,.08); }
#tg-334-wrapper .tg-334-reset-btn .material-symbols-outlined { font-size: 1rem; }

/* ═════════════════════════════════════════
   기기별 탭
═════════════════════════════════════════ */
#tg-334-wrapper .tg-334-tabs {
    display: flex; gap: 6px;
    background: var(--sl-100); border-radius: var(--radius-sm);
    padding: 5px; margin-bottom: 26px; flex-wrap: wrap;
    text-align: left;
}
#tg-334-wrapper .tg-334-tab-btn {
    flex: 1; min-width: 90px;
    display: flex; align-items: center; justify-content: center; gap: 6px;
    padding: 11px 12px; border-radius: 7px;
    font-size: var(--fs-sm); font-weight: 600;
    color: var(--sl-500); transition: background .2s, color .2s, box-shadow .2s;
}
#tg-334-wrapper .tg-334-tab-btn .material-symbols-outlined { font-size: 1.15rem; }
#tg-334-wrapper .tg-334-tab-btn--active {
    background: #fff; color: var(--sky-700);
    box-shadow: 0 2px 10px rgba(0,0,0,.09); font-weight: 800;
}
#tg-334-wrapper .tg-334-tab-panel { display: none; text-align: left; animation: tg334FadeIn .3s ease; }
#tg-334-wrapper .tg-334-tab-panel--active { display: block; }

/* 탭 패널 헤더 */
#tg-334-wrapper .tg-334-tab-panel__head {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 22px; padding-bottom: 16px;
    border-bottom: 1px solid var(--sl-100);
}
#tg-334-wrapper .tg-334-tab-panel__icon {
    width: 54px; height: 54px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem; color: #fff; flex-shrink: 0;
}
#tg-334-wrapper .tg-334-tab-panel__icon--android { background: linear-gradient(135deg, #3ddc84, #00ac47); }
#tg-334-wrapper .tg-334-tab-panel__icon--ios     { background: linear-gradient(135deg, #555, #222); }
#tg-334-wrapper .tg-334-tab-panel__icon--pc      { background: linear-gradient(135deg, var(--sky-500), var(--sky-700)); }
#tg-334-wrapper .tg-334-tab-panel__name {
    font-size: var(--fs-lg); font-weight: 800; color: var(--sl-900);
    letter-spacing: -.01em; margin-bottom: 4px;
}
#tg-334-wrapper .tg-334-tab-panel__sub {
    font-size: var(--fs-sm); color: var(--sl-500); margin-bottom: 0 !important;
}

/* 단계 목록 */
#tg-334-wrapper .tg-334-steps {
    display: flex; flex-direction: column; gap: 14px;
    counter-reset: tg334step;
}
#tg-334-wrapper .tg-334-steps li {
    counter-increment: tg334step;
    display: flex; align-items: flex-start; gap: 14px;
    font-size: var(--fs-base); color: var(--text-sub); line-height: 1.75;
}
#tg-334-wrapper .tg-334-steps li::before {
    content: counter(tg334step);
    display: flex; align-items: center; justify-content: center;
    min-width: 30px; height: 30px;
    background: var(--sl-100); color: var(--sky-700);
    font-size: .82rem; font-weight: 900; border-radius: 50%;
    flex-shrink: 0; margin-top: 2px;
}
#tg-334-wrapper .tg-334-steps li strong { color: var(--sl-800); }

/* 주의 박스 */
#tg-334-wrapper .tg-334-notice-box {
    display: flex; align-items: flex-start; gap: 12px;
    background: rgba(14,165,233,.06); border: 1px solid rgba(14,165,233,.25);
    border-radius: var(--radius-sm); padding: 18px 20px;
    margin-bottom: 22px; font-size: var(--fs-base); color: var(--text-sub); line-height: 1.75;
}
#tg-334-wrapper .tg-334-notice-box .material-symbols-outlined { font-size: 1.3rem; color: var(--sky-600); flex-shrink: 0; margin-top: 2px; }

/* 팁 박스 */
#tg-334-wrapper .tg-334-tip-box {
    display: flex; align-items: flex-start; gap: 12px;
    background: rgba(251,191,36,.07); border: 1px solid rgba(251,191,36,.28);
    border-radius: var(--radius-sm); padding: 18px 20px;
    margin-top: 22px; font-size: var(--fs-base); color: var(--text-sub); line-height: 1.75;
}
#tg-334-wrapper .tg-334-tip-box .material-symbols-outlined { font-size: 1.4rem; color: var(--sun-500); flex-shrink: 0; margin-top: 2px; }

/* ═════════════════════════════════════════
   추가 위젯 섹션
═════════════════════════════════════════ */
#tg-334-wrapper .tg-334-more-cards {
    display: flex; flex-direction: column; gap: 14px;
    margin: 10px 0 24px; text-align: left;
}
#tg-334-wrapper .tg-334-more-card {
    display: flex; align-items: flex-start; gap: 18px;
    background: var(--sl-50); border: 1px solid var(--sl-200);
    border-radius: var(--radius-sm); padding: 20px;
    transition: box-shadow .25s, border-color .25s;
}
#tg-334-wrapper .tg-334-more-card:hover {
    box-shadow: var(--shadow-sm); border-color: var(--sky-400);
}
#tg-334-wrapper .tg-334-more-card__icon {
    font-size: 2rem; line-height: 1; flex-shrink: 0;
}
#tg-334-wrapper .tg-334-more-card__title {
    font-size: var(--fs-base); font-weight: 800; color: var(--sl-900);
    margin-bottom: 6px;
}
#tg-334-wrapper .tg-334-more-card__desc {
    font-size: var(--fs-base); color: var(--text-sub); line-height: 1.75;
    margin-bottom: 0 !important;
}

/* 프로 팁 박스 */
#tg-334-wrapper .tg-334-pro-box {
    background: linear-gradient(135deg, rgba(251,191,36,.08), rgba(14,165,233,.08));
    border: 1px solid rgba(251,191,36,.3); border-radius: var(--radius-sm);
    padding: 24px; text-align: left;
}
#tg-334-wrapper .tg-334-pro-box__header {
    display: flex; align-items: center; gap: 8px;
    font-size: var(--fs-base); font-weight: 800; color: var(--sun-600);
    margin-bottom: 16px;
}
#tg-334-wrapper .tg-334-pro-box__header .material-symbols-outlined { font-size: 1.3rem; }
#tg-334-wrapper .tg-334-pro-box p { color: var(--text-sub); }

/* ═════════════════════════════════════════
   결론 요약
═════════════════════════════════════════ */
#tg-334-wrapper .tg-334-summary {
    background: linear-gradient(160deg, var(--sky-900) 0%, #1e1b4b 50%, #831843 100%);
    border-radius: var(--radius-md); padding: 52px 32px; color: #fff;
    text-align: center;
}
#tg-334-wrapper .tg-334-summary__title {
    font-size: clamp(1.2rem, 3vw, 1.5rem); font-weight: 900;
    letter-spacing: -.02em; margin-bottom: 16px;
    display: flex; align-items: center; justify-content: center;
    gap: 10px; color: #fff;
}
#tg-334-wrapper .tg-334-summary__title .material-symbols-outlined { font-size: 1.6rem; color: var(--sky-400); }
#tg-334-wrapper .tg-334-summary__desc {
    color: rgba(255,255,255,.65); text-align: center;
    line-height: 1.85; margin-bottom: 32px !important;
    max-width: 560px; margin-left: auto; margin-right: auto;
}

/* 요약 리스트 */
#tg-334-wrapper .tg-334-summary__list {
    display: flex; flex-direction: column; gap: 12px;
    margin-bottom: 36px; text-align: left;
    max-width: 600px; margin-left: auto; margin-right: auto;
}
#tg-334-wrapper .tg-334-summary__list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: var(--fs-base); color: rgba(255,255,255,.8); line-height: 1.7;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-sm); padding: 14px 18px;
}
#tg-334-wrapper .tg-334-summary__list li .material-symbols-outlined {
    font-size: 1.2rem; color: var(--sky-400); flex-shrink: 0; margin-top: 2px;
}
#tg-334-wrapper .tg-334-summary__list li strong { color: #fff; }

/* 푸터 */
#tg-334-wrapper .tg-334-footer {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 28px; text-align: center;
}
#tg-334-wrapper .tg-334-footer__desc {
    color: rgba(255,255,255,.55); margin-bottom: 20px !important;
}
#tg-334-wrapper .tg-334-footer__btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--sky-500); color: #fff;
    font-size: var(--fs-base); font-weight: 800;
    padding: 15px 32px; border-radius: 999px;
    box-shadow: 0 4px 20px rgba(14,165,233,.35);
    transition: box-shadow .28s, transform .22s, background .2s;
}
#tg-334-wrapper .tg-334-footer__btn:hover {
    box-shadow: 0 8px 28px rgba(14,165,233,.55);
    transform: translateY(-3px); background: var(--sky-400);
}
#tg-334-wrapper .tg-334-footer__btn .material-symbols-outlined { font-size: 1.1rem; }

/* 공통 애니메이션 */
@keyframes tg334FadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ═════════════════════════════════════════
   반응형
═════════════════════════════════════════ */
@media (min-width: 600px) {
    #tg-334-wrapper .tg-334-cards { grid-template-columns: repeat(3, 1fr); }
    #tg-334-wrapper .tg-334-demo { flex-direction: row; align-items: flex-start; justify-content: center; gap: 48px; }
}

@media (min-width: 900px) {
    #tg-334-wrapper .tg-334-hero { padding: 80px 56px 90px; }
    #tg-334-wrapper .tg-334-section, #tg-334-wrapper .tg-334-intro { padding: 52px 48px; }
    #tg-334-wrapper .tg-334-summary { padding: 60px 56px; }
}
