/* ============================================================================
   PERFILES — Estilo periódico / newspaper (News5 demo-seven)
   El Gato Maya · Paleta: negro (#111827) + rojo vino (#9d1c2e)
   Prefijo de clases: .pf-   ·   Serif nameplate: Playfair Display
   ============================================================================ */

.pf {
  --pf-primary: var(--color-primary, #111827);
  --pf-accent: var(--color-accent, #9d1c2e);
  --pf-ink: #16181d;
  --pf-body: #33363d;
  --pf-muted: #6b7079;
  --pf-line: #e2e3e6;
  --pf-line-2: #cfd1d5;
  --pf-bg: #ffffff;
  --pf-bg-soft: #f6f6f4;
  --pf-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --pf-sans: var(--font-body, 'Inter', system-ui, sans-serif);
  --pf-radius: 3px;
  --pf-container: 1200px;

  margin: 0;
  background: var(--pf-bg);
  color: var(--pf-body);
  font-family: var(--pf-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.pf *,
.pf *::before,
.pf *::after {
  box-sizing: border-box;
}

.pf .container {
  width: 100%;
  max-width: var(--pf-container);
  margin: 0 auto;
  padding: 0 20px;
}

.pf a {
  color: inherit;
  text-decoration: none;
}

.pf img {
  max-width: 100%;
  display: block;
}

/* ── Eyebrow (categoría) ─────────────────────────────────────────────────── */
.pf-eyebrow {
  display: inline-block;
  font-family: var(--pf-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--pf-accent);
  line-height: 1;
}

.pf-eyebrow-sm {
  font-size: .66rem;
}

a.pf-eyebrow:hover {
  text-decoration: underline;
}

/* ── Meta / fechas ───────────────────────────────────────────────────────── */
.pf-meta {
  display: inline-block;
  font-size: .78rem;
  color: var(--pf-muted);
  font-variant-numeric: tabular-nums;
}

/* ══ UTILITY BAR ═════════════════════════════════════════════════════════ */
.pf-util {
  background: var(--pf-primary);
  color: rgba(255, 255, 255, .82);
  font-size: .78rem;
  border-bottom: 3px solid var(--pf-accent);
}

.pf-util-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 12px;
}

.pf-util-date {
  letter-spacing: .01em;
}

.pf-util-date strong {
  color: #fff;
  font-weight: 700;
}

.pf-util-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pf-util-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .06em;
}

.pf-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pf-accent);
  box-shadow: 0 0 0 0 rgba(157, 28, 46, .7);
  animation: pfPulse 1.8s infinite;
}

@keyframes pfPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(157, 28, 46, .7);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(157, 28, 46, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(157, 28, 46, 0);
  }
}

.pf-util-link {
  color: rgba(255, 255, 255, .82);
}

.pf-util-link:hover {
  color: #fff;
}

.pf-util-weather {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .85);
  font-size: .76rem;
  white-space: nowrap;
}

.pf-util-weather svg {
  opacity: .8;
}

.pf-util-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pf-util-social a {
  color: rgba(255, 255, 255, .75);
  display: inline-flex;
  transition: color .15s;
}

.pf-util-social a:hover {
  color: #fff;
}

/* ══ MASTHEAD (nameplate) ════════════════════════════════════════════════ */
.pf-masthead {
  background: var(--pf-bg);
  padding: 22px 0 18px;
}

.pf-masthead-inner {
  display: flex;
  align-items: center;
  gap: 22px;
}

.pf-masthead-rule {
  flex: 1;
  height: 0;
  border-top: 1px solid var(--pf-line-2);
  position: relative;
}

.pf-masthead-rule::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 3px;
  border-top: 3px solid var(--pf-primary);
}

.pf-nameplate {
  flex: 0 0 auto;
  text-align: center;
  max-width: 70%;
}

.pf-nameplate img {
  display: block;
  width: 300px !important;
  max-width: none !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 auto;
}

.pf-nameplate-txt {
  display: block;
  font-family: var(--pf-serif);
  font-weight: 900;
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--pf-ink);
  text-transform: uppercase;
}

.pf-nameplate-tag {
  display: block;
  margin-top: 8px;
  font-size: .74rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--pf-muted);
  font-weight: 500;
}

