/* ═══════════════════════════════════════════════════════════
   famosos.css — Estilos principales del tema
   ═══════════════════════════════════════════════════════════ */

/* ── NAV ────────────────────────────────────────────────────── */
nav#site-nav {
  position: fixed; top: 56px; left: 0; right: 0; z-index: 400;
  height: 60px; display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 52px);
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.07);
  transition: box-shadow .3s;
}
nav#site-nav.scrolled { box-shadow: var(--sh); }
.logo { font-weight: 900; font-size: 20px; letter-spacing: -.5px; text-transform: uppercase; }
.logo em { font-style: italic; color: var(--fushia); }
.nav-pills { display: flex; gap: 2px; list-style: none; }
.nav-pills a {
  display: flex; align-items: center; gap: 5px;
  padding: 5px 13px; border-radius: 30px;
  font-size: 12px; font-weight: 600; color: var(--muted);
  transition: all .2s; white-space: nowrap;
}
.nav-pills a:hover { color: var(--text); background: var(--off); }
.dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; display: inline-block; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; top: 116px; left: 0; right: 0; z-index: 399;
  background: rgba(255,255,255,.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); padding: 16px 20px 24px;
  transform: translateY(-10px); opacity: 0; transition: all .3s; pointer-events: none;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 12px;
  font-size: 14px; font-weight: 600; color: var(--text); transition: background .2s;
}
.mobile-menu a:hover { background: var(--off); }

