﻿@charset "utf-8";

/* ============================================
   텔레그램 인기 스티커 바(Trending Stickers) 가이드
   접두사: tg-trd- (기존 사이트 오염 방지)
   컬러 톤: 로얄 블루(Royal Blue) + 앰버 골드(Amber Gold)

   [중요] 그누보드5 기존 CSS 충돌 방지를 위해
   모든 셀렉터를 #tg-trd-wrapper 로 감싸 특이성 강화
============================================ */

:root {
    --trd-blue: #2563eb;
    --trd-blue-dark: #1d4ed8;
    --trd-blue-deep: #1e3a5f;
    --trd-blue-light: #eff6ff;
    --trd-blue-border: #93c5fd;
    --trd-amber: #d97706;
    --trd-amber-dark: #b45309;
    --trd-amber-deep: #78350f;
    --trd-amber-light: #fffbeb;
    --trd-amber-border: #fcd34d;
    --trd-green: #059669;
    --trd-green-light: #d1fae5;
    --trd-green-border: #6ee7b7;
    --trd-slate-900: #0f172a;
    --trd-slate-700: #334155;
    --trd-slate-500: #64748b;
    --trd-slate-300: #cbd5e1;
    --trd-slate-200: #e2e8f0;
    --trd-slate-100: #f1f5f9;
    --trd-bg: #f8faff;
    --trd-white: #ffffff;
    --trd-radius: 14px;
}

/* ============================================
   그누보드5 기존 CSS 충돌 방지용 완전 리셋
============================================ */
#tg-trd-wrapper,
#tg-trd-wrapper *,
#tg-trd-wrapper *::before,
#tg-trd-wrapper *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    text-decoration: none;
    list-style: none;
    background: none;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#tg-trd-wrapper h1,
#tg-trd-wrapper h2,
#tg-trd-wrapper h3,
#tg-trd-wrapper h4,
#tg-trd-wrapper h5,
#tg-trd-wrapper h6 {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}

#tg-trd-wrapper p,
#tg-trd-wrapper span,
#tg-trd-wrapper div,
#tg-trd-wrapper section,
#tg-trd-wrapper article,
#tg-trd-wrapper header,
#tg-trd-wrapper main,
#tg-trd-wrapper footer {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font-size: inherit;
    color: inherit;
    line-height: inherit;
}

#tg-trd-wrapper ul,
#tg-trd-wrapper ol,
#tg-trd-wrapper li {
    list-style: none;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}

#tg-trd-wrapper a {
    color: inherit;
    text-decoration: none;
}

#tg-trd-wrapper img {
    max-width: 100%;
    height: auto;
    border: none;
}

#tg-trd-wrapper i {
    font-style: normal;
}

#tg-trd-wrapper strong,
#tg-trd-wrapper b {
    font-weight: 700;
}

#tg-trd-wrapper mark {
    background: none;
    color: inherit;
    padding: 0;
}

/* ─── 래퍼 ─── */
#tg-trd-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    font-family: 'Noto Sans KR', 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 16px;
    color: var(--trd-slate-500);
    background-color: var(--trd-bg);
    box-sizing: border-box;
    line-height: 1.7;
    overflow: hidden;
    padding-bottom: 60px;
    word-break: keep-all;
    overflow-wrap: break-word;
}

#tg-trd-wrapper strong {
    font-weight: 700;
    color: var(--trd-slate-900);
}

#tg-trd-wrapper mark {
    background: linear-gradient(120deg, var(--trd-amber-light) 0%, #fef3c7 100%);
    color: var(--trd-amber-deep);
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

/* ============================================
   히어로 헤더
============================================ */
#tg-trd-wrapper .tg-trd-hero {
    background: linear-gradient(145deg, #0f172a 0%, #1e3a5f 30%, #2563eb 65%, #d97706 100%);
    color: var(--trd-white);
    padding: 60px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#tg-trd-wrapper .tg-trd-hero::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border: 65px solid rgba(37, 99, 235, 0.05);
    border-radius: 50%;
    top: -110px;
    right: -110px;
    background: none;
}

#tg-trd-wrapper .tg-trd-hero::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border: 45px solid rgba(217, 119, 6, 0.04);
    border-radius: 50%;
    bottom: -70px;
    left: -55px;
    background: none;
}

#tg-trd-wrapper .tg-trd-hero__inner {
    position: relative;
    z-index: 1;
}

#tg-trd-wrapper .tg-trd-hero__icon-group {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

#tg-trd-wrapper .tg-trd-hero__icon-emoji,
#tg-trd-wrapper .tg-trd-hero__icon-sticker {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

#tg-trd-wrapper .tg-trd-hero__icon-emoji {
    background: rgba(255, 255, 255, 0.1);
    color: var(--trd-amber-border);
    border: 1px solid rgba(252, 211, 77, 0.2);
}

