:root {
  --sgpm-red: #f3545d;
  --sgpm-red-2: #ff737b;
  --sgpm-red-dark: #c21f2f;
  --sgpm-red-deep: #8f1322;
  --sgpm-navy: #102a43;
  --sgpm-navy-2: #173f63;
  --sgpm-ink: #161922;
  --sgpm-text: #364152;
  --sgpm-muted: #6b778c;
  --sgpm-soft: #fff3f4;
  --sgpm-soft-blue: #f3f8fc;
  --sgpm-line: rgba(16, 42, 67, .11);
  --sgpm-white: #fff;
  --sgpm-shadow: 0 24px 70px rgba(16, 42, 67, .13);
  --sgpm-shadow-soft: 0 14px 36px rgba(16, 42, 67, .09);
  --sgpm-radius-xl: 34px;
  --sgpm-radius-lg: 25px;
  --sgpm-radius-md: 18px;
  --sgpm-container: 1220px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--sgpm-text);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.icon { width: 1.2em; height: 1.2em; flex: 0 0 auto; }
.container { width: min(var(--sgpm-container), calc(100% - 32px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-topbar {
  color: #fff;
  background: var(--sgpm-navy);
  font-size: 13px;
}
.site-topbar__inner { min-height: 34px; display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.site-topbar__group { display: flex; align-items: center; gap: 18px; }
.site-topbar a { display: inline-flex; align-items: center; gap: 7px; opacity: .94; }
.site-topbar a:hover { opacity: 1; color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(16,42,67,.07);
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 26px rgba(16,42,67,.06);
  backdrop-filter: blur(18px);
}
.site-nav { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.site-brand { display: flex; align-items: center; gap: 13px; min-width: 260px; }
.site-brand__logo { width: 64px; height: 64px; object-fit: contain; border-radius: 50%; background: #fff; box-shadow: 0 8px 22px rgba(16,42,67,.12); }
.site-brand__text { display: grid; line-height: 1.08; }
.site-brand__text strong { color: var(--sgpm-navy); font-size: 15px; letter-spacing: -.02em; }
.site-brand__text span { margin-top: 5px; color: var(--sgpm-red-dark); font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.site-menu { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.site-menu > li { position: relative; }
.site-menu > li > a, .site-menu__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 11px;
  border: 0;
  border-radius: 12px;
  color: #455468;
  background: transparent;
  font-size: 14px;
  font-weight: 750;
  transition: .2s ease;
}
.site-menu > li > a:hover, .site-menu > li > a.is-active, .site-menu__trigger:hover { color: var(--sgpm-red-dark); background: var(--sgpm-soft); }
.site-menu__trigger .icon { width: 14px; transition: transform .2s ease; }
.site-menu__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 310px;
  padding: 10px;
  border: 1px solid rgba(16,42,67,.09);
  border-radius: 20px;
  background: rgba(255,255,255,.98);
  box-shadow: var(--sgpm-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
}
.site-menu li:hover .site-menu__dropdown, .site-menu li:focus-within .site-menu__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.site-menu__dropdown a { display: flex; align-items: center; gap: 11px; padding: 11px 12px; border-radius: 13px; color: var(--sgpm-text); font-size: 13px; font-weight: 700; }
.site-menu__dropdown a:hover { color: var(--sgpm-red-dark); background: var(--sgpm-soft); }
.site-menu__dropdown .icon { color: var(--sgpm-red); }
.nav-cta { display: inline-flex !important; color: #fff !important; background: linear-gradient(135deg, var(--sgpm-red), var(--sgpm-red-dark)) !important; box-shadow: 0 12px 26px rgba(243,84,93,.22); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--sgpm-line); border-radius: 14px; color: var(--sgpm-navy); background: #fff; place-items: center; }
.nav-toggle .icon { width: 23px; height: 23px; }

.flash-stack { position: fixed; top: 126px; right: 20px; z-index: 100; display: grid; gap: 10px; width: min(400px, calc(100% - 32px)); }
.flash { display: flex; align-items: flex-start; gap: 11px; padding: 15px 17px; border-radius: 16px; color: var(--sgpm-navy); background: #fff; border: 1px solid var(--sgpm-line); box-shadow: var(--sgpm-shadow-soft); }
.flash--success { border-left: 5px solid #16a56a; }
.flash--warning { border-left: 5px solid #e7a21a; }
.flash--error { border-left: 5px solid var(--sgpm-red); }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 7vw, 96px) 0 46px;
  background:
    radial-gradient(circle at 5% 5%, rgba(243,84,93,.22), transparent 26%),
    radial-gradient(circle at 93% 10%, rgba(16,42,67,.13), transparent 30%),
    linear-gradient(135deg, #fff 0%, #fff7f8 48%, #f3f8fc 100%);
  isolation: isolate;
}
.hero::before, .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .36;
  background-image: linear-gradient(rgba(243,84,93,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(243,84,93,.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr); gap: clamp(28px, 5vw, 68px); align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 8px 13px; border-radius: 999px; color: var(--sgpm-red-dark); background: rgba(243,84,93,.11); border: 1px solid rgba(243,84,93,.16); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.hero h1 { margin: 22px 0 0; color: var(--sgpm-navy); font-size: clamp(44px, 6vw, 78px); line-height: .96; letter-spacing: -.06em; }
.hero h1 span { display: block; color: var(--sgpm-red); }
.hero__lead { max-width: 690px; margin: 24px 0 0; color: #425268; font-size: clamp(17px, 2vw, 20px); line-height: 1.75; }
.hero__actions, .button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 13px 19px; border: 1px solid transparent; border-radius: 999px; font-weight: 850; line-height: 1; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-3px); }
.btn--primary { color: #fff; background: linear-gradient(135deg, var(--sgpm-red), var(--sgpm-red-dark)); box-shadow: 0 18px 36px rgba(243,84,93,.27); }
.btn--secondary { color: var(--sgpm-red-dark); background: rgba(255,255,255,.84); border-color: rgba(243,84,93,.24); box-shadow: 0 10px 25px rgba(16,42,67,.07); }
.btn--dark { color: #fff; background: var(--sgpm-navy); box-shadow: 0 14px 28px rgba(16,42,67,.2); }
.btn--sm { min-height: 40px; padding: 10px 14px; font-size: 13px; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero__proof span { display: inline-flex; align-items: center; gap: 7px; padding: 9px 12px; border: 1px solid rgba(16,42,67,.09); border-radius: 999px; color: #526176; background: rgba(255,255,255,.75); font-size: 12px; font-weight: 700; }
.hero__proof .icon { color: var(--sgpm-red); }
.hero__visual { position: relative; min-height: 540px; }
.hero__image { position: absolute; inset: 0 0 26px 28px; overflow: hidden; border-radius: 42px; box-shadow: var(--sgpm-shadow); background: var(--sgpm-navy); }
.hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
.hero__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,42,67,.55), transparent 58%), linear-gradient(135deg, rgba(243,84,93,.2), transparent 48%); }
.hero__floating { position: absolute; z-index: 2; padding: 17px; border-radius: 22px; background: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.85); box-shadow: var(--sgpm-shadow-soft); backdrop-filter: blur(12px); }
.hero__floating strong { display: block; color: var(--sgpm-navy); font-size: 19px; }
.hero__floating small { display: block; margin-top: 3px; color: var(--sgpm-muted); }
.hero__floating--one { left: 0; bottom: 0; }
.hero__floating--two { right: -12px; top: 38px; display: flex; align-items: center; gap: 12px; }
.hero__floating-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; color: #fff; background: linear-gradient(135deg, var(--sgpm-red), var(--sgpm-red-dark)); }

.quick-access { position: relative; z-index: 3; margin-top: -6px; padding-bottom: 30px; }
.quick-access__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.quick-card { display: flex; align-items: center; gap: 14px; min-height: 94px; padding: 17px; border-radius: 22px; color: var(--sgpm-navy); background: #fff; border: 1px solid rgba(16,42,67,.08); box-shadow: var(--sgpm-shadow-soft); transition: .2s ease; }
.quick-card:hover { transform: translateY(-5px); border-color: rgba(243,84,93,.25); box-shadow: var(--sgpm-shadow); }
.quick-card__icon { width: 51px; height: 51px; display: grid; place-items: center; flex: 0 0 auto; margin: 0; border-radius: 17px; color: var(--sgpm-red-dark); background: var(--sgpm-soft); }
.quick-card__icon .icon { width: 24px; height: 24px; }
.quick-card > span:not(.quick-card__icon) { display: block; flex: 1 1 auto; min-width: 0; margin: 0; color: inherit; font-size: inherit; line-height: normal; }
.quick-card strong { display: block; font-size: 15px; line-height: 1.2; }
.quick-card > span:not(.quick-card__icon) > span { display: block; margin-top: 5px; color: var(--sgpm-muted); font-size: 12px; line-height: 1.35; }
.quick-card > .icon { flex: 0 0 auto; margin-left: auto; color: var(--sgpm-navy); }

.section { padding: clamp(66px, 8vw, 108px) 0; }
.section--soft { background: var(--sgpm-soft-blue); }
.section--gradient { background: linear-gradient(135deg, #fff8f9, #f4f8fc); }
.section-head { max-width: 760px; margin-bottom: 36px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2, .content-title { margin: 14px 0 0; color: var(--sgpm-navy); font-size: clamp(34px, 5vw, 54px); line-height: 1.03; letter-spacing: -.045em; }
.section-head h2 span, .content-title span { color: var(--sgpm-red); }
.section-head p { margin: 16px 0 0; color: var(--sgpm-muted); font-size: 16px; line-height: 1.75; }

.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(30px, 6vw, 78px); align-items: center; }
.about-visual { position: relative; min-height: 550px; }
.about-visual__main { position: absolute; inset: 0 72px 40px 0; overflow: hidden; border-radius: 34px; box-shadow: var(--sgpm-shadow); }
.about-visual__main img { width: 100%; height: 100%; object-fit: cover; }
.about-visual__accent { position: absolute; right: 0; bottom: 0; width: 48%; padding: 22px; border-radius: 25px; color: #fff; background: linear-gradient(145deg, var(--sgpm-red), var(--sgpm-red-deep)); box-shadow: 0 22px 44px rgba(194,31,47,.25); }
.about-visual__accent strong { display: block; font-size: 30px; line-height: 1; }
.about-visual__accent span { display: block; margin-top: 8px; font-size: 13px; opacity: .9; }
.check-list { display: grid; gap: 13px; margin: 25px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; color: #435269; }
.check-list__icon { width: 27px; height: 27px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: #fff; background: var(--sgpm-red); }
.check-list__icon .icon { width: 15px; height: 15px; }

.program-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.program-card { position: relative; overflow: hidden; display: flex; flex-direction: column; min-height: 100%; border: 1px solid rgba(16,42,67,.09); border-radius: 26px; background: #fff; box-shadow: var(--sgpm-shadow-soft); transition: .24s ease; }
.program-card:hover { transform: translateY(-8px); border-color: rgba(243,84,93,.26); box-shadow: var(--sgpm-shadow); }
.program-card__image { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--sgpm-navy); }
.program-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.program-card:hover .program-card__image img { transform: scale(1.045); }
.program-card__type { position: absolute; top: 14px; left: 14px; padding: 7px 10px; border-radius: 999px; color: #fff; background: rgba(16,42,67,.82); backdrop-filter: blur(8px); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.program-card__body { display: flex; flex-direction: column; flex: 1; padding: 21px; }
.program-card__meta { display: flex; flex-wrap: wrap; gap: 8px; color: var(--sgpm-muted); font-size: 12px; }
.program-card h3 { margin: 12px 0 0; color: var(--sgpm-navy); font-size: 21px; line-height: 1.13; letter-spacing: -.025em; }
.program-card p { margin: 12px 0 18px; color: var(--sgpm-muted); font-size: 14px; line-height: 1.58; }
.program-card__footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.program-card__link { display: inline-flex; align-items: center; gap: 8px; color: var(--sgpm-red-dark); font-size: 13px; font-weight: 900; }
.program-card__link .icon { transition: transform .2s ease; }
.program-card:hover .program-card__link .icon { transform: translateX(4px); }
.status-pill { display: inline-flex; align-items: center; padding: 6px 9px; border-radius: 999px; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.status-pill--active { color: #0c7450; background: #e7f8f0; }
.status-pill--suspended { color: #946300; background: #fff5d8; }

.numbers { position: relative; overflow: hidden; color: #fff; background: linear-gradient(135deg, var(--sgpm-navy), #173f63 54%, var(--sgpm-red-deep)); }
.numbers::before { content: ""; position: absolute; width: 430px; height: 430px; right: -130px; top: -220px; border-radius: 50%; background: rgba(243,84,93,.25); filter: blur(2px); }
.numbers-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); }
.number-item { padding: 42px 28px; border-right: 1px solid rgba(255,255,255,.18); }
.number-item:last-child { border-right: 0; }
.number-item strong { display: block; font-size: clamp(38px, 5vw, 64px); line-height: 1; letter-spacing: -.05em; }
.number-item span { display: block; margin-top: 10px; color: rgba(255,255,255,.8); font-size: 14px; }

.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.news-card { overflow: hidden; border-radius: 25px; background: #fff; border: 1px solid var(--sgpm-line); box-shadow: var(--sgpm-shadow-soft); transition: .22s ease; }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--sgpm-shadow); }
.news-card__image { aspect-ratio: 16/9; overflow: hidden; }
.news-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.news-card:hover img { transform: scale(1.04); }
.news-card__body { padding: 21px; }
.news-card time { color: var(--sgpm-red-dark); font-size: 12px; font-weight: 850; }
.news-card h3 { margin: 10px 0 0; color: var(--sgpm-navy); font-size: 20px; line-height: 1.2; }
.news-card p { margin: 11px 0 0; color: var(--sgpm-muted); font-size: 14px; }

.cta-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: clamp(30px, 5vw, 58px); border-radius: 34px; color: #fff; background: linear-gradient(135deg, var(--sgpm-red), var(--sgpm-red-dark)); box-shadow: 0 25px 55px rgba(194,31,47,.22); }
.cta-panel::after { content: ""; position: absolute; width: 260px; height: 260px; right: -70px; top: -110px; border: 44px solid rgba(255,255,255,.12); border-radius: 50%; }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { margin: 0; font-size: clamp(29px, 4vw, 46px); line-height: 1.04; letter-spacing: -.04em; }
.cta-panel p { max-width: 700px; margin: 13px 0 0; color: rgba(255,255,255,.86); }
.cta-panel .btn { color: var(--sgpm-red-dark); background: #fff; box-shadow: 0 16px 30px rgba(122,10,28,.18); }

.page-hero { position: relative; overflow: hidden; padding: clamp(55px, 7vw, 90px) 0; color: #fff; background: linear-gradient(135deg, var(--sgpm-navy), #173f63 66%, var(--sgpm-red-deep)); isolation: isolate; }
.page-hero::before { opacity: .1; mask-image: none; }
.page-hero__inner { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: end; }
.page-hero .eyebrow { color: #fff; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.14); }
.page-hero h1 { max-width: 850px; margin: 17px 0 0; font-size: clamp(40px, 6vw, 68px); line-height: .98; letter-spacing: -.055em; }
.page-hero h1 span { color: var(--sgpm-red-2); }
.page-hero p { max-width: 760px; margin: 20px 0 0; color: rgba(255,255,255,.78); font-size: 17px; }
.page-hero__mark { width: 135px; height: 135px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.13); border-radius: 36px; color: var(--sgpm-red-2); background: rgba(255,255,255,.06); transform: rotate(6deg); }
.page-hero__mark .icon { width: 64px; height: 64px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; color: rgba(255,255,255,.68); font-size: 13px; }
.breadcrumb a:hover { color: #fff; }

.bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.bento-card { padding: 27px; border-radius: 27px; border: 1px solid var(--sgpm-line); background: #fff; box-shadow: var(--sgpm-shadow-soft); }
.bento-card--mission { grid-column: span 6; }
.bento-card--vision { grid-column: span 6; background: linear-gradient(135deg, var(--sgpm-navy), var(--sgpm-navy-2)); color: #fff; }
.bento-card--values { grid-column: span 12; }
.bento-card__icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 17px; color: var(--sgpm-red-dark); background: var(--sgpm-soft); }
.bento-card h3 { margin: 18px 0 0; color: var(--sgpm-navy); font-size: 28px; line-height: 1.1; }
.bento-card--vision h3 { color: #fff; }
.bento-card p { color: var(--sgpm-muted); }
.bento-card--vision p { color: rgba(255,255,255,.74); }
.value-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.value-pills span { padding: 10px 13px; border-radius: 999px; color: var(--sgpm-red-dark); background: var(--sgpm-soft); border: 1px solid rgba(243,84,93,.15); font-weight: 800; font-size: 13px; }

.filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; }
.filter-btn { padding: 10px 15px; border-radius: 999px; border: 1px solid rgba(243,84,93,.2); color: var(--sgpm-red-dark); background: #fff; font-weight: 850; font-size: 13px; }
.filter-btn.is-active { color: #fff; background: linear-gradient(135deg, var(--sgpm-red), var(--sgpm-red-dark)); box-shadow: 0 12px 24px rgba(243,84,93,.22); }
.empty-state { padding: 40px; border: 1px dashed rgba(16,42,67,.18); border-radius: 25px; color: var(--sgpm-muted); text-align: center; background: #fff; }

.detail-hero { padding: 46px 0 0; background: linear-gradient(180deg, #fff8f9, #fff); }
.detail-hero__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 34px; align-items: stretch; }
.detail-hero__content { padding: 35px 0 44px; }
.detail-hero h1 { margin: 18px 0 0; color: var(--sgpm-navy); font-size: clamp(42px, 6vw, 68px); line-height: .98; letter-spacing: -.055em; }
.detail-hero__lead { margin: 21px 0 0; color: var(--sgpm-muted); font-size: 18px; line-height: 1.7; }
.detail-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 24px; }
.detail-meta__item { padding: 14px; border: 1px solid var(--sgpm-line); border-radius: 17px; background: rgba(255,255,255,.8); }
.detail-meta__item span { display: block; color: var(--sgpm-muted); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.detail-meta__item strong { display: block; margin-top: 5px; color: var(--sgpm-navy); font-size: 15px; }
.detail-hero__image { min-height: 520px; overflow: hidden; border-radius: 34px 34px 0 0; box-shadow: var(--sgpm-shadow); }
.detail-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.two-column { display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: start; }
.rich-card { padding: 28px; border-radius: 26px; border: 1px solid var(--sgpm-line); background: #fff; box-shadow: var(--sgpm-shadow-soft); }
.rich-card h2, .rich-card h3 { margin: 0; color: var(--sgpm-navy); }
.rich-card h2 { font-size: 31px; }
.rich-card h3 { font-size: 21px; }
.rich-card p { color: var(--sgpm-muted); }
.function-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; margin-top: 22px; }
.function-item { display: flex; gap: 12px; padding: 16px; border-radius: 18px; background: #fff8f9; border: 1px solid rgba(243,84,93,.12); }
.function-item__icon { width: 36px; height: 36px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 12px; color: #fff; background: var(--sgpm-red); }
.function-item p { margin: 0; color: #46556a; font-size: 14px; }
.sticky-card { position: sticky; top: 126px; }

.study-plan { display: grid; gap: 15px; }
.year-card { overflow: hidden; border: 1px solid var(--sgpm-line); border-radius: 22px; background: #fff; box-shadow: var(--sgpm-shadow-soft); }
.year-card summary { display: flex; justify-content: space-between; gap: 16px; align-items: center; padding: 21px; list-style: none; cursor: pointer; }
.year-card summary::-webkit-details-marker { display: none; }
.year-card summary h3 { margin: 0; color: var(--sgpm-navy); font-size: 22px; }
.year-card summary p { margin: 5px 0 0; color: var(--sgpm-muted); font-size: 13px; }
.year-card__arrow { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 50%; color: var(--sgpm-red-dark); background: var(--sgpm-soft); transition: transform .2s ease; }
.year-card[open] .year-card__arrow { transform: rotate(90deg); }
.subject-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; margin: 0; padding: 0 21px 21px; list-style: none; }
.subject-list li { display: flex; align-items: flex-start; gap: 9px; padding: 12px; border-radius: 14px; color: #435269; background: #f8fafc; border: 1px solid rgba(16,42,67,.07); font-size: 13px; }
.subject-list li::before { content: ""; width: 7px; height: 7px; margin-top: 7px; border-radius: 50%; background: var(--sgpm-red); flex: 0 0 auto; }
.subject-list small { display: block; margin-top: 4px; color: var(--sgpm-muted); }

.contact-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 26px; align-items: start; }
.contact-info { display: grid; gap: 13px; }
.contact-info__item { display: flex; gap: 14px; padding: 18px; border-radius: 19px; border: 1px solid var(--sgpm-line); background: #fff; }
.contact-info__icon { width: 43px; height: 43px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 14px; color: var(--sgpm-red-dark); background: var(--sgpm-soft); }
.contact-info__item strong { display: block; color: var(--sgpm-navy); }
.contact-info__item span, .contact-info__item a { color: var(--sgpm-muted); font-size: 14px; }
.form-card { padding: 28px; border-radius: 28px; border: 1px solid var(--sgpm-line); background: #fff; box-shadow: var(--sgpm-shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.form-field { display: grid; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { color: var(--sgpm-navy); font-size: 13px; font-weight: 850; }
.form-control { width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid rgba(16,42,67,.15); border-radius: 14px; color: var(--sgpm-text); background: #fbfcfd; outline: none; transition: .2s ease; }
textarea.form-control { min-height: 150px; resize: vertical; }
.form-control:focus { border-color: var(--sgpm-red); box-shadow: 0 0 0 4px rgba(243,84,93,.1); background: #fff; }
.map-panel { margin-top: 24px; min-height: 270px; display: grid; place-items: center; padding: 32px; border-radius: 26px; color: #fff; text-align: center; background: linear-gradient(135deg, var(--sgpm-navy), var(--sgpm-navy-2)); }
.map-panel .icon { width: 52px; height: 52px; color: var(--sgpm-red-2); }

.download-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.download-card { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px; border-radius: 20px; border: 1px solid var(--sgpm-line); background: #fff; box-shadow: var(--sgpm-shadow-soft); }
.download-card__main { display: flex; gap: 13px; align-items: flex-start; }
.download-card__icon { width: 44px; height: 44px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 14px; color: var(--sgpm-red-dark); background: var(--sgpm-soft); }
.download-card h3 { margin: 0; color: var(--sgpm-navy); font-size: 17px; }
.download-card p { margin: 5px 0 0; color: var(--sgpm-muted); font-size: 13px; }

.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 34px; align-items: start; }
.article { overflow: hidden; border-radius: 28px; border: 1px solid var(--sgpm-line); background: #fff; box-shadow: var(--sgpm-shadow-soft); }
.article__image { max-height: 520px; overflow: hidden; }
.article__image img { width: 100%; height: 100%; object-fit: cover; }
.article__body { padding: clamp(24px, 4vw, 46px); }
.article__body h1 { margin: 0; color: var(--sgpm-navy); font-size: clamp(34px, 5vw, 54px); line-height: 1.04; }
.article__body h2, .article__body h3 { color: var(--sgpm-navy); }
.article__body p { color: #4a596e; line-height: 1.8; }
.article__meta { display: flex; gap: 12px; margin-bottom: 16px; color: var(--sgpm-red-dark); font-size: 13px; font-weight: 800; }

.site-footer { position: relative; overflow: hidden; color: rgba(255,255,255,.76); background: #0d2338; }
.site-footer::before { content: ""; position: absolute; inset: 0; opacity: .1; background-image: radial-gradient(circle at 20% 20%, #fff 1px, transparent 1px); background-size: 26px 26px; }
.site-footer__main { position: relative; display: grid; grid-template-columns: 1.25fr .8fr .8fr 1fr; gap: 35px; padding: 64px 0 44px; }
.footer-brand { display: flex; gap: 14px; align-items: center; }
.footer-brand img { width: 70px; height: 70px; object-fit: contain; border-radius: 50%; background: #fff; }
.footer-brand strong { display: block; color: #fff; line-height: 1.2; }
.footer-brand span { display: block; margin-top: 5px; color: var(--sgpm-red-2); font-size: 12px; font-weight: 800; }
.site-footer p { font-size: 13px; }
.site-footer h3 { margin: 0 0 16px; color: #fff; font-size: 15px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { font-size: 13px; transition: .2s ease; }
.footer-links a:hover { color: #fff; transform: translateX(3px); }
.socials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.socials a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); font-size: 12px; font-weight: 900; }
.site-footer__bottom { position: relative; display: flex; justify-content: space-between; gap: 18px; padding: 17px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }
.back-to-top { position: fixed; right: 20px; bottom: 20px; z-index: 40; width: 46px; height: 46px; display: grid; place-items: center; border: 0; border-radius: 15px; color: #fff; background: linear-gradient(135deg, var(--sgpm-red), var(--sgpm-red-dark)); box-shadow: 0 13px 28px rgba(194,31,47,.3); opacity: 0; visibility: hidden; transform: translateY(10px); transition: .2s ease; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top .icon { transform: rotate(-90deg); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .site-brand { min-width: auto; }
  .site-brand__text { display: none; }
  .site-menu > li > a, .site-menu__trigger { padding-inline: 8px; font-size: 13px; }
  .hero__grid, .detail-hero__grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: 470px; }
  .hero__image { left: 0; }
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-access__grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid, .two-column { grid-template-columns: 1fr; }
  .sticky-card { position: static; }
  .about-visual { min-height: 480px; }
  .site-footer__main { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .site-topbar__inner { justify-content: center; }
  .site-topbar__group--secondary { display: none; }
  .site-nav { min-height: 75px; }
  .site-brand__logo { width: 54px; height: 54px; }
  .nav-toggle { display: grid; }
  .site-menu {
    position: fixed;
    inset: 109px 12px auto;
    max-height: calc(100vh - 126px);
    overflow-y: auto;
    display: grid;
    gap: 5px;
    padding: 14px;
    border: 1px solid var(--sgpm-line);
    border-radius: 22px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--sgpm-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: .2s ease;
  }
  .site-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-menu > li > a, .site-menu__trigger { width: 100%; justify-content: space-between; padding: 13px 14px; }
  .site-menu__dropdown { position: static; width: 100%; display: none; margin-top: 4px; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: #f7f9fb; }
  .site-menu li.is-open .site-menu__dropdown { display: block; }
  .hero { padding-top: 45px; }
  .hero__visual { min-height: 410px; }
  .hero__image { inset: 0 0 30px 0; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .number-item:nth-child(2) { border-right: 0; }
  .number-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
  .news-grid { grid-template-columns: 1fr; }
  .cta-panel { grid-template-columns: 1fr; }
  .page-hero__inner { grid-template-columns: 1fr; }
  .page-hero__mark { display: none; }
  .article-layout { grid-template-columns: 1fr; }
  .download-list { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 22px, var(--sgpm-container)); }
  .site-topbar__group { gap: 8px; }
  .site-topbar__group a:last-child { display: none; }
  .site-menu { inset-inline: 8px; }
  .hero h1 { font-size: 43px; }
  .hero__lead { font-size: 16px; }
  .hero__actions .btn, .button-row .btn { width: 100%; }
  .hero__visual { min-height: 345px; }
  .hero__floating--two { right: 6px; top: 14px; }
  .hero__floating--one { left: 6px; }
  .hero__floating { padding: 13px; border-radius: 18px; }
  .quick-access__grid, .program-grid { grid-template-columns: 1fr; }
  .section { padding-block: 62px; }
  .about-visual { min-height: 390px; }
  .about-visual__main { inset-right: 24px; }
  .about-visual__accent { width: 62%; padding: 17px; }
  .numbers-grid { grid-template-columns: 1fr; }
  .number-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); padding: 28px 20px; }
  .number-item:last-child { border-bottom: 0; }
  .bento-card--mission, .bento-card--vision, .bento-card--values { grid-column: span 12; }
  .detail-meta, .function-grid, .subject-list, .form-grid { grid-template-columns: 1fr; }
  .detail-hero__image { min-height: 340px; }
  .form-field--full { grid-column: auto; }
  .download-card { align-items: flex-start; flex-direction: column; }
  .site-footer__main { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   Portal SGPM 2.0 · componentes públicos migrados de WordPress
   ========================================================= */
.skip-link{position:fixed;left:18px;top:12px;z-index:9999;padding:11px 16px;border-radius:12px;color:#fff;background:var(--sgpm-navy);box-shadow:var(--sgpm-shadow);transform:translateY(-150%);transition:.2s ease}.skip-link:focus{transform:translateY(0)}
.topbar-badge{display:inline-flex;align-items:center;gap:7px;padding:4px 9px;border-radius:999px;color:#fff;background:rgba(255,255,255,.09);font-weight:800}.topbar-badge::before{content:"";width:7px;height:7px;border-radius:50%;background:var(--sgpm-red-2);box-shadow:0 0 0 4px rgba(255,115,123,.15)}
.site-menu__dropdown--mega{right:-210px;width:min(760px,calc(100vw - 34px));padding:18px}.menu-mega{display:grid;grid-template-columns:230px 1fr;gap:16px}.menu-mega__intro{padding:20px;border-radius:18px;color:#fff;background:linear-gradient(145deg,var(--sgpm-navy),var(--sgpm-navy-2) 66%,var(--sgpm-red-deep))}.menu-mega__intro span{width:44px;height:44px;display:grid;place-items:center;border-radius:14px;color:#fff;background:rgba(255,255,255,.12)}.menu-mega__intro strong{display:block;margin-top:16px;font-size:18px;line-height:1.15}.menu-mega__intro p{margin:8px 0 16px;color:rgba(255,255,255,.72);font-size:12px;line-height:1.55}.menu-mega__intro a{padding:0!important;color:#fff!important;background:none!important;font-weight:900!important}.menu-mega__links{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:5px;align-content:start}.menu-mega__links a{min-height:51px}.menu-mega__links a span{min-width:0}.menu-mega__links a strong{display:block;color:var(--sgpm-navy);font-size:12px;line-height:1.2}.menu-mega__links a small{display:block;margin-top:3px;color:var(--sgpm-muted);font-size:10px;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.nav-search{width:42px;height:42px;display:grid;place-items:center;border:1px solid var(--sgpm-line);border-radius:13px;color:var(--sgpm-navy);background:#fff;transition:.2s ease}.nav-search:hover,.nav-search[aria-expanded="true"]{color:var(--sgpm-red-dark);border-color:rgba(243,84,93,.28);background:var(--sgpm-soft)}.site-search{position:fixed;inset:122px 0 auto;z-index:45;padding:22px 0;border-bottom:1px solid var(--sgpm-line);background:rgba(255,255,255,.97);box-shadow:0 22px 44px rgba(16,42,67,.13);backdrop-filter:blur(18px);opacity:0;visibility:hidden;transform:translateY(-12px);transition:.22s ease}.site-search.is-open{opacity:1;visibility:visible;transform:translateY(0)}.site-search form{display:grid;grid-template-columns:auto 1fr auto;gap:12px;align-items:center;padding:10px 10px 10px 18px;border:1px solid rgba(16,42,67,.13);border-radius:20px;background:#fff;box-shadow:var(--sgpm-shadow-soft)}.site-search form>svg{color:var(--sgpm-red);width:24px;height:24px}.site-search input{width:100%;min-height:48px;border:0;outline:0;color:var(--sgpm-navy);font-size:17px;background:transparent}.site-search__hint{margin-top:9px;color:var(--sgpm-muted);font-size:12px}.site-search__close{width:45px;height:45px;display:grid;place-items:center;border:0;border-radius:14px;color:var(--sgpm-navy);background:#f3f6f9}

.hero--premium{padding-bottom:66px}.hero__mini-stats{display:flex;flex-wrap:wrap;gap:0;margin-top:30px;padding-top:24px;border-top:1px solid rgba(16,42,67,.1)}.hero__mini-stats div{min-width:112px;padding-right:22px;margin-right:22px;border-right:1px solid rgba(16,42,67,.1)}.hero__mini-stats div:last-child{border-right:0}.hero__mini-stats strong{display:block;color:var(--sgpm-navy);font-size:24px;line-height:1}.hero__mini-stats span{display:block;margin-top:6px;color:var(--sgpm-muted);font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.06em}.hero__visual-line{position:absolute;right:-12px;bottom:6px;width:64%;height:13px;border-radius:999px;background:linear-gradient(90deg,var(--sgpm-red),var(--sgpm-red-dark));box-shadow:0 12px 26px rgba(243,84,93,.28)}
.about-grid--premium{gap:clamp(38px,7vw,88px)}.about-visual__frame{position:absolute;left:22px;top:22px;right:48px;bottom:66px;border:1px solid rgba(243,84,93,.32);border-radius:35px;transform:translate(-20px,18px);z-index:-1}.content-lead{font-size:17px;line-height:1.8}.feature-lines{display:grid;gap:3px;margin-top:26px}.feature-lines>div{display:grid;grid-template-columns:44px 1fr;column-gap:13px;padding:14px 0;border-bottom:1px solid var(--sgpm-line)}.feature-lines>div:last-child{border-bottom:0}.feature-lines>div>span{grid-row:span 2;width:44px;height:44px;display:grid;place-items:center;border-radius:14px;color:var(--sgpm-red-dark);background:var(--sgpm-soft)}.feature-lines strong{color:var(--sgpm-navy);font-size:15px}.feature-lines p{margin:3px 0 0;color:var(--sgpm-muted);font-size:13px;line-height:1.5}.text-link{display:inline-flex;align-items:center;color:var(--sgpm-red-dark);font-weight:900;font-size:13px}.text-link::after{content:"→";margin-left:7px;transition:.2s ease}.text-link:hover::after{transform:translateX(4px)}
.section--navy{position:relative;overflow:hidden;color:#fff;background:linear-gradient(140deg,#0d2338,var(--sgpm-navy-2) 66%,#7f1725)}.section--navy::before{content:"";position:absolute;inset:0;opacity:.12;background-image:linear-gradient(rgba(255,255,255,.18) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.18) 1px,transparent 1px);background-size:58px 58px;mask-image:linear-gradient(to right,#000,transparent 90%)}.section--navy>.container{position:relative}.section-head--light h2{color:#fff}.section-head--light h2 span{color:var(--sgpm-red-2)}.section-head--light p{color:rgba(255,255,255,.7)}.section-head--light .eyebrow{color:#fff;background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.14)}.area-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.area-card{position:relative;min-height:220px;display:flex;flex-direction:column;justify-content:space-between;gap:18px;padding:23px;border:1px solid rgba(255,255,255,.13);border-radius:25px;background:rgba(255,255,255,.07);box-shadow:0 18px 40px rgba(0,0,0,.12);backdrop-filter:blur(8px);transition:.23s ease}.area-card:hover{transform:translateY(-7px);background:rgba(255,255,255,.12);border-color:rgba(255,115,123,.42)}.area-card>span{width:48px;height:48px;display:grid;place-items:center;border-radius:16px;color:#fff;background:linear-gradient(135deg,var(--sgpm-red),var(--sgpm-red-dark))}.area-card>svg:last-child{position:absolute;right:20px;top:20px;color:rgba(255,255,255,.55)}.area-card small{display:block;color:var(--sgpm-red-2);font-weight:900;text-transform:uppercase;letter-spacing:.08em}.area-card strong{display:block;margin-top:5px;color:#fff;font-size:20px;line-height:1.15}.area-card p{margin:9px 0 0;color:rgba(255,255,255,.68);font-size:13px;line-height:1.55}.program-grid--featured .program-card:first-child{grid-column:span 2;display:grid;grid-template-columns:1.08fr .92fr}.program-grid--featured .program-card:first-child .program-card__image{aspect-ratio:auto;min-height:100%}.button-row--center{justify-content:center;margin-top:34px}.numbers--premium .number-item small{display:block;margin-top:6px;color:rgba(255,255,255,.55);font-size:11px}.home-story{display:grid;grid-template-columns:1.05fr .95fr;overflow:hidden;border:1px solid var(--sgpm-line);border-radius:34px;background:#fff;box-shadow:var(--sgpm-shadow)}.home-story__image{position:relative;min-height:440px;overflow:hidden}.home-story__image img{width:100%;height:100%;object-fit:cover}.home-story__image::after{content:"";position:absolute;inset:0;background:linear-gradient(135deg,rgba(16,42,67,.1),rgba(143,19,34,.26))}.home-story__content{display:flex;flex-direction:column;justify-content:center;padding:clamp(30px,5vw,58px)}.home-story__content h2{margin:18px 0 0;color:var(--sgpm-navy);font-size:clamp(31px,4vw,48px);line-height:1.04;letter-spacing:-.045em}.home-story__content p{margin:18px 0 0;color:var(--sgpm-muted);font-size:16px;line-height:1.75}.cta-panel__eyebrow{display:block;margin-bottom:10px;color:rgba(255,255,255,.76);font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.09em}.cta-panel__actions{display:flex;flex-wrap:wrap;gap:10px;justify-content:flex-end}.cta-panel__actions .btn--dark{color:#fff;background:var(--sgpm-navy)}

.news-tools{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:15px;align-items:center;margin-bottom:22px}.news-search{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:11px;padding:7px 7px 7px 16px;border:1px solid var(--sgpm-line);border-radius:18px;background:#fff;box-shadow:var(--sgpm-shadow-soft)}.news-search>svg{color:var(--sgpm-red)}.news-search input{min-width:0;width:100%;border:0;outline:0;background:transparent}.news-filter-select{min-height:50px;padding:0 42px 0 15px;border:1px solid var(--sgpm-line);border-radius:15px;color:var(--sgpm-navy);background:#fff}.category-strip{display:flex;gap:8px;overflow-x:auto;margin:0 0 30px;padding:2px 1px 10px;scrollbar-width:thin}.category-chip{flex:0 0 auto;display:inline-flex;align-items:center;gap:7px;padding:9px 13px;border:1px solid var(--sgpm-line);border-radius:999px;color:var(--sgpm-navy);background:#fff;font-size:12px;font-weight:850}.category-chip::before{content:"";width:8px;height:8px;border-radius:50%;background:var(--category-color,var(--sgpm-red))}.category-chip:hover,.category-chip.is-active{color:#fff;border-color:var(--category-color,var(--sgpm-red));background:var(--category-color,var(--sgpm-red))}.category-chip.is-active::before{background:#fff}.archive-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;margin-bottom:24px}.archive-heading h2{margin:0;color:var(--sgpm-navy);font-size:clamp(28px,4vw,42px);letter-spacing:-.04em}.archive-heading p{margin:7px 0 0;color:var(--sgpm-muted)}.featured-news{display:grid;grid-template-columns:1.12fr .88fr;overflow:hidden;margin-bottom:28px;border-radius:30px;background:linear-gradient(145deg,var(--sgpm-navy),var(--sgpm-navy-2));box-shadow:var(--sgpm-shadow)}.featured-news__image{position:relative;min-height:420px;overflow:hidden}.featured-news__image img{width:100%;height:100%;object-fit:cover}.featured-news__image::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,transparent 55%,rgba(16,42,67,.45))}.featured-news__content{display:flex;flex-direction:column;justify-content:center;padding:clamp(28px,5vw,50px);color:#fff}.featured-news__content h2{margin:16px 0 0;font-size:clamp(29px,4vw,46px);line-height:1.04;letter-spacing:-.04em}.featured-news__content p{margin:17px 0 0;color:rgba(255,255,255,.72);line-height:1.7}.featured-news__content .program-card__link{margin-top:24px;color:#fff}.news-category{display:inline-flex;align-items:center;width:max-content;padding:6px 9px;border:1px solid color-mix(in srgb,var(--category-color,var(--sgpm-red)) 35%,transparent);border-radius:999px;color:var(--category-color,var(--sgpm-red));background:color-mix(in srgb,var(--category-color,var(--sgpm-red)) 10%,white);font-size:10px;font-weight:900;text-transform:uppercase;letter-spacing:.06em}.news-card__top{display:flex;align-items:center;justify-content:space-between;gap:10px}.news-card__footer{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-top:18px}.news-card__footer small{color:var(--sgpm-muted);font-size:11px}.news-card__featured{grid-column:span 2;display:grid;grid-template-columns:1fr 1fr}.news-card__featured .news-card__image{aspect-ratio:auto}.pagination{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:7px;margin-top:34px}.pagination a,.pagination span{min-width:42px;height:42px;display:grid;place-items:center;padding:0 12px;border:1px solid var(--sgpm-line);border-radius:12px;color:var(--sgpm-navy);background:#fff;font-size:12px;font-weight:850}.pagination a:hover,.pagination .is-active{color:#fff;border-color:var(--sgpm-red);background:linear-gradient(135deg,var(--sgpm-red),var(--sgpm-red-dark))}.pagination .is-disabled{opacity:.45}

.article-hero{position:relative;overflow:hidden;padding:50px 0 0;background:linear-gradient(180deg,#fff6f7,#fff)}.article-breadcrumb{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:22px;color:var(--sgpm-muted);font-size:12px}.article-breadcrumb a{color:var(--sgpm-red-dark);font-weight:800}.article-hero__grid{display:grid;grid-template-columns:1.02fr .98fr;gap:36px;align-items:stretch}.article-hero__content{align-self:center;padding:25px 0 52px}.article-hero h1{margin:17px 0 0;color:var(--sgpm-navy);font-size:clamp(38px,5.5vw,66px);line-height:1;letter-spacing:-.055em}.article-hero__lead{margin:20px 0 0;color:var(--sgpm-muted);font-size:17px;line-height:1.7}.article-byline{display:flex;flex-wrap:wrap;gap:12px;margin-top:22px;color:#59677a;font-size:12px;font-weight:750}.article-byline span{display:inline-flex;align-items:center;gap:6px}.article-actions{display:flex;flex-wrap:wrap;gap:9px;margin-top:24px}.article-hero__image{position:relative;min-height:500px;overflow:hidden;border-radius:34px 34px 0 0;box-shadow:var(--sgpm-shadow)}.article-hero__image img{width:100%;height:100%;object-fit:cover}.article-hero__image::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(16,42,67,.4),transparent 55%)}.article--modern{overflow:visible;border:0;box-shadow:none}.article--modern .article__body{padding:0}.rich-content{color:#435269;font-size:16px;line-height:1.82}.rich-content>*:first-child{margin-top:0}.rich-content h2,.rich-content h3,.rich-content h4{color:var(--sgpm-navy);line-height:1.18;letter-spacing:-.025em}.rich-content h2{margin:38px 0 15px;font-size:30px}.rich-content h3{margin:30px 0 12px;font-size:23px}.rich-content p{margin:0 0 18px}.rich-content ul,.rich-content ol{padding-left:23px}.rich-content li{margin-bottom:8px}.rich-content a{color:var(--sgpm-red-dark);text-decoration:underline;text-underline-offset:3px}.rich-content blockquote{margin:28px 0;padding:22px 24px;border-left:5px solid var(--sgpm-red);border-radius:0 18px 18px 0;color:var(--sgpm-navy);background:var(--sgpm-soft);font-size:18px;font-weight:650}.rich-content img{height:auto;border-radius:18px}.article-image{margin:28px 0}.article-image img{width:100%;max-height:620px;object-fit:cover;border-radius:22px}.article-image figcaption{margin-top:8px;color:var(--sgpm-muted);font-size:11px;text-align:center}.article-table-wrap{width:100%;overflow-x:auto;margin:24px 0}.rich-content table{width:100%;border-collapse:separate;border-spacing:0;overflow:hidden;border:1px solid var(--sgpm-line);border-radius:16px}.rich-content th,.rich-content td{padding:11px 13px;border-right:1px solid var(--sgpm-line);border-bottom:1px solid var(--sgpm-line);font-size:13px}.rich-content th{color:var(--sgpm-navy);background:var(--sgpm-soft-blue)}.article-gallery{margin-top:42px}.article-gallery h2{color:var(--sgpm-navy)}.article-gallery__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:11px}.gallery-card{position:relative;overflow:hidden;aspect-ratio:1;border:0;border-radius:18px;padding:0;background:#eaf0f5}.gallery-card img{width:100%;height:100%;object-fit:cover;transition:.3s ease}.gallery-card span{position:absolute;inset:auto 9px 9px;display:flex;align-items:center;justify-content:center;gap:7px;padding:7px;border-radius:10px;color:#fff;background:rgba(16,42,67,.76);font-size:10px;font-weight:800;opacity:0;transform:translateY(5px);transition:.2s ease}.gallery-card:hover img{transform:scale(1.05)}.gallery-card:hover span{opacity:1;transform:none}.article-end{display:flex;align-items:center;gap:14px;margin-top:42px;padding:19px;border:1px solid rgba(243,84,93,.15);border-radius:21px;background:var(--sgpm-soft)}.article-end>span{width:46px;height:46px;display:grid;place-items:center;flex:0 0 auto;border-radius:15px;color:#fff;background:linear-gradient(135deg,var(--sgpm-red),var(--sgpm-red-dark))}.article-end strong{display:block;color:var(--sgpm-navy)}.article-end p{margin:3px 0 0;color:var(--sgpm-muted);font-size:12px}.article-end .btn{margin-left:auto}.article-sidebar{min-width:0}.article-index h3{margin-top:17px}.article-index dl{display:grid;gap:0;margin:18px 0 0}.article-index dl div{display:flex;justify-content:space-between;gap:15px;padding:12px 0;border-bottom:1px solid var(--sgpm-line)}.article-index dt{color:var(--sgpm-muted);font-size:11px;text-transform:uppercase;font-weight:800}.article-index dd{margin:0;color:var(--sgpm-navy);font-size:12px;font-weight:800;text-align:right}.lightbox{position:fixed;inset:0;z-index:999;display:grid;place-items:center;padding:30px;background:rgba(7,18,29,.92);opacity:0;visibility:hidden;transition:.2s ease}.lightbox.is-open{opacity:1;visibility:visible}.lightbox img{max-width:min(1200px,92vw);max-height:88vh;border-radius:18px;box-shadow:0 25px 80px rgba(0,0,0,.5)}.lightbox button{position:absolute;right:24px;top:24px;width:48px;height:48px;display:grid;place-items:center;border:1px solid rgba(255,255,255,.2);border-radius:15px;color:#fff;background:rgba(255,255,255,.09)}

.global-search{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:13px;padding:10px 10px 10px 18px;border:1px solid var(--sgpm-line);border-radius:22px;background:#fff;box-shadow:var(--sgpm-shadow)}.global-search>span{color:var(--sgpm-red)}.global-search input{min-width:0;width:100%;min-height:52px;border:0;outline:0;color:var(--sgpm-navy);background:transparent;font-size:17px}.search-suggestions{display:flex;flex-wrap:wrap;align-items:center;gap:14px;margin-top:18px;padding:18px;border-radius:18px;background:#fff;border:1px solid var(--sgpm-line)}.search-suggestions strong{color:var(--sgpm-navy);font-size:12px}.search-suggestions div{display:flex;flex-wrap:wrap;gap:7px}.search-suggestions a{padding:7px 10px;border-radius:999px;color:var(--sgpm-red-dark);background:var(--sgpm-soft);font-size:11px;font-weight:800}.search-summary{display:flex;gap:8px;margin:28px 0;color:var(--sgpm-muted)}.search-summary strong{color:var(--sgpm-navy)}.search-group{margin-top:54px}.search-list{display:grid;gap:13px}.search-list article{display:grid;grid-template-columns:180px 1fr;gap:20px;padding:14px;border:1px solid var(--sgpm-line);border-radius:21px;background:#fff;box-shadow:var(--sgpm-shadow-soft)}.search-list__image{min-height:130px;overflow:hidden;border-radius:15px}.search-list__image img{width:100%;height:100%;object-fit:cover}.search-list h3{margin:8px 0 5px;color:var(--sgpm-navy);font-size:20px}.search-list p{margin:0;color:var(--sgpm-muted);font-size:13px}.search-list small{display:block;margin-top:9px;color:var(--sgpm-red-dark);font-weight:800}.page-result-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:13px}.page-result-grid a{position:relative;padding:22px 56px 22px 22px;border:1px solid var(--sgpm-line);border-radius:21px;background:#fff;box-shadow:var(--sgpm-shadow-soft);transition:.2s ease}.page-result-grid a:hover{transform:translateY(-4px);border-color:rgba(243,84,93,.25)}.page-result-grid a>span{position:absolute;right:17px;top:17px;width:34px;height:34px;display:grid;place-items:center;border-radius:11px;color:var(--sgpm-red-dark);background:var(--sgpm-soft)}.page-result-grid strong{color:var(--sgpm-navy);font-size:18px}.page-result-grid p{margin:8px 0 0;color:var(--sgpm-muted);font-size:13px}
.content-page-hero{padding:50px 0;background:linear-gradient(135deg,#fff7f8,#f3f8fc)}.content-page-hero__grid{display:grid;grid-template-columns:1fr .88fr;gap:36px;align-items:center}.content-page-hero h1{margin:18px 0 0;color:var(--sgpm-navy);font-size:clamp(39px,6vw,66px);line-height:1;letter-spacing:-.055em}.content-page-hero p{max-width:720px;color:var(--sgpm-muted);font-size:17px;line-height:1.7}.content-page-hero figure{height:390px;margin:0;overflow:hidden;border-radius:32px;box-shadow:var(--sgpm-shadow)}.content-page-hero figure img{width:100%;height:100%;object-fit:cover}.content-page-hero .breadcrumb{color:var(--sgpm-muted)}.content-page-layout{display:grid;grid-template-columns:minmax(0,1fr) 330px;gap:28px;align-items:start}
.proposal-tools{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:14px;margin-bottom:20px}.proposal-search{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:10px;padding:8px 8px 8px 16px;border:1px solid var(--sgpm-line);border-radius:18px;background:#fff;box-shadow:var(--sgpm-shadow-soft)}.proposal-search>svg{color:var(--sgpm-red)}.proposal-search input{min-width:0;border:0;outline:0;background:transparent}.proposal-result{margin:0 0 22px;color:var(--sgpm-muted);font-size:13px}.proposal-empty{grid-column:1/-1}.proposal-nav{display:flex;flex-wrap:wrap;gap:9px;margin-top:24px}.proposal-nav a{padding:9px 12px;border:1px solid rgba(243,84,93,.18);border-radius:999px;color:var(--sgpm-red-dark);background:#fff;font-size:12px;font-weight:850}.correlation-callout{display:flex;align-items:flex-start;gap:13px;margin:0 21px 18px;padding:15px;border:1px solid rgba(243,84,93,.14);border-radius:16px;background:var(--sgpm-soft)}.correlation-callout>span{width:38px;height:38px;display:grid;place-items:center;flex:0 0 auto;border-radius:12px;color:#fff;background:var(--sgpm-red)}.correlation-callout strong{display:block;color:var(--sgpm-navy)}.correlation-callout p{margin:3px 0 0;color:var(--sgpm-muted);font-size:12px}.correlation-table-wrap{overflow-x:auto;margin:0 21px 21px}.correlation-table{width:100%;min-width:1060px;border-collapse:separate;border-spacing:0;overflow:hidden;border:1px solid var(--sgpm-line);border-radius:17px;background:#fff}.correlation-table th,.correlation-table td{padding:12px;border-right:1px solid var(--sgpm-line);border-bottom:1px solid var(--sgpm-line);vertical-align:top;font-size:12px}.correlation-table th{color:var(--sgpm-red-dark);background:var(--sgpm-soft);font-size:10px;text-transform:uppercase;letter-spacing:.04em}.correlation-table td:first-child{min-width:220px;color:var(--sgpm-navy);font-weight:850}.correlation-item{display:block;margin:3px 0;padding:5px 7px;border-left:3px solid var(--sgpm-red);border-radius:6px;background:#fff8f9}.correlation-toggle{margin:0 21px 21px}.proposal-status-note{margin-top:18px;padding:14px;border:1px solid #efd79f;border-radius:16px;color:#7d5a09;background:#fff8e6;font-size:13px}
.timeline{position:relative;display:grid;gap:18px;margin-top:30px;padding-left:30px}.timeline::before{content:"";position:absolute;left:8px;top:7px;bottom:7px;width:3px;border-radius:999px;background:linear-gradient(var(--sgpm-red),rgba(243,84,93,.12))}.timeline-item{position:relative;padding:21px;border:1px solid var(--sgpm-line);border-radius:21px;background:#fff;box-shadow:var(--sgpm-shadow-soft)}.timeline-item::before{content:"";position:absolute;left:-29px;top:26px;width:15px;height:15px;border:4px solid #fff;border-radius:50%;background:var(--sgpm-red);box-shadow:0 0 0 2px var(--sgpm-red)}.timeline-item small{color:var(--sgpm-red-dark);font-weight:900;text-transform:uppercase;letter-spacing:.08em}.timeline-item h3{margin:6px 0;color:var(--sgpm-navy)}.timeline-item p{margin:0;color:var(--sgpm-muted)}.institution-pillars{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.pillar-card{padding:23px;border:1px solid var(--sgpm-line);border-radius:23px;background:#fff;box-shadow:var(--sgpm-shadow-soft)}.pillar-card span{width:47px;height:47px;display:grid;place-items:center;border-radius:15px;color:var(--sgpm-red-dark);background:var(--sgpm-soft)}.pillar-card h3{margin:16px 0 7px;color:var(--sgpm-navy)}.pillar-card p{margin:0;color:var(--sgpm-muted);font-size:13px}.teacher-principles{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:15px}.teacher-principle{padding:25px;border:1px solid var(--sgpm-line);border-radius:24px;background:#fff;box-shadow:var(--sgpm-shadow-soft)}.teacher-principle>span{width:48px;height:48px;display:grid;place-items:center;border-radius:16px;color:#fff;background:linear-gradient(135deg,var(--sgpm-red),var(--sgpm-red-dark))}.teacher-principle h3{margin:16px 0 7px;color:var(--sgpm-navy)}.teacher-principle p{margin:0;color:var(--sgpm-muted);font-size:13px}.callout-band{display:grid;grid-template-columns:1fr auto;align-items:center;gap:25px;padding:28px;border-radius:26px;color:#fff;background:linear-gradient(135deg,var(--sgpm-navy),var(--sgpm-navy-2))}.callout-band h2{margin:0;font-size:30px}.callout-band p{margin:7px 0 0;color:rgba(255,255,255,.7)}
.footer-ribbon{position:relative;padding:18px 0;color:#fff;background:linear-gradient(90deg,var(--sgpm-red-deep),var(--sgpm-red),var(--sgpm-red-dark))}.footer-ribbon__inner{display:flex;align-items:center;justify-content:space-between;gap:20px}.footer-ribbon strong{font-size:16px}.footer-ribbon span{display:block;color:rgba(255,255,255,.8);font-size:12px}.footer-ribbon a{display:inline-flex;align-items:center;gap:8px;padding:10px 14px;border-radius:999px;color:var(--sgpm-red-dark);background:#fff;font-size:12px;font-weight:900}.footer-contact span{display:flex;align-items:flex-start;gap:8px;font-size:13px}.whatsapp-float{position:fixed;right:20px;bottom:78px;z-index:39;width:54px;height:54px;display:grid;place-items:center;border:1px solid rgba(255,255,255,.26);border-radius:18px;color:#fff;background:linear-gradient(145deg,#25d366,#16a34a);box-shadow:0 16px 34px rgba(20,143,72,.34);transition:transform .2s ease,box-shadow .2s ease,filter .2s ease}.whatsapp-float:hover{transform:translateY(-4px) scale(1.03);box-shadow:0 20px 40px rgba(20,143,72,.42);filter:saturate(1.06)}.whatsapp-float:focus-visible{outline:3px solid rgba(37,211,102,.3);outline-offset:4px}.whatsapp-float__icon{width:29px;height:29px;display:block}.whatsapp-float__bubble{fill:currentColor}.whatsapp-float__phone{fill:#1cab55}.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}

@supports not (color:color-mix(in srgb,red 20%,white)){.news-category{border-color:rgba(243,84,93,.22);color:var(--sgpm-red-dark);background:var(--sgpm-soft)}}
@media(max-width:1080px){.area-grid,.institution-pillars{grid-template-columns:repeat(2,minmax(0,1fr))}.program-grid--featured .program-card:first-child{grid-column:auto;display:flex}.home-story,.featured-news,.article-hero__grid,.content-page-hero__grid{grid-template-columns:1fr}.home-story__image,.featured-news__image{min-height:340px}.article-hero__image{min-height:420px}.content-page-layout{grid-template-columns:1fr}.article-layout{grid-template-columns:minmax(0,1fr) 285px}.site-menu__dropdown--mega{right:-100px}}
@media(max-width:820px){.site-search{inset:109px 0 auto}.site-menu__dropdown--mega{width:auto;padding:6px}.menu-mega{grid-template-columns:1fr}.menu-mega__intro{display:none}.menu-mega__links{grid-template-columns:1fr}.nav-search{width:100%;height:42px}.proposal-tools,.news-tools{grid-template-columns:1fr}.article-layout{grid-template-columns:1fr}.article-sidebar{display:none}.article-hero__image{min-height:370px;border-radius:28px}.teacher-principles{grid-template-columns:1fr}.cta-panel__actions{justify-content:flex-start}.footer-ribbon__inner{align-items:flex-start;flex-direction:column}.site-search form{grid-template-columns:auto 1fr}.site-search form .btn{grid-column:1/-1}.site-search__close{position:absolute;right:18px;top:18px}}
@media(max-width:680px){.hero__mini-stats div{min-width:90px;padding-right:12px;margin-right:12px}.area-grid,.institution-pillars,.page-result-grid{grid-template-columns:1fr}.area-card{min-height:180px}.news-card__featured{grid-column:auto;display:block}.article-gallery__grid{grid-template-columns:repeat(2,minmax(0,1fr))}.article-end{align-items:flex-start;flex-wrap:wrap}.article-end .btn{margin-left:60px}.global-search,.news-search,.proposal-search{grid-template-columns:auto 1fr}.global-search .btn,.news-search .btn,.proposal-search .btn{grid-column:1/-1;width:100%}.search-list article{grid-template-columns:105px 1fr;gap:13px}.search-list__image{min-height:105px}.callout-band{grid-template-columns:1fr}.article-hero h1{font-size:37px}.article-hero__image{min-height:290px}.content-page-hero figure{height:280px}.correlation-table-wrap{display:none}.correlation-toggle{display:none}.subject-list{grid-template-columns:1fr}.program-grid--featured .program-card:first-child{display:flex}}
@media(max-width:480px){.hero__mini-stats{display:grid;grid-template-columns:repeat(3,1fr)}.hero__mini-stats div{min-width:0;margin:0;padding:0 7px;text-align:center}.home-story__image,.featured-news__image{min-height:260px}.article-gallery__grid{grid-template-columns:1fr}.search-list article{grid-template-columns:1fr}.search-list__image{height:170px}.article-end .btn{margin-left:0;width:100%}.footer-ribbon a{width:100%;justify-content:center}.content-page-hero figure{height:230px}}
.correlation-mobile{display:none;margin:0 21px 21px;gap:10px}.correlation-mobile article{padding:15px;border:1px solid var(--sgpm-line);border-radius:16px;background:#fff}.correlation-mobile h4{margin:0;color:var(--sgpm-navy);font-size:15px}.correlation-mobile dl{display:grid;gap:8px;margin:12px 0 0}.correlation-mobile dl div{padding-top:8px;border-top:1px solid var(--sgpm-line)}.correlation-mobile dt{color:var(--sgpm-red-dark);font-size:9px;font-weight:900;text-transform:uppercase;letter-spacing:.05em}.correlation-mobile dd{margin:4px 0 0;color:var(--sgpm-muted);font-size:11px}.subject-count{display:inline-flex;align-items:center;padding:6px 9px;border-radius:999px;color:var(--sgpm-red-dark);background:var(--sgpm-soft);font-size:10px;font-weight:900}.year-card__heading{display:flex;align-items:center;gap:10px;flex-wrap:wrap}.proposal-facts{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:11px;margin-top:22px}.proposal-fact{display:flex;gap:10px;padding:14px;border:1px solid var(--sgpm-line);border-radius:17px;background:#fff}.proposal-fact>span{width:37px;height:37px;display:grid;place-items:center;flex:0 0 auto;border-radius:12px;color:var(--sgpm-red-dark);background:var(--sgpm-soft)}.proposal-fact strong{display:block;color:var(--sgpm-navy);font-size:12px}.proposal-fact small{display:block;margin-top:2px;color:var(--sgpm-muted);font-size:10px}@media(max-width:680px){.correlation-mobile{display:grid}.proposal-facts{grid-template-columns:1fr}}
/* Ajustes de archivo y lectura */
.news-tools{padding:26px 0 0;background:var(--sgpm-soft-blue)}.news-tools>.container{display:block}.news-search{grid-template-columns:minmax(240px,1fr) auto auto auto auto}.news-search__field{display:flex;align-items:center;gap:9px;min-width:0}.news-search__field svg{color:var(--sgpm-red)}.news-search__field input{width:100%;min-width:0;border:0;outline:0;background:transparent}.news-search label:not(.news-search__field) select{min-height:42px;padding:0 34px 0 11px;border:1px solid var(--sgpm-line);border-radius:11px;color:var(--sgpm-navy);background:#fff}.featured-news__body{display:flex;flex-direction:column;justify-content:center;padding:clamp(28px,5vw,50px);color:#fff}.featured-news__body h2{margin:14px 0 0;font-size:clamp(29px,4vw,46px);line-height:1.04;letter-spacing:-.04em}.featured-news__body p{margin:16px 0 0;color:rgba(255,255,255,.73);line-height:1.7}.featured-news__body>.btn{align-self:flex-start;margin-top:22px}.featured-news__label{display:inline-flex;align-items:center;gap:6px;width:max-content;margin-top:12px;color:var(--sgpm-red-2);font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.07em}.news-meta{display:flex;flex-wrap:wrap;gap:12px;margin-top:17px;color:rgba(255,255,255,.66);font-size:11px;font-weight:750}.news-meta span,.news-card__footer>span{display:inline-flex;align-items:center;gap:6px}.news-card__featured{position:absolute!important;right:12px;top:12px;display:inline-flex!important;align-items:center;gap:5px;padding:6px 9px;border-radius:999px;color:#fff;background:rgba(194,31,47,.9);font-size:9px;font-weight:900;text-transform:uppercase;letter-spacing:.05em;z-index:2}.news-grid--archive .news-card{display:flex;flex-direction:column}.news-grid--archive .news-card__body{display:flex;flex-direction:column;flex:1}.news-grid--archive .news-card__footer{margin-top:auto;padding-top:16px}.archive-heading>div>span{color:var(--sgpm-red-dark);font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.07em}.archive-heading>span{color:var(--sgpm-muted);font-size:12px}.article-hero__content>p{margin:20px 0 0;color:var(--sgpm-muted);font-size:17px;line-height:1.7}.article-byline__avatar{width:46px;height:46px!important;display:grid!important;place-items:center;flex:0 0 auto;border-radius:15px;color:#fff;background:linear-gradient(135deg,var(--sgpm-red),var(--sgpm-red-dark))}.article-byline>span:last-child{display:grid;gap:4px}.article-byline>span:last-child strong{color:var(--sgpm-navy);font-size:13px}.article-byline>span:last-child small{display:flex;flex-wrap:wrap;align-items:center;gap:5px;color:var(--sgpm-muted);font-size:11px}.article-hero__image figcaption{position:absolute;left:14px;bottom:14px;z-index:2;padding:7px 10px;border-radius:10px;color:#fff;background:rgba(16,42,67,.68);font-size:9px}.article-gallery__head{display:flex;align-items:center;gap:12px;margin-bottom:15px}.article-gallery__head>span{width:42px;height:42px;display:grid;place-items:center;border-radius:14px;color:#fff;background:var(--sgpm-red)}.article-gallery__head strong{display:block;color:var(--sgpm-navy)}.article-gallery__head small{display:block;margin-top:2px;color:var(--sgpm-muted)}.lightbox figure{margin:0;text-align:center}.lightbox figcaption{margin-top:10px;color:rgba(255,255,255,.78);font-size:12px}.footer-ribbon__inner>div:first-child{display:grid;grid-template-columns:auto 1fr;column-gap:10px;align-items:center}.footer-ribbon__inner>div:first-child>span{grid-row:span 2;width:40px;height:40px;display:grid;place-items:center;border-radius:13px;color:#fff;background:rgba(255,255,255,.12)}.footer-ribbon__inner small{display:block;color:rgba(255,255,255,.76)}.footer-ribbon__actions{display:flex;flex-wrap:wrap;gap:8px}.footer-ribbon__actions a:last-child{color:#fff;background:rgba(16,42,67,.88)}.filters .filter-btn small{margin-left:5px;opacity:.7}
@media(max-width:980px){.news-search{grid-template-columns:1fr 1fr}.news-search__field{grid-column:1/-1}.news-search .btn{width:100%}}
@media(max-width:620px){.news-search{grid-template-columns:1fr}.news-search__field{grid-column:auto}.footer-ribbon__actions{width:100%}.footer-ribbon__actions a{flex:1}.article-byline{align-items:flex-start}}

/* =========================================================
   Correlatividades académicas · autorías personales · crédito
   ========================================================= */
.correlation-panel{margin:0 21px 22px;overflow:hidden;border:1px solid rgba(16,42,67,.10);border-radius:23px;background:#fff;box-shadow:0 14px 36px rgba(16,42,67,.08)}
.correlation-panel__trigger{list-style:none;display:flex;align-items:center;gap:14px;padding:17px 18px;cursor:pointer;background:linear-gradient(135deg,#fff 0%,#fff7f8 58%,#f3f7fb 100%);transition:.22s ease}
.correlation-panel__trigger::-webkit-details-marker{display:none}.correlation-panel__trigger:hover{background:linear-gradient(135deg,#fff 0%,#fff1f3 58%,#edf5fb 100%)}
.correlation-panel__icon{width:48px;height:48px;display:grid;place-items:center;flex:0 0 auto;border-radius:16px;color:#fff;background:linear-gradient(135deg,var(--sgpm-red),var(--sgpm-red-dark));box-shadow:0 12px 24px rgba(243,84,93,.24)}
.correlation-panel__copy{display:grid;gap:3px;min-width:0}.correlation-panel__copy strong{color:var(--sgpm-navy);font-size:15px}.correlation-panel__copy small{color:var(--sgpm-muted);font-size:11px;line-height:1.45}
.correlation-panel__action{display:flex;align-items:center;gap:7px;margin-left:auto;padding:8px 11px;border-radius:999px;color:var(--sgpm-red-dark);background:#fff;border:1px solid rgba(243,84,93,.17);font-size:10px;font-weight:900;text-transform:uppercase;letter-spacing:.04em}.correlation-panel__action .icon{transition:.22s ease}.correlation-panel[open] .correlation-panel__action .icon{transform:rotate(180deg)}
.correlation-panel__body{padding:18px;border-top:1px solid rgba(16,42,67,.08);background:linear-gradient(180deg,#fbfdff,#fff)}
.correlation-guide{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:11px;margin-bottom:16px}.correlation-guide>div{display:flex;align-items:flex-start;gap:10px;padding:13px;border:1px solid rgba(16,42,67,.08);border-radius:16px;background:#fff}.correlation-guide__number{width:30px;height:30px;display:grid;place-items:center;flex:0 0 auto;border-radius:10px;color:#fff;background:var(--sgpm-navy);font-size:11px;font-weight:900}.correlation-guide p{margin:0}.correlation-guide strong{display:block;color:var(--sgpm-navy);font-size:12px}.correlation-guide small{display:block;margin-top:3px;color:var(--sgpm-muted);font-size:10px;line-height:1.45}
.correlation-panel .correlation-table-wrap{margin:0;overflow:auto;border:1px solid rgba(16,42,67,.10);border-radius:18px}.correlation-panel .correlation-table{min-width:1180px;border:0;border-radius:0}.correlation-panel .correlation-table th,.correlation-panel .correlation-table td{padding:13px 12px;border-color:rgba(16,42,67,.09)}
.correlation-panel .correlation-table thead tr:first-child th{color:#fff;background:linear-gradient(135deg,var(--sgpm-red),var(--sgpm-red-dark));font-size:10px}.correlation-panel .correlation-table thead tr:nth-child(2) th{color:var(--sgpm-red-dark);background:#fff2f3;font-size:9px}.correlation-panel .correlation-table th[rowspan]{vertical-align:middle}.correlation-panel .correlation-table tbody tr:nth-child(even) td{background:#fbfcfd}.correlation-panel .correlation-table tbody tr:hover td{background:#fff8f9}
.correlation-panel .correlation-table td:first-child{min-width:200px}.academic-chip{display:inline-flex;align-items:center;justify-content:center;max-width:150px;padding:6px 8px;border-radius:999px;color:#526176;background:#eef3f7;font-size:9px;font-weight:850;line-height:1.25;text-align:center}.academic-chip--accent{color:var(--sgpm-red-dark);background:#fff0f2;border:1px solid rgba(243,84,93,.12)}
.correlation-requirement{min-width:145px}.correlation-pills{display:grid;gap:5px}.correlation-pills span{display:block;padding:7px 8px;border-left:3px solid var(--sgpm-red);border-radius:7px;color:#415067;background:#fff5f6;font-size:10px;line-height:1.38}.correlation-empty{display:inline-flex;padding:6px 8px;border-radius:999px;color:#8793a3;background:#f1f4f7;font-size:9px;font-weight:750}
.correlation-panel .correlation-mobile{display:none;margin:0}.correlation-card{padding:16px;border:1px solid rgba(16,42,67,.09);border-radius:19px;background:#fff;box-shadow:0 8px 20px rgba(16,42,67,.06)}.correlation-card__head{display:flex;align-items:flex-start;justify-content:space-between;gap:10px}.correlation-card__head>div>span{color:var(--sgpm-red-dark);font-size:8px;font-weight:900;text-transform:uppercase;letter-spacing:.07em}.correlation-card h4{margin:5px 0 0;color:var(--sgpm-navy);font-size:15px;line-height:1.2}.correlation-card__meta{display:flex;flex-wrap:wrap;gap:6px;margin-top:11px}.correlation-card__meta span{padding:5px 8px;border-radius:999px;color:#5f6c7d;background:#f0f4f7;font-size:9px;font-weight:800}.correlation-card__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:13px}.correlation-card__grid section{padding:12px;border-radius:15px;background:#f8fafc}.correlation-card__grid h5{margin:0 0 9px;color:var(--sgpm-red-dark);font-size:11px}.correlation-card__grid section>div{display:grid;gap:4px;margin-top:8px}.correlation-card__grid strong{color:#687588;font-size:8px;text-transform:uppercase;letter-spacing:.04em}.correlation-card__grid span{padding:6px 7px;border-left:3px solid var(--sgpm-red);border-radius:6px;color:#3e4d62;background:#fff;font-size:9px;line-height:1.35}.correlation-card__grid em{color:#98a2af;font-size:9px;font-style:normal}
.article-byline__avatar--photo{object-fit:cover;border:3px solid #fff;box-shadow:0 8px 20px rgba(16,42,67,.16)}.article-author-card{display:flex;align-items:center;gap:11px;margin:17px 0 3px;padding:12px;border:1px solid rgba(243,84,93,.14);border-radius:16px;background:#fff7f8}.article-author-card>img,.article-author-card>span{width:45px;height:45px;display:grid;place-items:center;flex:0 0 auto;border-radius:14px;color:#fff;background:linear-gradient(135deg,var(--sgpm-red),var(--sgpm-red-dark));font-weight:900}.article-author-card>img{object-fit:cover}.article-author-card small{display:block;color:var(--sgpm-muted);font-size:9px;text-transform:uppercase;font-weight:850;letter-spacing:.05em}.article-author-card strong{display:block;margin-top:3px;color:var(--sgpm-navy);font-size:12px}
.site-footer__credit{display:inline-flex;align-items:center;gap:5px;color:rgba(255,255,255,.45);font-size:10px}.site-footer__credit strong{color:rgba(255,255,255,.68);font-weight:750}
@media(max-width:900px){.correlation-panel .correlation-table-wrap{display:none}.correlation-panel .correlation-mobile{display:grid;gap:11px}.correlation-guide{grid-template-columns:1fr}}
@media(max-width:620px){.correlation-panel{margin-inline:12px}.correlation-panel__trigger{align-items:flex-start;padding:14px}.correlation-panel__icon{width:42px;height:42px}.correlation-panel__action span{display:none}.correlation-panel__body{padding:11px}.correlation-card__grid{grid-template-columns:1fr}.site-footer__credit{text-align:center}}

/* =========================================================
   Imágenes insertadas dentro de noticias y vista previa
   ========================================================= */
.rich-content .news-inline-image{margin:30px 0;padding:0;overflow:hidden;border:1px solid rgba(16,42,67,.10);border-radius:22px;background:#fff;box-shadow:0 16px 38px rgba(16,42,67,.10)}
.rich-content .news-inline-image--normal{width:min(680px,88%);margin-inline:auto}
.rich-content .news-inline-image--wide{width:100%}
.rich-content .news-inline-image img{display:block;width:100%;height:auto;max-height:760px;object-fit:cover;border-radius:0}
.rich-content .news-inline-image figcaption{padding:11px 15px;color:var(--sgpm-muted);background:#fbfcfd;border-top:1px solid rgba(16,42,67,.08);font-size:11px;line-height:1.5;text-align:center}
.article-preview-notice{position:relative;z-index:5;padding:10px 0;color:#fff;background:linear-gradient(135deg,#6941c6,#4831a8)}
.article-preview-notice .container{display:flex;align-items:center;justify-content:space-between;gap:16px}
.article-preview-notice strong{display:block;font-size:12px}.article-preview-notice span{display:block;margin-top:2px;color:rgba(255,255,255,.78);font-size:10px}
.article-preview-notice a{flex:0 0 auto;padding:7px 10px;border-radius:9px;color:#fff;background:rgba(255,255,255,.14);font-size:10px;font-weight:850}
@media(max-width:620px){.rich-content .news-inline-image--normal{width:100%}.rich-content .news-inline-image{margin-block:22px;border-radius:17px}.article-preview-notice .container{align-items:flex-start;flex-direction:column}}

/* =========================================================
   Correlatividades académicas 3.0 · sección independiente
   ========================================================= */
.correlations-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(243,84,93,.10), transparent 28%),
    radial-gradient(circle at 94% 16%, rgba(16,42,67,.08), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f7fafc 100%);
}
.correlations-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(rgba(16,42,67,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,42,67,.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 90%);
}
.correlations-section > .container { position: relative; z-index: 1; }
.correlations-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}
.correlations-intro article {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(16,42,67,.09);
  border-radius: 20px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 30px rgba(16,42,67,.07);
  backdrop-filter: blur(8px);
}
.correlations-intro__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg, var(--sgpm-navy), #234d73);
  box-shadow: 0 10px 24px rgba(16,42,67,.18);
}
.correlations-intro__icon--accent {
  background: linear-gradient(145deg, var(--sgpm-red), var(--sgpm-red-dark));
  box-shadow: 0 10px 24px rgba(243,84,93,.22);
}
.correlations-intro strong {
  display: block;
  color: var(--sgpm-navy);
  font-size: 15px;
}
.correlations-intro p {
  margin: 5px 0 0;
  color: var(--sgpm-muted);
  font-size: 12px;
  line-height: 1.55;
}
.correlations-years { display: grid; gap: 17px; }
.correlations-year {
  overflow: hidden;
  border: 1px solid rgba(16,42,67,.10);
  border-radius: 25px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 44px rgba(16,42,67,.09);
}
.correlations-year > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 88px;
  padding: 17px 20px;
  list-style: none;
  cursor: pointer;
  background:
    linear-gradient(115deg, rgba(243,84,93,.10), transparent 42%),
    linear-gradient(135deg, #fff 0%, #fbfdff 100%);
  transition: background .2s ease;
}
.correlations-year > summary::-webkit-details-marker { display: none; }
.correlations-year > summary:hover {
  background:
    linear-gradient(115deg, rgba(243,84,93,.15), transparent 45%),
    linear-gradient(135deg, #fff 0%, #f6f9fc 100%);
}
.correlations-year__identity {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}
.correlations-year__number {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(145deg, var(--sgpm-red), var(--sgpm-red-dark));
  box-shadow: 0 12px 26px rgba(243,84,93,.24);
  font-size: 17px;
  font-weight: 950;
}
.correlations-year__identity strong {
  display: block;
  color: var(--sgpm-navy);
  font-size: 18px;
  line-height: 1.2;
}
.correlations-year__identity small {
  display: block;
  margin-top: 4px;
  color: var(--sgpm-muted);
  font-size: 11px;
}
.correlations-year__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 9px 12px;
  border: 1px solid rgba(243,84,93,.18);
  border-radius: 999px;
  color: var(--sgpm-red-dark);
  background: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.correlations-year__action .icon { transition: transform .2s ease; }
.correlations-year[open] .correlations-year__action .icon { transform: rotate(180deg); }
.correlations-year__body {
  padding: 18px;
  border-top: 1px solid rgba(16,42,67,.08);
  background: linear-gradient(180deg, #f9fbfd 0%, #fff 100%);
}
.correlations-table-wrap {
  width: 100%;
  overflow: auto;
  border: 1px solid rgba(16,42,67,.10);
  border-radius: 19px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
  scrollbar-width: thin;
  scrollbar-color: rgba(243,84,93,.52) rgba(243,84,93,.08);
}
.correlations-table-wrap::-webkit-scrollbar { width: 9px; height: 9px; }
.correlations-table-wrap::-webkit-scrollbar-track { border-radius: 999px; background: rgba(243,84,93,.08); }
.correlations-table-wrap::-webkit-scrollbar-thumb { border: 2px solid rgba(255,255,255,.8); border-radius: 999px; background: rgba(243,84,93,.58); }
.correlations-table {
  width: 100%;
  min-width: 1180px;
  border-collapse: separate;
  border-spacing: 0;
  color: #3f4d60;
}
.correlations-table th,
.correlations-table td {
  padding: 13px 12px;
  border-right: 1px solid rgba(16,42,67,.085);
  border-bottom: 1px solid rgba(16,42,67,.085);
  vertical-align: middle;
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}
.correlations-table th:last-child,
.correlations-table td:last-child { border-right: 0; }
.correlations-table tbody tr:last-child td { border-bottom: 0; }
.correlations-table thead th {
  color: var(--sgpm-red-dark);
  background: #fff2f3;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.correlations-table thead .correlations-table__group-row th {
  color: #fff;
  background: linear-gradient(135deg, var(--sgpm-red), var(--sgpm-red-dark));
}
.correlations-table thead .correlations-table__group-row th:first-child { border-top-left-radius: 18px; }
.correlations-table thead .correlations-table__group-row th:last-child { border-top-right-radius: 18px; }
.correlations-table tbody tr:nth-child(even) td { background: #fbfcfd; }
.correlations-table tbody tr:hover td { background: #fff8f9; }
.correlations-table td:first-child {
  min-width: 205px;
  color: var(--sgpm-navy);
  text-align: left;
}
.correlations-table td:first-child strong { font-weight: 900; }
.correlations-meta-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 155px;
  padding: 6px 9px;
  border: 1px solid rgba(16,42,67,.08);
  border-radius: 999px;
  color: #385a78;
  background: #edf5fb;
  font-size: 9px;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
}
.correlations-meta-chip--neutral { color: #59687a; background: #f1f4f7; }
.correlations-meta-chip--accent { color: var(--sgpm-red-dark); border-color: rgba(243,84,93,.14); background: #fff0f2; }
.correlations-requirements { display: grid; gap: 5px; min-width: 138px; }
.correlations-requirements span {
  display: block;
  padding: 7px 8px;
  border-left: 3px solid var(--sgpm-red);
  border-radius: 7px;
  color: #435166;
  background: #fff5f6;
  font-size: 9px;
  line-height: 1.38;
  text-align: left;
}
.correlations-none {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 9px;
  border-radius: 999px;
  color: #8b96a5;
  background: #f2f4f7;
  font-size: 9px;
  font-weight: 800;
}
.correlations-mobile-list { display: none; gap: 12px; }
.correlations-mobile-card {
  padding: 16px;
  border: 1px solid rgba(16,42,67,.09);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 9px 24px rgba(16,42,67,.07);
}
.correlations-mobile-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.correlations-mobile-card__head > div > span {
  color: var(--sgpm-red-dark);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.correlations-mobile-card__head h3 {
  margin: 5px 0 0;
  color: var(--sgpm-navy);
  font-size: 16px;
  line-height: 1.22;
}
.correlations-mobile-card__meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 11px; }
.correlations-mobile-card__meta span {
  padding: 5px 8px;
  border-radius: 999px;
  color: #607083;
  background: #f0f4f7;
  font-size: 9px;
  font-weight: 800;
}
.correlations-mobile-card__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  margin-top: 13px;
}
.correlations-mobile-card__columns section {
  padding: 12px;
  border: 1px solid rgba(16,42,67,.07);
  border-radius: 16px;
  background: #f8fafc;
}
.correlations-mobile-card__columns h4 {
  margin: 0 0 10px;
  color: var(--sgpm-red-dark);
  font-size: 11px;
}
.correlations-mobile-card__requirement { display: grid; gap: 5px; margin-top: 8px; }
.correlations-mobile-card__requirement strong {
  color: #6e7a8b;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.correlations-mobile-card__requirement span {
  padding: 6px 7px;
  border-left: 3px solid var(--sgpm-red);
  border-radius: 6px;
  color: #435166;
  background: #fff;
  font-size: 9px;
  line-height: 1.35;
}
.correlations-mobile-card__requirement em {
  color: #98a2af;
  font-size: 9px;
  font-style: normal;
}
@media (max-width: 940px) {
  .correlations-table-wrap { display: none; }
  .correlations-mobile-list { display: grid; }
}
@media (max-width: 680px) {
  .correlations-intro { grid-template-columns: 1fr; }
  .correlations-year > summary { align-items: flex-start; padding: 14px; }
  .correlations-year__number { width: 44px; height: 44px; border-radius: 14px; }
  .correlations-year__action span { display: none; }
  .correlations-year__body { padding: 11px; }
  .correlations-mobile-card__columns { grid-template-columns: 1fr; }
}

/* Ajuste del encabezado móvil: el botón ocupa el extremo derecho real */
@media (max-width: 820px) {
  .site-nav {
    position: relative;
    justify-content: flex-start;
  }
  .site-nav > nav {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  .site-nav > nav .site-menu {
    pointer-events: auto;
  }
  .nav-toggle {
    position: relative;
    z-index: 4;
    margin-left: auto;
  }
}

/* Encabezado uniforme para la tabla de correlatividades */
.correlations-table thead th,
.correlations-table thead .correlations-table__group-row th,
.correlations-table thead tr:nth-child(2) th {
  color: #fff;
  border-right-color: rgba(255,255,255,.20);
  border-bottom-color: rgba(255,255,255,.24);
  background: linear-gradient(135deg, #ef4c56 0%, #d32638 100%);
}
.correlations-table thead .correlations-table__group-row th {
  background: linear-gradient(135deg, var(--sgpm-red) 0%, var(--sgpm-red-dark) 100%);
}