.pf-masthead-ad {
  margin-top: 16px;
  text-align: center;
}

/* ══ NAV ═════════════════════════════════════════════════════════════════ */
.pf-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--pf-primary);
}

.pf-nav-wrap.stuck {
  box-shadow: 0 3px 16px rgba(0, 0, 0, .28);
}

.pf-nav {
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.pf-nav-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
}

.pf-sections {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  flex-wrap: nowrap;
  overflow: visible;
}

.pf-sections>a,
.pf-drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, .9);
  font-family: var(--pf-sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 14px 12px;
  background: none;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: color .15s;
}

.pf-sections>a::after,
.pf-drop-btn::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 8px;
  height: 2px;
  background: var(--pf-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s;
}

.pf-sections>a:hover,
.pf-drop-btn:hover {
  color: #fff;
}

.pf-sections>a:hover::after,
.pf-drop:hover .pf-drop-btn::after {
  transform: scaleX(1);
}

.pf-sections>a.active {
  color: #fff;
}

.pf-sections>a.active::after {
  transform: scaleX(1);
}

.pf-nav-tv {
  color: #fff !important;
}

.pf-nav-tv::after {
  background: var(--pf-accent);
}

.pf-drop {
  position: relative;
}

.pf-drop-caret {
  font-size: .6rem;
  opacity: .7;
}

.pf-drop-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--pf-line);
  border-top: 3px solid var(--pf-accent);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .16s, transform .16s, visibility .16s;
  z-index: 50;
}

.pf-drop:hover .pf-drop-menu,
.pf-drop.open .pf-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pf-drop-menu a {
  display: block;
  padding: 8px 12px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--pf-ink);
  text-transform: none;
  letter-spacing: 0;
  border-radius: 2px;
}

.pf-drop-menu a:hover {
  background: var(--pf-bg-soft);
  color: var(--pf-accent);
}

.pf-drop-menu a.active {
  color: var(--pf-accent);
  font-weight: 700;
}

.pf-drop-menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-width: 380px;
}

.pf-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px 8px;
}

.pf-burger span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.pf-search-btn {
  background: none;
  border: 0;
  color: rgba(255, 255, 255, .9);
  cursor: pointer;
  padding: 8px;
  display: inline-flex;
}

.pf-search-btn svg {
  width: 20px;
  height: 20px;
}

.pf-search-btn:hover {
  color: var(--pf-accent);
}

/* ══ TICKER ══════════════════════════════════════════════════════════════ */
.pf-ticker {
  background: #fff;
  border-bottom: 1px solid var(--pf-line);
  overflow: hidden;
}

.pf-ticker-inner {
  display: flex;
  align-items: stretch;
}

.pf-ticker-lbl {
  flex: 0 0 auto;
  background: var(--pf-accent);
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  margin-left: -20px;
  position: relative;
}

.pf-ticker-lbl::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  width: 0;
  border-left: 10px solid var(--pf-accent);
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
}

.pf-ticker-view {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding-left: 18px;
}

.pf-ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  white-space: nowrap;
  padding: 8px 0;
  animation: pfTicker 44s linear infinite;
}

.pf-ticker-track:hover {
  animation-play-state: paused;
}

.pf-ticker-item {
  font-size: .82rem;
  color: var(--pf-ink);
  font-weight: 500;
  position: relative;
  padding-left: 16px;
}

.pf-ticker-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pf-accent);
}

.pf-ticker-item:hover {
  color: var(--pf-accent);
}

@keyframes pfTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ══ DESTACADOS (grande rota + lista lateral) ════════════════════════════ */
.pf-lead {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 34px;
  margin: 30px auto;
}

.pf-lead-feat {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 34px;
  margin: 30px auto;
}

.pf-feat-main {
  min-width: 0;
}

.pf-feat-img {
  display: block;
  overflow: hidden;
  border-radius: var(--pf-radius);
  aspect-ratio: 16/9;
  background: var(--pf-bg-soft);
}

.pf-feat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .3s ease;
}

.pf-feat-main .pf-eyebrow {
  margin: 16px 0 8px;
  display: inline-block;
}

.pf-lead-title {
  font-family: var(--pf-serif);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--pf-ink);
  margin: 0 0 12px;
}