#tg-trd-wrapper .tg-trd-hero__icon-sticker {
    background: rgba(255, 255, 255, 0.1);
    color: var(--trd-blue-border);
    border: 1px solid rgba(147, 197, 253, 0.2);
}

#tg-trd-wrapper .tg-trd-hero__icon-arrow {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.3);
    animation: tg-trd-arrow-pulse 1.5s ease-in-out infinite;
}

#tg-trd-wrapper .tg-trd-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.2) 0%, rgba(252, 211, 77, 0.1) 100%);
    color: var(--trd-amber-border);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 22px;
    border: 1px solid rgba(252, 211, 77, 0.2);
    backdrop-filter: blur(4px);
}

#tg-trd-wrapper .tg-trd-hero__badge i {
    font-size: 14px;
    color: var(--trd-amber-border);
}

#tg-trd-wrapper .tg-trd-hero__title {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 18px;
    color: var(--trd-white);
}

#tg-trd-wrapper .tg-trd-hero__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   메인
============================================ */
#tg-trd-wrapper .tg-trd-main {
    padding: 30px 20px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* ============================================
   도입부
============================================ */
#tg-trd-wrapper .tg-trd-intro {
    background-color: var(--trd-white);
    padding: 28px 24px;
    border-radius: var(--trd-radius);
    border-left: 4px solid var(--trd-blue);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}

#tg-trd-wrapper .tg-trd-intro p {
    font-size: 16px;
    margin-bottom: 14px;
    color: var(--trd-slate-500);
    line-height: 1.7;
}

#tg-trd-wrapper .tg-trd-intro p:last-child {
    margin-bottom: 0;
}

/* ============================================
   섹션 공통
============================================ */
#tg-trd-wrapper .tg-trd-section {
    background-color: var(--trd-white);
    padding: 34px 24px;
    border-radius: var(--trd-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--trd-slate-200);
}

#tg-trd-wrapper .tg-trd-section--dark {
    background: linear-gradient(135deg, #0f172a 0%, var(--trd-blue-deep) 50%, #1d4ed8 100%);
    border-color: var(--trd-blue);
    color: var(--trd-slate-300);
}

#tg-trd-wrapper .tg-trd-section__head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

#tg-trd-wrapper .tg-trd-section__num {
    font-size: 38px;
    font-weight: 900;
    color: var(--trd-blue);
    opacity: 0.2;
    line-height: 1;
    flex-shrink: 0;
}

#tg-trd-wrapper .tg-trd-section__tip-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--trd-amber) 0%, #f59e0b 100%);
    color: var(--trd-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

#tg-trd-wrapper .tg-trd-section__title {
    font-size: 20px;
    font-weight: 800;
    color: var(--trd-slate-900);
    line-height: 1.35;
    padding-top: 6px;
}

#tg-trd-wrapper .tg-trd-section__title--light {
    color: var(--trd-white);
}

#tg-trd-wrapper .tg-trd-section__desc {
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--trd-slate-500);
    line-height: 1.7;
}

#tg-trd-wrapper .tg-trd-section__desc--light {
    color: var(--trd-blue-border);
}

#tg-trd-wrapper .tg-trd-section__desc--light strong {
    color: var(--trd-white);
}

/* ============================================
   이점 카드
============================================ */
#tg-trd-wrapper .tg-trd-benefit-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

#tg-trd-wrapper .tg-trd-benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background-color: var(--trd-slate-100);
    border-radius: 10px;
    border: 1px solid var(--trd-slate-200);
}

#tg-trd-wrapper .tg-trd-benefit-card__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--trd-blue) 0%, var(--trd-blue-dark) 100%);
    color: var(--trd-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

#tg-trd-wrapper .tg-trd-benefit-card__icon--amber {
    background: linear-gradient(135deg, var(--trd-amber) 0%, var(--trd-amber-dark) 100%);
}

#tg-trd-wrapper .tg-trd-benefit-card__icon--green {
    background: linear-gradient(135deg, var(--trd-green) 0%, #047857 100%);
}

#tg-trd-wrapper .tg-trd-benefit-card__body strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--trd-slate-900);
}

#tg-trd-wrapper .tg-trd-benefit-card__body span {
    font-size: 13px;
    color: var(--trd-slate-500);
    line-height: 1.6;
}

/* ============================================
   타임라인 (다크 섹션 내)
============================================ */
#tg-trd-wrapper .tg-trd-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

#tg-trd-wrapper .tg-trd-timeline__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 18px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(147, 197, 253, 0.1);
    border-radius: 12px;
    position: relative;
}

#tg-trd-wrapper .tg-trd-timeline__item--final {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-color: rgba(110, 231, 183, 0.15);
}