/* ── TICKER ─────────────────────────────────────────────────── */
.ticker {
  position: fixed; top: 116px; left: 0; right: 0; z-index: 300;
  height: 32px; background: var(--klein);
  display: flex; align-items: center; overflow: hidden;
}
.ticker-badge {
  flex-shrink: 0; background: var(--fushia); color: #fff;
  font-size: 9px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 0 18px; height: 100%;
  display: flex; align-items: center; gap: 7px;
  border-right: 2px solid rgba(255,255,255,.2);
}
.live-dot { width: 6px; height: 6px; background: #fff; border-radius: 50%; flex-shrink: 0; animation: blink 1.2s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.ticker-scroll { flex: 1; overflow: hidden; height: 100%; display: flex; align-items: center; }
.ticker-track {
  display: flex; align-items: center;
  animation: scroll-left 40s linear infinite;
  white-space: nowrap; will-change: transform;
}
.ticker-track span {
  color: var(--citric); font-size: 10px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase; padding: 0 28px;
}
.ticker-track span::before { content: '— '; opacity: .4; }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── STRIP ──────────────────────────────────────────────────── */
.strip {
  height: 3px;
  background: linear-gradient(90deg, var(--klein) 0%, var(--fushia) 25%, var(--tangerine) 50%, var(--citric) 75%, var(--aqua) 100%);
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  margin-top: 92px;
  padding: 14px clamp(14px, 4vw, 52px) 0;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px;
}
.hero-feat {
  grid-column: 1 / 3; border-radius: var(--r-lg);
  overflow: hidden; position: relative;
  min-height: clamp(300px, 42vw, 500px);
  cursor: pointer; transition: transform .4s var(--ease);
}
.hero-feat:hover { transform: translateY(-3px); }
.hero-feat > a { display: block; width: 100%; height: 100%; position: absolute; inset: 0; z-index: 3; }
.hf-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #4100F5, #7c3aed 50%, #F037A5); }
.hf-img { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; }
.hf-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.78) 0%, transparent 62%); }
.hf-deco { position: absolute; top: -60px; right: -60px; width: 280px; height: 280px; border: 2px solid rgba(255,255,255,.08); border-radius: 50%; }
.hf-deco2 { position: absolute; top: 30px; right: 30px; width: 150px; height: 150px; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; }
.hf-body { position: absolute; bottom: 0; left: 0; right: 0; padding: clamp(20px, 3vw, 40px); z-index: 2; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); color: #fff;
  font-size: 9px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 30px; margin-bottom: 14px;
}
.hf-body h1 {
  font-size: clamp(30px, 4.2vw, 58px); font-weight: 900;
  line-height: 1.0; color: #fff; letter-spacing: -1px;
  margin-bottom: 12px; text-transform: uppercase;
}
.hf-body h1 em { font-style: italic; color: var(--citric); }
.hf-body p { color: rgba(255,255,255,.72); font-size: clamp(13px, 1.4vw, 15px); line-height: 1.7; max-width: 480px; margin-bottom: 20px; }
.btn-glass {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3); color: #fff;
  font-size: 11px; font-weight: 800; padding: 9px 22px;
  border-radius: 30px; cursor: pointer;
  font-family: 'Montserrat', sans-serif; transition: background .2s, transform .2s;
}
.btn-glass:hover { background: rgba(255,255,255,.25); transform: scale(1.02); }
.hero-side { display: flex; flex-direction: column; gap: 10px; }
.side-card {
  flex: 1; border-radius: var(--r); overflow: hidden;
  position: relative; min-height: clamp(100px, 11vw, 155px);
  cursor: pointer; transition: transform .3s; display: block;
}
.side-card:hover { transform: translateY(-2px); }
.side-bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; }
.side-deco { position: absolute; top: -20px; right: -20px; width: 100px; height: 100px; border: 2px solid rgba(255,255,255,.1); border-radius: 50%; }
.side-cat {
  position: absolute; top: 13px; left: 13px;
  font-size: 8px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 11px; border-radius: 30px;
  background: rgba(255,255,255,.18); color: #fff; backdrop-filter: blur(6px);
}
.side-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 15px; background: linear-gradient(to top, rgba(0,0,0,.78), transparent); }
.side-info h3 { font-size: clamp(14px, 1.6vw, 17px); font-weight: 700; color: #fff; line-height: 1.2; }
.side-info p { font-size: 10px; font-weight: 500; color: rgba(255,255,255,.6); margin-top: 3px; }
.hero-bottom { grid-column: 1 / 4; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.hb {
  border-radius: var(--r); padding: clamp(16px, 2.2vw, 26px);
  display: flex; flex-direction: column; justify-content: space-between;
  cursor: pointer; overflow: hidden; position: relative;
  transition: transform .3s, box-shadow .3s; min-height: 150px;
}
.hb:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.hb-1 { background: var(--citric); } .hb-2 { background: var(--aqua); } .hb-3 { background: var(--off); border: 1px solid var(--border); }
.hb-ey { font-size: 8px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(0,0,0,.45); margin-bottom: 6px; }
.hb h3 { font-size: clamp(14px, 1.6vw, 19px); font-weight: 800; color: var(--black); line-height: 1.25; }
.hb-link { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 800; color: var(--black); margin-top: 12px; transition: gap .2s; }
.hb:hover .hb-link { gap: 9px; }
.hb-num { font-size: 80px; font-weight: 900; font-style: italic; line-height: 1; color: rgba(0,0,0,.06); position: absolute; bottom: -10px; right: 8px; pointer-events: none; }

/* ── SECTIONS ───────────────────────────────────────────────── */
.section { padding: clamp(44px, 5.5vw, 76px) clamp(14px, 4vw, 52px); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: clamp(22px, 3vw, 38px); gap: 14px; flex-wrap: wrap; }
.sec-label { display: inline-flex; align-items: center; gap: 7px; font-size: 9px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 6px; }
.sec-bar { width: 22px; height: 2px; border-radius: 2px; display: inline-block; }
.sec-title { font-size: clamp(28px, 3.8vw, 44px); font-weight: 900; letter-spacing: -1px; line-height: 1; text-transform: uppercase; }
.sec-title em { font-style: italic; }
.link-all { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; color: var(--muted); white-space: nowrap; transition: color .2s; }
.link-all:hover { color: var(--text); }
.section-with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 28px; align-items: start; }
.sec-content { min-width: 0; }
.sec-sidebar { position: sticky; top: 110px; }

/* ── AD SLOTS ───────────────────────────────────────────────── */
.ad-label { font-size: 8px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.ad-leaderboard {
  width: 100%; max-width: 970px; height: 90px; margin: 0 auto;
  background: #f5f5f7; border: 1px dashed #e5e5ea; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.ad-leaderboard span { font-size: 11px; font-weight: 700; color: var(--muted); }
.ad-rectangle {
  width: 300px; height: 250px;
  background: #f5f5f7; border: 1px dashed #e5e5ea; border-radius: 8px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.ad-rectangle span { font-size: 11px; font-weight: 700; color: var(--muted); }
.ad-rectangle small { font-size: 9px; color: var(--muted); opacity: .5; }
.ad-banner-full {
  margin: 0 clamp(14px, 4vw, 52px);
  background: #f5f5f7; border: 1px dashed #e5e5ea; border-radius: 8px;
  height: 90px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
}
.ad-banner-full span { font-size: 11px; font-weight: 700; color: var(--muted); }
.ad-banner-full small { font-size: 9px; color: var(--muted); opacity: .5; }
.ad-inline-content {
  width: 100%; height: 90px; background: #f5f5f7; border: 1px dashed #e5e5ea;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  margin: 24px 0;
}
.ad-inline-content span { font-size: 11px; font-weight: 700; color: var(--muted); }

/* ── NOTE B (Influencers grid) ──────────────────────────────── */
.nb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(10px, 1.5vw, 16px); }
.note-b {
  background: var(--white); border-radius: var(--r);
  overflow: hidden; box-shadow: var(--sh);
  cursor: pointer; display: flex; align-items: stretch;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.note-b:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: transparent; }
.nb-wide { grid-column: 1 / 3; }
.nb-bar { width: 5px; flex-shrink: 0; }
.nb-body {
  padding: clamp(16px, 2vw, 24px);
  display: flex; flex-direction: column; justify-content: space-between;
  flex: 1; position: relative; min-height: 165px;
}
.nb-wide .nb-body { min-height: auto; }
.nb-num { font-size: 72px; font-weight: 900; font-style: italic; line-height: 1; opacity: .05; position: absolute; top: 8px; right: 14px; color: var(--text); pointer-events: none; user-select: none; }
.nb-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 8px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 11px; border-radius: 30px; margin-bottom: 12px; width: fit-content;
}
.nb-body h3 { font-size: clamp(15px, 1.7vw, 20px); font-weight: 900; line-height: 1.22; letter-spacing: -.3px; margin-bottom: 8px; padding-right: 52px; }
.nb-wide .nb-body h3 { font-size: clamp(18px, 2.2vw, 26px); padding-right: 80px; }
.nb-body p { font-size: 12px; color: var(--muted); line-height: 1.65; padding-right: 40px; }
.nb-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border); }
.nb-meta { display: flex; gap: 14px; flex-wrap: wrap; }
.nb-meta span { font-size: 10px; font-weight: 600; color: var(--muted); display: inline-flex; align-items: center; gap: 4px; }
.nb-arrow { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .2s; }
.note-b:hover .nb-arrow { transform: translateX(3px); }