.pf-lead-title a:hover {
  color: var(--pf-accent);
}

.pf-lead-resumen {
  font-size: 1.02rem;
  color: var(--pf-body);
  margin: 0 0 12px;
  max-width: 62ch;
}

.pf-feat-list {
  display: flex;
  flex-direction: column;
}

.pf-feat-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 10px 14px 14px;
  border-bottom: 1px solid var(--pf-line);
  position: relative;
  transition: background .15s;
}

.pf-feat-item:first-child {
  padding-top: 4px;
}

.pf-feat-item:last-child {
  border-bottom: 0;
}

.pf-feat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  background: var(--pf-accent);
  opacity: 0;
  transition: opacity .15s;
}

.pf-feat-item.active {
  background: var(--pf-bg-soft);
}

.pf-feat-item.active::before {
  opacity: 1;
}

.pf-feat-item-img {
  flex: 0 0 96px;
  height: 70px;
  overflow: hidden;
  border-radius: var(--pf-radius);
  background: var(--pf-bg-soft);
}

.pf-feat-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.pf-feat-item:hover .pf-feat-item-img img {
  transform: scale(1.05);
}

.pf-feat-item-body {
  flex: 1;
  min-width: 0;
}

.pf-feat-item-body .pf-eyebrow-sm {
  display: block;
  margin-bottom: 4px;
}

.pf-feat-item-title {
  display: block;
  font-family: var(--pf-serif);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25;
  color: var(--pf-ink);
  margin-bottom: 5px;
}

.pf-feat-item.active .pf-feat-item-title,
.pf-feat-item:hover .pf-feat-item-title {
  color: var(--pf-accent);
}

/* Badge de video (play) sobre portadas de video */
.pf-feat-img,
.pf-card-img,
.pf-feat-item-img {
  position: relative;
}

.pf-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(157, 28, 46, .92);
  pointer-events: none;
  z-index: 2;
}

.pf-play::after {
  content: "";
  position: absolute;
  left: 54%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent #fff;
}

.pf-play-sm {
  width: 30px;
  height: 30px;
}

.pf-play-sm::after {
  border-width: 5px 0 5px 8px;
}

.pf-article-hero-video {
  background: transparent;
}

/* ══ BODY / SECTION HEAD ═════════════════════════════════════════════════ */
.pf-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 328px;
  gap: 40px;
  margin: 20px auto 56px;
  align-items: start;
}

.pf-sec-hd {
  position: relative;
  margin: 0 0 22px;
  border-bottom: 3px solid var(--pf-primary);
}

.pf-sec-hd-lbl {
  display: inline-block;
  background: var(--pf-primary);
  color: #fff;
  font-family: var(--pf-sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 16px;
  position: relative;
  top: 1px;
}

.pf-sec-hd-lbl::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 0;
  bottom: 0;
  width: 0;
  border-left: 9px solid var(--pf-primary);
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
}

.pf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 28px;
}

.pf-card {
  display: flex;
  flex-direction: column;
}

.pf-card-img {
  display: block;
  overflow: hidden;
  border-radius: var(--pf-radius);
  aspect-ratio: 16/10;
  background: var(--pf-bg-soft);
}

.pf-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s;
}

.pf-card-img:hover img {
  transform: scale(1.04);
}

.pf-card-noimg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e9eaec, #f6f6f4);
}

.pf-card-body {
  padding: 13px 0 0;
}

.pf-card-body .pf-eyebrow-sm {
  margin-bottom: 7px;
}

.pf-card-title {
  font-family: var(--pf-serif);
  font-weight: 700;
  font-size: 1.22rem;
  line-height: 1.24;
  margin: 0 0 8px;
  color: var(--pf-ink);
}

.pf-card-title a:hover {
  color: var(--pf-accent);
}

