/* ============================================================
   OigaProfe — main.css
   Sistema de diseño completo
   ============================================================ */

/* ─── Variables ─────────────────────────────────────────────── */
:root {
  --navy:          #1E3A5F;
  --navy-dark:     #132740;
  --navy-light:    #2A4D7A;
  --blue:          #1A73E8;
  --blue-light:    #E6F1FB;
  --blue-mid:      #4A90D9;
  --green:         #27AE60;
  --green-light:   #DDEEDD;
  --teal:          #0F9D9D;
  --teal-light:    #E0F5F5;
  --orange:        #E67E22;
  --orange-light:  #FEF0E3;
  --red:           #E74C3C;
  --red-light:     #FDEEEC;
  --bg:            #F5F7FA;
  --bg-card:       #FFFFFF;
  --text:          #1C2833;
  --text-mid:      #566573;
  --text-light:    #95A5A6;
  --border:        #E5E9ED;
  --border-dark:   #CBD5E0;
  --font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:     'Fira Code', 'Courier New', Consolas, monospace;
  --nav-h:         64px;
  --container:     1200px;
  --pad:           clamp(16px, 4vw, 32px);
  --radius-sm:     6px;
  --radius-md:     10px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.06);
  --shadow-md:     0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:     0 8px 32px rgba(0,0,0,.12);
  --transition:    .2s ease;
}

/* ─── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font); }
h1,h2,h3,h4,h5,h6 { line-height: 1.3; color: var(--text); }

/* ─── Accesibilidad ──────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--navy);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus { top: 16px; }

/* ─── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.container--narrow { max-width: 800px; }

.section { padding: 72px 0; }
.section--alt { background: var(--bg-card); }
.section__header {
  text-align: center;
  margin-bottom: 48px;
}
.section__header--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: left;
}
.section__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.section__subtitle {
  font-size: 16px;
  color: var(--text-mid);
}

/* ─── Botones ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--blue);
  color: #fff;
  border: 2px solid var(--blue);
}
.btn--primary:hover { background: #1558c0; border-color: #1558c0; color: #fff; }

.btn--ghost {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn--ghost:hover { background: var(--blue-light); }

.btn--white {
  background: #fff;
  color: var(--navy);
  border: 2px solid #fff;
}
.btn--white:hover { background: var(--blue-light); border-color: var(--blue-light); }

.btn--cta {
  background: var(--blue);
  color: #fff;
  border: 2px solid var(--blue);
  padding: 8px 18px;
  font-size: 14px;
}
.btn--cta:hover { background: #1558c0; color: #fff; }

.btn--sm { padding: 7px 16px; font-size: 13px; }
.btn--lg { padding: 14px 28px; font-size: 16px; }

.btn svg { flex-shrink: 0; }

/* ─── Badges ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.badge--success  { background: var(--green-light);  color: var(--green); }
.badge--info     { background: var(--blue-light);   color: var(--blue); }
.badge--neutral  { background: var(--border);        color: var(--text-mid); }
.badge--warning  { background: var(--orange-light);  color: var(--orange); }
.badge--podcast  { background: #EDE7F6; color: #6B21A8; }
.badge--youtube  { background: var(--red-light);    color: var(--red); }
.badge--tiktok   { background: var(--orange-light);  color: #7C3009; }

/* ─── Tags ───────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--bg);
  color: var(--text-mid);
  border-radius: 20px;
  font-size: 12px;
  border: 1px solid var(--border);
  margin: 2px 2px 0 0;
}

/* ─── NAVEGACIÓN ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.nav-logo {
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo__text {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.4px;
}
.nav-logo__accent { color: #60A5FA; }
.nav-logo img { height: 40px; width: auto; }

/* Menú desktop */
.nav-menu { flex: 1; }
.nav-menu__list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu__list li a {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,.8);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
}
.nav-menu__list li a:hover,
.nav-menu__list li.current-menu-item > a,
.nav-menu__list li.current-page-ancestor > a {
  background: rgba(255,255,255,.12);
  color: #fff;
}

/* Acciones nav */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

/* Hamburger */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.nav-toggle:hover { background: rgba(255,255,255,.12); }
.nav-toggle__icon { display: flex; }
.nav-toggle__icon svg { width: 22px; height: 22px; }

