/* ── RESET & ROOT ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red:       #C41230;
  --red-dark:  #9B0E25;
  --navy:      #1A3A6B;
  --navy-dark: #0F2347;
  --gold:      #B8871A;
  --gold-lt:   #D4A831;
  --cream:     #F9F7F4;
  --dark:      #111827;
  --mid:       #374151;
  --gray:      #6B7280;
  --rule:      #E5E7EB;
  --white:     #FFFFFF;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--dark); background: var(--white); -webkit-font-smoothing: antialiased; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* Mobile menu toggle (default oculto, se muestra solo en mobile) */
.sc-menu-toggle { display: none; }

/* ── UTILS ───────────────────────────────────────────────────────────────── */
.sc-container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px; }
.h1 { font-family: 'Lora', serif; font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 700; line-height: 1.12; }
.h2 { font-family: 'Lora', serif; font-size: clamp(1.7rem, 2.8vw, 2.5rem); font-weight: 700; line-height: 1.18; }
.h3 { font-family: 'Lora', serif; font-size: 1.25rem; font-weight: 700; line-height: 1.28; }
.btn { display: inline-flex; align-items: center; gap: 9px; padding: 12px 24px; font-size: 0.83rem; font-weight: 600; letter-spacing: 0.02em; text-decoration: none; border-radius: 3px; transition: all 0.18s; cursor: pointer; border: none; }
.btn svg { width: 13px; height: 13px; transition: transform 0.18s; }
.btn:hover svg { transform: translateX(3px); }
.btn-red  { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); }
.btn-ghost { background: transparent; color: var(--dark); border: 1.5px solid var(--rule); }
.btn-ghost:hover { border-color: var(--dark); }
.btn-ghost-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-ghost-white:hover { border-color: rgba(255,255,255,0.8); }
.arr { fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; }

/* ── TOPBAR ──────────────────────────────────────────────────────────────── */
.sc-topbar { background: var(--navy-dark); padding: 8px 0; }
.sc-topbar .sc-container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar-left { display: flex; gap: 20px; }
.topbar-left a { font-size: 0.75rem; color: rgba(255,255,255,0.55); text-decoration: none; display: flex; align-items: center; gap: 5px; transition: color 0.15s; }
.topbar-left a:hover { color: #fff; }
.topbar-left a svg { width: 11px; height: 11px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.t-social { width: 25px; height: 25px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: all 0.15s; }
.t-social:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
.t-social svg { width: 10px; height: 10px; }
.lirmi-pill { display: inline-flex; align-items: center; background: var(--gold); padding: 5px 11px; border-radius: 2px; text-decoration: none; }
.lirmi-pill img { height: 18px; width: auto; filter: brightness(0) invert(1); display: block; }

/* ── HEADER ──────────────────────────────────────────────────────────────── */
.sc-header { background: var(--white); border-bottom: 1px solid var(--rule); position: sticky; top: 0; z-index: 300; }
.sc-header .sc-container { display: flex; align-items: center; height: 76px; gap: 24px; }
.sc-logo img { height: 60px; width: auto; display: block; }
.sc-nav { display: flex; align-items: center; gap: 0; flex: 1; }
.sc-nav .nav-item { position: relative; }
.sc-nav .nav-item > a { display: block; padding: 10px 13px; font-size: 0.82rem; font-weight: 500; color: var(--mid); text-decoration: none; white-space: nowrap; transition: color 0.15s; }
.sc-nav .nav-item > a:hover,
.sc-nav .nav-item > a.active { color: var(--red); }
.sc-nav .nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.sc-nav .dropdown { position: absolute; top: calc(100% + 1px); left: 0; background: var(--white); border: 1px solid var(--rule); border-top: 2px solid var(--red); min-width: 220px; padding: 8px 0; border-radius: 0 0 4px 4px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); opacity: 0; visibility: hidden; transform: translateY(6px); transition: all 0.18s; z-index: 100; }
.sc-nav .dropdown a { display: block; padding: 9px 18px; font-size: 0.81rem; color: var(--mid); text-decoration: none; transition: all 0.12s; }
.sc-nav .dropdown a:hover { background: var(--cream); color: var(--red); padding-left: 22px; }
.nav-spacer { flex: 1; }
.nav-cta { background: var(--red) !important; color: #fff !important; padding: 9px 18px !important; border-radius: 3px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--red-dark) !important; }

/* ── HERO SLIDER ─────────────────────────────────────────────────────────── */
.sc-hero { position: relative; height: 620px; overflow: hidden; }
.sc-slides { display: flex; height: 100%; transition: transform 0.7s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.sc-slide { min-width: 100%; height: 100%; position: relative; display: flex; align-items: center; overflow: hidden; }
.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.slide-bg-1 { background: linear-gradient(110deg,#0F2347 0%,#1A3A6B 45%,#6B1525 100%); }
.slide-bg-2 { background: linear-gradient(110deg,#1a0a2e 0%,#2d1545 40%,#9B0E25 100%); }
.slide-bg-3 { background: linear-gradient(110deg,#0a1628 0%,#1A3A6B 50%,#0F2347 100%); }
.slide-bg-4 { background: linear-gradient(110deg,#1a1a0a 0%,#2a2510 40%,#9B0E25 100%); }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(0,0,0,0.55) 0%,rgba(0,0,0,0.2) 60%,transparent 100%); }
.slide-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.025) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,0.025) 1px,transparent 1px); background-size: 48px 48px; }
.sc-slide-content { position: relative; z-index: 2; padding: 0 32px; max-width: 1200px; margin: 0 auto; width: 100%; }
.slide-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.slide-eyebrow-line { width: 28px; height: 1px; background: var(--gold); }
.slide-eyebrow span { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.sc-slide-content h1,
.sc-slide-content h2 { font-family: 'Lora', serif; font-weight: 700; line-height: 1.1; color: #fff; max-width: 560px; margin-bottom: 10px; }
.sc-slide-content h1 { font-size: clamp(2.2rem,4.5vw,3.8rem); }
.sc-slide-content h2 { font-size: clamp(1.8rem,3.5vw,3rem); }
.sc-slide-content h1 em { font-style: italic; color: rgba(255,255,255,0.5); }
.slide-motto { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; display: block; }
.slide-lead { font-size: 0.98rem; color: rgba(255,255,255,0.68); max-width: 460px; line-height: 1.75; margin-bottom: 30px; }
.slide-actions { display: flex; gap: 12px; flex-wrap: wrap; }
/* Controls */
.slider-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.sc-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.2s; border: none; padding: 0; }
.sc-dot.active { background: #fff; width: 22px; border-radius: 3px; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.slider-arrow:hover { background: rgba(255,255,255,0.2); }
.slider-arrow svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; }
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }
.slide-progress { position: absolute; bottom: 0; left: 0; height: 3px; background: var(--red); width: 0; z-index: 10; transition: width 0s linear; }
.slide-progress.animating { transition: width 5s linear; width: 100%; }

/* ── TICKER ──────────────────────────────────────────────────────────────── */
.sc-ticker { background: var(--red); padding: 10px 0; overflow: hidden; }
.ticker-track { display: flex; gap: 40px; animation: ticker 30s linear infinite; white-space: nowrap; width: max-content; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.05em; color: rgba(255,255,255,0.88); display: flex; align-items: center; gap: 10px; }
.ticker-sep { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.35); flex-shrink: 0; }

/* ── DOCS BAND ───────────────────────────────────────────────────────────── */
.sc-docs { background: var(--navy); }
.sc-docs .sc-container { display: grid; grid-template-columns: 280px 1fr; }
.docs-label { background: var(--navy-dark); padding: 32px 36px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(255,255,255,0.07); }
.docs-label .eyebrow { color: rgba(255,255,255,0.3); margin-bottom: 8px; }
.docs-label h2 { font-family: 'Lora', serif; font-size: 1.3rem; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 8px; }
.docs-label p { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.65; }
.docs-links { display: flex; align-items: stretch; overflow-x: auto; scrollbar-width: none; }
.docs-links::-webkit-scrollbar { display: none; }
.doc-tile { flex: 1; min-width: 130px; display: flex; flex-direction: column; align-items: flex-start; gap: 6px; padding: 24px 20px; border-right: 1px solid rgba(255,255,255,0.07); text-decoration: none; transition: background 0.15s; }
.doc-tile:last-child { border-right: none; }
.doc-tile:hover { background: rgba(255,255,255,0.06); }
.doc-tile-icon { width: 32px; height: 32px; border-radius: 6px; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.doc-tile-icon svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.6); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.doc-tile.highlight .doc-tile-icon { background: rgba(196,18,48,0.3); }
.doc-tile.highlight .doc-tile-icon svg { stroke: rgba(255,100,100,0.9); }
.doc-tile-name { font-size: 0.79rem; font-weight: 600; color: rgba(255,255,255,0.75); line-height: 1.3; }
.doc-tile.highlight .doc-tile-name { color: #fff; }
.doc-tile-type { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.28); }

/* ── PILLARS ─────────────────────────────────────────────────────────────── */
.sc-pillars { padding: 88px 0; background: var(--cream); }
.pillars-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 52px; }
.pillars-head p { color: var(--gray); font-size: 0.93rem; line-height: 1.8; }
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--rule); border-radius: 6px; overflow: hidden; }
.pillar { background: var(--white); padding: 40px 32px; transition: background 0.2s; }
.pillar:hover { background: var(--navy-dark); }
.pillar:hover .pillar-num,
.pillar:hover h3,
.pillar:hover p { color: rgba(255,255,255,0.8) !important; }
.pillar:hover .pillar-icon { background: rgba(255,255,255,0.08); }
.pillar:hover .pillar-icon svg { stroke: rgba(255,255,255,0.6); }
.pillar-icon { width: 46px; height: 46px; border-radius: 10px; background: var(--cream); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: background 0.2s; }
.pillar-icon svg { width: 20px; height: 20px; stroke: var(--navy); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.2s; }
.pillar-num { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; }
.pillar h3 { margin-bottom: 10px; color: var(--dark); }
.pillar p { font-size: 0.85rem; color: var(--gray); line-height: 1.7; }

/* ── PRINCIPAL ───────────────────────────────────────────────────────────── */
.sc-principal { padding: 88px 0; }
.sc-principal .sc-container { display: grid; grid-template-columns: 380px 1fr; gap: 72px; align-items: center; }
.principal-photo-wrap { position: relative; }
.principal-photo { width: 100%; aspect-ratio: 3/4; border-radius: 6px; overflow: hidden; background: linear-gradient(160deg,#1A3A6B 0%,#0F2347 60%,#6B1525 100%); display: flex; align-items: flex-end; justify-content: center; position: relative; }
.principal-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.principal-photo-figure { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 75%; }
.principal-photo-figure .ph-head { width: 90px; height: 90px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.15); margin: 0 auto; display: flex; align-items: center; justify-content: center; }
.principal-photo-figure .ph-head svg { width: 42px; height: 42px; stroke: rgba(255,255,255,0.18); fill: none; stroke-width: 1; stroke-linecap: round; }
.principal-photo-figure .ph-body { height: 200px; background: rgba(255,255,255,0.06); border-radius: 80px 80px 0 0; border: 2px solid rgba(255,255,255,0.08); border-bottom: none; margin-top: -4px; }
.principal-nameband { position: absolute; bottom: 0; left: 0; right: 0; background: var(--red); padding: 16px 24px; z-index: 3; }
.principal-nameband-name { font-family: 'Lora', serif; font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 2px; }
.principal-nameband-role { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.principal-open-quote { font-family: 'Lora', serif; font-size: 4.5rem; line-height: 0.8; color: var(--gold); opacity: 0.2; display: block; margin-bottom: -8px; }
.principal-message { font-family: 'Lora', serif; font-size: clamp(1.05rem,1.8vw,1.35rem); font-style: italic; font-weight: 700; color: var(--dark); line-height: 1.6; margin-bottom: 22px; }
.principal-body { font-size: 0.93rem; color: var(--gray); line-height: 1.85; margin-bottom: 30px; max-width: 500px; }
.principal-sig { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; padding-top: 22px; border-top: 1px solid var(--rule); }
.principal-sig-line { flex: 0 0 36px; height: 2px; background: var(--gold); }
.principal-sig-name { font-size: 0.88rem; font-weight: 700; color: var(--dark); }
.principal-sig-role { font-size: 0.74rem; color: var(--gray); margin-top: 1px; }

/* ── CAPELLANÍA COMPACT ──────────────────────────────────────────────────── */
.sc-capellania { background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,0.06); }
.cap-inner { display: flex; align-items: center; }
.cap-person { display: flex; align-items: center; gap: 16px; padding: 28px 36px; flex-shrink: 0; }
.cap-person-photo { width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.cap-person-photo img { width: 100%; height: 100%; object-fit: cover; }
.cap-person-photo svg { width: 24px; height: 24px; stroke: rgba(255,255,255,0.2); fill: none; stroke-width: 1; stroke-linecap: round; }
.cap-person-name { font-weight: 600; font-size: 0.88rem; color: #fff; margin-bottom: 2px; }
.cap-person-role { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.cap-vdivider { width: 1px; background: rgba(255,255,255,0.07); align-self: stretch; flex-shrink: 0; }
.cap-quote { padding: 28px 36px; flex: 1; }
.cap-quote-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 6px; }
.cap-quote p { font-family: 'Lora', serif; font-size: 0.95rem; font-style: italic; color: rgba(255,255,255,0.7); line-height: 1.5; }
.cap-activities { padding: 28px 36px; display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
.cap-act { display: flex; align-items: flex-start; gap: 10px; }
.cap-act-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex-shrink: 0; margin-top: 6px; }
.cap-act-name { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.75); }
.cap-act-time { font-size: 0.72rem; color: rgba(255,255,255,0.35); }
.cap-link { display: flex; align-items: center; gap: 8px; padding: 28px 36px; font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.5); text-decoration: none; white-space: nowrap; flex-shrink: 0; transition: color 0.15s; }
.cap-link:hover { color: #fff; }
.cap-link svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; transition: transform 0.15s; }
.cap-link:hover svg { transform: translateX(3px); }

/* ── ACADEMICS ───────────────────────────────────────────────────────────── */
.sc-academics { padding: 88px 0; }
.sc-academics .sc-container { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.acad-left > p { color: var(--gray); font-size: 0.93rem; line-height: 1.8; margin-bottom: 28px; }
.acad-left .eyebrow { margin-bottom: 12px; }
.acad-left .h2 { margin-bottom: 18px; }
.prog-list { margin-bottom: 32px; }
.prog-row { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--rule); }
.prog-row:first-child { border-top: 1px solid var(--rule); }
.prog-row-l { display: flex; align-items: center; gap: 12px; }
.prog-row-l svg { width: 14px; height: 14px; stroke: var(--red); fill: none; stroke-width: 2.5; stroke-linecap: round; flex-shrink: 0; }
.prog-name { font-size: 0.87rem; font-weight: 500; }
.prog-tag { font-size: 0.7rem; color: var(--gray); background: var(--cream); padding: 3px 8px; border-radius: 2px; }
.simce-card { background: var(--navy-dark); border-radius: 8px; padding: 34px; }
.simce-card-head { margin-bottom: 26px; }
.simce-card-head p { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 4px; }
.simce-card-head h3 { color: #fff; }
.simce-tabs { display: flex; gap: 4px; margin-bottom: 22px; background: rgba(255,255,255,0.05); border-radius: 6px; padding: 4px; }
.simce-tab { flex: 1; padding: 7px 0; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; border: none; border-radius: 4px; cursor: pointer; background: transparent; color: rgba(255,255,255,0.4); transition: background 0.2s, color 0.2s; }
.simce-tab.active { background: var(--navy); color: #fff; }
.simce-panel { display: none; }
.simce-panel.active { display: block; }
.simce-rows { display: flex; flex-direction: column; gap: 17px; margin-bottom: 26px; }
.s-row-lbl { display: flex; justify-content: space-between; margin-bottom: 6px; }
.s-row-lbl span:first-child { font-size: 0.81rem; color: rgba(255,255,255,0.65); }
.s-row-lbl span:last-child { font-family: 'Lora', serif; font-size: 1.05rem; font-weight: 700; color: var(--gold-lt); }
.bar-track { height: 3px; background: rgba(255,255,255,0.09); border-radius: 2px; }
.bar-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-lt)); width: 0; transition: width 1.5s cubic-bezier(0.4,0,0.2,1); }
.s-row-delta { font-size: 0.68rem; color: rgba(255,255,255,0.3); margin-top: 5px; }
.simce-footer { display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.07); }
.s-stat-num { font-family: 'Lora', serif; font-size: 1.9rem; font-weight: 700; color: #fff; line-height: 1; }
.s-stat-lbl { font-size: 0.68rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px; }

/* ── LIRMI BAND ──────────────────────────────────────────────────────────── */
.sc-lirmi-band { padding: 72px 0; background: var(--cream); }
.sc-lirmi-band .sc-container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.lirmi-left { display: flex; flex-direction: column; gap: 20px; }
.lirmi-logo-mark { width: 80px; height: 24px; display: flex; align-items: center; }
.lirmi-logo-mark img { width: 100%; height: auto; display: block; }
.lirmi-left .h2 { margin-bottom: 8px; }
.lirmi-left > div > p { color: var(--gray); font-size: 0.93rem; line-height: 1.8; margin-bottom: 24px; }
.lirmi-right { display: flex; flex-direction: column; gap: 24px; }
.lirmi-features { display: flex; flex-direction: column; gap: 3px; }
.lirmi-feat { background: var(--white); padding: 18px 20px; display: flex; gap: 16px; align-items: flex-start; }
.lirmi-feat:first-child { border-radius: 8px 8px 0 0; }
.lirmi-feat:last-child  { border-radius: 0 0 8px 8px; }
.lirmi-feat-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(26,58,107,0.07); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lirmi-feat-icon svg { width: 16px; height: 16px; stroke: var(--navy); }
.lirmi-feat strong { font-size: 0.88rem; font-weight: 600; display: block; margin-bottom: 2px; }
.lirmi-feat p { font-size: 0.79rem; color: var(--gray); line-height: 1.5; margin: 0; }
.lirmi-download { display: flex; flex-direction: column; gap: 10px; }
.lirmi-download-label { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); }
.lirmi-download-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.lirmi-store-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: var(--dark); color: #fff; font-size: 0.82rem; font-weight: 600; border-radius: 6px; text-decoration: none; transition: background 0.15s; }
.lirmi-store-btn:hover { background: var(--navy); }
.lirmi-store-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.lang-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--rule); border-radius: 6px; overflow: hidden; }
.lang-cell { background: var(--white); padding: 20px; }
.lang-cell.dark { background: var(--navy-dark); }
.lc-level { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); margin-bottom: 3px; }
.lang-cell.dark .lc-level { color: rgba(255,255,255,0.35); }
.lc-score { font-family: 'Lora', serif; font-size: 1.7rem; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 2px; }
.lang-cell.dark .lc-score { color: var(--gold-lt); }
.lc-desc { font-size: 0.76rem; color: var(--gray); }
.lang-cell.dark .lc-desc { color: rgba(255,255,255,0.4); }