#tg-trd-wrapper .tg-trd-timeline__number {
    position: absolute;
    top: -10px;
    left: 16px;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--trd-blue) 0%, #3b82f6 100%);
    color: var(--trd-white);
    font-weight: 900;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

#tg-trd-wrapper .tg-trd-timeline__item--final .tg-trd-timeline__number {
    background: linear-gradient(135deg, var(--trd-green) 0%, #10b981 100%);
}

#tg-trd-wrapper .tg-trd-timeline__icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(147, 197, 253, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--trd-blue-border);
}

#tg-trd-wrapper .tg-trd-timeline__icon--amber {
    color: var(--trd-amber-border);
}

#tg-trd-wrapper .tg-trd-timeline__icon--done {
    background: linear-gradient(135deg, var(--trd-green) 0%, #10b981 100%);
    color: var(--trd-white);
    border-color: var(--trd-green);
}

#tg-trd-wrapper .tg-trd-timeline__body {
    flex: 1;
    padding-top: 4px;
}

#tg-trd-wrapper .tg-trd-timeline__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--trd-white);
    margin-bottom: 4px;
}

#tg-trd-wrapper .tg-trd-timeline__text {
    font-size: 14px;
    color: var(--trd-blue-border);
    line-height: 1.6;
}

#tg-trd-wrapper .tg-trd-timeline__text strong {
    color: var(--trd-white);
}

#tg-trd-wrapper .tg-trd-timeline__connector {
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, rgba(147, 197, 253, 0.2) 0%, rgba(147, 197, 253, 0.05) 100%);
    margin-left: 36px;
}

/* ============================================
   스텝 리스트
============================================ */
#tg-trd-wrapper .tg-trd-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}

#tg-trd-wrapper .tg-trd-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background-color: var(--trd-slate-100);
    padding: 16px 18px;
    border-radius: 10px;
    border-left: 3px solid var(--trd-blue-border);
    transition: border-left-color 0.2s ease;
    list-style: none;
}

#tg-trd-wrapper .tg-trd-step:hover {
    border-left-color: var(--trd-blue);
}

#tg-trd-wrapper .tg-trd-step--highlight {
    background: linear-gradient(135deg, var(--trd-green-light) 0%, #a7f3d0 100%);
    border-left-color: var(--trd-green);
}

#tg-trd-wrapper .tg-trd-step__marker {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--trd-blue) 0%, var(--trd-blue-dark) 100%);
    color: var(--trd-white);
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-top: 1px;
}

#tg-trd-wrapper .tg-trd-step__marker--highlight {
    background: linear-gradient(135deg, var(--trd-green) 0%, #10b981 100%);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

#tg-trd-wrapper .tg-trd-step__content {
    flex: 1;
}

#tg-trd-wrapper .tg-trd-step__text {
    font-size: 15px;
    padding-top: 3px;
    color: var(--trd-slate-500);
    line-height: 1.6;
}

/* ============================================
   설정 경로 비주얼
============================================ */
#tg-trd-wrapper .tg-trd-setting-visual {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
    padding: 12px 16px;
    background-color: var(--trd-white);
    border: 1px solid var(--trd-slate-200);
    border-radius: 10px;
}

#tg-trd-wrapper .tg-trd-setting-visual__item {
    font-size: 13px;
    font-weight: 600;
    color: var(--trd-slate-700);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background-color: var(--trd-slate-100);
    border-radius: 6px;
}

#tg-trd-wrapper .tg-trd-setting-visual__item i {
    color: var(--trd-slate-500);
    font-size: 12px;
}

#tg-trd-wrapper .tg-trd-setting-visual__item--active {
    background: linear-gradient(135deg, var(--trd-green-light) 0%, #a7f3d0 100%);
    color: #047857;
}

#tg-trd-wrapper .tg-trd-setting-visual__item--active i {
    color: var(--trd-green);
}

#tg-trd-wrapper .tg-trd-setting-visual__arrow {
    font-size: 10px;
    color: var(--trd-slate-300);
}

/* ============================================
   직장인 활용 팁 박스
============================================ */
#tg-trd-wrapper .tg-trd-work-tip {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 24px;
    padding: 20px 22px;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.08) 0%, rgba(252, 211, 77, 0.04) 100%);
    border: 1px solid rgba(252, 211, 77, 0.2);
    border-radius: 12px;
}

#tg-trd-wrapper .tg-trd-work-tip__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--trd-amber) 0%, #f59e0b 100%);
    color: var(--trd-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

#tg-trd-wrapper .tg-trd-work-tip__body {
    flex: 1;
}

#tg-trd-wrapper .tg-trd-work-tip__badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    color: var(--trd-amber-deep);
    background-color: var(--trd-amber-border);
    padding: 2px 12px;
    border-radius: 100px;
    margin-bottom: 8px;
}