/* ── CHISMES ────────────────────────────────────────────────── */
.chi-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 14px; }
.chi-feat {
  border-radius: var(--r-lg); overflow: hidden; position: relative;
  min-height: clamp(340px, 43vw, 500px);
  cursor: pointer; transition: transform .3s; display: block;
}
.chi-feat:hover { transform: scale(1.01); }
.chi-mesh { position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 20%, rgba(255,70,50,.6), transparent 60%), radial-gradient(ellipse at 20% 80%, rgba(65,0,245,.5), transparent 60%), var(--fushia); }
.chi-bg-img { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; }
.chi-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.82) 0%, transparent 55%); }
.chi-fc { position: absolute; bottom: 0; left: 0; right: 0; padding: clamp(18px, 3vw, 36px); z-index: 2; }
.chi-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 8px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 5px 13px; border-radius: 30px; background: var(--fushia); color: #fff; margin-bottom: 11px; }
.chi-fc h2 { font-size: clamp(24px, 3.3vw, 42px); font-weight: 900; line-height: 1.05; color: #fff; letter-spacing: -1px; margin-bottom: 9px; text-transform: uppercase; }
.chi-fc h2 em { font-style: italic; color: var(--aqua); }
.chi-fc p { font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.7; max-width: 420px; }
.chi-meta { display: flex; align-items: center; gap: 14px; margin-top: 13px; flex-wrap: wrap; }
.chi-meta span { font-size: 10px; font-weight: 600; color: rgba(255,255,255,.5); display: inline-flex; align-items: center; gap: 4px; }
.chi-list { display: flex; flex-direction: column; gap: 11px; }
.chi-item {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r);
  padding: clamp(14px, 2vw, 20px); cursor: pointer; box-shadow: var(--sh);
  transition: all .25s; display: flex; gap: 13px; align-items: flex-start;
}
.chi-item:hover { border-color: var(--fushia); box-shadow: 0 4px 20px rgba(240,55,165,.1); transform: translateX(4px); }
.chi-n { font-size: 28px; font-weight: 900; font-style: italic; line-height: 1; color: var(--border); flex-shrink: 0; width: 26px; transition: color .2s; }
.chi-item:hover .chi-n { color: var(--fushia); }
.chi-itag { font-size: 8px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 3px 9px; border-radius: 30px; display: inline-block; margin-bottom: 5px; }
.chi-item h4 { font-size: clamp(13px, 1.4vw, 16px); font-weight: 800; line-height: 1.3; margin-bottom: 4px; }
.chi-item p { font-size: 12px; color: var(--muted); line-height: 1.55; }
.chi-foot { margin-top: 8px; display: flex; gap: 11px; flex-wrap: wrap; }
.chi-foot span { font-size: 10px; font-weight: 600; color: var(--muted); display: inline-flex; align-items: center; gap: 4px; }

