/*
 * SEXTASIS THEME — theme.css
 * Sistema de diseño propio (Bootstrap solo se usa para el grid, ver bootstrap-grid.min.css)
 */

/* ============================================================
   1. FUENTES
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* Breathing — archivo local subido por el usuario en assets/fonts/Breathing.ttf */
@font-face {
  font-family: 'Breathing';
  src: url('../fonts/Breathing.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

/* ============================================================
   2. DESIGN TOKENS (paleta tomada de main.css original)
   ============================================================ */
:root {
  --clr-primary:         #73168c;
  --clr-primary-dark:    #4d0f5e;
  --clr-primary-darker:  #2d0838;
  --clr-primary-light:   #9e22c0;
  --clr-primary-lighter: #c04fe0;

  --clr-accent:          #e040fb;
  --clr-accent-alt:      #b44fd4;

  --clr-bg:              #252525;
  --clr-bg-dark:         #1a1a1a;
  --clr-bg-darker:       #0f0f0f;
  --clr-bg-light:        #2f2f2f;
  --clr-bg-lighter:      #3d3d3d;
  --clr-bg-card:         #1c1c1c;
  --clr-bg-navy:         #0d1226;

  --clr-text:            #f0e8f5;
  --clr-text-muted:      #a090b0;
  --clr-text-subtle:     #6a5c78;
  --clr-text-on-primary: #ffffff;
  --clr-white:           #ffffff;
  --clr-black:           #000000;

  --grad-primary:   linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 50%, var(--clr-primary-light) 100%);
  --grad-hero-top:  linear-gradient(180deg, var(--clr-primary) 0%, rgba(115,22,140,0.55) 35%, rgba(37,37,37,0) 80%);
  --grad-overlay:   linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
  --grad-card:      linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.95) 100%);

  /* Tipografías */
  --font-display: 'Breathing', cursive;
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body:    'Manrope', sans-serif;

  --tx-xs:   0.75rem;
  --tx-sm:   0.875rem;
  --tx-base: 1rem;
  --tx-md:   1.125rem;
  --tx-lg:   1.375rem;
  --tx-xl:   1.75rem;
  --tx-2xl:  2.25rem;
  --tx-3xl:  3rem;
  --tx-4xl:  4rem;
  --tx-5xl:  5.5rem;
  --tx-display: 8rem;

  --lh-tight: 1.1;
  --lh-snug:  1.25;
  --lh-normal:1.5;
  --lh-relaxed:1.7;

  --fw-light: 300;
  --fw-normal:400;
  --fw-medium:500;
  --fw-semi:  600;
  --fw-bold:  700;

  --ls-tight: -0.02em;
  --ls-wide:   0.08em;
  --ls-wider:  0.15em;
  --ls-widest: 0.25em;

  --sp-1: 0.25rem;  --sp-2: 0.5rem;  --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.25rem;  --sp-6: 1.5rem;  --sp-8: 2rem;    --sp-10: 2.5rem;
  --sp-12: 3rem;    --sp-16: 4rem;   --sp-20: 5rem;   --sp-24: 6rem; --sp-32: 8rem;

  --r-sm: 4px; --r-md: 8px; --r-lg: 16px; --r-xl: 24px; --r-2xl: 40px; --r-full: 9999px;

  --sh-sm: 0 2px 8px rgba(0,0,0,0.35);
  --sh-md: 0 4px 24px rgba(0,0,0,0.45);
  --sh-lg: 0 8px 48px rgba(0,0,0,0.55);
  --sh-glow: 0 0 40px rgba(115,22,140,0.45);

  --border-subtle: 1px solid rgba(255,255,255,0.07);

  --ease-fast: 150ms cubic-bezier(0.4,0,0.2,1);
  --ease-base: 300ms cubic-bezier(0.4,0,0.2,1);
  --ease-slow: 500ms cubic-bezier(0.4,0,0.2,1);
  --ease-spring: 400ms cubic-bezier(0.34,1.56,0.64,1);

  --container: 1280px;
  --nav-height: 80px;
  --section-gap: var(--sp-24);
}

/* ============================================================
   3. RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--tx-base);
  font-weight: var(--fw-normal);
  line-height: var(--lh-relaxed);
  color: var(--clr-text);
  background-color: var(--clr-bg-darker);
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; border: none; outline: none; background: none; }
button { cursor: pointer; }
::selection { background-color: var(--clr-primary); color: var(--clr-white); }

/* ============================================================
   4. TIPOGRAFÍA
   ============================================================ */
