/* 팜시크릿 — 팜스레터 (모던 매거진 큐레이션)
 * 베이스: common.css
 * 톤: 화이트 배경, 미니멀 라인, 카드 둥근 모서리, 호버 시 떠오름
 * 레퍼런스: openads.co.kr/popular
 */

/* ═════════════════════════════════════════════
   1. 페이지 헤더 — used/jobs 톤 통일 (단일 라인)
   ═════════════════════════════════════════════ */
.lt-pagehead-inner {
  flex-direction: row !important;
  align-items: baseline;
  gap: 12px;
  padding: 28px 0 !important;
  flex-wrap: wrap;
}
.lt-pagehead .tk-pagetitle {
  white-space: nowrap;
  flex-shrink: 0;
}
.lt-pagetitle-meta {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 13.5px;
  font-weight: 500;
  color: #6b7280;
  letter-spacing: -0.005em;
}
.lt-pagetitle-meta strong {
  color: var(--color-brand-dark);
  font-weight: 700;
}
.lt-pagetitle-sep { color: #d1d5db; padding: 0 2px; }
@media (max-width: 640px) {
  .lt-pagehead-inner { padding: 22px 0 !important; gap: 6px; }
  .lt-pagehead .tk-pagetitle { font-size: 24px; }
  .lt-pagetitle-meta { font-size: 12.5px; width: 100%; }
}
  
  /* ═════════════════════════════════════════════
     2. Hero: AI 인기 영상
     ═════════════════════════════════════════════ */
  .lt-hero-wrap {
    padding: 8px 0 28px;
  }
  .lt-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: #2a2a30;
    border-radius: 16px;
    overflow: hidden;
    color: #f5f3ee;
    position: relative;
  }
  @media (min-width: 880px) {
    .lt-hero {
      grid-template-columns: 1.55fr 1fr;
      /* 좌측(영상) 높이가 row 기준이 되도록 우측은 별도 max-height 부여 */
      align-items: start;
    }
  }
  .lt-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at top right, rgba(254,105,27,0.07), transparent 60%),
      radial-gradient(ellipse at bottom left, rgba(254,105,27,0.04), transparent 60%);
    pointer-events: none;
    z-index: 0;
  }
  
  .lt-hero-main {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
  }
  
  .lt-hero-player {
    position: relative;
    display: block;
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
    text-decoration: none;
    z-index: 1;
  }
  .lt-hero-player img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.82;
    transition: opacity 0.3s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .lt-hero-player:hover img { opacity: 1; transform: scale(1.03); }
  .lt-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
    pointer-events: none;
  }
  .lt-hero-play {
    position: absolute;
    left: 50%; top: 50%;
    width: 84px; height: 84px;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-brand);
    color: #fff;
    border-radius: 9999px;
    box-shadow: 0 16px 40px rgba(254,105,27,0.5);
    transition: transform 0.2s ease, background 0.2s ease;
  }
  .lt-hero-play svg { margin-left: 4px; }
  .lt-hero-player:hover .lt-hero-play {
    transform: translate(-50%, -50%) scale(1.08);
    background: var(--color-brand-dark);
  }
  .lt-hero-dur {
    position: absolute;
    right: 14px; bottom: 14px;
    padding: 5px 10px;
    background: rgba(0,0,0,0.78);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 4px;
  }
  .lt-hero-flag {
    position: absolute;
    left: 14px; top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px 5px 9px;
    background: rgba(220, 38, 38, 0.95);
    color: #fff;
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    border-radius: 4px;
  }
  .lt-hero-flag-dot {
    width: 7px; height: 7px;
    border-radius: 9999px;
    background: #fff;
    box-shadow: 0 0 0 0 rgba(255,255,255,0.85);
    animation: lt-pulse 1.6s ease-out infinite;
  }
  @keyframes lt-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.85); }
    70%  { box-shadow: 0 0 0 6px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
  }

  /* 유튜브 iframe 활성 상태 — facade → embed */
  .lt-hero-player.is-playing > img,
  .lt-hero-player.is-playing > .lt-hero-overlay,
  .lt-hero-player.is-playing > .lt-hero-play,
  .lt-hero-player.is-playing > .lt-hero-dur,
  .lt-hero-player.is-playing > .lt-hero-flag { display: none; }
  .lt-hero-player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: inherit;
  }
  
  .lt-hero-body {
    position: relative;
    z-index: 1;
    padding: 24px 26px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  @media (min-width: 880px) {
    .lt-hero-body { padding: 32px 30px; }
  }
  .lt-hero-title {
    font-family: var(--font-display);
    font-size: clamp(19px, 2vw, 22px);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 4px;
  }
  .lt-hero-desc {
    font-size: 13.5px;
    color: rgba(245,243,238,0.72);
    line-height: 1.6;
    margin: 0;
  }

  /* 출처/채널 메타 (유튜브 + MBC뉴스 + 게시일 + 조회수) */
  .lt-hero-source {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 6px;
  }
  .lt-hero-source-yt {
    width: 22px; height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    flex-shrink: 0;
  }
  .lt-hero-source-yt svg { width: 22px; height: 16px; }
  .lt-hero-source-meta {
    font-size: 12px;
    color: rgba(245,243,238,0.7);
    letter-spacing: -0.005em;
    font-weight: 500;
  }
  .lt-hero-watch {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    padding: 7px 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    border-radius: 8px;
    letter-spacing: -0.005em;
    transition: background 0.15s ease, border-color 0.15s ease;
  }
  .lt-hero-watch:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.3);
  }
  
  /* Hero 우측 — 이번 주 인기 콘텐츠 */
  .lt-hero-side {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.04);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 22px 18px;
  }
  @media (min-width: 880px) {
    .lt-hero-side {
      border-top: 0;
      border-left: 1px solid rgba(255,255,255,0.08);
      padding: 26px 24px 22px;
      /* 좌측 .lt-hero-main 높이 기준으로 JS가 --lt-hero-h 주입,
         넘치는 인기 콘텐츠는 .lt-hero-pop 내부 스크롤로 처리 */
      align-self: stretch;
      max-height: var(--lt-hero-h, 100%);
      overflow: hidden;
      min-height: 0;
      box-sizing: border-box;
    }
  }
  .lt-hero-side-head {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(255,255,255,0.12);
  }
  .lt-hero-side-label {
    font-family: var(--font-label);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #fed7aa;
    text-transform: uppercase;
  }
  .lt-hero-side-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: #fff;
    margin: 0;
  }
  .lt-hero-pop {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
  }
  .lt-hero-pop::-webkit-scrollbar { width: 6px; }
  .lt-hero-pop::-webkit-scrollbar-track { background: transparent; }
  .lt-hero-pop::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.15);
    border-radius: 9999px;
  }
  .lt-hero-pop::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.28); }
  .lt-hero-pop-item {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px 8px;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease;
    min-width: 0;
  }
  .lt-hero-pop-item:hover {
    background: rgba(255,255,255,0.06);
  }
  .lt-hero-pop-thumb {
    display: block;
    width: 84px;
    aspect-ratio: 4/3;
    border-radius: 6px;
    overflow: hidden;
    background: #1a1a1a;
  }
  .lt-hero-pop-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.85;
    transition: opacity 0.15s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .lt-hero-pop-item:hover .lt-hero-pop-thumb img {
    opacity: 1;
    transform: scale(1.05);
  }
  .lt-hero-pop-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
  }
  .lt-hero-pop-cat {
    align-self: flex-start;
    padding: 2px 6px !important;
    font-size: 10px !important;
    font-weight: 700;
    border-radius: 4px;
  }
  .lt-hero-pop-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: rgba(255,255,255,0.92);
    letter-spacing: -0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .lt-hero-pop-item:hover .lt-hero-pop-title { color: #fed7aa; }
  .lt-hero-pop-meta {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: rgba(255,255,255,0.5);
  }
  
  /* 모바일 — 인기 콘텐츠 좌우 슬라이드 */
  @media (max-width: 879px) {
    .lt-hero-pop {
      flex-direction: row;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      margin: 0 -22px;
      padding: 4px 22px 6px;
      gap: 12px;
      scrollbar-width: none;
    }
    .lt-hero-pop::-webkit-scrollbar { display: none; }
    .lt-hero-pop-item {
      flex: 0 0 220px;
      grid-template-columns: 1fr;
      grid-template-rows: auto auto;
      gap: 8px;
      padding: 8px;
      background: rgba(255,255,255,0.04);
      scroll-snap-align: start;
    }
    .lt-hero-pop-item:hover { background: rgba(255,255,255,0.08); }
    .lt-hero-pop-thumb {
      width: 100%;
      aspect-ratio: 16/10;
      border-radius: 6px;
    }
    .lt-hero-pop-title {
      -webkit-line-clamp: 2;
    }
  }
  
  /* ═════════════════════════════════════════════
     3. 카테고리 칩 + 검색
     ═════════════════════════════════════════════ */
  .lt-filter-wrap {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #eef0f3;
    padding: 14px 0;
    margin-bottom: 22px;
  }
  .lt-filter-inner {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .lt-chips {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 2px 0;
    min-width: 0;
  }
  .lt-chips::-webkit-scrollbar { display: none; }
  .lt-chip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: #f4f5f7;
    border: 1px solid transparent;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 500;
    color: #4b5563;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.15s ease;
  }
  .lt-chip:hover {
    background: #e5e7eb;
    color: #111827;
  }
  .lt-chip em {
    font-style: normal;
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 600;
    color: #9ca3af;
  }
  .lt-chip:hover em { color: #6b7280; }
  .lt-chip.is-active {
    background: #111827;
    color: #fff;
  }
  .lt-chip.is-active em { color: rgba(255,255,255,0.65); }
  .lt-chip-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: inline-block;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.08));
  }
  .lt-chip.is-active .lt-chip-icon {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18));
  }
  
  .lt-search {
    display: flex;
    align-items: stretch;
    height: 36px;
    background: #f4f5f7;
    border-radius: 9999px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid transparent;
    transition: all 0.15s ease;
  }
  .lt-search:focus-within {
    background: #fff;
    border-color: var(--color-brand);
    box-shadow: 0 0 0 3px rgba(254,105,27,0.12);
  }
  .lt-search input {
    width: 200px;
    max-width: 40vw;
    height: 100%;
    padding: 0 14px;
    border: 0;
    outline: none;
    background: transparent;
    font-size: 13px;
    font-family: var(--font-display);
  }
  .lt-search button {
    width: 40px;
    height: 100%;
    border: 0;
    background: transparent;
    color: #6b7280;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .lt-search:focus-within button { color: var(--color-brand); }
  
  @media (max-width: 640px) {
    .lt-filter-wrap { padding: 12px 0; }
    .lt-filter-inner { flex-direction: column; align-items: stretch; gap: 10px; }
    .lt-search { width: 100%; }
    .lt-search input { width: 100%; max-width: 100%; }
  }
  
  /* ═════════════════════════════════════════════
     4. 툴바 (전체수 + 정렬)
     ═════════════════════════════════════════════ */
  .lt-list-wrap { padding-bottom: 36px; }
  .lt-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    padding: 0 2px;
  }
  .lt-toolbar-left {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
  }
  .lt-toolbar-left strong {
    color: #111827;
    font-weight: 700;
    font-family: var(--font-mono);
  }
  .lt-toolbar-sub {
    font-size: 12.5px;
    color: #9ca3af;
  }
  .lt-sort {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: #f4f5f7;
    padding: 3px;
    border-radius: 9999px;
  }
  .lt-sort-btn {
    padding: 6px 14px;
    border: 0;
    background: transparent;
    font-size: 12.5px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    border-radius: 9999px;
    transition: all 0.15s ease;
  }
  .lt-sort-btn:hover { color: #111827; }
  .lt-sort-btn.is-active {
    background: #fff;
    color: #111827;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  }
  
  /* ═════════════════════════════════════════════
     5. 카드 그리드
     ═════════════════════════════════════════════ */
  .lt-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px 18px;
  }
  @media (min-width: 540px) {
    .lt-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (min-width: 880px) {
    .lt-grid { grid-template-columns: repeat(3, 1fr); gap: 30px 22px; }
  }
  @media (min-width: 1200px) {
    .lt-grid { grid-template-columns: repeat(4, 1fr); gap: 34px 22px; }
  }

  .lt-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .lt-card:hover { transform: translateY(-6px); }

  .lt-card-cover {
    position: relative;
    aspect-ratio: 16/10;
    background: #f3f4f6;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    transition: box-shadow 0.22s ease;
  }
  .lt-card:hover .lt-card-cover {
    box-shadow: 0 12px 28px rgba(15,23,42,0.14);
  }
  .lt-card-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.18) 100%);
    pointer-events: none;
    opacity: 0.6;
  }
  .lt-card-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .lt-card:hover .lt-card-cover img { transform: scale(1.06); }
  
  .lt-card-cat {
    position: absolute;
    top: 10px; left: 10px;
    padding: 4px 9px;
    border-radius: 6px;
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    background: rgba(255,255,255,0.95);
    color: #111827;
    backdrop-filter: blur(6px);
  }
  .lt-card-cat.lt-cat-news   { background: rgba(252,231,243,0.95); color: #9d174d; }
  .lt-cat-news   { background: #fce7f3; color: #9d174d; }
  .lt-card-cat.lt-cat-biz    { background: rgba(219,234,254,0.95); color: #1e40af; }
  .lt-cat-biz    { background: #dbeafe; color: #1e40af; }
  .lt-card-cat.lt-cat-re     { background: rgba(237,233,254,0.95); color: #6b21a8; }
  .lt-cat-re     { background: #ede9fe; color: #6b21a8; }
  .lt-card-cat.lt-cat-policy { background: rgba(254,243,199,0.95); color: #92400e; }
  .lt-cat-policy { background: #fef3c7; color: #92400e; }
  
  
  .lt-card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 2px;
  }
  .lt-card-title {
    font-family: var(--font-display);
    font-size: 17.5px;
    font-weight: 700;
    line-height: 1.42;
    color: #111827;
    letter-spacing: -0.018em;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.15s ease;
  }
  .lt-card:hover .lt-card-title { color: var(--color-brand-dark); }
  .lt-card-desc {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .lt-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px dashed #eef0f3;
    font-family: var(--font-display);
    font-size: 12px;
    color: #9ca3af;
    letter-spacing: -0.005em;
  }
  .lt-card-author {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #4b5563;
    font-weight: 600;
    font-size: 12.5px;
  }
  .lt-card-author-ava {
    width: 20px;
    height: 20px;
    border-radius: 9999px;
    background: linear-gradient(135deg, #fed7aa, #fb923c);
    color: #7c2d12;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
  }
  .lt-card-meta-item {
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: #9ca3af;
  }
  .lt-card-meta-sep { color: #e5e7eb; padding: 0 1px; }
  .lt-card-meta-views {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: #9ca3af;
  }
  .lt-card-meta-views svg { opacity: 0.7; }

  /* 카드 뱃지: HOT/NEW/PREMIUM */
  .lt-card-flags {
    position: absolute;
    top: 10px; right: 10px;
    display: inline-flex;
    gap: 4px;
    z-index: 2;
  }
  .lt-flag {
    display: inline-flex;
    align-items: center;
    padding: 3px 7px;
    border-radius: 5px;
    font-family: var(--font-label);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .lt-flag--hot  { background: rgba(220,38,38,0.94);  color: #fff; }
  .lt-flag--new  { background: rgba(16,185,129,0.94); color: #fff; }
  .lt-flag--prem { background: rgba(17,24,39,0.92);   color: #fed7aa; }

  /* 잠금 아이콘 (Premium 비회원) */
  .lt-card-lock {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 44px; height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(17,24,39,0.78);
    border-radius: 9999px;
    color: #fff;
    font-size: 18px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    z-index: 2;
  }
  
  .lt-empty {
    grid-column: 1 / -1;
    padding: 60px 20px;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
    background: #f9fafb;
    border-radius: 12px;
  }
  
  /* ═════════════════════════════════════════════
     6. 페이저
     ═════════════════════════════════════════════ */
  .lt-pager {
    margin-top: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
  }
  .lt-pager-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid transparent;
    background: transparent;
    color: #6b7280;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font-display);
    cursor: pointer;
    transition: all 0.15s ease;
  }
  .lt-pager-btn:hover:not(:disabled):not(.is-active) {
    background: #f4f5f7;
    color: #111827;
  }
  .lt-pager-btn.is-active {
    background: #111827;
    color: #fff;
    font-weight: 700;
  }
  .lt-pager-btn:disabled {
    color: #d1d5db;
    cursor: not-allowed;
  }
  .lt-pager-ellipsis {
    color: #9ca3af;
    padding: 0 4px;
    font-size: 13px;
  }
  
  /* ═════════════════════════════════════════════
     7. 구독 CTA 배너 (페이저 하단)
     ═════════════════════════════════════════════ */
  .lt-sub {
    margin-top: 40px;
    padding: 36px 28px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
    background:
      radial-gradient(circle at 110% -20%, rgba(254,105,27,0.22), transparent 55%),
      radial-gradient(circle at 0% 120%, rgba(254,105,27,0.10), transparent 55%),
      linear-gradient(135deg, #fff9f3 0%, #fff3e6 100%);
    border: 1px solid rgba(254,105,27,0.22);
    border-radius: 20px;
    color: #1f2937;
    position: relative;
    overflow: hidden;
  }
  .lt-sub::before {
    content: '';
    position: absolute;
    right: -40px; top: -40px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(254,105,27,0.18), transparent 70%);
    pointer-events: none;
  }
  .lt-sub::after {
    content: '✉️';
    position: absolute;
    right: 24px; top: 18px;
    font-size: 96px;
    opacity: 0.10;
    transform: rotate(-12deg);
    pointer-events: none;
  }
  @media (min-width: 880px) {
    .lt-sub {
      grid-template-columns: 1.5fr 1fr;
      gap: 36px;
      padding: 40px 44px;
    }
  }
  .lt-sub-body { position: relative; z-index: 1; }
  .lt-sub-pill {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 9999px;
    background: var(--color-brand);
    color: #fff;
    margin-bottom: 14px;
    box-shadow: 0 6px 16px rgba(254,105,27,0.28);
  }
  .lt-sub-title {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 800;
    line-height: 1.32;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
    color: #111827;
  }
  .lt-sub-title em {
    font-style: normal;
    color: var(--color-brand);
  }
  .lt-sub-desc {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
  }
  .lt-sub-stats {
    list-style: none;
    margin: 18px 0 0;
    padding: 14px 16px;
    background: rgba(255,255,255,0.7);
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px 24px;
    font-size: 12px;
    color: #6b7280;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .lt-sub-stats li {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
  }
  .lt-sub-stats strong {
    color: var(--color-brand-dark);
    font-weight: 800;
    font-family: var(--font-mono);
    font-size: 16px;
  }
  .lt-sub-form {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 8px;
    background: #fff;
    padding: 6px;
    border-radius: 14px;
    border: 1px solid rgba(254,105,27,0.22);
    box-shadow: 0 10px 30px rgba(254,105,27,0.10), 0 2px 6px rgba(0,0,0,0.04);
  }
  .lt-sub-form input {
    flex: 1;
    min-width: 0;
    height: 46px;
    padding: 0 14px;
    background: transparent;
    border: 0;
    outline: none;
    color: #111827;
    font-size: 14px;
    font-family: var(--font-display);
  }
  .lt-sub-form input::placeholder { color: #9ca3af; }
  .lt-sub-form input:focus { color: #111827; }
  .lt-sub-form button {
    height: 46px;
    padding: 0 20px;
    border: 0;
    border-radius: 10px;
    background: var(--color-brand);
    color: #fff;
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: -0.005em;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 6px 14px rgba(254,105,27,0.34);
  }
  .lt-sub-form button:hover {
    background: var(--color-brand-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(254,105,27,0.40);
  }
  .lt-sub-form button:disabled {
    opacity: 0.85;
    cursor: default;
    transform: none;
    background: #16a34a;
    box-shadow: 0 6px 14px rgba(22,163,74,0.30);
  }
  
  /* ═════════════════════════════════════════════
     8. 비회원 본문 블러 (재사용)
     ═════════════════════════════════════════════ */
  .lt-card-desc.ps-blur,
  .ps-blur {
    filter: blur(4px);
    user-select: none;
    pointer-events: none;
  }
  
  /* ═════════════════════════════════════════════
     9. 반응형 보정
     ═════════════════════════════════════════════ */
  @media (max-width: 640px) {
    .lt-hero-wrap { padding: 4px 0 20px; }
    .lt-hero-play { width: 60px; height: 60px; }
    .lt-hero-play svg { width: 24px; height: 24px; }
    .lt-toolbar { flex-wrap: wrap; }
    .lt-grid { gap: 18px 14px; }
  }
  