/* ── TE LO CUENTO ───────────────────────────────────────────── */
.tel-bg { background: var(--off); }
.tel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tel-card {
  border-radius: var(--r-lg); padding: clamp(22px, 2.8vw, 34px);
  cursor: pointer; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 300px; transition: transform .3s, box-shadow .3s;
}
.tel-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.tel-1 { background: var(--citric); } .tel-2 { background: var(--klein); } .tel-3 { background: var(--white); border: 1px solid var(--border); }
.tel-dq { font-size: 200px; font-weight: 900; font-style: italic; line-height: .8; position: absolute; top: -20px; left: -10px; color: rgba(0,0,0,.05); pointer-events: none; }
.tel-2 .tel-dq { color: rgba(255,255,255,.04); } .tel-3 .tel-dq { color: rgba(0,0,0,.03); }
.tel-tag { font-size: 8px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 5px 12px; border-radius: 30px; display: inline-block; margin-bottom: 11px; }
.tel-1 .tel-tag { background: rgba(0,0,0,.12); color: rgba(0,0,0,.6); } .tel-2 .tel-tag { background: rgba(255,255,255,.12); color: rgba(255,255,255,.7); } .tel-3 .tel-tag { background: var(--off); color: var(--muted); border: 1px solid var(--border); }
.tel-card h3 { font-size: clamp(17px, 1.9vw, 24px); font-weight: 800; line-height: 1.2; position: relative; z-index: 1; }
.tel-1 h3 { color: var(--black); } .tel-2 h3 { color: #fff; } .tel-2 h3 em { font-style: italic; color: var(--citric); } .tel-3 h3 { color: var(--text); }
.tel-card p { font-size: 13px; line-height: 1.65; position: relative; z-index: 1; margin-top: 8px; }
.tel-1 p { color: rgba(0,0,0,.6); } .tel-2 p { color: rgba(255,255,255,.6); } .tel-3 p { color: var(--muted); }
.tel-link { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 800; margin-top: 16px; position: relative; z-index: 1; transition: gap .2s; }
.tel-card:hover .tel-link { gap: 11px; }
.tel-1 .tel-link { color: var(--black); } .tel-2 .tel-link { color: var(--citric); } .tel-3 .tel-link { color: var(--text); }
.tel-arr { width: 26px; height: 26px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
.tel-1 .tel-arr { background: var(--black); color: var(--citric); } .tel-2 .tel-arr { background: var(--citric); color: var(--black); } .tel-3 .tel-arr { background: var(--text); color: #fff; }

/* ── PINK NEWS ──────────────────────────────────────────────── */
.pink-grid { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 14px; align-items: start; }
.pink-col { display: flex; flex-direction: column; gap: 14px; }
.pk-card { border-radius: var(--r); padding: clamp(16px, 2.4vw, 24px); cursor: pointer; box-shadow: var(--sh); transition: transform .3s, box-shadow .3s; }
.pk-card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.pk-a { background: #FFF0F5; border: 1px solid #FFD6E8; }
.pk-b { background: var(--klein); }
.pk-c { background: var(--off); border: 1px solid var(--border); }
.pk-d { background: #FFF4EE; border: 1px solid #FFD5C8; }
.pk-tag { font-size: 8px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 11px; border-radius: 30px; display: inline-flex; align-items: center; gap: 5px; margin-bottom: 10px; }
.pk-a .pk-tag { background: var(--fushia); color: #fff; } .pk-b .pk-tag { background: rgba(255,255,255,.15); color: rgba(255,255,255,.7); } .pk-c .pk-tag { background: var(--border); color: var(--muted); } .pk-d .pk-tag { background: var(--tangerine); color: #fff; }
.pk-card h4 { font-size: clamp(14px, 1.5vw, 17px); font-weight: 800; line-height: 1.25; }
.pk-a h4, .pk-c h4, .pk-d h4 { color: var(--text); } .pk-b h4 { color: #fff; }
.pk-card p { font-size: 13px; line-height: 1.55; margin-top: 7px; }
.pk-a p, .pk-d p { color: rgba(0,0,0,.52); } .pk-b p { color: rgba(255,255,255,.55); } .pk-c p { color: var(--muted); }
.pk-meta { margin-top: 11px; font-size: 10px; font-weight: 600; color: var(--muted); display: inline-flex; gap: 10px; align-items: center; }
.pk-b .pk-meta { color: rgba(255,255,255,.4); }
.pink-hero {
  border-radius: var(--r-lg); padding: clamp(26px, 3.5vw, 42px);
  cursor: pointer; position: relative; overflow: hidden;
  background: var(--tangerine); min-height: clamp(360px, 38vw, 450px);
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 20px 60px rgba(255,70,50,.2); transition: transform .3s;
}
.pink-hero:hover { transform: scale(1.01); }
.ph-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 70%, rgba(240,55,165,.5), transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(255,230,0,.3), transparent 50%), var(--tangerine); }
.ph-d1 { position: absolute; bottom: -40px; right: -40px; width: 200px; height: 200px; border: 2px solid rgba(255,255,255,.1); border-radius: 50%; }
.ph-d2 { position: absolute; bottom: 30px; right: 30px; width: 100px; height: 100px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.ph-body { position: relative; z-index: 2; }
.ph-tag { font-size: 8px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 5px 13px; border-radius: 30px; background: rgba(255,255,255,.2); color: #fff; display: inline-flex; align-items: center; gap: 5px; margin-bottom: 11px; }
.ph-body h2 { font-size: clamp(28px, 3.3vw, 44px); font-weight: 900; line-height: 1.0; color: #fff; letter-spacing: -1px; text-transform: uppercase; }
.ph-body h2 em { font-style: italic; color: var(--citric); }
.ph-body p { font-size: 14px; color: rgba(255,255,255,.75); margin-top: 10px; line-height: 1.7; max-width: 320px; }
.ph-foot { position: relative; z-index: 2; }
.btn-white { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 800; padding: 10px 22px; border-radius: 30px; background: rgba(255,255,255,.95); color: var(--black); font-family: 'Montserrat', sans-serif; cursor: pointer; border: none; transition: transform .2s; }
.btn-white:hover { transform: scale(1.03); }

/* ── TRENDS ─────────────────────────────────────────────────── */
.tre-bg { background: var(--black); }
.tre-bg .sec-title { color: #fff; } .tre-bg .sec-title em { color: var(--aqua); }
.tre-bg .link-all { color: rgba(255,255,255,.35); } .tre-bg .link-all:hover { color: #fff; }
.tre-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.tre-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r); padding: clamp(16px, 2.4vw, 26px);
  cursor: pointer; position: relative; overflow: hidden; transition: all .25s;
}
.tre-card:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.15); transform: translateY(-3px); }
.tre-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: 3px 3px 0 0; opacity: 0; transition: opacity .3s; }
.tre-card:hover::before { opacity: 1; }
.tre-idx { font-size: 8px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.tre-card h4 { font-size: clamp(16px, 1.9vw, 20px); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 7px; }
.tre-card p { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.65; }
.tre-prog { margin-top: 18px; }
.tre-pl { display: flex; justify-content: space-between; margin-bottom: 5px; }
.tre-pl span { font-size: 9px; font-weight: 700; }
.pct { color: rgba(255,255,255,.4); }
.tre-track { height: 2px; background: rgba(255,255,255,.08); border-radius: 2px; overflow: hidden; }
.tre-fill { height: 100%; border-radius: 2px; transition: width 1.3s var(--ease); width: 0; }

/* ── VIDEOS ─────────────────────────────────────────────────── */
.vid-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.vid-card { border-radius: var(--r); overflow: hidden; cursor: pointer; background: var(--white); box-shadow: var(--sh); transition: transform .3s, box-shadow .3s; }
.vid-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.vid-thumb { aspect-ratio: 16/9; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.vid-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vid-play { position: absolute; width: 48px; height: 48px; border-radius: 50%; background: rgba(0,0,0,.7); display: flex; align-items: center; justify-content: center; transition: transform .2s, background .2s; }
.vid-card:hover .vid-play { transform: scale(1.1); background: var(--fushia); }
.vid-dur { position: absolute; bottom: 8px; right: 8px; background: rgba(0,0,0,.85); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 4px; }
.vid-info { padding: 14px 16px; }
.vid-cat { font-size: 8px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: #dc2626; margin-bottom: 6px; }
.vid-info h4 { font-size: clamp(14px, 1.5vw, 17px); font-weight: 800; line-height: 1.25; margin-bottom: 8px; }
.vid-meta { font-size: 10px; font-weight: 600; color: var(--muted); display: flex; gap: 10px; align-items: center; }

/* ── SINGLE / NOTA ──────────────────────────────────────────── */
#page-nota, .single-nota-page {
  position: fixed; inset: 0; z-index: 1000;
  overflow-y: auto; background: var(--white);
  transform: translateY(0); display: none;
}
#page-nota.active { display: block; }
.nota-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--fushia); z-index: 1001; width: 0; transition: width .1s linear; }
.nota-hero-img { min-height: clamp(380px, 52vw, 600px); position: relative; display: flex; align-items: flex-end; background: linear-gradient(135deg, #4100F5, #7c3aed 50%, #F037A5); }
.nota-hero-img > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.nota-hero-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.3) 60%, transparent 100%); }
.nota-hero-deco { position: absolute; top: -80px; right: -80px; width: 360px; height: 360px; border: 2px solid rgba(255,255,255,.06); border-radius: 50%; }
.nota-hero-deco2 { position: absolute; top: 40px; right: 40px; width: 180px; height: 180px; border: 1px solid rgba(255,255,255,.05); border-radius: 50%; }
.nota-hero-content { position: relative; z-index: 2; padding: clamp(24px, 5vw, 80px); padding-top: clamp(100px, 14vw, 160px); width: 100%; max-width: 900px; }
.nota-breadcrumb { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.45); display: flex; gap: 6px; margin-bottom: 18px; flex-wrap: wrap; }
.nota-breadcrumb a { cursor: pointer; transition: color .2s; } .nota-breadcrumb a:hover { color: rgba(255,255,255,.8); }
.nota-hero-cat { font-size: 9px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--fushia); background: rgba(240,55,165,.15); border: 1px solid rgba(240,55,165,.3); padding: 5px 14px; border-radius: 30px; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 16px; }
.nota-hero-content h1 { font-size: clamp(28px, 4vw, 56px); font-weight: 900; line-height: 1.0; color: #fff; letter-spacing: -1.5px; text-transform: uppercase; margin-bottom: 18px; }
.nota-hero-content h1 em { font-style: italic; color: var(--citric); }
.nota-hero-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.nota-autor-pill { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.1); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.15); padding: 7px 14px 7px 7px; border-radius: 30px; }
.nota-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--fushia); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.nota-avatar img { width: 100%; height: 100%; object-fit: cover; }
.nota-autor-info strong { display: block; font-size: 11px; font-weight: 800; color: #fff; }
.nota-autor-info span { font-size: 9px; color: rgba(255,255,255,.5); font-weight: 600; }
.nota-stat { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.5); display: inline-flex; align-items: center; gap: 5px; }
.nota-bar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 10px clamp(16px, 4vw, 52px);
  display: flex; align-items: center; justify-content: space-between;
}
.nota-back { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 800; color: var(--muted); cursor: pointer; background: none; border: none; font-family: 'Montserrat', sans-serif; transition: color .2s; }
.nota-back:hover { color: var(--text); }
.nota-bar-actions { display: flex; gap: 8px; }
.nota-btn { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; padding: 7px 14px; border-radius: 30px; border: 1px solid var(--border); background: none; cursor: pointer; color: var(--muted); font-family: 'Montserrat', sans-serif; transition: all .2s; }
.nota-btn:hover { border-color: var(--klein); color: var(--klein); background: #f0eeff; }
.nota-btn.liked { background: var(--fushia); border-color: var(--fushia); color: #fff; }
.nota-wrap { max-width: 720px; margin: 0 auto; padding: clamp(32px, 5vw, 60px) 0 80px; }
.nota-lead { font-size: clamp(16px, 2vw, 22px); font-weight: 600; color: var(--text); line-height: 1.65; margin-bottom: 32px; border-left: 4px solid var(--fushia); padding-left: 20px; }
.nota-body p { font-size: clamp(15px, 1.6vw, 17px); color: var(--text); line-height: 1.8; margin-bottom: 22px; }
.nota-body h2 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 900; letter-spacing: -.5px; margin: 36px 0 16px; text-transform: uppercase; }
.nota-bq { margin: 28px 0; padding: 22px 24px; border-left: 3px solid var(--fushia); background: #FFF0F5; border-radius: 0 var(--r) var(--r) 0; display: flex; gap: 14px; }
.nota-bq-ico { color: var(--fushia); flex-shrink: 0; padding-top: 3px; }
.nota-bq p { font-size: 17px; font-weight: 700; font-style: italic; color: var(--text); line-height: 1.6; margin: 0; }
.nota-bq cite { display: block; font-size: 11px; font-weight: 700; color: var(--muted); margin-top: 10px; font-style: normal; }
.nota-hl { background: linear-gradient(90deg, rgba(65,0,245,.06), rgba(240,55,165,.04)); border-radius: var(--r); padding: 18px 20px; margin: 24px 0; display: flex; gap: 14px; align-items: flex-start; }
.nota-hl p { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.6; margin: 0; }
.nota-img-blk { width: 100%; aspect-ratio: 16/9; border-radius: var(--r); margin: 28px 0 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.nota-img-blk img { width: 100%; height: 100%; object-fit: cover; }
.nota-img-cap { font-size: 10px; color: var(--muted); font-weight: 600; margin-bottom: 24px; text-align: center; }
.nota-ad-inline { height: 90px; background: var(--off); border: 1px dashed var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin: 28px 0; }
.nota-ad-inline span { font-size: 10px; font-weight: 700; color: var(--muted); letter-spacing: 1px; }
.nota-tags { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--border); }
.nota-tag-pill { font-size: 11px; font-weight: 700; padding: 6px 14px; border-radius: 30px; background: var(--off); color: var(--muted); border: 1px solid var(--border); transition: all .2s; cursor: pointer; }
.nota-tag-pill:hover { background: var(--klein); color: #fff; border-color: var(--klein); }
.nota-autor-box { display: flex; align-items: flex-start; gap: 16px; background: var(--off); border-radius: var(--r); padding: 20px; margin-top: 32px; }
.nota-avatar-lg { width: 56px; height: 56px; border-radius: 50%; background: var(--fushia); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; overflow: hidden; }
.nota-avatar-lg img { width: 100%; height: 100%; object-fit: cover; }
.nota-autor-box h4 { font-size: 14px; font-weight: 800; margin-bottom: 5px; }
.nota-autor-box p { font-size: 12px; color: var(--muted); line-height: 1.65; }
.nota-rel-lbl { font-size: 9px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); display: block; margin-top: 32px; margin-bottom: 14px; }
.nota-rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.nota-rel-card { border-radius: var(--r); overflow: hidden; background: var(--white); border: 1px solid var(--border); box-shadow: var(--sh); transition: transform .2s, box-shadow .2s; cursor: pointer; }
.nota-rel-card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.nota-rel-img { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; }
.nota-rel-img img { width: 100%; height: 100%; object-fit: cover; }
.nota-rel-body { padding: 12px 14px; }
.rel-cat { font-size: 8px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--fushia); display: block; margin-bottom: 4px; }
.nota-rel-body h4 { font-size: 12px; font-weight: 800; line-height: 1.3; }

/* ── SINGLE VIDEO ───────────────────────────────────────────── */
.vid-page-wrap { display: grid; grid-template-columns: 1fr 380px; min-height: calc(100vh - 52px); align-items: start; }
.vid-main { padding: 20px 24px; min-width: 0; }
.embed-wrap { width: 100%; aspect-ratio: 16/9; background: #000; border-radius: var(--r); overflow: hidden; position: relative; box-shadow: 0 8px 40px rgba(0,0,0,.5); }
.embed-wrap iframe, .embed-wrap video { width: 100%; height: 100%; border: none; display: block; }
.embed-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; cursor: pointer; position: relative; background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460); }
.ep-play { width: 72px; height: 72px; background: var(--fushia); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .2s, background .2s; }
.embed-placeholder:hover .ep-play { transform: scale(1.08); background: var(--tangerine); }
.ep-title { font-size: 16px; font-weight: 800; color: #fff; text-align: center; max-width: 440px; line-height: 1.35; padding: 0 20px; }
.ep-sub { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.45); margin-top: 4px; }
.ep-badge { position: absolute; top: 14px; left: 14px; background: var(--fushia); color: #fff; font-size: 9px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 30px; display: flex; align-items: center; gap: 5px; }
.ep-dur { position: absolute; bottom: 12px; right: 12px; background: rgba(0,0,0,.8); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 6px; }
.vid-info-wrap { margin-top: 16px; }
.vid-info-wrap h1 { font-size: clamp(18px, 2.2vw, 24px); font-weight: 900; color: #fff; line-height: 1.25; margin-bottom: 10px; }
.vid-stats-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 14px; }
.vid-views { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.45); }
.vid-actions { display: flex; gap: 8px; }
.vact-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; padding: 7px 14px; border-radius: 30px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06); color: rgba(255,255,255,.7); cursor: pointer; font-family: 'Montserrat', sans-serif; transition: all .2s; }
.vact-btn:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); color: #fff; }
.vact-btn.liked { background: var(--fushia); border-color: var(--fushia); color: #fff; }
.channel-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.channel-info { display: flex; align-items: center; gap: 12px; }
.ch-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--klein), var(--fushia)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; font-weight: 900; color: #fff; overflow: hidden; }
.ch-avatar img { width: 100%; height: 100%; object-fit: cover; }
.ch-name strong { display: block; font-size: 13px; font-weight: 800; color: #fff; }
.ch-name span { font-size: 10px; color: rgba(255,255,255,.4); font-weight: 600; }
.sub-btn { font-size: 11px; font-weight: 800; padding: 8px 20px; border-radius: 30px; background: #fff; color: #000; border: none; cursor: pointer; font-family: 'Montserrat', sans-serif; transition: all .2s; }
.sub-btn:hover { background: var(--fushia); color: #fff; }
.desc-box { background: rgba(255,255,255,.05); border-radius: 10px; padding: 14px 16px; margin-bottom: 16px; cursor: pointer; }
.desc-box p { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.7; }
.desc-box strong { color: rgba(255,255,255,.8); }
.vid-ad { background: rgba(255,255,255,.03); border: 1px dashed rgba(255,255,255,.08); border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; margin-bottom: 16px; }
.vid-ad span { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.2); }
.comments-head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.comments-head h3 { font-size: 14px; font-weight: 800; color: #fff; }
.comments-head span { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.35); }
.comment { display: flex; gap: 12px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.06); }
.com-av { width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: #fff; overflow: hidden; }
.com-av img { width: 100%; height: 100%; object-fit: cover; }
.com-body strong { font-size: 11px; font-weight: 800; color: rgba(255,255,255,.6); }
.com-body p { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 3px; line-height: 1.6; }
.com-meta { display: flex; gap: 10px; margin-top: 5px; }
.com-meta span { font-size: 9px; font-weight: 600; color: rgba(255,255,255,.28); }
.vid-sidebar { background: rgba(0,0,0,.4); padding: 16px; border-left: 1px solid rgba(255,255,255,.06); height: calc(100vh - 52px); overflow-y: auto; position: sticky; top: 52px; }
.sidebar-head { font-size: 11px; font-weight: 800; color: rgba(255,255,255,.5); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
.sidebar-ad { background: rgba(255,255,255,.04); border: 1px dashed rgba(255,255,255,.08); border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; margin-bottom: 14px; }
.sidebar-ad span { font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.2); }
.sidebar-ad small { font-size: 8px; color: rgba(255,255,255,.15); }
.playlist-item { display: flex; gap: 10px; padding: 8px; border-radius: 8px; cursor: pointer; transition: background .2s; margin-bottom: 4px; }
.playlist-item:hover, .playlist-item.active { background: rgba(255,255,255,.07); }
.playlist-item.active { border-left: 2px solid var(--fushia); padding-left: 6px; }
.pl-thumb { width: 120px; min-width: 120px; aspect-ratio: 16/9; border-radius: 6px; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; }
.pl-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pl-dur { position: absolute; bottom: 3px; right: 4px; background: rgba(0,0,0,.85); color: #fff; font-size: 8px; font-weight: 700; padding: 1px 5px; border-radius: 3px; }
.pl-info h4 { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.8); line-height: 1.3; margin-bottom: 4px; }
.pl-info span { font-size: 9px; font-weight: 600; color: rgba(255,255,255,.35); }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer { background: var(--off); border-top: 1px solid var(--border); padding: clamp(36px, 5vw, 60px) clamp(14px, 4vw, 52px) 30px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr; gap: clamp(20px, 3vw, 40px); margin-bottom: 40px; align-items: start; }
.footer-brand { max-width: 420px; }
.footer-logo { font-size: 28px; font-weight: 900; text-transform: uppercase; letter-spacing: -1px; margin-bottom: 14px; }
.footer-logo em { font-style: italic; color: var(--fushia); }
.footer-desc { font-size: 13px; color: var(--muted); line-height: 1.75; }
.footer-links h5 { font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { font-size: 13px; font-weight: 600; color: var(--text); transition: color .2s; }
.footer-links li a:hover { color: var(--fushia); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 20px; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 11px; font-weight: 600; color: var(--muted); }
.footer-soc { display: flex; gap: 10px; }
.soc { width: 36px; height: 36px; border-radius: 50%; background: var(--white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all .2s; }
.soc:hover { background: var(--fushia); border-color: var(--fushia); color: #fff; }

/* ── ANIMATION ──────────────────────────────────────────────── */
.anim { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.anim.vis { opacity: 1; transform: none; }

/* ── SINGLE POST ────────────────────────────────────────────── */
.single-wrap { max-width: 800px; margin: 0 auto; padding: clamp(80px,10vw,140px) clamp(16px,4vw,40px) 80px; }
.entry-header { margin-bottom: 36px; }
.entry-cat-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 9px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 30px; background: #FFF0F5; color: var(--fushia); margin-bottom: 16px; }
.entry-title { font-size: clamp(28px, 4vw, 52px); font-weight: 900; line-height: 1.05; letter-spacing: -1px; text-transform: uppercase; margin-bottom: 18px; }
.entry-meta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; font-size: 11px; font-weight: 600; color: var(--muted); border-bottom: 1px solid var(--border); padding-bottom: 18px; }
.entry-content { font-size: clamp(15px, 1.6vw, 17px); line-height: 1.85; color: var(--text); }
.entry-content h2 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 900; letter-spacing: -.5px; margin: 36px 0 16px; text-transform: uppercase; }
.entry-content p { margin-bottom: 22px; }
.entry-content blockquote { margin: 28px 0; padding: 22px 24px; border-left: 3px solid var(--fushia); background: #FFF0F5; border-radius: 0 var(--r) var(--r) 0; font-size: 17px; font-weight: 700; font-style: italic; line-height: 1.6; color: var(--text); }
.entry-content img { border-radius: var(--r); margin: 28px 0; width: 100%; }
.entry-tags { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--border); }
.tag-pill { font-size: 11px; font-weight: 700; padding: 6px 14px; border-radius: 30px; background: var(--off); color: var(--muted); border: 1px solid var(--border); transition: all .2s; }
.tag-pill:hover { background: var(--klein); color: #fff; border-color: var(--klein); }

/* ── ARCHIVE ────────────────────────────────────────────────── */
.archive-wrap { padding: clamp(80px, 10vw, 140px) clamp(14px, 4vw, 52px) 80px; }
.archive-header { margin-bottom: 40px; }
.archive-header .sec-title { color: var(--text); }
.archive-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.archive-card { border-radius: var(--r); overflow: hidden; background: var(--white); border: 1px solid var(--border); box-shadow: var(--sh); transition: transform .3s, box-shadow .3s; }
.archive-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.archive-thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--klein), var(--fushia)); overflow: hidden; }
.archive-thumb img { width: 100%; height: 100%; object-fit: cover; }
.archive-body { padding: 18px 20px; }
.archive-cat { font-size: 8px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--fushia); margin-bottom: 8px; display: block; }
.archive-body h3 { font-size: clamp(15px, 1.8vw, 20px); font-weight: 800; line-height: 1.25; margin-bottom: 8px; }
.archive-body p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.archive-meta { font-size: 10px; font-weight: 600; color: var(--muted); display: flex; gap: 12px; }
.archive-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
.page-num { width: 38px; height: 38px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; border: 1px solid var(--border); color: var(--muted); transition: all .2s; cursor: pointer; }
.page-num:hover, .page-num.current { background: var(--klein); border-color: var(--klein); color: #fff; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .tre-grid { grid-template-columns: repeat(2, 1fr); }
  .pink-grid { grid-template-columns: 1fr 1fr; }
  .pink-col:last-child { display: none; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-feat { grid-column: 1; }
  .hero-bottom { grid-template-columns: 1fr; grid-column: 1; }
  .hero-side { flex-direction: row; }
  .side-card { min-height: 200px; }
  .chi-grid { grid-template-columns: 1fr; }
  .tel-grid { grid-template-columns: 1fr 1fr; }
  .vid-grid { grid-template-columns: 1fr 1fr; }
  .nb-grid { grid-template-columns: 1fr; }
  .nb-wide { grid-column: 1; }
  .section-with-sidebar { grid-template-columns: 1fr; }
  .sec-sidebar { display: none; }
  .vid-page-wrap { grid-template-columns: 1fr; }
  .vid-sidebar { display: none; }
  .nota-rel-grid { grid-template-columns: 1fr 1fr; }
  /* ── NAV MÓVIL ── */
  .nav-pills       { display: none !important; }   /* ocultar pills */
  .hamburger       { display: flex !important; }   /* mostrar hamburger */
  .mobile-menu     { display: block; }
  .famosos-logo-link,
  .custom-logo-link { display: inline-flex !important; flex-shrink: 0 !important; } /* logo siempre visible */
  .footer-top { grid-template-columns: 1fr; }
  .pink-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .tel-grid { grid-template-columns: 1fr; }
  .vid-grid { grid-template-columns: 1fr; }
  .nota-rel-grid { grid-template-columns: 1fr; }
  .vid-page-wrap { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   ADMIN BAR OFFSETS
   Con admin bar, WordPress agrega margin-top:32px al <html>.
   Los elementos fixed se posicionan relativo al viewport,
   así que hay que sumarles 32px. El hero NO necesita ajuste
   porque el margin-top:32px del html ya lo compensa.
   Desktop: 32px  |  Mobile (≤782px): 46px
   ════════════════════════════════════════════════════════════ */

/* ── Desktop admin bar (32px) ── */
.admin-bar 
.admin-bar nav#site-nav  { top: 88px  !important; } /* 32 + 56 */
.admin-bar .ticker       { top: 148px !important; } /* 32 + 56 + 60 */
.admin-bar .mobile-menu  { top: 148px !important; }
/* hero queda bien: html margin-top:32 + hero margin-top:148 = viewport 180 = fin del ticker */

/* ── Mobile admin bar (46px) ── */
@media screen and (max-width: 782px) {
  .admin-bar 
  .admin-bar nav#site-nav  { top: 102px !important; } /* 46 + 56 */
  .admin-bar .ticker       { top: 162px !important; } /* 46 + 56 + 60 */
  .admin-bar .mobile-menu  { top: 162px !important; }
}

@media (max-width: 600px) {
   /* hide "PUBLICIDAD" label */
  
  nav#site-nav { top: 44px !important; }
  .ticker      { top: 104px !important; }
  .hero        { margin-top: 136px !important; }
        .admin-bar 
  .admin-bar nav#site-nav { top: calc(44px + 46px) !important; }
  .admin-bar .ticker      { top: calc(104px + 46px) !important; }
}