.t-display {
  font-family: var(--font-display);
  font-size: var(--tx-display);
  line-height: var(--lh-tight);
  color: var(--clr-white);
}
h1, .h1 { font-family: var(--font-heading); font-size: var(--tx-4xl); line-height: var(--lh-tight); letter-spacing: var(--ls-wide); color: var(--clr-white); }
h2, .h2 { font-family: var(--font-heading); font-size: var(--tx-3xl); line-height: var(--lh-tight); letter-spacing: var(--ls-wide); color: var(--clr-white); }
h3, .h3 { font-family: var(--font-heading); font-size: var(--tx-2xl); line-height: var(--lh-snug);  letter-spacing: var(--ls-wide); color: var(--clr-white); }
h4, .h4 { font-family: var(--font-body); font-size: var(--tx-xl); font-weight: var(--fw-bold); color: var(--clr-white); }
h5, .h5 { font-family: var(--font-body); font-size: var(--tx-lg); font-weight: var(--fw-semi); color: var(--clr-white); }
h6, .h6 { font-family: var(--font-body); font-size: var(--tx-md); font-weight: var(--fw-medium); color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: var(--ls-wide); }
p { font-size: var(--tx-base); line-height: var(--lh-relaxed); color: var(--clr-text); max-width: 70ch; }
p.lead { font-size: var(--tx-md); font-weight: var(--fw-light); color: var(--clr-text); }

.t-script {
  font-family: var(--font-display);
  font-size: 1.5em;
  color: var(--clr-primary-lighter);
}
.t-overline {
  font-family: var(--font-body);
  font-size: var(--tx-xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--clr-primary-lighter);
}
.t-section-title {
  font-family: var(--font-heading);
  font-size: var(--tx-3xl);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-white);
}

/* ============================================================
   5. LAYOUT UTILITIES
   ============================================================ */
.section { padding-block: var(--section-gap); }
.section--sm { padding-block: var(--sp-16); }
.section--lg { padding-block: var(--sp-32); }
.section-header { text-align: center; margin-bottom: var(--sp-12); }
.section-header p { margin-inline: auto; margin-top: var(--sp-4); }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-4 { gap: var(--sp-4); }

/* ============================================================
   6. SISTEMA DECORATIVO — blobs, rings, ondas del hero
   ============================================================ */
.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.blob-primary { background: var(--clr-primary); opacity: 0.14; }
.blob-light   { background: var(--clr-primary-lighter); opacity: 0.10; }
.blob-accent  { background: var(--clr-accent-alt); opacity: 0.12; }

.ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  border: 1px solid var(--clr-primary-lighter);
  opacity: 0.08;
}

/* Fondo de página con blobs — position absolute (no fixed) para que
   se desplacen con el documento, no persigan el scroll */
.page-decor {
  position: absolute;
  top: 0; left: 0; width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.page-decor .blob-1 { width: 480px; height: 480px; top: -8%; left: -10%; }
.page-decor .blob-2 { width: 400px; height: 400px; top: 45%; right: -10%; }
.page-decor .blob-3 { width: 360px; height: 360px; bottom: -6%; left: 20%; }
.page-decor .ring-1 { width: 500px; height: 500px; top: 4%; right: -12%; opacity: 0.09; border-width: 2px; }
.page-decor .ring-2 { width: 340px; height: 340px; bottom: 8%; left: -8%; opacity: 0.06; }

body > * { position: relative; z-index: 1; }

/* Onda decorativa del hero (basada en el shape divider real de producción,
   3 capas con opacidad 0.33/0.66/1, forma asimétrica: el lado izquierdo
   llega más profundo que el derecho) */
.hero-wave-divider {
  position: absolute;
  top: 0; left: 0; width: 100%;
  height: 40%;
  z-index: 2;
  pointer-events: none;
}
.hero-wave-divider svg { width: 100%; height: 100%; display: block; }

/* Blob y ring de esquina del hero */
.hero-blob-tr {
  position: absolute; top: 5%; right: -6%;
  width: 38%; aspect-ratio: 1;
  border-radius: 50%; filter: blur(70px);
  background: var(--clr-primary); opacity: 0.28; z-index: 1;
}
.hero-blob-bl {
  position: absolute; bottom: 8%; left: -6%;
  width: 26%; aspect-ratio: 1;
  border-radius: 50%; filter: blur(60px);
  background: var(--clr-primary-lighter); opacity: 0.2; z-index: 1;
}
.hero-ring-tr {
  position: absolute; top: 2%; right: -10%;
  width: 52%; aspect-ratio: 1;
  border-radius: 50%; border: 1.5px solid var(--clr-primary-lighter);
  opacity: 0.1; z-index: 2;
}

/* ============================================================
   7. NAVEGACIÓN
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; inset-inline: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--ease-base), box-shadow var(--ease-base);
}
.site-nav.is-scrolled {
  background-color: rgba(10, 0, 16, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo { display: flex; align-items: center; gap: var(--sp-3); }
.nav-logo img { height: 48px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: var(--tx-2xl);
  color: var(--clr-white);
  line-height: 1;
}
.nav-menu { display: flex; align-items: center; gap: var(--sp-8); }
.nav-menu a {
  font-family: var(--font-body);
  font-size: var(--tx-sm);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-white);
  position: relative;
  padding-bottom: var(--sp-1);
  transition: color var(--ease-fast);
}
.nav-menu a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--clr-primary-lighter);
  transition: width var(--ease-base);
}
.nav-menu a:hover, .nav-menu a.current-menu-item { color: var(--clr-primary-lighter); }
.nav-menu a:hover::after, .nav-menu li.current-menu-item a::after { width: 100%; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: var(--sp-2);
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block; height: 2px;
  background: var(--clr-white);
  border-radius: var(--r-full);
  transition: all var(--ease-base);
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   8. HERO (portada y genérico)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--nav-height);
  background-color: var(--clr-bg-darker);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.45) 65%, var(--clr-bg-darker) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  padding-block: var(--sp-20);
  max-width: 900px;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: var(--tx-sm);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, var(--tx-display));
  font-weight: 300;
  line-height: 1.2;
  color: var(--clr-white);
  text-shadow: 0 4px 40px rgba(115,22,140,0.6);
}
/* Título del hero genérico (páginas/entradas) usa Bebas, no Breathing */
.hero-title--simple {
  font-family: var(--font-heading);
  letter-spacing: var(--ls-wide);
  font-size: clamp(2.5rem, 7vw, var(--tx-4xl));
  text-shadow: none;
}
.hero-subtitle-1,
.hero-subtitle-2 {
  font-family: var(--font-body);
  font-size: var(--tx-md);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-white);
}
.hero-logo { margin-top: var(--sp-4); }
.hero-logo img { height: 72px; width: auto; margin-inline: auto; filter: drop-shadow(var(--sh-glow)); }
.hero-cta { display: flex; gap: var(--sp-4); margin-top: var(--sp-4); flex-wrap: wrap; justify-content: center; }