/* Menú móvil */
.nav-mobile {
  display: none;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px var(--pad) 24px;
  transform: translateY(-8px);
  opacity: 0;
  transition: all var(--transition);
}
.nav-mobile.is-open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.nav-mobile__list li a {
  display: block;
  padding: 12px 0;
  color: rgba(255,255,255,.85);
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.06);
  text-decoration: none;
}
.nav-mobile__list li a:hover { color: #fff; }
.nav-mobile__cta {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 80px 0;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero__content { color: #fff; }
.hero__tag {
  display: inline-block;
  background: rgba(96,165,250,.15);
  color: #93C5FD;
  border: 1px solid rgba(96,165,250,.3);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero__desc {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__stat strong {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero__stat span {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 2px;
}
.hero__stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.15);
}

/* Hero card demo */
.hero__visual { display: flex; justify-content: center; }
.hero__card-demo {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 20px;
  width: 100%;
  max-width: 380px;
  backdrop-filter: blur(10px);
}
.hero__module-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}
.hero__module-item .badge { margin-left: auto; flex-shrink: 0; }
.hero__module-item--done { border-color: rgba(39,174,96,.3); background: rgba(39,174,96,.08); }
.hero__module-item--active { border-color: rgba(26,115,232,.4); background: rgba(26,115,232,.1); }
.hero__module-item--locked { opacity: .5; }

.module-icon { display: inline-flex; }
.module-icon svg { width: 16px; height: 16px; flex-shrink: 0; }
.module-icon--done svg  { color: var(--green); }
.module-icon--active svg { color: var(--blue-mid); }
.module-icon--locked svg { color: rgba(255,255,255,.4); }

.hero__progress { margin-top: 16px; }
.hero__progress-bar {
  height: 6px;
  background: rgba(255,255,255,.15);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 8px;
}
.hero__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue) 0%, #60A5FA 100%);
  border-radius: 20px;
  transition: width .6s ease;
}
.hero__progress span {
  font-size: 12px;
  color: rgba(255,255,255,.55);
}

/* ─── AREAS GRID ─────────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.area-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-decoration: none;
  color: var(--text);
  transition: all var(--transition);
}
.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.area-card--blue:hover  { border-color: var(--blue); }
.area-card--green:hover { border-color: var(--green); }
.area-card--teal:hover  { border-color: var(--teal); }
.area-card--red:hover   { border-color: var(--red); }

.area-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.area-card__icon svg { width: 22px; height: 22px; }
.area-card__icon--blue  { background: var(--blue-light);  color: var(--blue); }
.area-card__icon--green { background: var(--green-light); color: var(--green); }
.area-card__icon--teal  { background: var(--teal-light);  color: var(--teal); }
.area-card__icon--red   { background: var(--red-light);   color: var(--red); }

.area-card__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}
.area-card__desc {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 14px;
  line-height: 1.5;
}
.area-card__tags { flex: 1; margin-bottom: 16px; }
.area-card__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.area-card__cta svg { width: 14px; height: 14px; transition: transform var(--transition); }
.area-card:hover .area-card__cta svg { transform: translateX(4px); }

/* ─── PASOS ──────────────────────────────────────────────────── */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 24px 20px;
}
.step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.step__desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}
.step__connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: var(--border-dark);
  margin-top: 48px;
  position: relative;
}
.step__connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--border-dark);
  border-right: 2px solid var(--border-dark);
  transform: rotate(45deg);
}