/* ── PAGE TEMPLATES ─────────────────────────────────────────────────────── */
.sc-page-hero { padding: 80px 0 72px; background: var(--navy); color: #fff; }
.sc-page-hero--navy { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); }
.sc-page-hero .eyebrow { color: var(--gold-lt); }
.sc-page-hero .h1 { color: #fff; margin-bottom: 20px; }
.page-hero-lead { font-size: 1.05rem; color: rgba(255,255,255,0.7); max-width: 640px; line-height: 1.75; }
.sc-page-section { padding: 80px 0; }
.sc-page-section--cream { background: var(--cream); }

/* Lirmi page */
.lp-intro-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: start; }
.lp-intro-text .h2 { margin-bottom: 20px; }
.lp-intro-text p { color: var(--gray); font-size: 0.93rem; line-height: 1.8; margin-bottom: 16px; }
.lp-intro-features { display: flex; flex-direction: column; gap: 3px; }
.lp-feat { background: var(--cream); padding: 20px 22px; display: flex; gap: 16px; align-items: flex-start; }
.lp-feat:first-child { border-radius: 8px 8px 0 0; }
.lp-feat:last-child  { border-radius: 0 0 8px 8px; }
.lp-feat-icon { width: 38px; height: 38px; border-radius: 8px; background: var(--white); border: 1px solid var(--rule); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lp-feat-icon svg { width: 16px; height: 16px; stroke: var(--navy); }
.lp-feat h4 { font-size: 0.88rem; font-weight: 600; margin-bottom: 4px; }
.lp-feat p { font-size: 0.79rem; color: var(--gray); line-height: 1.55; margin: 0; }

.lp-steps-wrap { max-width: 720px; margin: 0 auto; }
.lp-steps-header { text-align: center; margin-bottom: 48px; }
.lp-steps-header .h2 { margin-bottom: 12px; }
.lp-steps-header p { color: var(--gray); font-size: 0.93rem; }
.lp-steps { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.lp-step { display: flex; gap: 20px; align-items: flex-start; }
.lp-step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 700; font-size: 0.95rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lp-step h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.lp-step p { font-size: 0.88rem; color: var(--gray); line-height: 1.65; margin: 0; }
.lp-step p a { color: var(--navy); text-decoration: underline; }

.sc-lirmi-cta { background: var(--dark); color: #fff; }
.lp-cta-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.lp-cta-inner .lirmi-logo-mark { margin: 0 auto 24px; width: 120px; height: auto; }
.lp-cta-inner .lirmi-logo-mark img { filter: brightness(0) invert(1); }
.lp-cta-inner .h2 { color: #fff; margin-bottom: 12px; }
.lp-cta-inner > p { color: rgba(255,255,255,0.55); font-size: 0.93rem; margin-bottom: 28px; }
.lirmi-download-btns--large { justify-content: center; gap: 14px; }
.lirmi-download-btns--large .lirmi-store-btn { padding: 13px 22px; font-size: 0.9rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); }
.lirmi-download-btns--large .lirmi-store-btn:hover { background: var(--navy); border-color: var(--navy); }
.lp-cta-help { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-top: 24px; }
.lp-cta-help a { color: var(--gold-lt); text-decoration: underline; }

/* ── SPORTS ──────────────────────────────────────────────────────────────── */
.sc-sports { padding: 88px 0; background: var(--dark); }
.sports-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 52px; }
.sports-head .h2 { color: #fff; }
.sports-head p { color: rgba(255,255,255,0.45); font-size: 0.93rem; line-height: 1.8; }
.sports-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2px; background: rgba(255,255,255,0.05); border-radius: 6px; overflow: hidden; }
.sport-tile { background: var(--dark); padding: 44px 36px; position: relative; }
.sport-tile::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: transparent; transition: background 0.2s; }
.sport-tile:hover::after { background: var(--red); }
.sport-tile.feat { background: var(--red-dark); }
.sport-tile.feat::after { background: var(--gold); }
.sport-icon { width: 42px; height: 42px; border-radius: 8px; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.sport-icon svg { width: 18px; height: 18px; stroke: rgba(255,255,255,0.65); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.sport-tile h3 { color: #fff; margin-bottom: 8px; }
.sport-tile.feat h3 { font-size: 1.6rem; }
.sport-tile p { font-size: 0.84rem; color: rgba(255,255,255,0.48); line-height: 1.65; margin-bottom: 22px; }
.sport-tile.feat p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.sport-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.s-tag { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.05em; color: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.1); padding: 4px 9px; border-radius: 2px; }
.sport-tile.feat .s-tag { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.9); }

/* ── NEWS ────────────────────────────────────────────────────────────────── */
.sc-news { padding: 88px 0; }
.news-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.news-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.news-card { display: flex; flex-direction: column; }
.news-card-img { border-radius: 5px; margin-bottom: 18px; overflow: hidden; position: relative; aspect-ratio: 16/9; background: var(--navy-dark); }
.news-card-img.feat { aspect-ratio: 4/3; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; }
.news-card-img-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.news-card-img-placeholder svg { width: 36px; height: 36px; stroke: rgba(255,255,255,0.12); fill: none; stroke-width: 1; }
.ni-1 { background: linear-gradient(135deg,#7B0C1D,#C41230); }
.ni-2 { background: linear-gradient(135deg,#0F2347,#1A3A6B); }
.ni-3 { background: linear-gradient(135deg,#141428,#1E1E38); }
.n-cat { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 7px; display: block; }
.nc-red  { color: var(--red); }
.nc-navy { color: var(--navy); }
.nc-gold { color: var(--gold); }
.news-card h3 { margin-bottom: 7px; font-size: 1.1rem; }
.news-card p { font-size: 0.84rem; color: var(--gray); line-height: 1.65; margin-bottom: 12px; }
.n-date { font-size: 0.74rem; color: var(--gray); margin-top: auto; display: block; }
.read-link { display: inline-flex; align-items: center; gap: 5px; font-size: 0.79rem; font-weight: 600; color: var(--red); text-decoration: none; margin-top: 12px; transition: gap 0.15s; }
.read-link:hover { gap: 9px; }
.read-link svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; }

/* ── PRINCIPAL HOMEPAGE (between news & instagram) ───────────────────────── */
.sc-principal-band { padding: 88px 0; background: var(--cream); }

/* ── INSTAGRAM ───────────────────────────────────────────────────────────── */
.sc-instagram { padding: 88px 0; background: var(--dark); overflow: hidden; }
.insta-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 44px; }
.insta-head-left { display: flex; align-items: center; gap: 18px; }
.insta-avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); padding: 2px; flex-shrink: 0; }
.insta-avatar-inner { width: 100%; height: 100%; border-radius: 50%; background: var(--dark); display: flex; align-items: center; justify-content: center; }
.insta-avatar-inner svg { width: 24px; height: 24px; stroke: rgba(255,255,255,0.5); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.insta-handle { font-size: 1rem; font-weight: 700; color: #fff; }
.insta-handle span { color: rgba(255,255,255,0.4); font-weight: 400; }
.insta-follow-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; border-radius: 3px; font-size: 0.82rem; font-weight: 700; text-decoration: none; background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366); color: #fff; transition: opacity 0.2s; }
.insta-follow-btn:hover { opacity: 0.88; }
.insta-follow-btn svg { width: 14px; height: 14px; }
.insta-strip-wrap { position: relative; margin: 0 -32px; }
.insta-strip { display: flex; gap: 4px; overflow-x: auto; padding: 0 32px 16px; scrollbar-width: none; cursor: grab; user-select: none; }
.insta-strip::-webkit-scrollbar { display: none; }
.insta-strip.grabbing { cursor: grabbing; }
.insta-post { flex-shrink: 0; width: 260px; height: 260px; border-radius: 4px; overflow: hidden; position: relative; }
.insta-post-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.4s; }
.insta-post:hover .insta-post-bg { transform: scale(1.04); }
.ip-1 { background: linear-gradient(135deg,#7B0C1D,#C41230); }
.ip-2 { background: linear-gradient(135deg,#0F2347,#1A3A6B); }
.ip-3 { background: linear-gradient(135deg,#1a1a2e,#2d1f3d); }
.ip-4 { background: linear-gradient(135deg,#0a2818,#2d7a3a); }
.ip-5 { background: linear-gradient(135deg,#2a1a05,#B8871A); }
.ip-6 { background: linear-gradient(135deg,#0F2347,#9B0E25); }
.ip-7 { background: linear-gradient(135deg,#1a0a2e,#6e1a8e); }
.insta-post-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,0.75) 0%,transparent 55%); opacity: 0; transition: opacity 0.3s; }
.insta-post:hover .insta-post-overlay { opacity: 1; }
.insta-post-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; transform: translateY(6px); opacity: 0; transition: all 0.3s; }
.insta-post:hover .insta-post-info { transform: translateY(0); opacity: 1; }
.insta-post-caption { font-size: 0.78rem; color: rgba(255,255,255,0.9); line-height: 1.4; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.insta-post-stats { display: flex; gap: 12px; }
.insta-stat { display: flex; align-items: center; gap: 4px; font-size: 0.73rem; color: rgba(255,255,255,0.75); font-weight: 600; }
.insta-stat svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.insta-post-tag { position: absolute; top: 10px; left: 10px; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(0,0,0,0.45); color: rgba(255,255,255,0.8); padding: 3px 8px; border-radius: 2px; backdrop-filter: blur(4px); }
.insta-post-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.insta-post-icon svg { width: 36px; height: 36px; stroke: rgba(255,255,255,0.12); fill: none; stroke-width: 1; }
.insta-strip-wrap::after { content: ''; position: absolute; right: 0; top: 0; bottom: 16px; width: 120px; background: linear-gradient(to left,var(--dark),transparent); pointer-events: none; z-index: 2; }
.insta-footer { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 28px; color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.insta-footer a { color: rgba(255,255,255,0.5); text-decoration: none; font-weight: 600; }
.insta-footer a:hover { color: #fff; }

/* ── SMASH BALLOON OVERRIDES ──────────────────────────────────────────────── */
/* Clip the section so overflowing photos don't break page layout */
.sc-instagram { overflow: hidden; }

/* Scroll wrapper bleeds slightly outside the container for the fade effect */
.insta-sbi-wrap { position: relative; margin: 0 -32px; }

/* Remove SBI chrome */
.insta-sbi-wrap #sbi_wrap,
.insta-sbi-wrap .sbi_wrap { background: transparent !important; padding: 0 !important; }

/* Hide SBI's own header, follow button, load-more — we have our own */
.insta-sbi-wrap .sb_instagram_header,
.insta-sbi-wrap .sbi_follow_btn_outside,
.insta-sbi-wrap #sbi_load,
.insta-sbi-wrap .sbi_load_btn_wrap { display: none !important; }

/* Make #sbi_images a scrollable horizontal strip */
.insta-sbi-wrap #sbi_images {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  gap: 4px;
  padding: 0 32px 12px;
  scrollbar-width: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}
.insta-sbi-wrap #sbi_images::-webkit-scrollbar { display: none; }
.insta-sbi-wrap #sbi_images.grabbing { cursor: grabbing; }

/* Each photo tile — fixed square size */
.insta-sbi-wrap .sbi_item {
  flex: 0 0 240px !important;
  width: 240px !important;
  height: 240px !important;
  border-radius: 4px;
  overflow: hidden;
}

/* Photo fills the tile */
.insta-sbi-wrap .sbi_photo_wrap,
.insta-sbi-wrap .sbi_photo { border-radius: 0 !important; border: none !important; width: 100% !important; height: 100% !important; }
.insta-sbi-wrap .sbi_photo img { width: 100% !important; height: 100% !important; object-fit: cover !important; }

/* Hover overlay */
.insta-sbi-wrap .sbi_hover_bottom { background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%) !important; }
.insta-sbi-wrap .sbi_info { color: rgba(255,255,255,0.9) !important; font-family: 'Inter', sans-serif; font-size: 0.78rem; }
.insta-sbi-wrap .sbi_link_btn { color: rgba(255,255,255,0.75) !important; font-size: 0.73rem; font-weight: 600; }

/* Prevent blue default link color */
.insta-sbi-wrap a { color: inherit; }

/* Right-side fade edge */
.insta-sbi-wrap::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 12px;
  width: 100px;
  background: linear-gradient(to left, var(--dark), transparent);
  pointer-events: none;
  z-index: 2;
}

/* ── EVENTS + QUICK ACCESS ───────────────────────────────────────────────── */
.sc-lower { padding: 88px 0; background: var(--cream); }
.sc-lower .sc-container { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.lower-head { margin-bottom: 32px; }
.lower-head .h2 { margin-top: 6px; }
.ev-list { display: flex; flex-direction: column; }
.ev-row { display: grid; grid-template-columns: 48px 1px 1fr auto; gap: 18px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--rule); }
.ev-row:first-child { border-top: 1px solid var(--rule); }
.ev-day-num { font-family: 'Lora', serif; font-size: 1.6rem; font-weight: 700; color: var(--red); line-height: 1; text-align: center; }
.ev-day-mon { font-size: 0.63rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); text-align: center; }
.ev-sep { width: 1px; background: var(--rule); align-self: stretch; }
.ev-title { font-size: 0.87rem; font-weight: 500; margin-bottom: 2px; }
.ev-sub { font-size: 0.76rem; color: var(--gray); }
.ev-pill { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; white-space: nowrap; }
.ep-red  { background: rgba(196,18,48,0.07); color: var(--red); }
.ep-navy { background: rgba(26,58,107,0.07); color: var(--navy); }
.ep-gold { background: rgba(184,135,26,0.1); color: var(--gold); }
.quick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--rule); border-radius: 6px; overflow: hidden; }
.q-tile { background: var(--white); padding: 22px; text-decoration: none; color: var(--dark); display: flex; flex-direction: column; gap: 9px; transition: background 0.18s; }
.q-tile:hover { background: var(--navy-dark); }
.q-tile:hover h4, .q-tile:hover .q-desc { color: rgba(255,255,255,0.8); }
.q-tile:hover .q-icon { background: rgba(255,255,255,0.1); }
.q-tile:hover .q-icon svg { stroke: rgba(255,255,255,0.7); }
.q-icon { width: 36px; height: 36px; border-radius: 7px; background: var(--cream); display: flex; align-items: center; justify-content: center; transition: background 0.18s; }
.q-icon svg { width: 15px; height: 15px; stroke: var(--navy); fill: none; stroke-width: 1.5; stroke-linecap: round; transition: stroke 0.18s; }
.q-tile h4 { font-size: 0.86rem; font-weight: 600; transition: color 0.18s; }
.q-desc { font-size: 0.76rem; color: var(--gray); line-height: 1.5; transition: color 0.18s; }

/* ── CONTACT + MAP ───────────────────────────────────────────────────────── */
.sc-contact { padding: 88px 0; }
.sc-contact .sc-container { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.contact-left .h2 { margin-bottom: 24px; }
.contact-cards { display: flex; flex-direction: column; gap: 2px; margin-bottom: 28px; }
.contact-card { background: var(--cream); border-radius: 4px; padding: 18px 20px; display: flex; gap: 14px; align-items: flex-start; }
.cc-icon { width: 34px; height: 34px; border-radius: 7px; background: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cc-icon svg { width: 15px; height: 15px; stroke: var(--red); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.cc-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-bottom: 2px; }
.cc-value { font-size: 0.87rem; font-weight: 500; color: var(--dark); line-height: 1.5; }
.dept-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.dept-item { font-size: 0.79rem; color: var(--mid); }
.dept-item a { color: var(--navy); text-decoration: none; font-size: 0.74rem; }
.dept-item a:hover { text-decoration: underline; }
.dept-head { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); margin-bottom: 10px; }
.map-wrap { border-radius: 8px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.1); border: 1px solid var(--rule); }
.map-wrap iframe { display: block; width: 100%; height: 480px; border: none; }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.sc-footer { background: var(--dark); padding: 68px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 44px; margin-bottom: 52px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 56px; width: auto; }
.footer-brand p { font-size: 0.83rem; color: rgba(255,255,255,0.38); line-height: 1.8; margin-bottom: 20px; }
.f-socials { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.f-soc { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); transition: all 0.15s; }
.f-soc:hover { border-color: rgba(255,255,255,0.35); color: #fff; }
.f-soc svg { width: 12px; height: 12px; }
.q-icon--lirmi { width: auto !important; height: auto !important; background: none !important; border: none !important; padding: 4px 0; }
.q-icon--lirmi img { width: 64px; height: auto; display: block; }
.f-lirmi { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); text-decoration: none; border: 1px solid rgba(184,135,26,0.3); padding: 5px 10px; border-radius: 2px; }
.f-lirmi:hover { border-color: var(--gold); }
.footer-col h5 { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.22); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 0.83rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.15s; }
.footer-col ul a:hover { color: rgba(255,255,255,0.85); }
.f-contact p { font-size: 0.83rem; color: rgba(255,255,255,0.38); line-height: 1.9; }
.f-contact strong { color: rgba(255,255,255,0.65); font-weight: 500; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.28); }
.fb-links { display: flex; gap: 20px; }
.fb-links a { font-size: 0.75rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.15s; }
.fb-links a:hover { color: rgba(255,255,255,0.65); }

/* ── BREADCRUMB ──────────────────────────────────────────────────────────── */
.sc-breadcrumb { background: var(--cream); border-bottom: 1px solid var(--rule); padding: 12px 0; }
.sc-breadcrumb .sc-container { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.sc-breadcrumb a { font-size: 0.76rem; color: var(--gray); text-decoration: none; transition: color 0.15s; }
.sc-breadcrumb a:hover { color: var(--dark); }
.sc-bc-sep { font-size: 0.7rem; color: var(--rule); }
.sc-bc-current { font-size: 0.76rem; color: var(--dark); font-weight: 500; }

/* ── DIRECTORA: HERO ─────────────────────────────────────────────────────── */
.sc-dir-hero { background: var(--navy-dark); padding: 72px 0; overflow: hidden; position: relative; }
.sc-dir-hero::before { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 40%; background: linear-gradient(160deg, transparent, rgba(196,18,48,0.15)); pointer-events: none; }
.sc-dir-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 320px 1fr; gap: 64px; align-items: end; }
.dir-hero-photo { position: relative; }
.dir-photo-frame { width: 100%; aspect-ratio: 3/4; border-radius: 6px; overflow: hidden; background: linear-gradient(160deg,#1A3A6B 0%,#0F2347 55%,#6B1525 100%); display: flex; align-items: flex-end; justify-content: center; position: relative; }
.dir-photo-frame::after { content: ''; position: absolute; left: 0; top: 20%; bottom: 0; width: 4px; background: var(--red); }
.dir-photo-frame .principal-photo-figure { width: 75%; }
.dir-photo-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.dir-photo-note { font-size: 0.6rem; color: rgba(255,255,255,0.15); font-style: italic; text-align: center; margin-top: 6px; }
.dir-hero-text { padding-bottom: 8px; }
.dir-hero-text h1 { font-family: 'Lora', serif; font-size: clamp(2rem,4vw,3.2rem); font-weight: 700; line-height: 1.1; color: #fff; margin-bottom: 6px; }
.dir-hero-role { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; display: block; margin-top: 4px; }
.dir-hero-lead { font-family: 'Lora', serif; font-size: 1rem; font-style: italic; color: rgba(255,255,255,0.6); line-height: 1.8; max-width: 520px; margin-bottom: 36px; display: block; }
.dir-hero-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.dir-tag { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.12); padding: 5px 12px; border-radius: 2px; }

/* ── DIRECTORA: MAIN CONTENT ─────────────────────────────────────────────── */
.sc-dir-main { padding: 80px 0; }
.sc-dir-main-grid { display: grid; grid-template-columns: 1fr 300px; gap: 72px; align-items: start; }
.dir-section { margin-bottom: 56px; }
.dir-section:last-child { margin-bottom: 0; }
.dir-section .h2 { margin-bottom: 20px; }
.dir-section p { font-size: 0.95rem; color: var(--mid); line-height: 1.9; margin-bottom: 16px; }
.dir-section p:last-child { margin-bottom: 0; }
.dir-pull-quote { margin: 36px 0; padding: 28px 36px; border-left: 4px solid var(--red); background: var(--cream); border-radius: 0 6px 6px 0; }
.dir-pull-quote p { font-family: 'Lora', serif; font-size: 1.25rem; font-style: italic; font-weight: 700; color: var(--dark); line-height: 1.5; margin-bottom: 10px !important; }
.dir-pull-quote cite { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-style: normal; }
.dir-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--rule); border-radius: 6px; overflow: hidden; margin-top: 24px; }
.dir-vision-item { background: var(--white); padding: 24px; }
.dir-vision-num { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.dir-vision-title { font-weight: 700; font-size: 0.9rem; color: var(--dark); margin-bottom: 6px; }
.dir-vision-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.6; }
.dir-timeline { display: flex; flex-direction: column; margin-top: 24px; }
.dir-tl-item { display: grid; grid-template-columns: 72px 1px 1fr; gap: 24px; padding-bottom: 32px; }
.dir-tl-item:last-child { padding-bottom: 0; }
.dir-tl-item:last-child .dir-tl-line { background: transparent; }
.dir-tl-year { font-family: 'Lora', serif; font-size: 1rem; font-weight: 700; color: var(--red); padding-top: 2px; }
.dir-tl-line { background: var(--rule); }
.dir-tl-dot { position: relative; }
.dir-tl-dot::before { content: ''; position: absolute; left: -5px; top: 6px; width: 9px; height: 9px; border-radius: 50%; background: var(--red); border: 2px solid var(--white); box-shadow: 0 0 0 1px var(--rule); }
.dir-tl-title { font-weight: 600; font-size: 0.9rem; color: var(--dark); margin-bottom: 3px; }
.dir-tl-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.55; }

/* ── DIRECTORA: SIDEBAR ──────────────────────────────────────────────────── */
.dir-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 16px; }
.dir-sidebar-card { background: var(--cream); border-radius: 6px; overflow: hidden; }
.dir-sidebar-card-head { background: var(--navy-dark); padding: 14px 20px; }
.dir-sidebar-card-head h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.dir-sidebar-card-body { padding: 16px 20px; display: flex; flex-direction: column; gap: 14px; }
.dir-sidebar-item { display: flex; align-items: flex-start; gap: 12px; }
.dir-sidebar-icon { width: 30px; height: 30px; border-radius: 6px; background: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.dir-sidebar-icon svg { width: 13px; height: 13px; stroke: var(--red); }
.dir-sidebar-label { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 1px; }
.dir-sidebar-value { font-size: 0.83rem; font-weight: 500; color: var(--dark); line-height: 1.4; }
.dir-sidebar-value a { color: var(--navy); text-decoration: none; }
.dir-sidebar-value a:hover { text-decoration: underline; }
.dir-team-list { background: var(--cream); border-radius: 6px; overflow: hidden; }
.dir-team-head { background: var(--navy-dark); padding: 14px 20px; }
.dir-team-head h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.dir-team-row { display: flex; align-items: center; gap: 12px; padding: 12px 20px; border-bottom: 1px solid var(--rule); }
.dir-team-row:last-child { border-bottom: none; }
.dir-team-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dir-team-avatar svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.5); }
.dir-team-name { font-size: 0.82rem; font-weight: 600; color: var(--dark); }
.dir-team-role { font-size: 0.72rem; color: var(--gray); }
.dir-team-row--active .dir-team-avatar { background: var(--red); }
.dir-team-row--active .dir-team-name { color: var(--red); }

/* ── INNER PAGE HERO ─────────────────────────────────────────────────────── */
.sc-page-hero { background: var(--navy-dark); padding: 72px 0 64px; position: relative; overflow: hidden; }
.ph-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.025) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,0.025) 1px,transparent 1px); background-size: 48px 48px; pointer-events: none; }
.sc-page-hero .sc-container { position: relative; z-index: 2; }
.page-hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.page-hero-eyebrow-line { width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }
.page-hero-eyebrow span { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.sc-page-hero h1 { font-family: 'Lora', serif; font-size: clamp(2.2rem,4.5vw,3.2rem); font-weight: 700; color: #fff; line-height: 1.12; margin-bottom: 16px; }
.page-hero-lead { font-size: 0.98rem; color: rgba(255,255,255,0.58); max-width: 580px; line-height: 1.78; }

/* ── ADMISIÓN: NOTICE ────────────────────────────────────────────────────── */
.sc-adm-notice { background: #FEF3F3; border-bottom: 1px solid rgba(196,18,48,0.12); padding: 20px 0; }
.adm-notice-inner { display: flex; align-items: flex-start; gap: 14px; }
.adm-notice-icon { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: rgba(196,18,48,0.1); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.adm-notice-icon svg { width: 16px; height: 16px; stroke: var(--red); }
.adm-notice-inner p { font-size: 0.87rem; color: var(--mid); line-height: 1.65; }
.adm-notice-inner strong { color: var(--red); }

/* ── ADMISIÓN: MAIN (Anótate en la Lista) ────────────────────────────────── */
.sc-adm-main { padding: 88px 0; }
.adm-main-grid { display: grid; grid-template-columns: 1fr 380px; gap: 72px; align-items: start; }
.adm-main-left .h2 { margin-bottom: 18px; }
.adm-intro { font-size: 0.93rem; color: var(--gray); line-height: 1.85; margin-bottom: 36px; }
.adm-who { margin-bottom: 36px; }
.adm-who-title,
.adm-steps-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); margin-bottom: 14px; }
.adm-who-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.adm-who-list li { font-size: 0.87rem; color: var(--mid); line-height: 1.55; padding-left: 16px; position: relative; }
.adm-who-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.adm-steps { display: flex; flex-direction: column; gap: 0; }
.adm-step { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--rule); }
.adm-step:first-of-type { border-top: 1px solid var(--rule); }
.adm-step-num { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--navy); color: #fff; font-size: 0.72rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.adm-step-name { font-size: 0.87rem; font-weight: 600; color: var(--dark); margin-bottom: 3px; }
.adm-step-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.6; }

/* Action card */
.adm-action-card { background: var(--navy-dark); border-radius: 8px; overflow: hidden; margin-bottom: 12px; }
.adm-action-card-head { padding: 30px 28px 24px; }
.adm-action-icon { width: 40px; height: 40px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.adm-action-icon svg { width: 18px; height: 18px; stroke: rgba(255,255,255,0.7); }
.adm-action-card-head .eyebrow { margin-bottom: 8px; }
.adm-action-card-head h3 { font-family: 'Lora', serif; font-size: 1.55rem; font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 12px; }
.adm-action-card-head p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.65; }
.adm-action-card-body { padding: 0 28px 24px; display: flex; flex-direction: column; gap: 10px; }
.adm-btn-full { width: 100%; justify-content: center; }
.adm-btn-full--ghost { color: rgba(255,255,255,0.7) !important; border-color: rgba(255,255,255,0.18) !important; }
.adm-btn-full--ghost:hover { color: #fff !important; border-color: rgba(255,255,255,0.5) !important; }
.adm-action-card-foot { padding: 18px 28px; background: rgba(0,0,0,0.2); display: flex; flex-direction: column; gap: 10px; }
.adm-fact { display: flex; align-items: flex-start; gap: 10px; font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.4; }
.adm-fact svg { width: 13px; height: 13px; stroke: var(--gold); flex-shrink: 0; margin-top: 1px; }

/* Vacantes link */
.adm-vacantes-link { display: flex; align-items: center; gap: 14px; background: var(--cream); border-radius: 6px; padding: 16px 20px; text-decoration: none; color: var(--dark); transition: background 0.15s; }
.adm-vacantes-link:hover { background: var(--rule); }
.adm-vacantes-icon { width: 34px; height: 34px; border-radius: 7px; background: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid var(--rule); }
.adm-vacantes-icon svg { width: 14px; height: 14px; stroke: var(--navy); }
.adm-vacantes-label { font-size: 0.82rem; font-weight: 600; color: var(--dark); margin-bottom: 1px; }
.adm-vacantes-url { font-size: 0.74rem; color: var(--navy); font-weight: 500; }
.adm-vacantes-arr { width: 13px; height: 13px; margin-left: auto; flex-shrink: 0; stroke: var(--gray); transition: transform 0.15s; }
.adm-vacantes-link:hover .adm-vacantes-arr { transform: translateX(3px); }

/* ── ADMISIÓN: SAE ANUAL ─────────────────────────────────────────────────── */
.sc-adm-sae { padding: 88px 0; background: var(--cream); }
.adm-sae-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.adm-sae-left .h2 { margin-bottom: 18px; }
.adm-sae-left p { font-size: 0.93rem; color: var(--gray); line-height: 1.85; }
.adm-sae-calendar { background: var(--white); border-radius: 8px; padding: 32px; border: 1px solid var(--rule); }
.adm-sae-cal-head { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); margin-bottom: 24px; }
.adm-cal-row { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--rule); }
.adm-cal-row:last-of-type { border-bottom: none; padding-bottom: 0; }
.adm-cal-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.adm-cal-phase { font-size: 0.87rem; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.adm-cal-date { font-size: 0.78rem; color: var(--gray); }
.adm-cal-note { font-size: 0.76rem; color: var(--gray); line-height: 1.6; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--rule); font-style: italic; }

/* ── ADMISIÓN: CONTACTO ──────────────────────────────────────────────────── */
.sc-adm-contact { padding: 88px 0; }
.adm-contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.adm-contact-text .h2 { margin-bottom: 16px; }
.adm-contact-text p { font-size: 0.93rem; color: var(--gray); line-height: 1.85; }
.adm-contact-cards { display: flex; flex-direction: column; gap: 8px; }
.adm-contact-card { text-decoration: none; transition: box-shadow 0.15s; }
.adm-contact-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .sc-academics .sc-container,
  .sc-lirmi-band .sc-container,
  .lp-intro-grid,
  .sc-principal .sc-container,
  .sc-lower .sc-container,
  .sc-contact .sc-container,
  .adm-main-grid,
  .adm-sae-inner,
  .adm-contact-inner,
  .sc-dir-hero-grid,
  .sc-dir-main-grid { grid-template-columns: 1fr; gap: 40px; }
  .dir-sidebar { position: static; }
  .dir-vision-grid { grid-template-columns: 1fr; }
  .pillars-head, .sports-head, .news-head { grid-template-columns: 1fr; gap: 14px; }
  .pillars-grid, .news-grid, .sports-grid { grid-template-columns: 1fr; }
  .sc-docs .sc-container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cap-inner { flex-wrap: wrap; }
  .cap-vdivider { display: none; }
  .cap-person, .cap-quote, .cap-activities, .cap-link { padding: 20px 24px; }
}
@media (max-width: 768px) {
  .sc-container { padding: 0 20px; }
  .topbar-left { display: none; }
  .lang-grid, .quick-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .sc-hero { height: 520px; }

  /* Mobile menu */
  .sc-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: 0;
    width: 40px;
    height: 40px;
    margin-left: auto;
    cursor: pointer;
    padding: 0;
  }
  .sc-menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--navy-dark);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
  }
  .sc-nav {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px;
    border-top: 1px solid var(--rule, rgba(0,0,0,0.1));
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 250;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }
  .sc-nav.is-open { display: flex; }
  .sc-nav .nav-item { width: 100%; }
  .sc-nav .nav-item > a { padding: 14px 4px; font-size: 1rem; }
  .sc-nav .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-top: 1px solid var(--rule, rgba(0,0,0,0.1));
    padding: 4px 0 8px 12px;
    min-width: 0;
  }
  .sc-nav .nav-spacer { display: none; }
  .sc-nav .nav-cta { margin-top: 12px; text-align: center; }
}


