/* =====================================================================
   The Entertainment Globe — main.css
   Hollywood Reporter clone for theentertainmentglobe.com
   ===================================================================== */

/* ─── Design Tokens ──────────────────────────────────────────── */
:root {
  /* Colors */
  --teg-red:            #c41230;
  --teg-red-dark:       #9b0f26;
  --teg-black:          #0a0a0a;
  --teg-nav:            #000000;
  --teg-gold:           #b8860b;
  --teg-gold-light:     #d4af37;
  --teg-text:           #1a1a1a;
  --teg-text-muted:     #666666;
  --teg-text-light:     #999999;
  --teg-bg:             #ffffff;
  --teg-bg-alt:         #f9f8f6;
  --teg-bg-section:     #f4f2ef;
  --teg-border:         #e8e6e0;
  --teg-border-dark:    #d0cdc6;
  --teg-cover-badge:    #c41230;
  --teg-shadow:         0 1px 4px rgba(0,0,0,.08);
  --teg-shadow-md:      0 4px 16px rgba(0,0,0,.10);

  /* Typography */
  --teg-font-display: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  --teg-font-serif:   'Source Serif 4', 'Georgia', serif;
  --teg-font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --teg-max-w:        1200px;
  --teg-nav-h:        0px;
  --teg-pad:          16px;
}

/* ─── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--teg-font-sans); font-size: 15px; line-height: 1.6; color: var(--teg-text); background: var(--teg-bg); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--teg-red); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ─── Container ──────────────────────────────────────────────── */
.teg-container { max-width: var(--teg-max-w); margin: 0 auto; padding: 0 var(--teg-pad); }

/* ─── Utility Bar ────────────────────────────────────────────── */
.teg-utility-bar {
  background: var(--teg-bg);
  border-bottom: 1px solid var(--teg-border);
  padding: 6px 0;
  font-size: 12px;
  font-family: var(--teg-font-sans);
}
.teg-utility-bar__inner { display: flex; justify-content: space-between; align-items: center; }
.teg-utility-bar__left, .teg-utility-bar__right { display: flex; align-items: center; gap: 18px; }
.teg-utility-bar__center { color: var(--teg-text-muted); font-size: 11px; letter-spacing: .04em; }
.teg-utility-bar__link { color: var(--teg-text-muted); transition: color .15s; font-weight: 500; }
.teg-utility-bar__link:hover { color: var(--teg-red); }
.teg-utility-bar__subscribe {
  background: var(--teg-red);
  color: #fff;
  padding: 4px 12px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .15s;
}
.teg-utility-bar__subscribe:hover { background: var(--teg-red-dark); color: #fff; }

/* ─── Masthead ───────────────────────────────────────────────── */
.teg-masthead {
  background: var(--teg-bg);
  padding: 20px 0 16px;
  border-bottom: 2px solid var(--teg-black);
  text-align: center;
  position: relative;
}
.teg-masthead__inner { display: flex; align-items: center; justify-content: space-between; position: relative; }
.teg-masthead__logo-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; }