/* ─── MEDIA GRID ─────────────────────────────────────────────── */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.media-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition);
  position: relative;
}
.media-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.media-card--podcast:hover { border-color: #7C3ABD; }
.media-card--youtube:hover { border-color: var(--red); }
.media-card--tiktok:hover  { border-color: var(--orange); }
.media-card__badge { align-self: flex-start; }
.media-card__icon {
  font-size: 28px;
  color: var(--text-mid);
  display: flex;
}
.media-card__icon svg { width: 28px; height: 28px; }
.media-card--podcast .media-card__icon svg { color: #7C3ABD; }
.media-card--youtube .media-card__icon svg { color: var(--red); }
.media-card--tiktok  .media-card__icon svg { color: var(--orange); }
.media-card__body { flex: 1; }
.media-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.4;
}
.media-card__meta { font-size: 12px; color: var(--text-light); }

/* ─── POR QUÉ ────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-item {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  background: var(--bg);
}
.why-item__icon { font-size: 36px; margin-bottom: 16px; }
.why-item__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-item p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* ─── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  padding: 72px 0;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-banner__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.cta-banner__desc {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  max-width: 480px;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.8);
}
.footer-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px var(--pad) 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 14px;
}
.footer-logo span { color: #60A5FA; }
.footer-brand__tagline {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social__link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
  text-decoration: none;
}
.footer-social__link:hover { background: var(--blue); color: #fff; }
.footer-social__link svg { width: 18px; height: 18px; }
.footer-nav__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer-nav__list li a {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  display: block;
  padding: 5px 0;
  transition: color var(--transition);
}
.footer-nav__list li a:hover { color: #fff; }
.footer-cta__title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.footer-cta__text {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom .footer-container {
  padding-top: 20px;
  padding-bottom: 20px;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.55); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ─── BLOG ───────────────────────────────────────────────────── */
.main-content { padding: 56px 0; min-height: 60vh; }
.blog-header { margin-bottom: 40px; }
.blog-header__title { font-size: 28px; font-weight: 700; color: var(--navy); }
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.post-card__thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post-card__body { padding: 20px; }
.post-card__meta { font-size: 12px; color: var(--text-light); margin-bottom: 8px; }
.post-card__title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.post-card__title a { color: var(--navy); text-decoration: none; }
.post-card__title a:hover { color: var(--blue); }
.post-card__excerpt { font-size: 14px; color: var(--text-mid); margin-bottom: 16px; line-height: 1.6; }

/* ─── PÁGINA GENÉRICA ────────────────────────────────────────── */
.page-content { max-width: 800px; }
.page-content__header { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 2px solid var(--border); }
.page-content__title { font-size: 32px; font-weight: 700; color: var(--navy); }
.page-content__body { font-size: 16px; line-height: 1.8; color: var(--text); }
.page-content__body h2 { font-size: 22px; font-weight: 700; margin: 32px 0 12px; color: var(--navy); }
.page-content__body h3 { font-size: 18px; font-weight: 600; margin: 24px 0 10px; }
.page-content__body p  { margin-bottom: 18px; }
.page-content__body ul, .page-content__body ol { margin: 16px 0 16px 24px; }
.page-content__body li { margin-bottom: 6px; }
.page-content__body li { list-style: disc; }
.page-content__body ol li { list-style: decimal; }
.page-content__body pre {
  background: #1C2833;
  color: #E8EAF6;
  padding: 20px;
  border-radius: var(--radius-md);
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 14px;
  margin: 20px 0;
}
.page-content__body code {
  font-family: var(--font-mono);
  font-size: 13px;
  background: var(--blue-light);
  color: var(--blue);
  padding: 2px 6px;
  border-radius: 4px;
}
.page-content__body blockquote {
  border-left: 4px solid var(--blue);
  padding: 12px 20px;
  background: var(--blue-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
  font-style: italic;
}

/* ─── 404 ────────────────────────────────────────────────────── */
.error-404 {
  text-align: center;
  padding: 80px 0;
}
.error-404__code {
  font-size: 120px;
  font-weight: 700;
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: 8px;
}
.error-404__title { font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.error-404__msg   { font-size: 16px; color: var(--text-mid); margin-bottom: 32px; line-height: 1.7; }

/* ─── SINGLE POST ────────────────────────────────────────────── */
.single-post__header { margin-bottom: 32px; }
.single-post__meta   { font-size: 13px; color: var(--text-light); margin-bottom: 12px; }
.single-post__title  { font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: var(--navy); }
.single-post__featured { margin-bottom: 36px; border-radius: var(--radius-lg); overflow: hidden; }
.single-post__featured img { width: 100%; }
.single-post__content { font-size: 17px; line-height: 1.85; color: var(--text); margin-bottom: 40px; }
.single-post__content h2 { font-size: 22px; font-weight: 700; margin: 32px 0 12px; color: var(--navy); }
.single-post__content h3 { font-size: 18px; font-weight: 600; margin: 24px 0 10px; }
.single-post__content p  { margin-bottom: 20px; }
.single-post__content pre {
  background: #1C2833;
  color: #E8EAF6;
  padding: 20px;
  border-radius: var(--radius-md);
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 14px;
  margin: 24px 0;
}
.single-post__content code {
  font-family: var(--font-mono);
  font-size: 14px;
  background: var(--blue-light);
  color: var(--blue);
  padding: 2px 6px;
  border-radius: 4px;
}
.post-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 32px; }
.post-nav  { display: flex; justify-content: space-between; gap: 16px; padding-top: 24px; border-top: 1px solid var(--border); }
.post-nav__link { font-size: 14px; font-weight: 600; color: var(--blue); text-decoration: none; }
.post-nav__link:hover { text-decoration: underline; }

/* ─── PAGINACIÓN ─────────────────────────────────────────────── */
.pagination { margin-top: 48px; display: flex; justify-content: center; }
.pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  transition: all var(--transition);
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* ─── NO RESULTS ─────────────────────────────────────────────── */
.no-results { text-align: center; padding: 64px 0; }
.no-results h2 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.no-results p  { font-size: 15px; color: var(--text-mid); }

/* ─── LEARNPRESS CUSTOM ──────────────────────────────────────── */
.op-lp-wrapper { padding: 40px 0; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .areas-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .hero__inner { gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .nav-menu  { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 48px 0; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .areas-grid   { grid-template-columns: 1fr; }
  .media-grid   { grid-template-columns: 1fr; }
  .why-grid     { grid-template-columns: 1fr; }
  .steps        { flex-direction: column; align-items: center; }
  .step__connector { width: 2px; height: 32px; margin: 0; }
  .step__connector::after { display: none; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__desc { margin: 0 auto; }
  .footer-container { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-bottom .footer-container { grid-template-columns: 1fr; text-align: center; }
  .posts-grid   { grid-template-columns: 1fr; }
  .section__header--row { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  :root { --pad: 16px; }
  .hero__title { font-size: 26px; }
  .btn--lg { padding: 12px 22px; font-size: 15px; }
  .hero__stats { gap: 14px; }
}
