@font-face { font-family: Quicksand; src: url('assets/fonts/quicksand-400.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: Quicksand; src: url('assets/fonts/quicksand-700.ttf') format('truetype'); font-weight: 700; font-display: swap; }
:root { --ink: #242424; --muted: #6d6d6d; --surface: #f3f3f3; --accent: #5551ff; --orange: #ff5722; }
* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--surface); font-family: Quicksand, system-ui, sans-serif; line-height: 1.55; }
a { color: var(--accent); }
.site-header { background: #fff; border-bottom: 1px solid #e5e5e5; }
.bar { width: min(1120px, calc(100% - 40px)); min-height: 74px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { color: var(--ink); font-size: 1.05rem; font-weight: 700; text-decoration: none; }
.site-nav { display: flex; flex-wrap: wrap; gap: 18px; }
.site-nav a { color: var(--ink); font-size: .9rem; font-weight: 700; text-decoration: none; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--accent); }
.page { width: min(900px, calc(100% - 40px)); margin: 58px auto; padding: clamp(28px, 6vw, 62px); background: #fff; box-shadow: 0 10px 32px #0000000d; }
h1 { margin: 0 0 14px; font-size: clamp(2rem, 5vw, 3rem); line-height: 1.1; }
/* Sustituye los atributos style="text-align: center" del aviso legal, que la CSP bloquea
   por declarar style-src 'self' sin 'unsafe-inline'. */
.legal-page h1 { text-align: center; }
h2 { margin: 38px 0 10px; font-size: 1.35rem; line-height: 1.25; }
h3 { margin: 27px 0 8px; font-size: 1.05rem; }
p, li { font-size: 1rem; }
.intro { max-width: 680px; color: var(--muted); font-size: 1.12rem; }
.button { display: inline-block; padding: 12px 20px; border: 0; border-radius: 4px; background: var(--accent); color: #fff; font: 700 .9rem Quicksand, sans-serif; text-decoration: none; cursor: pointer; }
.button:hover { background: #413de9; }
.site-footer { padding: 0 20px 42px; color: var(--muted); text-align: center; font-size: .85rem; }
.site-footer a { color: var(--muted); }
.form { max-width: 610px; display: grid; gap: 14px; margin: 28px 0; }
.form input, .form textarea { width: 100%; padding: 13px 14px; border: 1px solid #aaa; border-radius: 3px; color: var(--ink); font: 1rem Quicksand, sans-serif; }
.form textarea { resize: vertical; min-height: 130px; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form__message { min-height: 1.4em; margin: 0; color: #1f6e42; font-weight: 700; }
.small { color: var(--muted); font-size: .83rem; }
.episodes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 32px; }
.episode { padding: 24px; border: 1px solid #e4e4e4; background: #fff; }
.episode h2 { margin: 0 0 8px; font-size: 1.1rem; }
.episode h2 a { color: var(--ink); text-decoration: none; }
.episode h2 a:hover { color: var(--accent); }
.episode time { color: var(--muted); font-size: .83rem; }
.episode p { margin: 14px 0 0; font-size: .92rem; }
.pagination-note { margin-top: 30px; color: var(--muted); font-size: .9rem; }
.notice { margin: 24px 0; padding: 17px 20px; border-left: 4px solid var(--orange); background: #fff6f2; }
@media (max-width: 620px) { .bar { align-items: flex-start; flex-direction: column; padding: 20px 0; } .page { margin: 28px auto; } .episodes { grid-template-columns: 1fr; } }