/* =============================================================================
   PROTOCOLOS — Hub & Individual Protocol Pages
   ============================================================================= */

/* -- Protocol Hub Page ------------------------------------------------------- */
.sc-proto-hub {
  background: var(--cream);
  padding: 72px 0 80px;
}
.proto-hub-intro {
  max-width: 680px;
  margin: 0 0 52px;
}
.proto-hub-intro p {
  font-size: 1.05rem;
  color: var(--mid);
  line-height: 1.7;
  margin-top: 16px;
}
.proto-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.proto-card {
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--rule);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}
.proto-card:hover {
  box-shadow: 0 8px 32px rgba(26,58,107,0.10);
  transform: translateY(-3px);
}
.proto-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.proto-card-icon svg {
  width: 26px;
  height: 26px;
}
.proto-card-icon--red   { background: rgba(196,18,48,0.10); color: var(--red); }
.proto-card-icon--navy  { background: rgba(26,58,107,0.10); color: var(--navy); }
.proto-card-icon--gold  { background: rgba(184,135,26,0.12); color: var(--gold); }
.proto-card h3 {
  font-family: "Lora", serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}
.proto-card p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
}
.proto-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 4px;
}
.proto-card-link svg {
  width: 12px;
  height: 12px;
  transition: transform 0.18s;
}
.proto-card:hover .proto-card-link svg {
  transform: translateX(4px);
}
.proto-card--red   { border-top: 3px solid var(--red); }
.proto-card--navy  { border-top: 3px solid var(--navy); }
.proto-card--gold  { border-top: 3px solid var(--gold); }