/* Logo — THR's defining editorial wordmark */
.teg-logo { display: inline-flex; flex-direction: column; align-items: center; text-decoration: none; line-height: 1; }
.teg-logo__the {
  font-family: var(--teg-font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--teg-text-muted);
  margin-bottom: 2px;
}
.teg-logo__name {
  font-family: var(--teg-font-display);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -.5px;
  color: var(--teg-black);
  line-height: 1;
}
.teg-masthead__tagline {
  font-size: 11px;
  font-family: var(--teg-font-sans);
  color: var(--teg-text-light);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.teg-masthead__actions { display: flex; align-items: center; gap: 12px; position: absolute; right: var(--teg-pad); top: 50%; transform: translateY(-50%); }
.teg-masthead__icon-btn { color: var(--teg-text-muted); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background .15s, color .15s; }
.teg-masthead__icon-btn:hover { background: var(--teg-bg-section); color: var(--teg-text); }
.teg-masthead__subscribe-btn {
  display: none;
  background: var(--teg-black);
  color: #fff;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background .15s;
}
.teg-masthead__subscribe-btn:hover { background: var(--teg-red); color: #fff; }

.teg-hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; width: 38px; height: 38px; justify-content: center; align-items: center; position: absolute; left: var(--teg-pad); top: 50%; transform: translateY(-50%); }
.teg-hamburger span { display: block; width: 22px; height: 2px; background: var(--teg-black); border-radius: 2px; transition: transform .2s, opacity .2s; }

/* ─── Search Overlay ─────────────────────────────────────────── */
.teg-search-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.7); z-index: 9999; display: flex; align-items: flex-start; opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s; }
.teg-search-overlay.is-open { opacity: 1; visibility: visible; }
.teg-search-overlay__panel { width: 100%; background: var(--teg-bg); padding: 36px 0; }
.teg-search-overlay__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.teg-search-overlay__title { font-family: var(--teg-font-display); font-size: 22px; font-weight: 700; }
.teg-search-overlay__close { color: var(--teg-text-muted); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background .15s; }
.teg-search-overlay__close:hover { background: var(--teg-bg-section); color: var(--teg-text); }
.teg-search-overlay__hints { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.teg-search-overlay__hints-label { font-size: 12px; color: var(--teg-text-muted); font-weight: 500; }
.teg-search-overlay__hint { font-size: 12px; padding: 4px 10px; background: var(--teg-bg-section); border: 1px solid var(--teg-border); border-radius: 20px; color: var(--teg-text-muted); transition: background .12s, color .12s, border-color .12s; }
.teg-search-overlay__hint:hover { background: var(--teg-red); border-color: var(--teg-red); color: #fff; }

/* Search form */
.teg-search-form { display: flex; align-items: center; border-bottom: 2px solid var(--teg-black); }
.teg-search-form__input { flex: 1; height: 54px; border: none; font-family: var(--teg-font-display); font-size: 22px; font-weight: 400; color: var(--teg-text); outline: none; background: transparent; }
.teg-search-form__input::placeholder { color: var(--teg-text-light); }
.teg-search-form__btn { width: 54px; height: 54px; display: flex; align-items: center; justify-content: center; color: var(--teg-text-muted); transition: color .15s; flex-shrink: 0; }
.teg-search-form__btn:hover { color: var(--teg-red); }

/* ─── Primary Nav ────────────────────────────────────────────── */
.teg-nav-wrap { background: var(--teg-nav); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(255,255,255,.1); }
.teg-nav__inner { display: flex; align-items: center; height: 42px; gap: 8px; }
.teg-nav__mega-btn { display: flex; align-items: center; gap: 6px; color: #d1d5db; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 0 12px 0 0; border-right: 1px solid rgba(255,255,255,.15); margin-right: 4px; height: 100%; flex-shrink: 0; transition: color .15s; }
.teg-nav__mega-btn:hover { color: #fff; }
.teg-nav__mega-btn.is-open { color: var(--teg-gold-light); }
.teg-nav__list { display: flex; align-items: stretch; overflow-x: auto; scrollbar-width: none; flex: 1; }
.teg-nav__list::-webkit-scrollbar { display: none; }
.teg-nav__item { display: flex; align-items: stretch; }
.teg-nav__link {
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--teg-font-sans);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #9ca3af;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.teg-nav__link:hover,
.teg-nav__item.is-current .teg-nav__link { color: #fff; border-bottom-color: var(--teg-red); }
.teg-nav__search-btn { color: #9ca3af; display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; transition: color .15s; flex-shrink: 0; }
.teg-nav__search-btn:hover { color: #fff; }

/* ─── Mega Panel ─────────────────────────────────────────────── */
.teg-mega-panel {
  background: var(--teg-bg);
  border-bottom: 3px solid var(--teg-red);
  box-shadow: var(--teg-shadow-md);
  position: relative;
  z-index: 99;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.teg-mega-panel.is-open { max-height: 600px; }
.teg-mega-panel__inner { display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; padding: 32px 0 40px; }
.teg-mega-panel__col-title { font-family: var(--teg-font-sans); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--teg-text-muted); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid var(--teg-border); }
.teg-mega-panel__link { display: block; font-size: 13px; font-weight: 500; color: var(--teg-text); padding: 5px 0; border-bottom: 1px solid var(--teg-border); transition: color .12s, padding-left .12s; }
.teg-mega-panel__link:hover { color: var(--teg-red); padding-left: 4px; }
.teg-mega-panel__col--featured { background: var(--teg-bg-section); padding: 20px; border-radius: 4px; }
.teg-mega-panel__newsletter-desc { font-size: 13px; color: var(--teg-text-muted); line-height: 1.6; margin-bottom: 16px; }
.teg-mega-panel__newsletter-btn { display: inline-block; background: var(--teg-red); color: #fff; padding: 9px 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; border-radius: 2px; transition: background .15s; }
.teg-mega-panel__newsletter-btn:hover { background: var(--teg-red-dark); color: #fff; }
.teg-mega-panel__close { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--teg-text-muted); padding: 6px 16px; border: 1px solid var(--teg-border); border-radius: 20px; transition: color .15s; }
.teg-mega-panel__close:hover { color: var(--teg-red); border-color: var(--teg-red); }

/* ─── Badges ─────────────────────────────────────────────────── */
.teg-badges { display: inline-flex; gap: 4px; }
.teg-badge {
  display: inline-flex; align-items: center;
  padding: 2px 8px;
  border-radius: 2px;
  font-size: 10px;
  font-family: var(--teg-font-sans);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.7;
}
.teg-badge--breaking  { background: var(--teg-red);   color: #fff; }
.teg-badge--cover     { background: var(--teg-black); color: #fff; }
.teg-badge--exclusive { background: var(--teg-gold);  color: #fff; }
.teg-badge--premium   { background: #2d2d2d;           color: #d4af37; }

/* ─── Labels ─────────────────────────────────────────────────── */
.teg-label {
  display: inline-block;
  font-family: var(--teg-font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teg-red);
  text-decoration: none;
  margin-bottom: 5px;
}
.teg-label:hover { text-decoration: underline; text-underline-offset: 2px; color: var(--teg-red-dark); }
.teg-label--sm  { font-size: 10px; letter-spacing: .08em; }
.teg-label--lg  { font-size: 12px; }
.teg-label--hero { color: #fff; letter-spacing: .12em; font-size: 12px; }
.teg-label--hero:hover { color: rgba(255,255,255,.8); }
.teg-label--review { color: var(--teg-gold); }

/* ─── Star Ratings ───────────────────────────────────────────── */
.teg-stars { display: inline-flex; gap: 2px; align-items: center; }
.teg-star { font-size: 16px; line-height: 1; }
.teg-star--full { color: var(--teg-gold); }
.teg-star--half { color: var(--teg-gold); opacity: .6; }
.teg-star--empty { color: var(--teg-border-dark); }

/* ─── Section Head ───────────────────────────────────────────── */
.teg-section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 2px solid var(--teg-black);
  padding-bottom: 8px;
  margin-bottom: 20px;
}
.teg-section-head__title {
  font-family: var(--teg-font-sans);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teg-black);
}
.teg-section-head__more {
  font-size: 11px;
  font-weight: 600;
  color: var(--teg-red);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.teg-section-head__more:hover { text-decoration: underline; color: var(--teg-red-dark); }

/* ─── Byline ─────────────────────────────────────────────────── */
.teg-byline { display: inline-flex; align-items: center; gap: 4px; }
.teg-byline__by { font-size: 12px; color: var(--teg-text-muted); font-style: italic; font-family: var(--teg-font-serif); }
.teg-byline__name { font-size: 12px; font-weight: 600; color: var(--teg-text-muted); font-family: var(--teg-font-sans); transition: color .15s; }
.teg-byline__name:hover { color: var(--teg-red); }
.teg-byline__avatar { border-radius: 50%; }
.teg-time-ago { font-size: 11px; color: var(--teg-text-light); font-family: var(--teg-font-sans); }
.teg-date { font-size: 12px; color: var(--teg-text-muted); font-family: var(--teg-font-sans); }

/* ─── Hero Section ───────────────────────────────────────────── */
.teg-hero { position: relative; background: var(--teg-black); overflow: hidden; }
.teg-hero__inner { position: relative; min-height: 520px; display: flex; flex-direction: column; justify-content: flex-end; }
.teg-hero__image-wrap { position: absolute; inset: 0; }
.teg-hero__image { width: 100%; height: 100%; object-fit: cover; }
.teg-hero__image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.45) 40%, rgba(0,0,0,.1) 70%, transparent 100%); }
.teg-hero__body { position: relative; z-index: 2; padding: 40px 0 32px; }
.teg-hero__cover-badge { margin-bottom: 10px; display: inline-block; }
.teg-hero__title {
  font-family: var(--teg-font-display);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  max-width: 800px;
  margin: 8px 0 14px;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.teg-hero__title a { color: #fff; }
.teg-hero__title a:hover { color: rgba(255,255,255,.85); }
.teg-hero__deck { font-size: 17px; color: rgba(255,255,255,.85); max-width: 600px; margin-bottom: 12px; line-height: 1.5; font-family: var(--teg-font-serif); font-style: italic; }
.teg-hero__meta { display: flex; align-items: center; gap: 8px; }
.teg-hero__meta .teg-byline__by { color: rgba(255,255,255,.7); }
.teg-hero__meta .teg-byline__name { color: rgba(255,255,255,.9); }

/* ─── Subscribe Banner ───────────────────────────────────────── */
.teg-subscribe-banner { background: var(--teg-bg-section); border-bottom: 1px solid var(--teg-border); padding: 12px 0; }
.teg-subscribe-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.teg-subscribe-banner__text { font-size: 14px; color: var(--teg-text-muted); font-family: var(--teg-font-serif); font-style: italic; }
.teg-subscribe-banner__btn { display: flex; align-items: center; gap: 8px; background: var(--teg-black); color: #fff; padding: 8px 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; border-radius: 2px; white-space: nowrap; transition: background .15s; }
.teg-subscribe-banner__btn:hover { background: var(--teg-red); color: #fff; }

/* ─── Leader Cards (3-col below hero) ───────────────────────── */
.teg-leaders { padding: 32px 0; border-bottom: 1px solid var(--teg-border); }
.teg-leaders__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.teg-leader-card {}
.teg-leader-card__img-wrap { display: block; overflow: hidden; margin-bottom: 12px; position: relative; aspect-ratio: 16/10; }
.teg-leader-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.teg-leader-card__img-wrap:hover .teg-leader-card__img { transform: scale(1.03); }
.teg-leader-card__body {}
.teg-leader-card__title {
  font-family: var(--teg-font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin: 6px 0 8px;
  color: var(--teg-text);
}
.teg-leader-card__title a:hover { color: var(--teg-red); }
.teg-leader-card__deck { font-size: 14px; color: var(--teg-text-muted); font-family: var(--teg-font-serif); line-height: 1.5; margin-bottom: 8px; }
.teg-leader-card__meta { margin-top: 8px; }

/* ─── Latest Section ─────────────────────────────────────────── */
.teg-latest-section { padding: 32px 0; background: var(--teg-bg); border-bottom: 1px solid var(--teg-border); }
.teg-latest-layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 40px; align-items: start; }
.teg-latest-main {}
.teg-latest-sidebar { position: sticky; top: calc(var(--teg-nav-h) + 16px); }
.teg-latest-list { display: flex; flex-direction: column; }
.teg-latest-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--teg-border);
}
.teg-latest-item:first-child { border-top: 1px solid var(--teg-border); }
.teg-latest-item__body { flex: 1; min-width: 0; }
.teg-latest-item__meta-top { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; }
.teg-latest-item__time { font-size: 11px; color: var(--teg-text-light); font-family: var(--teg-font-sans); margin-left: auto; }
.teg-latest-item__title {
  font-family: var(--teg-font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;
  color: var(--teg-text);
}
.teg-latest-item__title a:hover { color: var(--teg-red); }
.teg-latest-item__stars { margin-bottom: 4px; }
.teg-latest-item__byline {}
.teg-latest-item__thumb-wrap { flex-shrink: 0; width: 120px; }
.teg-latest-item__thumb { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: 2px; }

/* ─── Vertical Sections (Film, TV, Music, Awards) ────────────── */
.teg-vertical-section { padding: 32px 0; border-bottom: 1px solid var(--teg-border); }
.teg-vertical-section--alt { background: var(--teg-bg-alt); }
.teg-vertical-layout { display: grid; grid-template-columns: minmax(0,1.4fr) minmax(0,1fr); gap: 32px; }
.teg-vertical-lead {}
.teg-vertical-lead__img-wrap { display: block; overflow: hidden; margin-bottom: 12px; position: relative; }
.teg-vertical-lead__img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .3s; }
.teg-vertical-lead__img-wrap:hover .teg-vertical-lead__img { transform: scale(1.03); }
.teg-vertical-lead__body {}
.teg-vertical-lead__title {
  font-family: var(--teg-font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin: 6px 0 8px;
}
.teg-vertical-lead__title a:hover { color: var(--teg-red); }
.teg-vertical-lead__deck { font-size: 14px; color: var(--teg-text-muted); font-family: var(--teg-font-serif); line-height: 1.5; margin-bottom: 8px; font-style: italic; }
.teg-vertical-list { display: flex; flex-direction: column; border-left: 1px solid var(--teg-border); padding-left: 32px; }

/* ─── Power Lists ────────────────────────────────────────────── */
.teg-lists-section { padding: 32px 0; background: var(--teg-bg-section); border-bottom: 1px solid var(--teg-border); }
.teg-lists-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ─── Reviews ────────────────────────────────────────────────── */
.teg-reviews-section { padding: 32px 0; border-bottom: 1px solid var(--teg-border); }
.teg-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.teg-review-card { background: var(--teg-bg); }
.teg-review-card__img-wrap { display: block; position: relative; overflow: hidden; aspect-ratio: 3/2; margin-bottom: 12px; }
.teg-review-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.teg-review-card__img-wrap:hover .teg-review-card__img { transform: scale(1.03); }
.teg-review-card__rating-overlay { position: absolute; bottom: 8px; left: 8px; background: rgba(0,0,0,.75); padding: 4px 8px; border-radius: 3px; display: flex; align-items: center; gap: 6px; }
.teg-review-card__score { color: var(--teg-gold-light); font-size: 12px; font-weight: 700; font-family: var(--teg-font-sans); }
.teg-review-card__rating-overlay .teg-star { font-size: 12px; }
.teg-review-card__body {}
.teg-review-card__of { font-size: 13px; font-weight: 700; color: var(--teg-text-muted); margin-bottom: 4px; font-family: var(--teg-font-sans); }
.teg-review-card__title { font-family: var(--teg-font-display); font-size: 17px; font-weight: 700; line-height: 1.35; margin-bottom: 6px; }
.teg-review-card__title a:hover { color: var(--teg-red); }

/* ─── Vertical Card ──────────────────────────────────────────── */
.teg-card-v { background: var(--teg-bg); }
.teg-card-v__img-wrap { display: block; overflow: hidden; margin-bottom: 10px; position: relative; }
.teg-card-v__img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform .3s; }
.teg-card-v__img-wrap:hover .teg-card-v__img { transform: scale(1.03); }
.teg-card-v__body { display: flex; flex-direction: column; gap: 4px; }
.teg-card-v__title { font-family: var(--teg-font-display); font-size: 17px; font-weight: 700; line-height: 1.35; color: var(--teg-text); }
.teg-card-v__title a:hover { color: var(--teg-red); }
.teg-card-v__deck { font-size: 13px; color: var(--teg-text-muted); font-family: var(--teg-font-serif); line-height: 1.5; font-style: italic; }
.teg-card-v__footer { margin-top: 6px; border-top: 1px solid var(--teg-border); padding-top: 6px; }

/* ─── Horizontal Card ────────────────────────────────────────── */
.teg-card { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--teg-border); }
.teg-card__thumb-wrap { flex-shrink: 0; width: 120px; overflow: hidden; }
.teg-card__thumb { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: 2px; transition: opacity .2s; }
.teg-card:hover .teg-card__thumb { opacity: .9; }
.teg-card__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.teg-card__title { font-family: var(--teg-font-display); font-size: 16px; font-weight: 700; line-height: 1.35; color: var(--teg-text); }
.teg-card__title a:hover { color: var(--teg-red); }
.teg-card__deck { font-size: 13px; color: var(--teg-text-muted); font-family: var(--teg-font-serif); font-style: italic; }
.teg-card__footer { display: flex; align-items: center; gap: 5px; margin-top: auto; flex-wrap: wrap; }
.teg-card__sep { color: var(--teg-text-light); font-size: 11px; }

/* ─── News Item ──────────────────────────────────────────────── */
.teg-news-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--teg-border); }
.teg-news-item:last-child { border-bottom: none; }
.teg-news-item__thumb-wrap { flex-shrink: 0; width: 80px; }
.teg-news-item__thumb { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: 2px; }
.teg-news-item__body { flex: 1; min-width: 0; }
.teg-news-item__title { font-family: var(--teg-font-display); font-size: 14px; font-weight: 700; line-height: 1.35; margin: 3px 0 5px; }
.teg-news-item__title a:hover { color: var(--teg-red); }
.teg-news-item__meta { display: flex; align-items: center; gap: 5px; }
.teg-news-item__sep { color: var(--teg-text-light); font-size: 10px; }

/* ─── Most Popular Widget ────────────────────────────────────── */
.teg-most-popular { border: 1px solid var(--teg-border); margin-bottom: 24px; overflow: hidden; }
.teg-widget-head { background: var(--teg-black); color: #fff; padding: 10px 14px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-family: var(--teg-font-sans); }
.teg-most-popular__list { list-style: none; }
.teg-most-popular__item { display: flex; gap: 10px; align-items: flex-start; padding: 12px 14px; border-bottom: 1px solid var(--teg-border); background: var(--teg-bg); transition: background .12s; }
.teg-most-popular__item:last-child { border-bottom: none; }
.teg-most-popular__item:hover { background: var(--teg-bg-alt); }
.teg-most-popular__num { font-family: var(--teg-font-display); font-size: 24px; font-weight: 700; color: var(--teg-border-dark); line-height: 1; width: 24px; flex-shrink: 0; text-align: right; }
.teg-most-popular__body { flex: 1; min-width: 0; }
.teg-most-popular__title { font-family: var(--teg-font-display); font-size: 14px; font-weight: 700; line-height: 1.35; color: var(--teg-text); display: block; margin-top: 2px; }
.teg-most-popular__title:hover { color: var(--teg-red); }

/* ─── Ad Placeholders ────────────────────────────────────────── */
.teg-ad-strip { padding: 12px 0; text-align: center; }
.teg-ad-placeholder { background: var(--teg-bg-section); border: 1px dashed var(--teg-border-dark); display: flex; align-items: center; justify-content: center; color: var(--teg-text-light); font-size: 11px; font-family: var(--teg-font-sans); letter-spacing: .1em; text-transform: uppercase; border-radius: 2px; }
.teg-ad-placeholder--leaderboard { height: 90px; }
.teg-ad-placeholder--rect { height: 250px; margin-bottom: 24px; }

/* ─── Single Article ─────────────────────────────────────────── */
.teg-single-wrap { padding-bottom: 60px; }
.teg-breaking-banner { background: var(--teg-red); color: #fff; padding: 8px 0; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-family: var(--teg-font-sans); text-align: center; }
.teg-single__header { padding: 28px 0 20px; border-bottom: 1px solid var(--teg-border); background: var(--teg-bg); }
.teg-single__header-inner { max-width: 860px; margin: 0 auto; }
.teg-single__labels { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.teg-single__title { font-family: var(--teg-font-display); font-size: 38px; font-weight: 700; line-height: 1.2; color: var(--teg-text); margin-bottom: 14px; }
.teg-single__deck { font-family: var(--teg-font-serif); font-size: 20px; font-style: italic; font-weight: 300; color: var(--teg-text-muted); line-height: 1.5; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--teg-border); }
.teg-single__byline-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 14px; }
.teg-single__author-wrap { display: flex; align-items: center; gap: 10px; }
.teg-single__avatar { border-radius: 50%; }
.teg-single__meta-row { display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.teg-single__sep { color: var(--teg-text-light); font-size: 11px; }
.teg-single__readtime { font-size: 12px; color: var(--teg-text-light); font-family: var(--teg-font-sans); }

.teg-single-layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 48px; align-items: start; padding-top: 28px; }
.teg-single__main { min-width: 0; }
.teg-single__sidebar { position: sticky; top: calc(var(--teg-nav-h) + 16px); }

/* Hero image */
.teg-single__hero { margin-bottom: 28px; }
.teg-single__hero-img { width: 100%; max-height: 540px; object-fit: cover; }
.teg-single__hero-caption { font-size: 12px; color: var(--teg-text-light); text-align: center; margin-top: 6px; font-style: italic; }

/* Review Box */
.teg-review-box { background: var(--teg-bg-section); border: 1px solid var(--teg-border); border-top: 3px solid var(--teg-gold); padding: 20px; margin-bottom: 24px; border-radius: 2px; }
.teg-review-box__rating { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.teg-review-box__score { font-size: 14px; font-weight: 700; color: var(--teg-gold); font-family: var(--teg-font-sans); }
.teg-review-box__table { width: 100%; border-collapse: collapse; font-size: 13px; }
.teg-review-box__table th, .teg-review-box__table td { padding: 6px 10px; text-align: left; border-bottom: 1px solid var(--teg-border); vertical-align: top; }
.teg-review-box__table th { font-weight: 700; font-family: var(--teg-font-sans); color: var(--teg-text-muted); width: 130px; white-space: nowrap; }
.teg-review-box__table tr:last-child th, .teg-review-box__table tr:last-child td { border-bottom: none; }

/* Article body */
.teg-article-body { font-family: var(--teg-font-serif); font-size: 18px; line-height: 1.85; color: var(--teg-text); }
.teg-article-body p { margin-bottom: 24px; }
.teg-article-body h2 { font-family: var(--teg-font-display); font-size: 26px; font-weight: 700; margin: 36px 0 16px; }
.teg-article-body h3 { font-family: var(--teg-font-display); font-size: 22px; font-weight: 700; margin: 30px 0 14px; }
.teg-article-body a { color: var(--teg-red); text-decoration: underline; text-underline-offset: 3px; }
.teg-article-body a:hover { color: var(--teg-red-dark); }
.teg-article-body blockquote {
  margin: 32px 0;
  padding: 0 0 0 24px;
  border-left: 3px solid var(--teg-red);
  font-size: 22px;
  font-style: italic;
  color: var(--teg-text);
  line-height: 1.6;
}
.teg-article-body blockquote cite { display: block; font-size: 13px; font-style: normal; font-weight: 600; color: var(--teg-text-muted); margin-top: 10px; font-family: var(--teg-font-sans); }
.teg-article-body ul, .teg-article-body ol { padding-left: 22px; margin-bottom: 24px; }
.teg-article-body ul li { list-style: disc; margin-bottom: 8px; }
.teg-article-body ol li { list-style: decimal; margin-bottom: 8px; }
.teg-article-body figure { margin: 28px 0; }
.teg-article-body figcaption { font-size: 13px; color: var(--teg-text-muted); text-align: center; font-style: italic; margin-top: 6px; font-family: var(--teg-font-sans); }

/* Paywall gate */
.teg-paywall { position: relative; }
.teg-paywall__content { max-height: 260px; overflow: hidden; mask-image: linear-gradient(to bottom, black 60%, transparent 100%); }
.teg-paywall__gate { padding-top: 40px; }
.teg-paywall__inner { border: 1px solid var(--teg-border); padding: 48px 40px; text-align: center; background: var(--teg-bg-section); }
.teg-paywall__kicker { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--teg-red); font-family: var(--teg-font-sans); margin-bottom: 12px; display: block; }
.teg-paywall__title { font-family: var(--teg-font-display); font-size: 28px; font-weight: 700; line-height: 1.25; margin-bottom: 14px; }
.teg-paywall__desc { font-size: 15px; color: var(--teg-text-muted); max-width: 440px; margin: 0 auto 24px; line-height: 1.6; font-family: var(--teg-font-serif); font-style: italic; }
.teg-paywall__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* Buttons */
.teg-btn-primary { display: inline-flex; align-items: center; padding: 11px 28px; background: var(--teg-black); color: #fff; font-size: 13px; font-family: var(--teg-font-sans); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; border-radius: 2px; transition: background .15s; text-decoration: none; }
.teg-btn-primary:hover { background: var(--teg-red); color: #fff; }
.teg-btn-secondary { display: inline-flex; align-items: center; padding: 11px 28px; background: transparent; color: var(--teg-black); border: 2px solid var(--teg-black); font-size: 13px; font-family: var(--teg-font-sans); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; border-radius: 2px; transition: background .15s, color .15s; text-decoration: none; }
.teg-btn-secondary:hover { background: var(--teg-black); color: #fff; }

/* Share */
.teg-share { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.teg-share__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--teg-text-muted); margin-right: 4px; }
.teg-share__btn { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; transition: transform .15s; }
.teg-share__btn:hover { transform: scale(1.1); }
.teg-share__btn--fb  { background: #1877f2; }
.teg-share__btn--tw  { background: #000; }
.teg-share__btn--li  { background: #0a66c2; }
.teg-share__btn--wa  { background: #25d366; }
.teg-share__btn--em  { background: #6b7280; }
.teg-share__btn--copy { background: var(--teg-bg-section); color: var(--teg-text-muted); border: 1px solid var(--teg-border-dark); }
.teg-share__btn--copy:hover { background: var(--teg-black); color: #fff; }
.teg-share__btn--copy.is-copied { background: #059669 !important; color: #fff !important; }
.teg-share--vertical { flex-direction: column; align-items: center; gap: 8px; }

.teg-single__footer { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding: 20px 0; border-top: 1px solid var(--teg-border); border-bottom: 1px solid var(--teg-border); margin-top: 32px; margin-bottom: 32px; }
.teg-sticky-share { background: var(--teg-bg); border: 1px solid var(--teg-border); padding: 16px 10px; text-align: center; border-radius: 4px; margin-bottom: 24px; }

/* Author box */
.teg-author-box { display: flex; gap: 16px; align-items: flex-start; padding: 24px 0; border-top: 1px solid var(--teg-border); margin-top: 24px; }
.teg-author-box__avatar { border-radius: 50%; flex-shrink: 0; }
.teg-author-box__role { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--teg-text-light); font-family: var(--teg-font-sans); display: block; margin-bottom: 2px; }
.teg-author-box__name { font-family: var(--teg-font-display); font-size: 18px; font-weight: 700; color: var(--teg-text); display: block; margin-bottom: 6px; }
.teg-author-box__name:hover { color: var(--teg-red); }
.teg-author-box__bio { font-size: 13px; color: var(--teg-text-muted); line-height: 1.6; }

/* Related */
.teg-related { margin-top: 40px; padding-top: 24px; border-top: 2px solid var(--teg-black); }
.teg-related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 16px; }

/* Tags */
.teg-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.teg-tag { display: inline-block; padding: 5px 12px; background: transparent; border: 1px solid var(--teg-border-dark); font-size: 11px; font-family: var(--teg-font-sans); font-weight: 500; color: var(--teg-text-muted); letter-spacing: .04em; border-radius: 2px; transition: background .12s, color .12s, border-color .12s; }
.teg-tag:hover { background: var(--teg-black); color: #fff; border-color: var(--teg-black); }

/* ─── Breadcrumb ─────────────────────────────────────────────── */
.teg-breadcrumb { margin-bottom: 12px; }
.teg-breadcrumb__list { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.teg-breadcrumb__list li { display: flex; align-items: center; gap: 4px; font-size: 11px; font-family: var(--teg-font-sans); color: var(--teg-text-light); }
.teg-breadcrumb__list li:not(:last-child)::after { content: '/'; color: var(--teg-border-dark); margin-left: 4px; }
.teg-breadcrumb__list a { color: var(--teg-red); }
.teg-breadcrumb__list a:hover { text-decoration: underline; }

/* ─── Archive ────────────────────────────────────────────────── */
.teg-archive-header { padding: 32px 0; border-bottom: 2px solid var(--teg-black); background: var(--teg-bg); }
.teg-archive-header__kicker { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--teg-red); margin-bottom: 6px; }
.teg-archive-header__title { font-family: var(--teg-font-display); font-size: 36px; font-weight: 700; color: var(--teg-black); margin-bottom: 8px; }
.teg-archive-header__desc { font-family: var(--teg-font-serif); font-size: 16px; color: var(--teg-text-muted); font-style: italic; }
.teg-archive-header__count { font-size: 13px; color: var(--teg-text-muted); margin-top: 4px; }
.teg-archive-header__search-form { margin-top: 16px; max-width: 540px; }
.teg-archive-author { display: flex; align-items: center; gap: 20px; }
.teg-archive-author__avatar { border-radius: 50%; }
.teg-archive__body { padding: 28px 0 60px; }
.teg-archive-lead { margin-bottom: 32px; max-width: 700px; }
.teg-archive-lead .teg-card-v__title { font-size: 28px; }
.teg-archive__grid-sidebar { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 40px; align-items: start; }
.teg-archive__main {}
.teg-archive__sidebar { position: sticky; top: calc(var(--teg-nav-h) + 16px); }
.teg-archive-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ─── Load More ──────────────────────────────────────────────── */
.teg-load-more-wrap { text-align: center; padding: 28px 0; }
.teg-load-more-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 32px; background: transparent; color: var(--teg-black); border: 2px solid var(--teg-black); font-size: 12px; font-family: var(--teg-font-sans); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border-radius: 2px; cursor: pointer; transition: background .15s, color .15s; }
.teg-load-more-btn:hover { background: var(--teg-black); color: #fff; }
.teg-load-more-btn:disabled { opacity: .4; cursor: not-allowed; }

/* ─── No Results / 404 ───────────────────────────────────────── */
.teg-no-results { text-align: center; padding: 80px 20px; }
.teg-no-results__title { font-family: var(--teg-font-display); font-size: 28px; font-weight: 700; margin-bottom: 10px; }
.teg-no-results__text { font-size: 16px; color: var(--teg-text-muted); margin-bottom: 20px; font-family: var(--teg-font-serif); font-style: italic; }
.teg-no-results .teg-search-form { max-width: 480px; margin: 0 auto 24px; }
.teg-no-results__links { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }
.teg-error-page { padding: 100px 0; }
.teg-error-page__inner { text-align: center; max-width: 540px; margin: 0 auto; }
.teg-error-page__code { font-family: var(--teg-font-display); font-size: 120px; font-weight: 900; color: var(--teg-border); display: block; line-height: 1; }
.teg-error-page__title { font-family: var(--teg-font-display); font-size: 32px; font-weight: 700; margin: 8px 0 12px; }
.teg-error-page__text { font-size: 16px; color: var(--teg-text-muted); margin-bottom: 28px; font-family: var(--teg-font-serif); font-style: italic; }
.teg-error-page .teg-search-form { max-width: 480px; margin: 0 auto 24px; }
.teg-error-page__links { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }

/* ─── Footer Newsletter ──────────────────────────────────────── */
.teg-footer-newsletter { background: var(--teg-black); padding: 36px 0; }
.teg-footer-newsletter__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.teg-footer-newsletter__title { font-family: var(--teg-font-display); font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.teg-footer-newsletter__sub { font-size: 14px; color: rgba(255,255,255,.65); font-family: var(--teg-font-serif); font-style: italic; }
.teg-footer-newsletter__form { display: flex; flex: 0 0 380px; max-width: 380px; overflow: hidden; border: 1px solid rgba(255,255,255,.3); border-radius: 2px; position: relative; }
.teg-footer-newsletter__input { flex: 1; height: 46px; padding: 0 14px; background: rgba(255,255,255,.08); border: none; color: #fff; font-size: 14px; outline: none; }
.teg-footer-newsletter__input::placeholder { color: rgba(255,255,255,.5); }
.teg-footer-newsletter__btn { height: 46px; padding: 0 20px; background: var(--teg-red); color: #fff; font-size: 12px; font-family: var(--teg-font-sans); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; flex-shrink: 0; border: none; cursor: pointer; transition: background .15s; }
.teg-footer-newsletter__btn:hover { background: var(--teg-red-dark); }
.teg-newsletter__msg { font-size: 12px; color: rgba(255,255,255,.8); position: absolute; bottom: -22px; left: 0; }

/* ─── Footer ─────────────────────────────────────────────────── */
.teg-footer { background: #141414; color: #9ca3af; }
.teg-footer__top { padding: 48px 0; border-bottom: 1px solid #2a2a2a; }
.teg-footer__top-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; }
.teg-footer__logo .teg-logo__the { color: rgba(255,255,255,.5); font-size: 10px; }
.teg-footer__logo .teg-logo__name { font-family: var(--teg-font-display); font-size: 24px; font-weight: 700; color: #fff; }
.teg-footer__logo { margin-bottom: 14px; display: block; }
.teg-footer__about { font-size: 13px; color: #9ca3af; line-height: 1.7; margin-bottom: 16px; }
.teg-footer__social { display: flex; gap: 8px; }
.teg-footer__social-link { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.07); border-radius: 50%; color: #9ca3af; transition: background .15s, color .15s; }
.teg-footer__social-link:hover { background: var(--teg-red); color: #fff; }
.teg-footer__col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid #2a2a2a; font-family: var(--teg-font-sans); }
.teg-footer__list { display: flex; flex-direction: column; gap: 8px; }
.teg-footer__list a { font-size: 13px; color: #9ca3af; transition: color .15s; }
.teg-footer__list a:hover { color: #fff; }
.teg-footer__bottom { padding: 18px 0; border-top: 1px solid #2a2a2a; }
.teg-footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.teg-footer__copyright { font-size: 12px; color: #6b7280; font-family: var(--teg-font-sans); }
.teg-footer__legal { display: flex; gap: 16px; flex-wrap: wrap; }
.teg-footer__legal a { font-size: 12px; color: #6b7280; font-family: var(--teg-font-sans); transition: color .15s; }
.teg-footer__legal a:hover { color: #fff; }
.teg-footer__disclaimer { font-size: 11px; color: #6b7280; padding-top: 12px; line-height: 1.6; }

/* ─── Mobile Menu ────────────────────────────────────────────── */
.teg-mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.65); z-index: 500; opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; }
.teg-mobile-overlay.is-open { opacity: 1; visibility: visible; }
.teg-mobile-menu { position: fixed; top: 0; left: 0; width: 300px; height: 100%; background: #fff; z-index: 600; transform: translateX(-100%); transition: transform .28s ease; overflow-y: auto; display: flex; flex-direction: column; }
.teg-mobile-menu.is-open { transform: none; }
.teg-mobile-menu__header { display: flex; justify-content: space-between; align-items: center; padding: 16px; border-bottom: 1px solid var(--teg-border); background: var(--teg-black); }
.teg-mobile-menu__header .teg-logo__the { color: rgba(255,255,255,.5); font-size: 10px; }
.teg-mobile-menu__header .teg-logo__name { font-size: 20px; color: #fff; }
.teg-mobile-menu__close { color: rgba(255,255,255,.7); }
.teg-mobile-menu__search { padding: 12px; border-bottom: 1px solid var(--teg-border); }
.teg-mobile-nav { flex: 1; }
.teg-mobile-nav__item { border-bottom: 1px solid var(--teg-border); }
.teg-mobile-nav__link { display: block; padding: 12px 16px; font-size: 14px; font-family: var(--teg-font-sans); font-weight: 600; color: var(--teg-text); text-transform: uppercase; letter-spacing: .06em; transition: color .12s, background .12s; }
.teg-mobile-nav__link:hover { color: var(--teg-red); background: var(--teg-bg-section); }
.teg-mobile-menu__footer { padding: 16px; display: flex; flex-direction: column; gap: 8px; border-top: 1px solid var(--teg-border); }
.teg-mobile-btn { display: block; text-align: center; padding: 11px; font-size: 13px; font-family: var(--teg-font-sans); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; border: 2px solid var(--teg-border-dark); color: var(--teg-text); border-radius: 2px; transition: background .15s; }
.teg-mobile-btn--primary { background: var(--teg-red); color: #fff; border-color: var(--teg-red); }
.teg-mobile-btn--primary:hover { background: var(--teg-red-dark); color: #fff; }

/* ─── Page / Comments ────────────────────────────────────────── */
.teg-page-wrap { padding: 32px 0 60px; }
.teg-page-layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 40px; align-items: start; }
.teg-page-sidebar { position: sticky; top: calc(var(--teg-nav-h) + 16px); }
.teg-page-article__title { font-family: var(--teg-font-display); font-size: 32px; font-weight: 700; line-height: 1.25; margin-bottom: 24px; }
.teg-page-article__hero { margin-bottom: 28px; }
.teg-page-article__hero-img { width: 100%; border-radius: 2px; }
.teg-comments { padding: 32px 0; border-top: 1px solid var(--teg-border); margin-top: 32px; }
.teg-comments__title { font-family: var(--teg-font-display); font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.teg-comment-list { list-style: none; }

/* ─── Misc ───────────────────────────────────────────────────── */
.teg-page-links { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 24px; }
.teg-page-links span, .teg-page-links a { padding: 5px 12px; font-size: 12px; border: 1px solid var(--teg-border-dark); border-radius: 2px; font-family: var(--teg-font-sans); }
.teg-page-links a:hover, .teg-page-links .current { background: var(--teg-black); color: #fff; border-color: var(--teg-black); }
.teg-widget { margin-bottom: 24px; }
.teg-widget__title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--teg-text-muted); margin-bottom: 12px; border-bottom: 1px solid var(--teg-border); padding-bottom: 6px; }

/* Back-to-top */
.teg-back-top { position: fixed; bottom: 28px; right: 24px; width: 40px; height: 40px; background: var(--teg-black); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s, background .15s; z-index: 300; box-shadow: var(--teg-shadow-md); }
.teg-back-top.is-visible { opacity: 1; visibility: visible; }
.teg-back-top:hover { background: var(--teg-red); }

/* Read progress */
.teg-read-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: var(--teg-red); z-index: 9999; transition: width .1s linear; pointer-events: none; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .35s ease, transform .35s ease; }
.reveal.is-revealed { opacity: 1; transform: none; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .teg-logo__name { font-size: 30px; }
  .teg-hero__title { font-size: 36px; }
  .teg-mega-panel__inner { grid-template-columns: repeat(3, 1fr); }
  .teg-footer__top-inner { grid-template-columns: 1fr 1fr 1fr; }
  .teg-lists-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .teg-single-layout,
  .teg-archive__grid-sidebar,
  .teg-latest-layout,
  .teg-page-layout { grid-template-columns: 1fr; }
  .teg-single__sidebar, .teg-archive__sidebar,
  .teg-latest-sidebar, .teg-page-sidebar { position: static; }
  .teg-hero__title { font-size: 30px; }
  .teg-leaders__grid { grid-template-columns: 1fr 1fr; }
  .teg-vertical-layout { grid-template-columns: 1fr; }
  .teg-vertical-list { border-left: none; padding-left: 0; border-top: 1px solid var(--teg-border); padding-top: 16px; }
  .teg-related__grid { grid-template-columns: repeat(2, 1fr); }
  .teg-reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .teg-footer__top-inner { grid-template-columns: 1fr 1fr; }
  .teg-mega-panel__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  :root { --teg-pad: 12px; }
  .teg-utility-bar { display: none; }
  .teg-masthead { padding: 12px 0; }
  .teg-logo__name { font-size: 22px; }
  .teg-masthead__subscribe-btn { display: flex; font-size: 10px; padding: 6px 10px; }
  .teg-hamburger { display: flex; }
  .teg-nav__list { display: none; }
  .teg-nav__inner { justify-content: space-between; }
  .teg-hero__title { font-size: 24px; }
  .teg-single__title { font-size: 28px; }
  .teg-article-body { font-size: 16px; }
  .teg-leaders__grid { grid-template-columns: 1fr; }
  .teg-archive-grid { grid-template-columns: 1fr; }
  .teg-related__grid { grid-template-columns: 1fr; }
  .teg-reviews-grid { grid-template-columns: 1fr; }
  .teg-lists-grid { grid-template-columns: 1fr 1fr; }
  .teg-footer__top-inner { grid-template-columns: 1fr; }
  .teg-footer__bottom-inner { flex-direction: column; align-items: flex-start; }
  .teg-footer-newsletter__inner { flex-direction: column; }
  .teg-footer-newsletter__form { flex: 0 0 100%; max-width: 100%; }
  .teg-subscribe-banner__text { display: none; }
  .teg-mega-panel__inner { grid-template-columns: 1fr 1fr; padding: 20px 0; }
}
@media (max-width: 480px) {
  .teg-hero__inner { min-height: 380px; }
  .teg-single__byline-row { flex-direction: column; align-items: flex-start; }
  .teg-lists-grid { grid-template-columns: 1fr; }
  .teg-archive-header__title { font-size: 28px; }
}