.pf-card-resumen {
  font-size: .9rem;
  color: var(--pf-muted);
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pf-grid-ad {
  grid-column: 1 / -1;
  text-align: center;
  padding: 8px 0;
}

.pf-pag {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin: 40px 0 0;
}

.pf-pag a,
.pf-pag-cur {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: .88rem;
  font-weight: 600;
  border: 1px solid var(--pf-line-2);
  color: var(--pf-ink);
  border-radius: var(--pf-radius);
}

.pf-pag a:hover {
  border-color: var(--pf-primary);
  background: var(--pf-primary);
  color: #fff;
}

.pf-pag-cur {
  background: var(--pf-accent);
  border-color: var(--pf-accent);
  color: #fff;
}

/* ══ SIDEBAR ═════════════════════════════════════════════════════════════ */
.pf-sidebar {
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: sticky;
  top: 108px;
}

.pf-widget {
  border: 1px solid var(--pf-line);
  border-radius: var(--pf-radius);
  background: #fff;
}

.pf-widget-hd {
  border-bottom: 3px solid var(--pf-accent);
  padding: 12px 16px;
}

.pf-widget-hd span {
  font-family: var(--pf-sans);
  font-size: .84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--pf-ink);
}

.pf-ad-box {
  text-align: center;
}

.pf-pop-list {
  list-style: none;
  margin: 0;
  padding: 6px 16px 12px;
  counter-reset: pf;
}

.pf-pop-list li {
  border-bottom: 1px dashed var(--pf-line);
}

.pf-pop-list li:last-child {
  border-bottom: 0;
}

.pf-pop-list a {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
}

.pf-pop-num {
  flex: 0 0 auto;
  font-family: var(--pf-serif);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--pf-line-2);
  width: 26px;
}

.pf-pop-txt {
  font-size: .9rem;
  font-weight: 600;
  color: var(--pf-ink);
  line-height: 1.3;
}

.pf-pop-list a:hover .pf-pop-txt {
  color: var(--pf-accent);
}

.pf-pop-list a:hover .pf-pop-num {
  color: var(--pf-accent);
}

.pf-pop-time {
  display: block;
  font-size: .74rem;
  font-weight: 400;
  color: var(--pf-muted);
  margin-top: 3px;
}

.pf-newsletter {
  text-align: center;
  padding: 22px 18px;
  background: var(--pf-primary);
  border-color: var(--pf-primary);
  color: #fff;
}

.pf-newsletter-ic {
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 8px;
}

.pf-newsletter-hd {
  font-family: var(--pf-serif);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.pf-newsletter-txt {
  font-size: .84rem;
  color: rgba(255, 255, 255, .72);
  margin: 0 0 14px;
}

.pf-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pf-newsletter-form input {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-radius: var(--pf-radius);
  font-size: .9rem;
}

.pf-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, .5);
}

.pf-newsletter-form input:focus {
  outline: 2px solid var(--pf-accent);
  outline-offset: 1px;
}

.pf-newsletter-form button {
  padding: 11px 12px;
  border: 0;
  background: var(--pf-accent);
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: var(--pf-radius);
  cursor: pointer;
  transition: filter .15s;
}

.pf-newsletter-form button:hover {
  filter: brightness(1.12);
}

.pf-follow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 14px 16px;
}

.pf-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid var(--pf-line);
  border-radius: var(--pf-radius);
  font-size: .8rem;
  font-weight: 600;
  color: var(--pf-ink);
  transition: all .15s;
}

.pf-follow-btn:hover {
  color: #fff;
  border-color: transparent;
}

.pf-fl-facebook:hover {
  background: #1877f2;
}

.pf-fl-instagram:hover {
  background: #d6249f;
}

.pf-fl-twitter:hover {
  background: #111;
}

.pf-fl-whatsapp:hover {
  background: #25d366;
}

/* ══ BREADCRUMB ══════════════════════════════════════════════════════════ */
.pf-breadcrumb {
  background: var(--pf-bg-soft);
  border-bottom: 1px solid var(--pf-line);
}

.pf-breadcrumb .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  padding-top: 11px;
  padding-bottom: 11px;
  font-size: .8rem;
  color: var(--pf-muted);
}

.pf-breadcrumb a:hover {
  color: var(--pf-accent);
}

.pf-breadcrumb span {
  color: var(--pf-line-2);
}

.pf-breadcrumb .cur {
  color: var(--pf-ink);
  font-weight: 600;
}

/* ══ ARTICLE ═════════════════════════════════════════════════════════════ */
.pf-article-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 328px;
  gap: 44px;
  margin: 34px auto 56px;
  align-items: start;
}