/* -- Protocol Page Hero ------------------------------------------------------ */
.sc-page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1e4a8a 100%);
  color: #fff;
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.ph-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.sc-page-hero .page-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.sc-page-hero .page-hero-eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.sc-page-hero .page-hero-eyebrow span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.sc-page-hero h1 {
  font-family: "Lora", serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 20px;
}
.page-hero-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 620px;
  margin-bottom: 28px;
}
.proto-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* -- Alert / Notice Band ----------------------------------------------------- */
.proto-alert-band {
  background: #FFF8E1;
  border-left: 4px solid var(--gold);
  padding: 20px 0;
}
.proto-alert-band--red {
  background: #FFF0F2;
  border-left-color: var(--red);
}
.proto-alert-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.proto-alert-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.proto-alert-band--red .proto-alert-icon {
  background: var(--red);
}
.proto-alert-icon svg {
  width: 20px;
  height: 20px;
}
.proto-alert-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.proto-alert-text p,
.proto-alert-text a {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.6;
}
.proto-alert-text a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
}

/* -- Two-column Protocol Layout ---------------------------------------------- */
.proto-layout-wrap {
  padding: 64px 0 80px;
  background: var(--white);
}
.proto-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

/* -- Protocol Section -------------------------------------------------------- */
.proto-section {
  margin-bottom: 52px;
}
.proto-section:last-child {
  margin-bottom: 0;
}
.proto-section-heading {
  font-family: "Lora", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--rule);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.proto-section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}