/* ============================================================
   9. BOTONES (colores sólidos, sin gradiente)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-8);
  font-family: var(--font-body);
  font-size: var(--tx-sm);
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  border-radius: var(--r-full);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--ease-base), transform var(--ease-spring), box-shadow var(--ease-base), color var(--ease-base);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--clr-primary); color: var(--clr-white); box-shadow: 0 4px 20px rgba(115,22,140,0.4); }
.btn-primary:hover { background: var(--clr-primary-light); box-shadow: var(--sh-glow); }
.btn-outline { background: transparent; color: var(--clr-white); border-color: var(--clr-white); }
.btn-outline:hover { border-color: var(--clr-primary); color: var(--clr-primary); background: rgba(115,22,140,0.1); }
.btn-dark { background: var(--clr-bg-navy); color: var(--clr-white); }
.btn-dark:hover { background: var(--clr-bg-light); }
.btn-lg { padding: var(--sp-5) var(--sp-10); font-size: var(--tx-md); }
.btn-sm { padding: var(--sp-2) var(--sp-5); font-size: var(--tx-xs); }

/* ============================================================
   10. CARDS
   ============================================================ */
.card {
  background-color: var(--clr-bg-card);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: var(--border-subtle);
  box-shadow: var(--sh-md);
  transition: transform var(--ease-base), box-shadow var(--ease-base);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg), var(--sh-glow); }
.card-media { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--ease-slow); }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: var(--sp-6); }
.card-title {
  font-family: var(--font-heading);
  font-size: var(--tx-xl);
  letter-spacing: var(--ls-wide);
  color: var(--clr-white);
  margin-bottom: var(--sp-2);
}
.card-text { font-size: var(--tx-sm); color: var(--clr-text-muted); max-width: none; }
.card-meta {
  font-size: var(--tx-xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--clr-primary-lighter);
  margin-bottom: var(--sp-2);
  display: block;
}

/* ============================================================
   11. CONTENIDO — single/página estándar
   ============================================================ */
.entry-content { padding-block: var(--section-gap); }
.entry-content h2 { margin-top: var(--sp-10); margin-bottom: var(--sp-4); }
.entry-content h3 { margin-top: var(--sp-8); margin-bottom: var(--sp-3); }
.entry-content p { margin-bottom: var(--sp-5); }
.entry-content img { border-radius: var(--r-lg); margin-block: var(--sp-6); }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: var(--sp-5); }
.entry-content ul li, .entry-content ol li { color: var(--clr-text); margin-bottom: var(--sp-2); }
.entry-content a { color: var(--clr-primary-lighter); text-decoration: underline; }
.entry-content blockquote {
  border-left: 3px solid var(--clr-primary-lighter);
  padding-left: var(--sp-5);
  font-style: italic;
  color: var(--clr-text-muted);
  margin-block: var(--sp-6);
}