.pf-article {
  max-width: 760px;
}

.pf-article-head {
  margin-bottom: 20px;
}

.pf-article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.pf-article-h1 {
  font-family: var(--pf-serif);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.14;
  letter-spacing: -.01em;
  color: var(--pf-ink);
  margin: 0 0 14px;
}

.pf-article-resumen {
  font-size: 1.18rem;
  line-height: 1.5;
  color: var(--pf-body);
  font-style: italic;
  margin: 0;
  padding-left: 16px;
  border-left: 3px solid var(--pf-accent);
}

.pf-article-hero {
  margin: 0 0 6px;
  border-radius: var(--pf-radius);
  overflow: hidden;
}

.pf-article-hero img {
  width: 100%;
}

.pf-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  margin: 6px 0 10px;
  border-top: 1px solid var(--pf-line);
  border-bottom: 1px solid var(--pf-line);
}

.pf-share-lbl {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--pf-muted);
  margin-right: 4px;
}

.pf-share a,
.pf-share button {
  font-size: .8rem;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: var(--pf-radius);
  border: 1px solid var(--pf-line-2);
  background: #fff;
  color: var(--pf-ink);
  cursor: pointer;
  transition: all .15s;
}

.pf-sh-fb:hover {
  background: #1877f2;
  color: #fff;
  border-color: #1877f2;
}

.pf-sh-tw:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

.pf-sh-wa:hover {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.pf-sh-cp:hover {
  background: var(--pf-primary);
  color: #fff;
  border-color: var(--pf-primary);
}

.pf-nota-content {
  font-size: 1.12rem;
  line-height: 1.78;
  color: var(--pf-ink);
}

.pf-nota-content p {
  margin: 0 0 1.3em;
}

.pf-nota-content .pf-parrafo-grupo:first-child>p:first-of-type::first-letter {
  font-family: var(--pf-serif);
  font-weight: 800;
  float: left;
  font-size: 3.6rem;
  line-height: .8;
  padding: 6px 10px 0 0;
  color: var(--pf-accent);
}

.pf-nota-content a {
  color: var(--pf-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pf-nota-content h2,
.pf-nota-content h3 {
  font-family: var(--pf-serif);
  color: var(--pf-ink);
  line-height: 1.25;
  margin: 1.6em 0 .5em;
}

.pf-nota-content h2 {
  font-size: 1.5rem;
}

.pf-nota-content h3 {
  font-size: 1.25rem;
}

.pf-nota-content ul,
.pf-nota-content ol {
  margin: 0 0 1.3em;
  padding-left: 1.3em;
}

.pf-nota-content li {
  margin-bottom: .5em;
}

.pf-nota-content blockquote {
  margin: 1.4em 0;
  padding: 4px 0 4px 20px;
  border-left: 4px solid var(--pf-accent);
  font-family: var(--pf-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--pf-ink);
}

.pf-parrafo-grupo {
  overflow: hidden;
}

.pf-inline-foto {
  margin: 6px 0 14px;
  border-radius: var(--pf-radius);
  overflow: hidden;
  max-width: 50%;
}

.pf-inline-foto img {
  width: 100%;
}

.pf-inline-foto.float-left {
  float: left;
  margin-right: 22px;
}

.pf-inline-foto.float-right {
  float: right;
  margin-left: 22px;
}

.pf-nota-galeria {
  margin: 34px 0 10px;
  clear: both;
}

.pf-nota-galeria-ttl {
  font-family: var(--pf-sans);
  font-size: .84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--pf-ink);
  border-bottom: 3px solid var(--pf-accent);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.pf-nota-galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.pf-nota-galeria-item {
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--pf-radius);
  aspect-ratio: 4/3;
  background: var(--pf-bg-soft);
}

.pf-nota-galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.pf-nota-galeria-item:hover img {
  transform: scale(1.06);
}

.pf-rel {
  margin: 40px 0 0;
}

.pf-rel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.pf-rel-card {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--pf-line);
  border-radius: var(--pf-radius);
  padding: 8px;
  transition: box-shadow .15s, border-color .15s;
}

.pf-rel-card:hover {
  border-color: var(--pf-line-2);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .07);
}

