/*
Theme Name: AhoraLoja
Theme URI: https://ahoraloja.com
Description: Periódico Digital Loja - Ultra Premium Vintage Editorial Design
Version: 6.0
*/

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,900&family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600&family=Archivo:wght@400;500;600;700;800&display=swap');

:root {
  --navy:         #1b3a52;
  --navy-deep:    #13293b;
  --gold:         #e0a829;
  --gold-soft:    #f0c75e;
  --paper:        #f7f4ee;
  --paper-2:      #efe9df;
  --ink:          #1c1c1a;
  --ink-soft:     #54514b;
  --line:         #d8d1c4;
  --red:          #b8331f;

  --display:      'Fraunces', Georgia, serif;
  --body:         'Newsreader', Georgia, serif;
  --label:        'Archivo', 'Segoe UI', sans-serif;
  
  --ease:         cubic-bezier(.2,.7,.2,1);
  --shadow-sm:    0 2px 8px rgba(19,41,59,.08);
  --shadow-md:    0 6px 20px rgba(19,41,59,.16);
  --shadow-lg:    0 12px 36px rgba(19,41,59,.22);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; border-radius: 4px; }
ul { list-style: none; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ============================================================
   HEADER & DECORATIONS
   ============================================================ */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  z-index: 999;
}

/* UTILITY BAR */
.utility {
  background: var(--navy-deep);
  color: #cdd6df;
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: .04em;
}
.utility .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
}
.utility .left { display: flex; gap: 18px; align-items: center; }
.utility .live { color: var(--gold); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.utility .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); display: inline-block; animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1) } 50% { opacity: .3; transform: scale(.7) } }
.utility .right { display: flex; gap: 16px; align-items: center; }
.utility .btn {
  border: 1px solid rgba(255,255,255,.3);
  padding: 5px 14px;
  border-radius: 3px;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: color .3s;
  z-index: 0;
}
.utility .btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(100%);
  transition: transform .3s var(--ease);
  z-index: -1;
}
.utility .btn:hover { color: var(--navy-deep); font-weight: 700; }
.utility .btn:hover::before { transform: translateY(0); }

/* BREAKING NEWS MARQUEE */
.breaking {
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 40px;
}
.bk-label {
  background: var(--navy-deep);
  color: var(--gold);
  font-family: var(--label);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 0 28px 0 18px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.bk-marquee { flex: 1; overflow: hidden; }
.bk-track {
  display: flex;
  width: max-content;
  animation: scroll 38s linear infinite;
  font-family: var(--label);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .02em;
}
.bk-track span {
  white-space: nowrap;
  padding: 0 26px;
  display: flex;
  align-items: center;
}
.bk-track span::before {
  content: '•';
  color: var(--gold);
  margin-right: 26px;
}
.breaking:hover .bk-track { animation-play-state: paused; }

/* MASTHEAD */
.masthead {
  text-align: center;
  padding: 26px 0 14px;
  border-bottom: 3px double var(--navy);
  background: transparent;
}
.masthead .kicker {
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: .35em;
  color: var(--ink-soft);
  text-transform: uppercase;
  animation: fadeDown .8s var(--ease) both;
}
.masthead h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: 74px;
  letter-spacing: -.02em;
  color: var(--navy-deep);
  line-height: .95;
  margin: 6px 0 8px;
  animation: titleIn 1s var(--ease) .15s both;
}
.masthead h1 span { color: var(--gold); }
.masthead .dateline {
  font-family: var(--label);
  font-size: 12.5px;
  letter-spacing: .06em;
  color: var(--ink-soft);
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-transform: uppercase;
  animation: fadeDown .8s var(--ease) .4s both;
}
@keyframes titleIn { from { opacity: 0; transform: translateY(18px) scale(.97) } to { opacity: 1; transform: none } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-8px) } to { opacity: 1; transform: none } }