/* Paginación */
.pagination-nav { display: flex; justify-content: center; gap: var(--sp-3); margin-top: var(--sp-12); }
.pagination-nav a, .pagination-nav span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; height: 44px; padding-inline: var(--sp-3);
  border-radius: var(--r-md);
  background: var(--clr-bg-card);
  color: var(--clr-text);
  font-size: var(--tx-sm);
  transition: background var(--ease-fast), color var(--ease-fast);
}
.pagination-nav a:hover { background: var(--clr-primary); color: var(--clr-white); }
.pagination-nav .current { background: var(--clr-primary); color: var(--clr-white); }

/* Comentarios */
.comments-area { max-width: 780px; margin-inline: auto; padding-block: var(--sp-16); }
.comment-list { list-style: none; }
.comment-body {
  background: var(--clr-bg-card);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  margin-bottom: var(--sp-5);
}
.comment-author { font-weight: var(--fw-semi); color: var(--clr-white); }
.comment-metadata { font-size: var(--tx-xs); color: var(--clr-text-subtle); margin-bottom: var(--sp-3); display: block; }
.comment-form input, .comment-form textarea {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  background: var(--clr-bg-card);
  border: var(--border-subtle);
  border-radius: var(--r-md);
  color: var(--clr-text);
  margin-bottom: var(--sp-4);
}
.comment-form label { display: block; margin-bottom: var(--sp-2); font-size: var(--tx-sm); color: var(--clr-text-muted); }

/* ============================================================
   12. FOOTER (con widgets)
   ============================================================ */
.site-footer {
  background-color: var(--clr-bg-navy);
  padding-block: var(--sp-16) var(--sp-10);
  border-top: 1px solid rgba(115,22,140,0.25);
}
.footer-widgets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
  padding-bottom: var(--sp-12);
  border-bottom: var(--border-subtle);
  margin-bottom: var(--sp-8);
}
.footer-widget-area .widget-title {
  font-family: var(--font-heading);
  font-size: var(--tx-lg);
  letter-spacing: var(--ls-wide);
  color: var(--clr-white);
  margin-bottom: var(--sp-4);
}
.footer-widget-area p,
.footer-widget-area li { font-size: var(--tx-sm); color: var(--clr-text-muted); margin-bottom: var(--sp-2); }
.footer-widget-area a { transition: color var(--ease-fast); }
.footer-widget-area a:hover { color: var(--clr-primary-lighter); }
.footer-widget-area ul { list-style: none; }
.footer-bottom {
  text-align: center;
  font-size: var(--tx-xs);
  color: var(--clr-text-subtle);
  letter-spacing: var(--ls-wide);
}
.footer-social { display: flex; gap: var(--sp-3); margin-top: var(--sp-4); }
.social-btn {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.05);
  border: var(--border-subtle);
  color: var(--clr-text-muted);
  transition: background var(--ease-base), color var(--ease-base);
}
.social-btn:hover { background: var(--clr-primary); color: var(--clr-white); }

/* ============================================================
   13. SCROLL TO TOP
   ============================================================ */
.scroll-top-btn {
  position: fixed;
  bottom: var(--sp-8); right: var(--sp-8);
  z-index: 900;
  width: 48px; height: 48px;
  border-radius: var(--r-full);
  background: var(--clr-primary);
  color: var(--clr-white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--sh-glow);
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--ease-base), transform var(--ease-base);
  pointer-events: none;
}
.scroll-top-btn.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top-btn:hover { background: var(--clr-primary-lighter); }

/* ============================================================
   14. RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .footer-widgets { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --nav-height: 68px; --section-gap: var(--sp-16); }
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
  .nav-menu.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--nav-height) 0 0;
    background: rgba(10,0,16,0.97);
    align-items: center;
    justify-content: center;
    gap: var(--sp-8);
    z-index: 999;
  }
  .nav-menu.is-open a { font-size: var(--tx-lg); }
  h1, .h1 { font-size: var(--tx-3xl); }
  h2, .h2 { font-size: var(--tx-2xl); }
  .footer-widgets { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; }
  .hero-cta { flex-direction: column; align-items: center; }
  .scroll-top-btn { bottom: var(--sp-5); right: var(--sp-5); }
}

/* ============================================================
   15. WORDPRESS CORE OVERRIDES
   ============================================================ */
.wp-block-group, .wp-block-cover, .wp-block-columns { margin-block: 0; }
.alignleft  { float: left;  margin-right: var(--sp-6); }
.alignright { float: right; margin-left:  var(--sp-6); }
.aligncenter{ display: block; margin-inline: auto; }
.wp-caption, figure figcaption { font-size: var(--tx-xs); color: var(--clr-text-subtle); text-align: center; margin-top: var(--sp-2); }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