.pf-rel-card-img {
  flex: 0 0 92px;
  height: 68px;
  overflow: hidden;
  border-radius: 2px;
  background: var(--pf-bg-soft);
}

.pf-rel-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pf-rel-card-title {
  font-family: var(--pf-serif);
  font-weight: 700;
  font-size: .96rem;
  line-height: 1.25;
  color: var(--pf-ink);
}

.pf-rel-card:hover .pf-rel-card-title {
  color: var(--pf-accent);
}

/* ══ FOOTER ══════════════════════════════════════════════════════════════ */
.pf-footer {
  background: var(--pf-primary);
  color: rgba(255, 255, 255, .72);
  margin-top: 40px;
}

.pf-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  padding-top: 42px;
  padding-bottom: 34px;
}

.pf-footer-brand {
  font-family: var(--pf-serif);
  font-weight: 800;
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 12px;
}

.pf-footer-about p {
  font-size: .9rem;
  max-width: 46ch;
  margin: 0 0 16px;
}

.pf-footer-social {
  display: flex;
  gap: 10px;
}

.pf-footer-social a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  color: rgba(255, 255, 255, .8);
  transition: all .15s;
}

.pf-footer-social a:hover {
  background: var(--pf-accent);
  border-color: var(--pf-accent);
  color: #fff;
}

.pf-footer-hd {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff;
  margin-bottom: 14px;
}

.pf-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pf-footer-col li {
  margin-bottom: 9px;
}

.pf-footer-col a:hover {
  color: #fff;
}

.pf-foot-secbtn {
  background: none;
  border: 1px solid rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .85);
  padding: 9px 14px;
  font-size: .82rem;
  font-weight: 600;
  border-radius: var(--pf-radius);
  cursor: pointer;
}

.pf-foot-secbtn:hover {
  background: var(--pf-accent);
  border-color: var(--pf-accent);
  color: #fff;
}

.pf-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .82rem;
}

.pf-footer-bottom .container {
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
}

.pf-footer-bottom a {
  color: rgba(255, 255, 255, .72);
}

.pf-footer-bottom a:hover {
  color: #fff;
}

/* ══ DRAWER / OVERLAY (mobile) ═══════════════════════════════════════════ */
.pf-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s;
  z-index: 998;
}

.pf-overlay.open {
  opacity: 1;
  visibility: visible;
}

.pf-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  max-width: 84vw;
  background: #fff;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform .26s ease;
  overflow-y: auto;
}

.pf-drawer.open {
  transform: translateX(0);
}

.pf-drawer-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: var(--pf-primary);
  color: #fff;
}

.pf-drawer-hd span {
  font-family: var(--pf-serif);
  font-weight: 800;
  font-size: 1.1rem;
}

.pf-drawer-hd button {
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}

.pf-drawer-nav {
  padding: 8px 0 30px;
}

.pf-drawer-nav>a {
  display: block;
  padding: 12px 20px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--pf-ink);
  border-bottom: 1px solid var(--pf-line);
}

.pf-drawer-nav>a.active,
.pf-drawer-nav>a:hover {
  color: var(--pf-accent);
}

.pf-drawer-grp {
  padding: 14px 20px 6px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--pf-muted);
}

.pf-drawer-sub {
  display: block;
  padding: 9px 20px 9px 30px;
  font-size: .9rem;
  color: var(--pf-body);
}

.pf-drawer-sub:hover,
.pf-drawer-sub.active {
  color: var(--pf-accent);
}

/* ══ SEARCH OVERLAY ══════════════════════════════════════════════════════ */
.pf-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, .96);
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 18vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s;
}

.pf-search-overlay.open {
  opacity: 1;
  visibility: visible;
}

.pf-search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 90%;
  max-width: 640px;
  border-bottom: 2px solid var(--pf-accent);
  padding-bottom: 10px;
}

.pf-search-form input {
  flex: 1;
  background: none;
  border: 0;
  color: #fff;
  font-family: var(--pf-serif);
  font-size: 1.7rem;
  outline: none;
}

.pf-search-form input::placeholder {
  color: rgba(255, 255, 255, .4);
}

.pf-search-form button {
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
  padding: 6px;
}