/* STICKY NAV */
.mainnav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow .3s;
}
.mainnav.stuck { box-shadow: 0 6px 20px rgba(19,41,59,.28); }
.mainnav .wrap {
  display: flex;
  gap: 4px;
  align-items: center;
  height: 48px;
  overflow-x: auto;
  scrollbar-width: none;
}
.mainnav .wrap::-webkit-scrollbar { display: none; }
.mainnav a {
  font-family: var(--label);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .08em;
  color: #e8edf2;
  text-transform: uppercase;
  padding: 14px 14px 12px;
  white-space: nowrap;
  position: relative;
  transition: color .2s;
}
.mainnav a::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}
.mainnav a:hover { color: #fff; }
.mainnav a:hover::after, .mainnav a.on::after { transform: scaleX(1); }
.mainnav a.on { color: var(--gold); }

/* SPONSORS MARQUEE */
.sponsors { background: var(--paper-2); border-bottom: 1px solid var(--line); overflow: hidden; }
.sponsors .wrap { display: flex; align-items: center; min-height: 64px; }
.sponsors .lbl {
  font-family: var(--label);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: .16em;
  color: var(--ink-soft);
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid var(--line);
}
.marquee {
  flex: 1;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
  mask-image: linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
}
.marquee-track { display: flex; align-items: center; gap: 56px; width: max-content; animation: scroll 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll { from { transform: translateX(0) } to { transform: translateX(-50%) } }
.brand {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  color: var(--navy);
  opacity: .7;
  transition: opacity .2s, color .2s, transform .2s;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.brand:hover { opacity: 1; color: var(--red); transform: translateY(-1px); }
.brand .tld { font-family: var(--label); font-weight: 600; font-size: 12px; color: var(--gold); }

/* ============================================================
   GRID & LAYOUT ELEMENTS
   ============================================================ */
.rise { animation: rise .7s var(--ease) both; }
@keyframes rise { from { opacity: 0; transform: translateY(22px) } to { opacity: 1; transform: none } }

.ul-link {
  background-image: linear-gradient(var(--red), var(--red));
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .35s var(--ease), color .2s;
}
.ul-link:hover { background-size: 100% 2px; color: var(--red); }

/* PLACEHOLDERS & PHOTO FALLBACKS */
.ph {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
}
.ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease), filter .3s;
}
.ph svg.cam { width: 42px; height: 42px; color: rgba(255,255,255,.4); position: absolute; z-index: 1; pointer-events: none; }
.ph .wm {
  position: absolute;
  left: 10px;
  bottom: 8px;
  font-family: var(--label);
  font-weight: 700;
  font-size: 8.5px;
  letter-spacing: .16em;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  z-index: 2;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}

.pf1 { background: linear-gradient(135deg, #1b3a52, #0f2030) }
.pf2 { background: linear-gradient(135deg, #27574c, #143029) }
.pf3 { background: linear-gradient(135deg, #9a3b22, #5e2113) }
.pf4 { background: linear-gradient(135deg, #34506e, #1c2f44) }
.pf5 { background: linear-gradient(135deg, #8a6418, #52390b) }
.pf6 { background: linear-gradient(135deg, #15455f, #0c2735) }

/* LEAD SECTION */
.lead { display: grid; grid-template-columns: 1.7fr 1fr; gap: 0; border-bottom: 1px solid var(--line); }
.lead .feature { padding: 34px 34px 34px 0; border-right: 1px solid var(--line); }
.feature .cat {
  font-family: var(--label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--red);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.feature .cat::before { content: ''; width: 24px; height: 2px; background: var(--red); display: inline-block; }
.feature h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: 46px;
  line-height: 1.04;
  letter-spacing: -.015em;
  margin: 12px 0 16px;
  color: var(--navy-deep);
}
.feature .ph { height: 340px; border-radius: 6px; margin: 8px 0 18px; }
.feature .ph svg.cam { width: 60px; height: 60px; }
.feature .stand { font-size: 19px; line-height: 1.6; color: #36332e; font-family: var(--body); }
.feature .stand::first-letter {
  font-family: var(--display);
  font-weight: 900;
  font-size: 56px;
  float: left;
  line-height: .8;
  padding: 6px 12px 0 0;
  color: var(--navy);
}
.feature .by {
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: .05em;
  color: var(--ink-soft);
  margin-top: 16px;
  text-transform: uppercase;
}

.side { padding: 34px 0 34px 28px; }
.side .h {
  font-family: var(--label);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--navy);
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 4px;
}
.side .item { padding: 15px 0; border-bottom: 1px solid var(--line); transition: padding-left .25s var(--ease); }
.side .item:hover { padding-left: 8px; }
.side .item:last-child { border-bottom: none; }
.side .item .t { font-family: var(--display); font-weight: 600; font-size: 18px; line-height: 1.2; color: var(--navy-deep); }
.side .item .m { font-family: var(--label); font-size: 11px; letter-spacing: .05em; color: var(--ink-soft); margin-top: 6px; text-transform: uppercase; }

/* SECTIONS RULES */
.secrule { display: flex; align-items: center; gap: 16px; margin: 34px 0 20px; }
.secrule h3 { font-family: var(--display); font-weight: 900; font-size: 26px; color: var(--navy-deep); white-space: nowrap; }
.secrule .ln { flex: 1; height: 2px; background: linear-gradient(90deg, var(--navy), transparent); }

/* MASONRY & COLS */
.cols { display: grid; grid-template-columns: 2.2fr 1fr; gap: 40px; padding-bottom: 40px; }
.tgrid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.card { cursor: pointer; }
.card .ph { height: 150px; border-radius: 6px; margin-bottom: 10px; transition: filter .3s, transform .3s var(--ease); }
.card:hover .ph { filter: brightness(1.12); transform: translateY(-3px); }
.card:hover .ph img { transform: scale(1.04); }
.card .cat { font-family: var(--label); font-weight: 700; font-size: 10.5px; letter-spacing: .12em; color: var(--red); text-transform: uppercase; }
.card h4 { font-family: var(--display); font-weight: 600; font-size: 18px; line-height: 1.18; color: var(--navy-deep); margin-top: 5px; }

/* WORLD / SIDEBAR */
.world .h {
  font-family: var(--label);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  color: #fff;
  background: var(--navy);
  text-transform: uppercase;
  padding: 11px 14px;
  border-radius: 6px 6px 0 0;
}
.world .box { border: 1px solid var(--line); border-top: none; border-radius: 0 0 6px 6px; overflow: hidden; }
.world .row { display: flex; gap: 12px; padding: 14px; border-bottom: 1px solid var(--line); transition: background .25s; }
.world .row:hover { background: var(--paper-2); }
.world .row:last-child { border-bottom: none; }
.world .num { font-family: var(--display); font-weight: 900; font-size: 26px; color: var(--gold); line-height: 1; min-width: 26px; transition: transform .25s var(--ease); }
.world .row:hover .num { transform: scale(1.2); }
.world .row .t { font-family: var(--display); font-weight: 600; font-size: 15.5px; line-height: 1.2; color: var(--navy-deep); }
.world .row .m { font-family: var(--label); font-size: 10.5px; letter-spacing: .05em; color: var(--ink-soft); margin-top: 5px; text-transform: uppercase; }

/* ============================================================
   FEATURED STRIPS (Deportes/Farándula adaptado a Vintage)
   ============================================================ */
.featured-strip {
  padding: 34px 28px;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 34px;
}
.featured-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .2s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--navy); }
.feature-card-img { width: 100%; height: 140px; object-fit: cover; border-radius: 5px 5px 0 0; }
.feature-card-body { padding: 14px; }
.feature-card-cat { font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; color: var(--red); margin-bottom: 5px; font-family: var(--label); }
.feature-card-title { font-size: 16px; font-weight: 700; line-height: 1.25; color: var(--navy-deep); font-family: var(--display); }
.feature-card-title a:hover { color: var(--red); }
.feature-card-meta { font-size: 11px; color: var(--ink-soft); margin-top: 6px; font-family: var(--label); text-transform: uppercase; }

/* ============================================================
   ENGAGE SECTIONS (Formulario + Social)
   ============================================================ */
.engage { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 44px 0; border-top: 3px double var(--navy); }
.report .intro { font-size: 17px; line-height: 1.55; color: #36332e; margin-bottom: 22px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-family: var(--label); font-weight: 600; font-size: 11px; letter-spacing: .08em; color: var(--navy); text-transform: uppercase; margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,58,82,.12); }
.field textarea { resize: vertical; min-height: 90px; }
.field.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.submit {
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--label);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  padding: 14px 28px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .25s, color .2s;
  z-index: 0;
}
.submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform .35s var(--ease);
  z-index: -1;
}
.submit:hover { color: var(--navy-deep); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(19,41,59,.22); }
.submit:hover::before { transform: translateX(0); }
.submit .arr { transition: transform .25s var(--ease); }
.submit:hover .arr { transform: translateX(4px); }

/* SOCIAL FEEDS & CHIPS */
.social .feeds { display: flex; flex-direction: column; gap: 18px; }
.feedcard { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); transition: box-shadow .3s, transform .3s; }
.feedcard:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feedcard .head { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.feedcard .head .ic { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; }
.feedcard .head .fb { background: #1877f2; }
.feedcard .head .tk { background: #000; }
.feedcard .head .nm { font-family: var(--label); font-weight: 700; font-size: 14px; color: var(--navy-deep); }
.feedcard .head .sub { font-family: var(--label); font-size: 11px; color: var(--ink-soft); }
.feedcard .head .follow {
  margin-left: auto;
  font-family: var(--label);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .05em;
  color: #fff;
  background: var(--navy);
  padding: 8px 15px;
  border-radius: 5px;
  text-transform: uppercase;
  transition: background .25s, transform .2s;
}
.feedcard .head .follow:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-1px); }
.fb-post { display: flex; gap: 10px; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.fb-post:last-child { border-bottom: none; }
.fb-post .thumb { width: 64px; height: 64px; border-radius: 6px; flex-shrink: 0; }
.fb-post .tx { font-family: var(--body); font-size: 14px; line-height: 1.35; color: var(--navy-deep); }
.fb-post .meta { font-family: var(--label); font-size: 11px; color: var(--ink-soft); margin-top: 6px; display: flex; gap: 14px; }
.tk-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; padding: 12px; }
.tk-vid { position: relative; aspect-ratio: 9/16; border-radius: 6px; overflow: hidden; display: flex; align-items: flex-end; background: var(--navy-deep); }
.tk-vid .play { position: absolute; top: 8px; right: 8px; color: #fff; opacity: .9; }
.tk-vid .views { font-family: var(--label); font-size: 10px; font-weight: 600; color: #fff; padding: 6px; display: flex; align-items: center; gap: 4px; z-index: 10; }

.network { margin-top: 22px; }
.network .nt {
  font-family: var(--label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.chips { display: flex; flex-direction: column; gap: 9px; }
.chip {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.chip:hover { border-color: var(--navy); transform: translateX(3px); box-shadow: 0 4px 14px rgba(19,41,59,.08); }
.chip .ci { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.ci.fb { background: #1877f2; }
.ci.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.ci.tk { background: #000; }
.ci.yt { background: #ff0000; }
.chip .cn { font-family: var(--label); font-weight: 600; font-size: 13.5px; color: var(--navy-deep); line-height: 1.1; }
.chip .ch { font-family: var(--label); font-size: 11px; color: var(--ink-soft); margin-top: 2px; }
.chip .go { margin-left: auto; color: var(--ink-soft); transition: color .2s, transform .2s; }
.chip:hover .go { color: var(--navy); transform: translateX(2px); }

/* ============================================================
   SINGLE POST LAYOUT (VINTAGE ADAPTATION)
   ============================================================ */
.single-post-container { max-width: 800px; margin: 40px auto; padding: 0 24px 60px; font-family: var(--body); }
.breadcrumb { font-family: var(--label); font-size: 0.78rem; color: var(--ink-soft); margin-bottom: 16px; display: flex; align-items: center; flex-wrap: wrap; gap: 4px; text-transform: uppercase; }
.breadcrumb a { color: var(--navy); font-weight: 700; }
.breadcrumb a:hover { text-decoration: underline; }
.single-category-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  margin-bottom: 16px;
  color: #fff;
  font-family: var(--label);
}
.single-title {
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.12;
  color: var(--navy-deep);
  margin-bottom: 16px;
}
.single-meta { color: var(--ink-soft); font-size: 0.85rem; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--line); font-family: var(--label); text-transform: uppercase; }
.author-name { font-weight: 800; color: var(--navy); }
.single-featured-image { margin-bottom: 32px; border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-md); }
.single-featured-image img { width: 100%; height: auto; }
.single-content { font-size: 1.18rem; line-height: 1.75; color: var(--ink); }
.single-content h1 { display: none; }
.single-content h2 { font-family: var(--display); font-size: 1.8rem; margin: 36px 0 14px; color: var(--navy-deep); border-left: 4px solid var(--gold); padding-left: 14px; }
.single-content h3 { font-family: var(--display); font-size: 1.4rem; margin: 28px 0 10px; color: var(--navy); }
.single-content p { margin-bottom: 22px; }
.single-content p::first-child::first-letter {
  font-family: var(--display);
  font-weight: 900;
  font-size: 56px;
  float: left;
  line-height: .8;
  padding: 6px 12px 0 0;
  color: var(--navy);
}
.single-content ul { margin: 0 0 22px 22px; list-style-type: square; }
.single-content li { margin-bottom: 8px; }
.single-content strong { color: var(--navy-deep); font-weight: 700; }

/* SHARE BAR */
.share-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 24px 0;
  padding: 16px 18px;
  background: var(--paper-2);
  border-radius: 6px;
  border-left: 4px solid var(--gold);
}
.share-bar--bottom { border-left-color: var(--navy); background: var(--paper-2); }
.share-label { font-weight: 700; font-size: 0.82rem; color: var(--ink-soft); margin-right: 4px; font-family: var(--label); text-transform: uppercase; }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  font-family: var(--label);
  transition: all .2s var(--ease);
  text-transform: uppercase;
}
.share-wa  { background: #25D366; color: #fff; }
.share-fb  { background: #1877F2; color: #fff; }
.share-tw  { background: #000; color: #fff; }
.share-copy { background: var(--line); color: var(--ink); }
.share-btn:hover { opacity: .85; transform: translateY(-1px); box-shadow: var(--shadow-sm); }

/* RELATED POSTS */
.related-posts { margin: 40px 0 0; padding-top: 28px; border-top: 3px double var(--navy); }
.related-title { font-family: var(--display); font-size: 1.6rem; font-weight: 900; margin-bottom: 20px; color: var(--navy-deep); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card { display: flex; flex-direction: column; gap: 8px; border-radius: 6px; overflow: hidden; background: var(--paper-2); transition: transform .2s var(--ease), border-color .2s; border: 1px solid transparent; }
.related-card:hover { transform: translateY(-3px); border-color: var(--line); }
.related-card img { width: 100%; height: 110px; object-fit: cover; }
.related-no-img { width: 100%; height: 110px; background: var(--navy-deep); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; font-family: var(--label); }
.related-card-title { font-size: 0.85rem; font-weight: 700; line-height: 1.3; padding: 0 10px 12px; color: var(--navy-deep); font-family: var(--display); }
.related-card:hover .related-card-title { color: var(--red); }

/* ============================================================
   PIE DE PÁGINA
   ============================================================ */
footer { background: var(--navy-deep); color: #aeb9c4; padding: 48px 0 28px; }
footer .grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
footer .logo { font-family: var(--display); font-weight: 900; font-size: 32px; color: #fff; margin-bottom: 12px; }
footer .logo span { color: var(--gold); }
footer .about { font-size: 14.5px; line-height: 1.6; color: #9aa6b2; }
footer h5 { font-family: var(--label); font-weight: 700; font-size: 12px; letter-spacing: .12em; color: var(--gold); text-transform: uppercase; margin-bottom: 14px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
footer ul a { font-family: var(--label); font-size: 13.5px; color: #aeb9c4; transition: color .2s, padding-left .2s; }
footer ul a:hover { color: #fff; padding-left: 5px; }
footer .social-row { display: flex; gap: 12px; margin-top: 14px; }
footer .social-row a {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  color: #fff;
  transition: background .25s, transform .25s, color .25s;
}
footer .social-row a:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-3px); }
footer .legal {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 36px;
  padding-top: 20px;
  font-family: var(--label);
  font-size: 11.5px;
  letter-spacing: .04em;
  color: #7e8a96;
  text-align: center;
  text-transform: uppercase;
}

/* ============================================================
   INTERACTIVE FLOAT BUTTONS
   ============================================================ */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 13px 18px 13px 15px;
  border-radius: 50px;
  font-family: var(--label);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  animation: waPulse 2.4s infinite;
  transition: transform .2s var(--ease);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.wa-float:hover { transform: translateY(-3px) scale(1.04); }
.wa-float svg { width: 26px; height: 26px; flex-shrink: 0; }
.wa-float .txt { line-height: 1.1; }
.wa-float .txt small { display: block; font-weight: 400; font-size: 10.5px; opacity: .9; }
@keyframes waPulse { 
  0% { box-shadow: 0 6px 22px rgba(0,0,0,.22), 0 0 0 0 rgba(37,211,102,.5) } 
  70% { box-shadow: 0 6px 22px rgba(0,0,0,.22), 0 0 0 16px rgba(37,211,102,0) } 
  100% { box-shadow: 0 6px 22px rgba(0,0,0,.22), 0 0 0 0 rgba(37,211,102,0) } 
}

.totop {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 199;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s, background .25s;
  border: none;
  box-shadow: 0 3px 8px rgba(0,0,0,.15);
}
.totop.show { opacity: 1; visibility: visible; transform: none; }
.totop:hover { background: var(--gold); color: var(--navy-deep); }
.totop svg { width: 20px; height: 20px; }

/* ============================================================
   REPORTER WALK CYCLE ANIMATION
   ============================================================ */
.reporter {
  position: fixed;
  bottom: 8px;
  left: 0;
  z-index: 150;
  pointer-events: none;
  animation: walk 26s linear infinite;
}
@keyframes walk { 
  0% { transform: translateX(-130px) scaleX(1) } 
  47% { transform: translateX(calc(100vw + 30px)) scaleX(1) } 
  48% { transform: translateX(calc(100vw + 30px)) scaleX(-1) } 
  96% { transform: translateX(-130px) scaleX(-1) } 
  97%,100% { transform: translateX(-130px) scaleX(1) } 
}
.reporter .bob { animation: bob .52s ease-in-out infinite; transform-origin: center bottom; }
@keyframes bob { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-3px) } }
.reporter .legL { transform-origin: 50% 92px; animation: stepA .52s ease-in-out infinite; }
.reporter .legR { transform-origin: 50% 92px; animation: stepB .52s ease-in-out infinite; }
@keyframes stepA { 0%,100% { transform: rotate(15deg) } 50% { transform: rotate(-15deg) } }
@keyframes stepB { 0%,100% { transform: rotate(-15deg) } 50% { transform: rotate(15deg) } }
.reporter .flash { animation: flash 26s linear infinite; transform-origin: center; }
@keyframes flash { 
  0%,7% { opacity: 0; transform: scale(.4) } 
  8% { opacity: 1; transform: scale(1) } 
  11% { opacity: 0; transform: scale(.4) } 
  33% { opacity: 0 } 
  34% { opacity: 1; transform: scale(1) } 
  37% { opacity: 0; transform: scale(.4) } 
  66% { opacity: 0 } 
  67% { opacity: 1; transform: scale(1) } 
  70% { opacity: 0; transform: scale(.4) } 
  100% { opacity: 0 } 
}

@media (prefers-reduced-motion: reduce) {
  .reporter { display: none; }
  .rise, .masthead .kicker, .masthead h1, .masthead .dateline { animation: none!important; }
}

/* PREMIUM VINTAGE CAROUSEL */
.lead .feature-carousel {
  position: relative;
  border-right: 1px solid var(--line);
  overflow: hidden;
  padding: 34px 34px 34px 0;
}
.carousel-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}
.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  cursor: pointer;
  box-sizing: border-box;
}
.carousel-image-wrap {
  position: relative;
  height: 340px;
  border-radius: 6px;
  margin: 8px 0 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: var(--navy-deep);
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.carousel-slide:hover img {
  transform: scale(1.03);
}
.carousel-slide .ph-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1d3345, #0a1722);
}
.carousel-slide .wm {
  position: absolute;
  bottom: 12px;
  right: 16px;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  font-family: var(--label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  background: rgba(0,0,0,0.4);
  padding: 3px 8px;
  border-radius: 3px;
  backdrop-filter: blur(2px);
}
.carousel-caption {
  text-align: left;
}
.carousel-caption h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: 44px;
  line-height: 1.04;
  letter-spacing: -.015em;
  margin: 12px 0 16px;
  color: var(--navy-deep);
}
.carousel-caption h2 a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}
.carousel-caption h2 a:hover {
  color: var(--red);
}
.carousel-caption .stand {
  font-size: 19px;
  line-height: 1.6;
  color: #36332e;
  font-family: var(--body);
}
.carousel-caption .by {
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: .05em;
  color: var(--ink-soft);
  margin-top: 16px;
  text-transform: uppercase;
}
.carousel-controls {
  position: absolute;
  top: 204px;
  left: 0;
  right: 34px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 5;
  transform: translateY(-50%);
}
.carousel-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(247, 244, 238, 0.95);
  border: 1px solid var(--line);
  color: var(--navy-deep);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  user-select: none;
}
.carousel-arrow:hover {
  background: var(--navy-deep);
  color: var(--paper);
  border-color: var(--navy-deep);
  transform: scale(1.08);
}
.carousel-arrow:active {
  transform: scale(0.95);
}
.carousel-nav-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: all 0.3s ease;
}
.carousel-dot.active {
  background: var(--red);
  transform: scale(1.3);
}