.proto-section p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 14px;
}
.proto-section p:last-child {
  margin-bottom: 0;
}
.proto-section ul,
.proto-section ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.proto-section li {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 8px;
}

/* -- Definition Card --------------------------------------------------------- */
.proto-def-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--navy);
  border-radius: 4px;
  padding: 20px 22px;
  margin-bottom: 16px;
}
.proto-def-card--red  { border-left-color: var(--red); }
.proto-def-card--gold { border-left-color: var(--gold); }
.proto-def-term {
  font-family: "Lora", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.proto-def-card--red .proto-def-term  { color: var(--red); }
.proto-def-card--gold .proto-def-term { color: var(--gold); }
.proto-def-body {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.7;
}

/* -- Procedure Step ---------------------------------------------------------- */
.proto-steps {
  display: flex;
  flex-direction: column;
  position: relative;
}
.proto-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 20px;
  position: relative;
}
.proto-step::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: var(--rule);
}
.proto-step:last-child::before {
  display: none;
}
.proto-step-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2px;
}
.proto-step-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lora", serif;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.proto-step-circle--red  { background: var(--red); }
.proto-step-circle--gold { background: var(--gold); }
.proto-step-body {
  padding-bottom: 32px;
}
.proto-step-title {
  font-family: "Lora", serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  padding-top: 10px;
}
.proto-step-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.proto-step-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray);
}
.proto-step-tag svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.proto-step-desc {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.7;
}
.proto-step-desc ul {
  padding-left: 20px;
  margin-top: 8px;
}
.proto-step-desc li {
  margin-bottom: 6px;
  line-height: 1.65;
}