.pf-search-x {
  font-size: 1.4rem;
}

/* ══ BOTTOM NAV (mobile) ═════════════════════════════════════════════════ */
.pf-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: #fff;
  border-top: 1px solid var(--pf-line);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, .08);
}

.pf-bottom-nav a,
.pf-bottom-nav button {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 0 7px;
  background: none;
  border: 0;
  color: var(--pf-muted);
  font-size: .66rem;
  font-weight: 600;
  cursor: pointer;
}

.pf-bottom-nav svg {
  width: 22px;
  height: 22px;
}

.pf-bottom-nav a.active {
  color: var(--pf-accent);
}

/* ══ LIGHTBOX ════════════════════════════════════════════════════════════ */
.pf-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
}

.pf-lightbox.open {
  display: flex;
}

.pf-lightbox img {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: 2px;
}

.pf-lightbox-close,
.pf-lightbox-prev,
.pf-lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, .12);
  border: 0;
  color: #fff;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}

.pf-lightbox-close:hover,
.pf-lightbox-prev:hover,
.pf-lightbox-next:hover {
  background: var(--pf-accent);
}

.pf-lightbox-close {
  top: 20px;
  right: 20px;
  font-size: 1.3rem;
}

.pf-lightbox-prev {
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.pf-lightbox-next {
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
}

/* ══ RESPONSIVE ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

  .pf-body,
  .pf-article-wrap {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pf-sidebar {
    position: static;
  }

  .pf-article {
    max-width: 100%;
  }
}

@media (max-width: 860px) {
  .pf-burger {
    display: flex;
  }

  .pf-sections {
    display: none;
  }

  .pf-lead,
  .pf-lead-feat {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .pf-masthead-rule {
    display: none;
  }

  .pf-masthead-inner {
    justify-content: center;
  }

  .pf-nameplate {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .pf {
    font-size: 15px;
  }

  .pf-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .pf-rel-grid {
    grid-template-columns: 1fr;
  }

  .pf-nota-galeria-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pf-bottom-nav {
    display: flex;
  }

  .pf-util-date {
    font-size: .72rem;
  }

  .pf-util-social {
    display: none;
  }

  .pf-util-weather {
    display: none;
  }

  body.pf {
    padding-bottom: 60px;
  }

  .pf-inline-foto.float-left,
  .pf-inline-foto.float-right {
    float: none;
    margin: 12px 0;
    max-width: 100%;
  }

  .pf-follow {
    grid-template-columns: 1fr;
  }

  .pf-footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .pf-nameplate-tag {
    max-width: 340px !important;
    letter-spacing: .08em !important;
  }

  .pf-lead-feat.container,
  .pf-body.container {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .pf-lead-title,
  .pf-lead-title a {
    display: block !important;
    width: 100% !important;
    max-width: 340px !important;
    font-size: 2rem !important;
    line-height: 1.12 !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }

  .pf-lead-resumen {
    width: 100% !important;
    max-width: 340px !important;
  }

  .pf-feat-item {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .pf-feat-item-body {
    min-width: 0 !important;
    max-width: calc(100vw - 150px) !important;
  }

  .pf-feat-item-title {
    display: block !important;
    max-width: 100% !important;
    overflow-wrap: break-word !important;
  }
}

@media (max-width: 420px) {

  .pf-lead-title,
  .pf-lead-title a {
    max-width: 320px !important;
    font-size: 1.82rem !important;
  }

  .pf-lead-resumen {
    max-width: 320px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pf * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* Production polish: prevent mobile overflow and keep imported WordPress titles tidy. */
html,
body.pf {
  max-width: 100%;
  overflow-x: hidden;
}

.pf-nameplate-tag {
  max-width: min(760px, 92vw);
  margin-left: auto;
  margin-right: auto;
}

.pf-lead-title,
.pf-card-title,
.pf-feat-item-title,
.pf-pop-txt,
.pf-article-h1 {
  overflow-wrap: anywhere;
}

@media (max-width: 640px) {
  .pf .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pf-masthead {
    padding: 22px 0 18px;
  }

  .pf-nameplate-txt {
    font-size: clamp(2rem, 11vw, 2.85rem);
    line-height: .92;
    white-space: normal;
  }

  .pf-nameplate-tag {
    font-size: .72rem;
    line-height: 1.55;
    letter-spacing: .28em;
    max-width: 100%;
  }

  .pf-nav-inner {
    min-height: 56px;
  }

  .pf-ticker-lbl {
    padding: 10px 14px;
    font-size: .76rem;
  }

  .pf-nameplate img {
    width: 240px !important;
    max-width: none !important;
    height: auto !important;
    max-height: none !important;
  }

  .pf-lead-feat {
    width: 100%;
    margin-top: 0;
    overflow: hidden;
  }

  .pf-feat-main {
    min-width: 0;
  }

  .pf-feat-img {
    border-radius: 0;
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }

  .pf-lead-title {
    font-size: clamp(2.05rem, 10.4vw, 3rem);
    line-height: 1.03;
    letter-spacing: 0;
  }

  .pf-lead-resumen {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.55;
  }

  .pf-feat-list {
    gap: 0;
    border-top: 1px solid var(--pf-line);
  }

  .pf-feat-item {
    padding: 14px 0;
  }

  .pf-feat-item-img {
    flex-basis: 110px;
    height: 74px;
  }

  .pf-feat-item-title {
    font-size: 1.02rem;
    line-height: 1.18;
  }

  .pf-card-title {
    font-size: 1.35rem;
  }
}

@media (max-width: 420px) {
  .pf .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .pf-feat-img {
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
  }

  .pf-nameplate-tag {
    letter-spacing: .22em;
  }

  .pf-lead-title {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .pf-feat-item-img {
    flex-basis: 96px;
    height: 66px;
  }
}

/* Mobile hardening after visual audit. */
.pf-lead-title a,
.pf-card-title a {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 640px) {

  .pf,
  .pf-masthead,
  .pf-nav-wrap,
  .pf-lead-feat,
  .pf-body,
  .pf-footer,
  .pf-bottom-nav {
    max-width: 100vw;
  }

  .pf-nameplate {
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .pf-nameplate-txt {
    font-size: clamp(1.85rem, 8.8vw, 2.25rem);
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .pf-nameplate-tag {
    font-size: .68rem;
    letter-spacing: .18em;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .pf-lead-title {
    font-size: clamp(1.85rem, 8.4vw, 2.35rem);
    line-height: 1.08;
    max-width: calc(100vw - 40px);
  }

  .pf-lead-title a {
    max-width: calc(100vw - 40px);
  }

  .pf-lead-resumen {
    max-width: calc(100vw - 40px);
  }

  .pf-feat-main,
  .pf-feat-list,
  .pf-main,
  .pf-sidebar {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .pf-bottom-nav {
    width: auto;
    max-width: none;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pf-bottom-nav a,
  .pf-bottom-nav button {
    min-width: 0;
    flex: 1 1 0;
  }

  .pf-article-wrap.container,
  .pf-breadcrumb .container {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .pf-article,
  .pf-article-head,
  .pf-article-body {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .pf-article-h1 {
    max-width: 340px !important;
    font-size: 2rem !important;
    line-height: 1.12 !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }

  .pf-article-resumen {
    max-width: 340px !important;
    font-size: 1.08rem !important;
    line-height: 1.5 !important;
  }

  .pf-share {
    flex-wrap: wrap !important;
    align-items: center !important;
  }

  .pf-share a,
  .pf-share button {
    min-width: 0 !important;
    max-width: 100% !important;
  }
}

@media (max-width: 420px) {
  .pf-nameplate-txt {
    font-size: clamp(1.75rem, 8.2vw, 2.05rem);
  }

  .pf-nameplate-tag {
    letter-spacing: .14em;
  }

  .pf-lead-title {
    font-size: clamp(1.72rem, 7.8vw, 2.08rem);
  }

  .pf-lead-title,
  .pf-lead-title a,
  .pf-lead-resumen {
    max-width: calc(100vw - 32px);
  }

  .pf-article-wrap.container,
  .pf-breadcrumb .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .pf-article-h1 {
    max-width: 320px !important;
    font-size: 1.82rem !important;
  }

  .pf-article-resumen {
    max-width: 320px !important;
  }
}