#tg-trd-wrapper .tg-trd-work-tip__body p {
    font-size: 14px;
    color: var(--trd-slate-700);
    line-height: 1.7;
}

/* ============================================
   결론 및 요약
============================================ */
#tg-trd-wrapper .tg-trd-summary {
    background: linear-gradient(135deg, #0f172a 0%, var(--trd-blue-deep) 50%, #1d4ed8 100%);
    color: var(--trd-white);
    padding: 44px 28px;
    border-radius: var(--trd-radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.4);
}

#tg-trd-wrapper .tg-trd-summary__title {
    font-size: 24px;
    font-weight: 800;
    color: var(--trd-white);
    margin-bottom: 20px;
}

#tg-trd-wrapper .tg-trd-summary__body p {
    font-size: 16px;
    margin-bottom: 14px;
    color: var(--trd-blue-border);
    line-height: 1.7;
}

#tg-trd-wrapper .tg-trd-summary strong {
    color: var(--trd-white);
}

/* 요약 프로세스 아이콘 */
#tg-trd-wrapper .tg-trd-summary__icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 28px 0;
}

#tg-trd-wrapper .tg-trd-summary__icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--trd-blue-border);
}

#tg-trd-wrapper .tg-trd-summary__icon-circle {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(147, 197, 253, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--trd-blue-border);
    transition: transform 0.2s ease;
}

#tg-trd-wrapper .tg-trd-summary__icon-circle:hover {
    transform: scale(1.08);
}

#tg-trd-wrapper .tg-trd-summary__icon-circle--sync {
    background: linear-gradient(135deg, var(--trd-amber) 0%, #f59e0b 100%);
    color: var(--trd-white);
    border-color: var(--trd-amber);
}

#tg-trd-wrapper .tg-trd-summary__icon-circle--done {
    background: linear-gradient(135deg, var(--trd-green) 0%, #10b981 100%);
    color: var(--trd-white);
    border-color: var(--trd-green);
}

#tg-trd-wrapper .tg-trd-summary__icon-arrow {
    color: rgba(147, 197, 253, 0.3);
    font-size: 14px;
}

/* 체크리스트 */
#tg-trd-wrapper .tg-trd-summary__checklist {
    list-style: none;
    display: inline-block;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 24px 32px;
    border-radius: 12px;
    margin: 0 0 24px;
}

#tg-trd-wrapper .tg-trd-summary__checklist li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #dbeafe;
    line-height: 1.6;
    list-style: none;
}

#tg-trd-wrapper .tg-trd-summary__checklist li:last-child {
    margin-bottom: 0;
}

#tg-trd-wrapper .tg-trd-summary__checklist li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 13px;
    color: var(--trd-amber-border);
}

#tg-trd-wrapper .tg-trd-summary__checklist strong {
    color: var(--trd-white);
}

#tg-trd-wrapper .tg-trd-summary__footer {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    color: var(--trd-blue-border);
    line-height: 1.8;
}

#tg-trd-wrapper .tg-trd-summary__footer strong {
    color: var(--trd-white);
}

/* ============================================
   애니메이션 키프레임
============================================ */
@keyframes tg-trd-arrow-pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: translateX(0);
    }

    50% {
        opacity: 0.8;
        transform: translateX(4px);
    }
}

/* ============================================
   반응형 미디어 쿼리 (모바일 퍼스트)
============================================ */
@media (min-width: 768px) {
    #tg-trd-wrapper .tg-trd-hero {
        padding: 80px 40px;
    }

    #tg-trd-wrapper .tg-trd-hero__title {
        font-size: 38px;
    }

    #tg-trd-wrapper .tg-trd-main {
        padding: 40px 36px 0;
        gap: 40px;
    }

    #tg-trd-wrapper .tg-trd-intro {
        padding: 36px 32px;
    }

    #tg-trd-wrapper .tg-trd-section {
        padding: 40px 36px;
    }

    #tg-trd-wrapper .tg-trd-section__title {
        font-size: 24px;
    }

    #tg-trd-wrapper .tg-trd-section__num {
        font-size: 44px;
    }

    /* 이점 카드 3열 */
    #tg-trd-wrapper .tg-trd-benefit-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    #tg-trd-wrapper .tg-trd-summary {
        padding: 56px 44px;
    }
}

@media (min-width: 1024px) {
    #tg-trd-wrapper .tg-trd-hero__title {
        font-size: 44px;
    }

    #tg-trd-wrapper .tg-trd-main {
        gap: 46px;
    }
}

/* ============================================
   스크롤 등장 애니메이션 (JS 연동)
============================================ */
#tg-trd-wrapper .tg-trd-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-trd-wrapper .tg-trd-motion.is-visible {
    opacity: 1;
    transform: translateY(0);
}