/* -- Role / Responsibility Table --------------------------------------------- */
.proto-role-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-top: 16px;
  margin-bottom: 16px;
}
.proto-role-table th {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 14px;
  text-align: left;
}
.proto-role-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--rule);
  color: var(--mid);
  vertical-align: top;
  line-height: 1.6;
}
.proto-role-table tr:nth-child(even) td {
  background: var(--cream);
}
.proto-role-table tr:last-child td {
  border-bottom: none;
}
.tag-time {
  display: inline-block;
  background: rgba(26,58,107,0.08);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}
.tag-time--red {
  background: rgba(196,18,48,0.08);
  color: var(--red);
}

/* -- Sidebar ----------------------------------------------------------------- */
.proto-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}

/* -- Table of Contents ------------------------------------------------------- */
.proto-toc {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
}
.proto-toc-head {
  background: var(--navy);
  color: #fff;
  padding: 14px 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.proto-toc-list {
  list-style: none;
  padding: 12px 0;
  margin: 0;
}
.proto-toc-list li a {
  display: block;
  padding: 7px 18px;
  font-size: 0.83rem;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  border-left: 2px solid transparent;
}
.proto-toc-list li a:hover {
  color: var(--navy);
  background: rgba(26,58,107,0.04);
  border-left-color: var(--navy);
}

/* -- Download Card ----------------------------------------------------------- */
.proto-download-card {
  background: var(--red);
  border-radius: 6px;
  padding: 24px 22px;
  color: #fff;
}
.proto-download-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.proto-download-card-icon svg {
  width: 22px;
  height: 22px;
}
.proto-download-card h4 {
  font-family: "Lora", serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.proto-download-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  margin-bottom: 16px;
}
.btn-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 11px 18px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.18s;
}
.btn-download:hover { background: rgba(255,255,255,0.90); }
.btn-download svg   { width: 14px; height: 14px; }

/* -- Contact Card (sidebar) -------------------------------------------------- */
.proto-contact-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 20px 18px;
}
.proto-contact-card h4 {
  font-family: "Lora", serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.proto-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.83rem;
  color: var(--mid);
}
.proto-contact-item:last-child { margin-bottom: 0; }
.proto-contact-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--navy);
  margin-top: 2px;
}
.proto-contact-item a {
  color: var(--navy);
  font-weight: 600;
}

/* -- Bottom Contact Band ----------------------------------------------------- */
.proto-contact-band {
  background: var(--navy-dark);
  color: #fff;
  padding: 48px 0;
}
.proto-contact-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.proto-contact-band h3 {
  font-family: "Lora", serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.proto-contact-band p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
  max-width: 440px;
}
.proto-contact-band-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.btn-band-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  padding: 13px 24px;
  border-radius: 3px;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s;
}
.btn-band-primary:hover { background: var(--red-dark); }
.btn-band-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 12px 24px;
  border-radius: 3px;
  border: 1.5px solid rgba(255,255,255,0.3);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.18s, color 0.18s;
}
.btn-band-ghost:hover {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.btn-band-primary svg, .btn-band-ghost svg { width: 15px; height: 15px; flex-shrink: 0; }

/* -- Sub-section title ------------------------------------------------------- */
.proto-sub-title {
  font-family: "Lora", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 28px 0 14px;
  padding-left: 14px;
  border-left: 3px solid var(--red);
}
.proto-sub-title--navy { border-left-color: var(--navy); }
.proto-sub-title--gold { border-left-color: var(--gold); }

.proto-notice-box {
  background: rgba(26,58,107,0.05);
  border: 1px solid rgba(26,58,107,0.12);
  border-radius: 4px;
  padding: 18px 20px;
  margin: 20px 0;
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.7;
}
.proto-notice-box--red {
  background: rgba(196,18,48,0.04);
  border-color: rgba(196,18,48,0.12);
}
.proto-notice-box strong { color: var(--dark); }

/* -- Responsive -------------------------------------------------------------- */
@media (max-width: 1024px) {
  .proto-hub-grid { grid-template-columns: repeat(2, 1fr); }
  .proto-layout   { grid-template-columns: 1fr 260px; gap: 36px; }
}
@media (max-width: 768px) {
  .proto-hub-grid { grid-template-columns: 1fr; }
  .proto-layout   { grid-template-columns: 1fr; }
  .proto-sidebar  { position: static; order: -1; }
  .proto-toc      { display: none; }
  .proto-contact-band-inner { flex-direction: column; align-items: flex-start; }
  .proto-step     { grid-template-columns: 36px 1fr; }
  .proto-step-circle { width: 36px; height: 36px; font-size: 0.85rem; }
  .proto-step::before { left: 17px; top: 38px; }
  .proto-role-table   { font-size: 0.8rem; }
  .proto-hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ── PROTOCOLS HOMEPAGE SECTION ─────────────────────────────────────── */
.sc-protocols { background: var(--cream); padding: 72px 0; }
.protocols-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; margin-bottom: 40px; }
.protocols-head h2 { margin-bottom: 0; }
.protocols-head p { max-width: 420px; color: var(--mid); font-size: 0.95rem; line-height: 1.7; flex-shrink: 0; padding-top: 6px; }
.protocols-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.proto-home-card { position: relative; background: #fff; border: 1px solid var(--rule); border-radius: 6px; padding: 24px 20px 20px 24px; display: flex; align-items: center; gap: 16px; text-decoration: none; transition: box-shadow 0.18s, transform 0.18s; overflow: hidden; }
.proto-home-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); transform: translateY(-2px); }
.proto-home-card-accent { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; }
.proto-home-icon { flex-shrink: 0; width: 40px; height: 40px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.proto-home-icon svg { width: 18px; height: 18px; stroke: var(--navy); }
.proto-home-body { flex: 1; min-width: 0; }
.proto-home-title { font-family: 'Lora', serif; font-weight: 700; font-size: 0.95rem; color: var(--dark); margin-bottom: 4px; line-height: 1.3; }
.proto-home-desc { font-size: 0.8rem; color: var(--gray); line-height: 1.5; }
.proto-home-arrow { flex-shrink: 0; color: var(--gray); transition: color 0.18s, transform 0.18s; }
.proto-home-arrow svg { width: 16px; height: 16px; display: block; }
.proto-home-card:hover .proto-home-arrow { color: var(--red); transform: translateX(3px); }

@media (max-width: 900px) { .protocols-grid { grid-template-columns: repeat(2, 1fr); } .protocols-head { flex-direction: column; gap: 12px; } }
@media (max-width: 560px) { .protocols-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════════════
   SINGLE POST
══════════════════════════════════════════════════════════════════════ */

/* Hero */
.sp-hero { position: relative; background: var(--navy-dark); color: #fff; padding: 72px 0 56px; overflow: hidden; }
.sp-hero--plain { background: var(--navy); }
.sp-hero-bg { position: absolute; inset: 0; z-index: 0; }
.sp-hero-bg img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.35; }
.sp-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(15,35,71,0.55) 0%, rgba(15,35,71,0.85) 100%); }
.sp-hero-inner { position: relative; z-index: 1; max-width: 780px; }
.sp-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.sp-back { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; color: rgba(255,255,255,0.7); text-decoration: none; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; transition: color .18s; }
.sp-back:hover { color: #fff; }
.sp-back svg { width: 14px; height: 14px; }
.sp-cat { font-size: 0.75rem !important; }
.sp-title { font-family: 'Lora', serif; font-size: clamp(1.75rem, 4vw, 2.6rem); font-weight: 700; line-height: 1.2; color: #fff; margin: 0 0 20px; }
.sp-byline { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.sp-date, .sp-author { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.sp-date svg, .sp-author svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Layout */
.sp-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 48px; padding-top: 52px; padding-bottom: 80px; align-items: start; }

/* Featured image inside article */
.sp-feat-img { margin-bottom: 36px; border-radius: 8px; overflow: hidden; }
.sp-feat-img img { width: 100%; height: auto; display: block; }

/* Content typography */
.sp-content { font-size: 1.05rem; line-height: 1.8; color: var(--dark); }
.sp-content p { margin: 0 0 1.4em; }
.sp-content h2 { font-family: 'Lora', serif; font-size: 1.4rem; font-weight: 700; color: var(--navy); margin: 2em 0 .7em; }
.sp-content h3 { font-family: 'Lora', serif; font-size: 1.15rem; font-weight: 700; color: var(--navy); margin: 1.8em 0 .6em; border-left: 3px solid var(--red); padding-left: 14px; }
.sp-content h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin: 1.6em 0 .5em; }
.sp-content ul, .sp-content ol { padding-left: 1.5em; margin: 0 0 1.4em; }
.sp-content li { margin-bottom: .45em; }
.sp-content blockquote { border-left: 4px solid var(--gold); padding: 16px 20px; background: var(--cream); border-radius: 0 6px 6px 0; margin: 1.6em 0; font-style: italic; color: var(--mid); }
.sp-content img { max-width: 100%; border-radius: 6px; margin: 1em 0; }

/* Footer strip */
.sp-footer-strip { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 28px; margin-top: 40px; border-top: 1px solid var(--rule); flex-wrap: wrap; }
.sp-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.sp-tag { background: var(--cream); color: var(--mid); font-size: 0.78rem; padding: 4px 12px; border-radius: 20px; border: 1px solid var(--rule); }
.sp-share { display: flex; align-items: center; gap: 10px; }
.sp-share-label { font-size: 0.82rem; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.sp-share-btn { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--cream); color: var(--mid); transition: background .18s, color .18s; }
.sp-share-btn svg { width: 16px; height: 16px; }
.sp-share-btn:hover { background: var(--navy); color: #fff; }

/* Sidebar */
.sp-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }
.sp-sidebar-block { background: var(--cream); border-radius: 8px; padding: 24px; }
.sp-sidebar-title { font-family: 'Lora', serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin: 0 0 16px; padding-bottom: 12px; border-bottom: 1px solid var(--rule); }
.sp-related-item { display: flex; gap: 12px; align-items: flex-start; text-decoration: none; padding: 10px 0; border-bottom: 1px solid var(--rule); transition: opacity .18s; }
.sp-related-item:last-child { border-bottom: none; padding-bottom: 0; }
.sp-related-item:hover { opacity: .75; }
.sp-related-thumb { flex-shrink: 0; width: 64px; height: 64px; border-radius: 5px; overflow: hidden; }
.sp-related-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sp-related-body { flex: 1; min-width: 0; }
.sp-related-title { display: block; font-size: 0.88rem; font-weight: 600; color: var(--dark); line-height: 1.35; margin-bottom: 4px; }
.sp-related-date { font-size: 0.78rem; color: var(--gray); }
.sp-sidebar-cta { background: var(--navy); color: #fff; border-radius: 8px; padding: 24px; text-align: center; }
.sp-sidebar-cta-icon { width: 48px; height: 48px; background: rgba(255,255,255,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.sp-sidebar-cta-icon svg { width: 22px; height: 22px; stroke: #fff; }
.sp-sidebar-cta h4 { font-family: 'Lora', serif; font-size: 1.05rem; color: #fff; margin: 0 0 8px; }
.sp-sidebar-cta p { font-size: 0.88rem; color: rgba(255,255,255,.75); margin: 0 0 16px; line-height: 1.5; }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }

/* Prev/Next */
.sp-nav-posts { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; padding-bottom: 60px; }
.sp-nav-post { display: flex; flex-direction: column; gap: 6px; padding: 24px 28px; background: var(--cream); text-decoration: none; transition: background .18s; }
.sp-nav-post:hover { background: #ede9e2; }
.sp-nav-prev { border-radius: 8px 0 0 8px; }
.sp-nav-next { border-radius: 0 8px 8px 0; align-items: flex-end; text-align: right; }
.sp-nav-dir { display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .06em; }
.sp-nav-dir svg { width: 14px; height: 14px; }
.sp-nav-t { font-size: 0.92rem; font-weight: 600; color: var(--navy); line-height: 1.35; }

@media (max-width: 860px) {
  .sp-wrap { grid-template-columns: 1fr; }
  .sp-sidebar { position: static; }
  .sp-nav-posts { grid-template-columns: 1fr; }
  .sp-nav-prev { border-radius: 8px 8px 0 0; }
  .sp-nav-next { border-radius: 0 0 8px 8px; align-items: flex-start; text-align: left; }
}
@media (max-width: 600px) {
  .sp-hero { padding: 52px 0 40px; }
  .sp-title { font-size: 1.6rem; }
  .sp-wrap { padding-top: 32px; gap: 32px; }
}

/* ══════════════════════════════════════════════════════════════════════
   ARCHIVE (NOTICIAS)
══════════════════════════════════════════════════════════════════════ */

.arc-hero { background: var(--navy); color: #fff; padding: 64px 0 52px; }
.arc-hero .eyebrow { color: var(--gold); }
.arc-hero h1 { font-family: 'Lora', serif; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; color: #fff; margin: 8px 0 12px; }
.arc-hero p { font-size: 1rem; color: rgba(255,255,255,.72); max-width: 520px; line-height: 1.65; margin: 0; }

.arc-wrap { display: grid; grid-template-columns: 1fr 280px; gap: 48px; padding-top: 52px; padding-bottom: 80px; align-items: start; }
.arc-main { display: flex; flex-direction: column; gap: 0; }

/* Archive card */
.arc-card { display: grid; grid-template-columns: 260px 1fr; gap: 0; background: #fff; border: 1px solid var(--rule); border-radius: 8px; overflow: hidden; margin-bottom: 24px; transition: box-shadow .18s, transform .18s; }
.arc-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); transform: translateY(-2px); }
.arc-card--feat { grid-template-columns: 1fr; }
.arc-card-img-wrap { display: block; overflow: hidden; background: var(--cream); }
.arc-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s; min-height: 180px; }
.arc-card--feat .arc-card-img-wrap img { min-height: 320px; }
.arc-card:hover .arc-card-img-wrap img { transform: scale(1.03); }
.arc-card-img-placeholder { width: 100%; min-height: 180px; display: flex; align-items: center; justify-content: center; background: #e8e4dd; }
.arc-card-img-placeholder svg { width: 36px; height: 36px; stroke: #bbb; fill: none; }
.arc-card-body { padding: 24px 28px; display: flex; flex-direction: column; justify-content: center; }
.arc-card--feat .arc-card-body { padding: 28px 32px; }
.arc-card-title { font-family: 'Lora', serif; font-size: 1.15rem; font-weight: 700; color: var(--navy); line-height: 1.3; margin: 10px 0 12px; }
.arc-card--feat .arc-card-title { font-size: 1.4rem; }
.arc-card-title a { text-decoration: none; color: inherit; }
.arc-card-title a:hover { color: var(--red); }
.arc-card-excerpt { font-size: 0.92rem; color: var(--mid); line-height: 1.65; margin: 0 0 16px; }
.arc-card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--rule); gap: 12px; flex-wrap: wrap; }

/* Archive sidebar */
.arc-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }
.arc-sidebar-block { background: var(--cream); border-radius: 8px; padding: 24px; }
.arc-sidebar-title { font-family: 'Lora', serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin: 0 0 14px; padding-bottom: 12px; border-bottom: 1px solid var(--rule); }
.arc-cat-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.arc-cat-link { display: flex; align-items: center; justify-content: space-between; text-decoration: none; padding: 8px 10px; border-radius: 6px; font-size: 0.9rem; color: var(--dark); font-weight: 500; transition: background .15s, color .15s; }
.arc-cat-link:hover, .arc-cat-link--active { background: #fff; color: var(--red); }
.arc-cat-count { background: var(--rule); color: var(--gray); font-size: 0.75rem; padding: 2px 8px; border-radius: 20px; font-weight: 600; }
.arc-sidebar-cta { background: var(--navy); color: #fff; border-radius: 8px; padding: 24px; text-align: center; }
.arc-sidebar-cta-icon { width: 48px; height: 48px; background: rgba(255,255,255,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.arc-sidebar-cta-icon svg { width: 22px; height: 22px; stroke: #fff; }
.arc-sidebar-cta h4 { font-family: 'Lora', serif; font-size: 1.05rem; color: #fff; margin: 0 0 8px; }
.arc-sidebar-cta p { font-size: 0.88rem; color: rgba(255,255,255,.75); margin: 0 0 16px; line-height: 1.5; }

/* Pagination */
.page-numbers { display: flex; gap: 6px; list-style: none; padding: 0; margin: 8px 0 32px; flex-wrap: wrap; align-items: center; }
.page-numbers li a, .page-numbers li span { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; padding: 0 10px; border-radius: 6px; font-size: 0.9rem; font-weight: 600; text-decoration: none; color: var(--navy); background: var(--cream); border: 1px solid var(--rule); transition: background .15s, color .15s; }
.page-numbers li span.current { background: var(--red); color: #fff; border-color: var(--red); }
.page-numbers li a:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.arc-empty { color: var(--mid); font-size: 1rem; padding: 40px 0; }

@media (max-width: 900px) {
  .arc-wrap { grid-template-columns: 1fr; }
  .arc-sidebar { position: static; }
  .arc-card { grid-template-columns: 200px 1fr; }
}
@media (max-width: 600px) {
  .arc-card { grid-template-columns: 1fr; }
  .arc-card-img-wrap img { min-height: 200px; }
}

/* ── ARANCELES PAGE ─────────────────────────────────────────────────────────── */
.sc-arc-fees { padding: 80px 0 96px; }
.arc-fees-inner { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start; }
.arc-fees-left .h2 { margin-bottom: 16px; }
.arc-fees-note { font-size: 0.92rem; color: var(--mid); line-height: 1.7; margin-bottom: 36px; max-width: 480px; }

.arc-table { border: 1px solid var(--rule); border-radius: 8px; overflow: hidden; }
.arc-table-head { display: grid; grid-template-columns: 1fr auto; padding: 12px 20px; background: var(--navy); color: #fff; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.arc-table-row { display: grid; grid-template-columns: 1fr auto; align-items: center; padding: 20px 20px; border-bottom: 1px solid var(--rule); transition: background .15s; }
.arc-table-row:last-child { border-bottom: none; }
.arc-table-row:hover { background: var(--cream); }
.arc-level-name { font-size: 1rem; font-weight: 600; color: var(--navy); }
.arc-level-sub { font-size: 0.82rem; color: var(--mid); margin-top: 2px; }
.arc-amount { font-size: 1.25rem; font-weight: 700; color: var(--red); font-variant-numeric: tabular-nums; }

.arc-bank-card { background: var(--navy-dark); color: #fff; border-radius: 10px; overflow: hidden; }
.arc-bank-card-head { display: flex; align-items: center; gap: 16px; padding: 28px 28px 24px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.arc-bank-card-head svg { width: 32px; height: 32px; stroke: var(--gold-lt); flex-shrink: 0; }
.arc-bank-card-head h3 { font-family: 'Lora', serif; font-size: 1.2rem; color: #fff; margin: 4px 0 0; }
.arc-bank-rows { padding: 8px 0; }
.arc-bank-row { display: grid; grid-template-columns: 140px 1fr; gap: 12px; align-items: baseline; padding: 12px 28px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.arc-bank-row:last-child { border-bottom: none; }
.arc-bank-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.arc-bank-value { font-size: 0.95rem; color: rgba(255,255,255,0.9); line-height: 1.45; }
.arc-bank-mono { font-family: monospace; font-size: 1rem; letter-spacing: 0.04em; color: #fff; }
.arc-bank-footer { display: flex; align-items: flex-start; gap: 10px; padding: 18px 28px; background: rgba(184,135,26,0.15); border-top: 1px solid rgba(184,135,26,0.25); font-size: 0.83rem; color: rgba(255,255,255,0.75); line-height: 1.55; }
.arc-bank-footer svg { width: 16px; height: 16px; stroke: var(--gold-lt); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 900px) {
  .arc-fees-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .sc-arc-fees { padding: 52px 0 64px; }
  .arc-bank-row { grid-template-columns: 1fr; gap: 2px; }
  .arc-bank-label { font-size: 0.7rem; }
}

.sc-arc-bottom { padding: 0 0 96px; }
.arc-bottom-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
.arc-norm-card, .arc-cert-card { display: flex; gap: 20px; align-items: flex-start; background: var(--cream); border: 1px solid var(--rule); border-radius: 10px; padding: 32px; }
.arc-cert-card { background: var(--navy); border-color: var(--navy); }
.arc-cert-card .eyebrow { color: var(--gold-lt); }
.arc-norm-icon { width: 44px; height: 44px; background: var(--navy); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.arc-cert-card .arc-norm-icon { background: rgba(255,255,255,0.12); }
.arc-norm-icon svg { width: 22px; height: 22px; stroke: #fff; }
.arc-bottom-title { font-family: 'Lora', serif; font-size: 1.15rem; font-weight: 700; color: var(--navy); margin: 6px 0 12px; }
.arc-cert-card .arc-bottom-title { color: #fff; }
.arc-bottom-text { font-size: 0.9rem; color: var(--mid); line-height: 1.7; margin: 0 0 20px; }
.arc-cert-card .arc-bottom-text { color: rgba(255,255,255,0.75); }
.arc-norm-links { display: flex; flex-direction: column; gap: 8px; }
.arc-norm-link { display: inline-flex; align-items: center; gap: 7px; font-size: 0.85rem; font-weight: 600; color: var(--navy); text-decoration: none; transition: color .15s; }
.arc-norm-link:hover { color: var(--red); }
.arc-norm-link svg { width: 13px; height: 13px; flex-shrink: 0; }
.arc-presencial-card { display: flex; gap: 20px; align-items: flex-start; background: var(--cream); border: 1px solid var(--rule); border-radius: 10px; padding: 32px; }
.arc-presencial-card .arc-norm-icon { background: var(--red); }
.arc-pay-methods { display: flex; gap: 10px; flex-wrap: wrap; }
.arc-pay-method { display: flex; align-items: center; gap: 6px; font-size: 0.83rem; font-weight: 600; color: var(--navy); background: #fff; border: 1px solid var(--rule); border-radius: 6px; padding: 7px 12px; }
.arc-pay-method svg { width: 15px; height: 15px; stroke: var(--red); }

@media (max-width: 1100px) {
  .arc-bottom-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .arc-bottom-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .sc-arc-bottom { padding-bottom: 64px; }
  .arc-norm-card, .arc-cert-card { flex-direction: column; gap: 16px; padding: 24px; }
}


/* =============================================================================
   PLAN DE MEJORAMIENTO (PME 2024-2027) — page-plan-de-mejoramiento.php
   ============================================================================= */

.sc-pme-section { padding: 88px 0; background: var(--white); }
.sc-pme-section--cream { background: var(--cream); }

.pme-section-head { max-width: 760px; margin: 0 0 48px; }
.pme-section-head .h2 { margin-top: 6px; margin-bottom: 14px; }
.pme-section-lead { font-size: 1rem; color: var(--mid); line-height: 1.75; margin-top: 14px; }

/* Visión / Misión cards */
.pme-vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 64px; }
.pme-vm-card { background: var(--white); border: 1px solid var(--rule); border-top: 3px solid var(--red); border-radius: 6px; padding: 36px 32px; box-shadow: 0 4px 16px rgba(15,35,71,0.04); }
.pme-vm-num { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.pme-vm-card .h3 { margin-bottom: 16px; color: var(--navy-dark); }
.pme-vm-card p { font-size: 0.95rem; color: var(--mid); line-height: 1.85; margin-bottom: 14px; }
.pme-vm-card p:last-child { margin-bottom: 0; }

/* Sellos */
.pme-sellos-head { margin-bottom: 28px; }
.pme-sellos-head .h3 { color: var(--navy-dark); }
.pme-sellos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--rule); border-radius: 6px; overflow: hidden; }
.pme-sello { background: var(--white); padding: 32px 26px; display: flex; flex-direction: column; gap: 14px; }
.pme-sello-icon { width: 48px; height: 48px; border-radius: 10px; background: var(--cream); display: flex; align-items: center; justify-content: center; }
.pme-sello-icon svg { width: 22px; height: 22px; stroke: var(--red); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.pme-sello h4 { font-family: 'Lora', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy-dark); line-height: 1.25; }
.pme-sello p { font-size: 0.86rem; color: var(--mid); line-height: 1.65; }

/* Dimensiones */
.pme-dim-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pme-dim-card { background: var(--white); border: 1px solid var(--rule); border-radius: 8px; padding: 32px; display: flex; flex-direction: column; gap: 22px; box-shadow: 0 4px 16px rgba(15,35,71,0.05); }
.pme-dim-head { display: flex; align-items: flex-start; gap: 18px; padding-bottom: 22px; border-bottom: 1px solid var(--rule); }
.pme-dim-num { font-family: 'Lora', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; flex-shrink: 0; }
.pme-dim-title .h3 { color: var(--navy-dark); margin-bottom: 4px; }
.pme-dim-lead { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); }

.pme-dim-meta { background: var(--navy-dark); color: #fff; border-radius: 6px; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.pme-dim-meta-num { font-family: 'Lora', serif; font-size: 1.9rem; font-weight: 700; color: var(--gold-lt); line-height: 1; letter-spacing: -0.01em; }
.pme-dim-meta-lbl { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.7); text-align: right; flex: 1; }

.pme-dim-body { display: flex; flex-direction: column; gap: 16px; }
.pme-dim-block { display: flex; flex-direction: column; gap: 6px; }
.pme-dim-label { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); }
.pme-dim-block p { font-size: 0.9rem; color: var(--mid); line-height: 1.7; }
.pme-dim-actions { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.pme-dim-actions li { font-size: 0.9rem; color: var(--mid); line-height: 1.5; padding-left: 18px; position: relative; }
.pme-dim-actions li::before { content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

/* Indicadores stats */
.pme-stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; background: var(--rule); border-radius: 8px; overflow: hidden; }
.pme-stat { background: var(--white); padding: 36px 24px; display: flex; flex-direction: column; gap: 8px; border-top: 3px solid var(--gold); transition: background 0.2s; }
.pme-stat:hover { background: var(--cream); }
.pme-stat-num { font-family: 'Lora', serif; font-size: clamp(2.2rem, 3.5vw, 2.9rem); font-weight: 700; color: var(--red); line-height: 1; letter-spacing: -0.01em; }
.pme-stat-sym { font-size: 0.75em; color: var(--gold); margin-left: 2px; }
.pme-stat-lbl { font-size: 0.86rem; font-weight: 700; color: var(--navy-dark); line-height: 1.35; margin-top: 2px; }
.pme-stat-ctx { font-size: 0.72rem; color: var(--gray); letter-spacing: 0.04em; line-height: 1.5; }

/* Chart figure */
.pme-chart { margin: 0 0 36px; background: var(--white); border: 1px solid var(--rule); border-radius: 8px; padding: 24px; box-shadow: 0 4px 16px rgba(15,35,71,0.05); }
.pme-chart img { width: 100%; height: auto; display: block; border-radius: 4px; }
.pme-chart figcaption { font-size: 0.85rem; color: var(--mid); line-height: 1.6; text-align: center; margin-top: 18px; padding: 0 16px; }

/* Eval highlights row */
.pme-eval-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pme-eval-hl { background: var(--white); border: 1px solid var(--rule); border-radius: 6px; padding: 22px 24px; text-align: center; }
.pme-eval-hl-num { font-family: 'Lora', serif; font-size: 2.2rem; font-weight: 700; color: var(--navy-dark); line-height: 1; }
.pme-eval-hl-lbl { font-size: 0.82rem; color: var(--gray); margin-top: 8px; letter-spacing: 0.04em; line-height: 1.5; }

/* Cierre */
.sc-pme-closing { background: var(--navy-dark); padding: 88px 0; position: relative; overflow: hidden; }
.sc-pme-closing::before { content: ''; position: absolute; right: -80px; top: -40px; bottom: -40px; width: 50%; background: linear-gradient(160deg, transparent 30%, rgba(196,18,48,0.15) 100%); pointer-events: none; }
.pme-closing-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.pme-closing-shield { width: 84px; height: auto; opacity: 0.95; filter: brightness(0) invert(1); }
.pme-closing-text { font-family: 'Lora', serif; font-style: italic; font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; color: #fff; line-height: 1.2; }
.pme-closing-year { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-lt); margin-top: 4px; }

/* Responsive */
@media (max-width: 1024px) {
  .pme-vm-grid { grid-template-columns: 1fr; }
  .pme-sellos-grid { grid-template-columns: repeat(2, 1fr); }
  .pme-dim-grid { grid-template-columns: 1fr; }
  .pme-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pme-eval-highlights { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .sc-pme-section { padding: 56px 0; }
  .pme-sellos-grid { grid-template-columns: 1fr; }
  .pme-stats-grid { grid-template-columns: 1fr; }
  .pme-vm-card, .pme-dim-card { padding: 26px 22px; }
  .pme-dim-meta { flex-direction: column; align-items: flex-start; gap: 8px; }
  .pme-dim-meta-lbl { text-align: left; }
}

/* PME homepage highlight */
.sc-pme-highlight {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-dark, #0F2347) 0%, var(--navy, #1A3A6B) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.sc-pme-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.sc-pme-highlight .sc-container {
  position: relative;
  z-index: 1;
}
.pme-h-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}
.pme-h-intro .eyebrow { color: var(--gold, #B8871A); }
.pme-h-intro .h1 {
  color: #fff;
  margin: 12px 0 16px;
  font-size: 2.6rem;
  line-height: 1.15;
}
.pme-h-intro .lead {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.pme-h-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  overflow: hidden;
}
.pme-h-stats .pme-h-stat:last-child {
  grid-column: span 2;
  text-align: center;
}
.pme-h-stat {
  background: rgba(255,255,255,0.04);
  padding: 28px 24px;
  text-align: left;
}
.pme-h-stat:hover {
  background: rgba(255,255,255,0.08);
}
.pme-h-stat-num {
  font-family: "Lora", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold, #B8871A);
  line-height: 1;
}
.pme-h-stat-num .pct {
  font-size: 1.4rem;
  margin-left: 2px;
  vertical-align: top;
}
.pme-h-stat-lbl {
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  margin-top: 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .sc-pme-highlight { padding: 56px 0; }
  .pme-h-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pme-h-intro .h1 { font-size: 2rem; }
  .pme-h-stats { grid-template-columns: 1fr; }
  .pme-h-stats .pme-h-stat:last-child { grid-column: span 1; }
}

/* PME · SIMCE section ────────────────────────────────────────────── */
.pme-simce-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.pme-simce-block {
  background: #fff;
  border: 1px solid var(--rule, #E5E7EB);
  border-top: 3px solid var(--gold, #B8871A);
  border-radius: 8px;
  padding: 28px 24px;
}
.pme-simce-level {
  font-family: "Lora", serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy-dark, #0F2347);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule, #E5E7EB);
}
.pme-simce-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pme-simce-stat { text-align: center; }
.pme-simce-area {
  font-size: 0.85rem;
  color: var(--navy, #1A3A6B);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.pme-simce-num {
  font-family: "Lora", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--red, #C41230);
  line-height: 1;
  margin-bottom: 6px;
}
.pme-simce-delta {
  font-size: 0.78rem;
  color: var(--gold, #B8871A);
  font-weight: 600;
}
@media (max-width: 768px) {
  .pme-simce-grid { grid-template-columns: 1fr; }
}
