:root {
  --bg: #f3f7ff;
  --surface: #ffffff;
  --ink: #0f1f35;
  --ink-soft: #4c6281;
  --accent: #007b72;
  --accent-strong: #025b54;
  --stroke: #dce5f3;
  --news-card-width: 300px;
  --hero-grad: radial-gradient(circle at 18% 22%, #d8f4f1 0%, transparent 43%),
    radial-gradient(circle at 82% 12%, #dce7ff 0%, transparent 40%),
    linear-gradient(140deg, #f6fbff 0%, #eef2ff 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f8fbff 0%, #f2f7ff 100%);
}

[hidden] {
  display: none !important;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #ffffffde;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--stroke);
}

.site-header__inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.95rem;
  padding: 0.56rem 0;
}

.site-header__inner nav {
  order: 1;
  flex: 1 1 auto;
  min-width: 0;
}

.site-logo {
  order: 3;
  width: 140px;
  min-width: 140px;
  height: 36px;
  padding: 0;
  border: 1px dashed #a3b6d3;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
  color: #607ba0;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.02em;
  background: #fff;
}

.site-logo img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  display: block;
}

.site-nav {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--accent-strong);
}

.site-nav a.is-current {
  color: var(--accent-strong);
}

.lang-switch {
  order: 2;
  flex: 0 0 auto;
  margin-right: -2.4rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 68px;
  height: 34px;
  border-radius: 999px;
  background: var(--accent);
  padding: 2px;
  overflow: hidden;
}

.lang-switch::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  transition: transform 0.25s ease;
}

.lang-switch.is-en::before {
  transform: translateX(34px);
}

.lang-btn {
  position: relative;
  z-index: 1;
  flex: 0 0 50%;
  width: 50%;
  border: 0;
  background: transparent;
  padding: 0 !important;
  margin: 0 !important;
  height: 100%;
  font-weight: 700;
  font-size: 0.76rem;
  cursor: pointer;
  color: #ffffff;
  display: grid;
  place-items: center;
  line-height: 1;
  border-radius: 0;
  transform: none !important;
  left: 0;
}

.lang-btn.is-active {
  color: #112b47;
}

.lang-btn:hover {
  background: transparent !important;
  transform: none !important;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 2.1rem 0 2.8rem;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background: var(--hero-grad);
  z-index: -1;
}

.hero__inner {
  display: grid;
  gap: 1.5rem;
}

.hero__headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
}

.hero__logo {
  width: min(210px, 28vw);
  height: auto;
  display: block;
  flex-shrink: 0;
}

h1 {
  margin: 0;
  max-width: 790px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
}

.metrics {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.pill {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 1rem 1.1rem;
  box-shadow: 0 14px 26px -24px #244a8f;
}

.pill__title {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.pill__value {
  margin: 0.25rem 0 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
}

.funding {
  margin-top: 0.2rem;
  background: #ffffffd6;
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 1.2rem;
}

.funding__logos {
  width: 100%;
  min-height: 96px;
  border: 2px dashed #a3b6d3;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #627da2;
  margin-bottom: 0.9rem;
}

.funding p {
  margin: 0.45rem 0;
  color: #253c59;
}

.page-content {
  display: grid;
  gap: 1rem;
  margin: 1.6rem auto 2.6rem;
}

.module {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 1.35rem;
  box-shadow: 0 16px 30px -26px #385995;
}

.module--full {
  grid-column: 1 / -1;
}

#about {
  scroll-margin-top: 92px;
}

#motivacion {
  scroll-margin-top: 92px;
}

.module--highlight {
  background: linear-gradient(145deg, #102f56 0%, #0b2340 100%);
  border: 1px solid #274f81;
  color: #eaf2ff;
}

.module--highlight .module__index,
.module--highlight .module__text,
.module--highlight h2 {
  color: #eaf2ff;
}

.module__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.module__index {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: #557092;
}

.module h2 {
  margin: 0.35rem 0 0.65rem;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-family: "Space Grotesk", sans-serif;
}

.module__text {
  margin: 0;
  color: #2b4464;
  max-width: 80ch;
}

button {
  margin-top: 1rem;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.1rem;
  background:
    linear-gradient(#0e1317, #0e1317) padding-box,
    linear-gradient(90deg, #d8d932 0%, #29869e 100%) border-box;
  color: #d8d932;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

button:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
  transform: scale(1.04);
}

.button-link {
  margin-top: 1rem;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.1rem;
  background:
    linear-gradient(#0e1317, #0e1317) padding-box,
    linear-gradient(90deg, #d8d932 0%, #29869e 100%) border-box;
  color: #d8d932;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.button-link:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
  transform: scale(1.04);
}

.module-link {
  margin-top: 0.7rem;
}

.module-link--center {
  display: table;
  margin: 0.9rem auto 0;
}

.news-card {
  flex: 0 0 100%;
  border: 1px solid #4a6890;
  border-radius: 18px;
  padding: 1rem;
  background: #17385f;
  width: var(--news-card-width);
  max-width: var(--news-card-width);
  min-height: 470px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.news-card:hover {
  transform: scale(1.02);
}

.news-card__date {
  margin: 0;
  color: #b7d0f5;
  font-weight: 700;
  font-size: 0.82rem;
}

.news-card h3 {
  margin: 0.4rem 0;
  font-family: "Space Grotesk", sans-serif;
}

.news-card p {
  margin: 0;
  color: #dbe9ff;
}

.news-card__image {
  min-height: 240px;
  border: none;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #b6cae8;
  font-weight: 700;
  background: #204872;
  margin-bottom: 0.8rem;
}

.news-card__image-link {
  display: block;
  text-decoration: none;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.news-row {
  margin-top: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.news-track--home {
  display: flex;
  gap: 0.8rem;
  justify-content: flex-start;
  align-items: stretch;
  flex: 1;
  transition: none;
  transform: none !important;
}

.news-track--home .news-card {
  flex: 0 0 var(--news-card-width);
  margin: 0;
}

.coordinators-grid {
  display: grid;
  gap: 1rem;
}

.person-card {
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 1rem;
  background: #f8fbff;
}

.avatar-slot {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  border: 2px dashed #98aecf;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #607ba0;
}

.person-card h3 {
  margin: 0.8rem 0 0.2rem;
}

.person-card p {
  margin: 0;
  color: #455d7f;
}

.site-footer {
  border-top: 1px solid var(--stroke);
  background: #fff;
  padding: 1rem 0 1.4rem;
  color: #4a6181;
}

.site-footer p {
  margin: 0;
}

.about-page {
  display: block;
  margin: 1.6rem auto 2.6rem;
}

.objectives-grid-nav {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0.2rem;
}

.objectives-grid-nav a {
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 0.9rem;
  text-decoration: none;
  color: #274668;
  background: #f7fbff;
  display: grid;
  gap: 0.25rem;
}

.objectives-grid-nav a strong {
  font-family: "Space Grotesk", sans-serif;
}

.objectives-grid-nav a span {
  color: #4e6888;
  font-size: 0.9rem;
}

.objectives-grid-nav a:hover {
  border-color: #8eaad1;
  background: #eff6ff;
}

.objectives-accordion {
  display: grid;
  gap: 0.8rem;
}

.objective-item {
  scroll-margin-top: 92px;
}

.objective-item details[open] {
  padding-bottom: 0.2rem;
}

.objective-item summary {
  list-style: none;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.03rem, 2.1vw, 1.22rem);
  font-weight: 700;
  color: #17385a;
  position: relative;
  padding-right: 1.8rem;
}

.objective-item summary::-webkit-details-marker {
  display: none;
}

.objective-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: #1f6884;
  font-size: 1.2rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.objective-item details[open] summary::after {
  content: "−";
}

.objective-item summary:hover::after {
  transform: scale(1.18);
  color: var(--accent);
}

.objective-content {
  padding-top: 0.75rem;
}

.objective-content p {
  margin: 0 0 0.95rem;
  color: #294565;
}

.objective-content ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: #294565;
}

.objective-content li {
  margin: 0 0 0.35rem;
}

.news-card__cta {
  margin-top: auto;
  align-self: flex-start;
}

.news-event-info {
  padding: 0.8rem 0.9rem;
  border: 1px solid #bdd1ec;
  border-radius: 12px;
  background: #f4f9ff;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  margin: 0.9rem 0;
  background: #000;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.about-highlight {
  border-left: 4px solid var(--accent);
  border-radius: 0 14px 14px 0;
  background: #ebf8f6;
  padding: 1rem 1.05rem;
  color: #164a45;
  font-weight: 700;
}

.ref-link {
  text-decoration: none;
  font-weight: 700;
  color: var(--accent-strong);
}

.ref-link:hover {
  text-decoration: underline;
}

.ref-link.cite-hit {
  background: #ffe59a;
  border-color: #d2ae33;
  box-shadow: 0 0 0 2px #f7edc5;
}

.objective-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  padding: 0;
}

.objective-tile {
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.4rem;
}

.objective-tile p {
  margin: 0;
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  line-height: 1.2;
}

.objective-tile--lime {
  background: #d7df00;
  color: #40515c;
}

.objective-tile--teal {
  background: #24758e;
  color: #f5fbff;
}

.references ol {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.9rem;
  color: #294565;
}

.module.references {
  background: linear-gradient(180deg, #f5f8ff 0%, #edf3ff 100%);
  border: 1px solid #cfdcf3;
  border-radius: 14px;
  padding: 1rem;
}

.references li {
  scroll-margin-top: 100px;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0.45rem 0.55rem;
  margin-left: -0.55rem;
  cursor: pointer;
}

.references li.ref-hit {
  background: #fff7c2;
  border-color: #d6bf42;
  box-shadow: 0 0 0 2px #f3e9a2;
}

/* Home visual system from design */
.home-page {
  --brand-black: #0e1317;
  --brand-yellow: #d8d932;
  --brand-blue: #29869e;
  --brand-dark-blue: #11283d;
  --section-pad-inline: max(1rem, calc((100vw - 1120px) / 2 + 1rem));
  --parallax-x: 0px;
  --parallax-y: 0px;
  --parallax-scroll: 0px;
  --about-top-x: 0px;
  --about-top-y: 0px;
  --about-ring-x: 0px;
  --about-ring-y: 0px;
  --about-bottom-x: 0px;
  --about-bottom-y: 0px;
  --news-ring-x: 0px;
  --news-ring-y: 0px;
  --news-bottom-x: 0px;
  --news-bottom-y: 0px;
  background: var(--brand-black);
  color: #eff4f8;
}

.home-page .site-header {
  background: rgba(8, 12, 15, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-page .site-logo {
  border: 0;
  background: transparent;
  color: inherit;
  box-shadow: none;
  transition: transform 0.2s ease;
}

.home-page .site-logo:hover {
  transform: scale(1.08);
}

.home-page .site-logo img {
  width: 100%;
  height: 100%;
  max-width: none;
}

.home-page .site-nav a {
  color: #ffffff;
  display: inline-block;
  transform: scale(0.8);
  transform-origin: center;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.home-page .site-nav a:hover,
.home-page .site-nav a.is-current {
  color: #d8d932;
  opacity: 1;
}

.home-page .lang-switch {
  width: 66px;
  height: 34px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border: 2px solid transparent;
  background:
    linear-gradient(#0e1317, #0e1317) padding-box,
    linear-gradient(90deg, #d8d932 0%, #29869e 100%) border-box;
}

.home-page .lang-switch::before {
  top: 50%;
  left: 2px;
  width: 28px;
  height: 28px;
  background: #ffffff;
  transform: translateY(-50%);
}

.home-page .lang-switch.is-en::before {
  transform: translate(32px, -50%);
}

.home-page .lang-switch .lang-btn {
  position: relative;
  z-index: 1;
  border: 0 !important;
  background: transparent !important;
  color: #d8d932 !important;
  padding: 0 !important;
  margin: 0 !important;
  height: 100%;
  width: 100%;
  min-width: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  left: auto !important;
  right: auto !important;
  transform: translateY(0.35px) !important;
  box-shadow: none !important;
}

.home-page .lang-switch .lang-btn:hover,
.home-page .lang-switch .lang-btn:focus-visible {
  background: transparent !important;
  color: currentColor !important;
  outline: none;
}

.home-page .lang-btn.is-active {
  color: #0e1317 !important;
}

.home-page .lang-switch .lang-btn.is-active:hover,
.home-page .lang-switch .lang-btn.is-active:focus-visible {
  color: #0e1317 !important;
}

.home-page .hero {
  height: 670px;
  min-height: 670px;
  padding: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(820px 420px at 22% 68%, rgba(41, 134, 158, 0.52), rgba(41, 134, 158, 0) 68%),
    radial-gradient(960px 500px at 82% 92%, rgba(216, 217, 50, 0.66), rgba(216, 217, 50, 0) 70%),
    radial-gradient(360px 260px at 74% 56%, rgba(216, 217, 50, 0.2), rgba(216, 217, 50, 0) 70%),
    radial-gradient(580px 340px at 47% 82%, rgba(41, 134, 158, 0.18), rgba(41, 134, 158, 0) 74%),
    var(--brand-black);
}

.home-page .hero::before,
.home-page .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.home-page .hero::before {
  width: 840px;
  height: 840px;
  left: -420px;
  bottom: -420px;
  background: radial-gradient(
    circle,
    rgba(41, 134, 158, 0.72) 0%,
    rgba(41, 134, 158, 0.36) 35%,
    rgba(41, 134, 158, 0) 72%
  );
  filter: blur(42px);
  transform: translate(0, 0);
  transition: transform 0.16s ease-out;
}

.home-page .hero::after {
  width: 1020px;
  height: 1020px;
  right: -430px;
  bottom: -530px;
  background: radial-gradient(
    circle,
    rgba(216, 217, 50, 0.78) 0%,
    rgba(216, 217, 50, 0.45) 36%,
    rgba(216, 217, 50, 0) 72%
  );
  filter: blur(52px);
  transform: translate(0, 0);
  transition: transform 0.16s ease-out;
}

.home-page.is-hero-intro-playing .hero::before {
  animation: heroBlueSwapOnce 2.8s ease-in-out 0.25s 1 both;
}

.home-page.is-hero-intro-playing .hero::after {
  animation: heroYellowSwapOnce 2.8s ease-in-out 0.25s 1 both;
}

@keyframes heroBlueSwapOnce {
  0%,
  100% {
    transform: translate(0, 0);
    filter: blur(42px);
  }

  50% {
    transform: translate(
      980px,
      -120px
    );
    filter: blur(50px);
  }
}

@keyframes heroYellowSwapOnce {
  0%,
  100% {
    transform: translate(0, 0);
    filter: blur(52px);
  }

  50% {
    transform: translate(
      -980px,
      120px
    );
    filter: blur(60px);
  }
}

.home-page .hero__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 225px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.home-page .hero__headline {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
  text-align: left;
}

.home-page .hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.15rem;
}

.home-page .hero__logo {
  position: static;
  height: 256px;
  width: auto;
  max-width: 100%;
}

.home-page .hero__backdrop {
  display: none;
}

.home-page h1 {
  margin: 0;
  color: #ffffff;
  max-width: 700px;
  text-transform: uppercase;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: clamp(1.9rem, 3.8vw, 3.35rem);
  line-height: 0.95;
  letter-spacing: 0.012em;
}

.home-page .hero-title--accent {
  color: var(--brand-yellow);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  letter-spacing: 0.015em;
}

.home-page .hero__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  height: 38px;
  margin-top: 1rem;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0.62rem 1.1rem;
  background:
    linear-gradient(#0e1317, #0e1317) padding-box,
    linear-gradient(90deg, #d8d932 0%, #29869e 100%) border-box;
  color: #d8d932;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.home-page .hero__more:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
  transform: scale(1.04);
}

.home-page .metrics {
  margin-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.8rem 0;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-page .hero-metrics {
  height: 120px;
  background: #0f1d26;
  display: flex;
  align-items: center;
  scroll-margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-page .hero-metrics .metrics {
  height: 74px;
  margin: 0 auto;
  border: 0;
  padding: 0;
  align-items: center;
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: minmax(250px, 330px) 1fr;
  gap: 0.9rem;
}

.home-page .metrics--breakdown .pill {
  border: 0;
  border-right: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

.home-page .metrics--breakdown .pill--total {
  border: 0;
  border-radius: 0;
  padding: 0.5rem 0.7rem;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.home-page .metrics-breakdown {
  border: 0;
  border-radius: 0;
  padding: 0.12rem 0.55rem;
  height: auto;
  display: flex;
  align-items: center;
}

.home-page .metrics-breakdown__items {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.15rem;
  width: 100%;
  align-items: center;
}

.home-page .metrics-breakdown__items::before {
  content: "+";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.home-page .metrics--breakdown .pill--part {
  padding: 0.2rem 0.55rem;
}

.home-page .metrics--breakdown .pill--part .pill__title {
  font-size: 0.58rem;
  font-weight: 400;
}

.home-page .metrics--breakdown .pill--part .pill__value {
  font-size: 0.98rem;
  font-weight: 500;
}

.home-page .metrics--breakdown .pill--total .pill__title {
  font-size: 0.64rem;
  font-weight: 400;
}

.home-page .metrics--breakdown .pill--total .pill__value {
  font-size: 1.3rem;
  font-weight: 500;
}

.home-page .funding-module {
  height: 320px;
  background: #ffffff;
  display: flex;
  align-items: center;
}

.home-page .funding-module__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  gap: 0.12rem;
}

.home-page .funding-module__logo {
  width: min(820px, 100%);
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.home-page .funding-module__line1 {
  margin: 0;
  font-size: 0.69rem;
  font-weight: 400;
  line-height: 1.2;
  color: #3f5061;
}

.home-page .funding-module__line2 {
  margin: 1.35rem 0 0;
  font-size: 0.94rem;
  line-height: 1.3;
  color: #223243;
  font-weight: 500;
}

.home-page .funding-module__line3 {
  margin: 0.55rem 0 0;
  font-size: 1.02rem;
  line-height: 1.2;
  color: #1c2b39;
  font-weight: 600;
}

.home-page .pill {
  background: transparent;
  border: 0;
  border-right: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0.15rem 0.6rem;
  text-align: center;
}

.home-page .pill__title {
  font-family: "Space Grotesk", sans-serif;
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  line-height: 1.15;
}

.home-page .pill__value {
  font-family: "Space Grotesk", sans-serif;
  color: #ffffff;
  font-size: 1.24rem;
  font-weight: 500;
  margin-top: 0.34rem;
  line-height: 1.08;
}

.home-page .funding {
  margin-top: 0.5rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0.9rem 0 0;
  text-align: center;
}

.home-page .funding__logos {
  min-height: 70px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  color: rgba(223, 235, 244, 0.82);
  background: rgba(255, 255, 255, 0.03);
}

.home-page .funding p {
  color: rgba(223, 235, 244, 0.75);
  font-size: 0.8rem;
}

.home-page .page-content {
  width: 100%;
  margin: 0;
  gap: 0;
  background: #ffffff;
}

.home-page .module {
  position: relative;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 3.8rem var(--section-pad-inline);
  overflow: hidden;
}

.home-page .module::before,
.home-page .module::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.home-page #noticias {
  height: 860px;
  min-height: 860px;
  color: #edf3f8;
  background: var(--brand-black);
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-page .about-motivacion-home {
  height: 800px;
  min-height: 800px;
  padding: 0 225px;
  display: block;
  color: #edf3f8;
  background:
    radial-gradient(560px 420px at 70% 55%, rgba(8, 21, 31, 0.76), rgba(8, 21, 31, 0) 72%),
    var(--brand-black);
}

.home-page .about-motivacion-home::before {
  width: 760px;
  height: 760px;
  right: -540px;
  top: 50%;
  transform: translateY(-50%) translate(var(--about-ring-x), var(--about-ring-y));
  background: radial-gradient(
    circle,
    rgba(62, 173, 206, 0) 52%,
    rgba(62, 173, 206, 0.62) 59%,
    rgba(62, 173, 206, 0.28) 66%,
    rgba(62, 173, 206, 0) 76%
  );
  filter: blur(11px);
  transition: transform 0.16s ease-out;
}

.home-page .about-motivacion-home::after {
  width: 760px;
  height: 760px;
  left: -420px;
  bottom: -460px;
  background: radial-gradient(
    circle at 44% 42%,
    rgba(41, 134, 158, 0.5) 0%,
    rgba(41, 134, 158, 0.34) 28%,
    rgba(216, 217, 50, 0.72) 58%,
    rgba(216, 217, 50, 0.18) 72%,
    rgba(216, 217, 50, 0) 84%
  );
  filter: blur(18px);
  transform: translate(var(--about-bottom-x), var(--about-bottom-y));
  transition: transform 0.16s ease-out;
}

.home-page .about-motivacion-home__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.home-page .about-motivacion-home__inner::after {
  content: "";
  position: absolute;
  right: -320px;
  top: -320px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(216, 217, 50, 0.62) 0%,
    rgba(216, 217, 50, 0.46) 28%,
    rgba(41, 134, 158, 0.36) 52%,
    rgba(41, 134, 158, 0) 82%
  );
  filter: blur(20px);
  transform: translate(var(--about-top-x), var(--about-top-y));
  transition: transform 0.16s ease-out;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .home-page {
    --parallax-x: 0px;
    --parallax-y: 0px;
    --parallax-scroll: 0px;
  }

  .home-page .hero::before,
  .home-page .hero::after,
  .home-page .about-motivacion-home::before,
  .home-page .about-motivacion-home::after,
  .home-page .about-motivacion-home__inner::after {
    transition: none;
    animation: none;
  }
}

.home-page .about-motivacion-block {
  position: absolute;
  max-width: 430px;
  z-index: 1;
}

.home-page .about-motivacion-block--about {
  left: 0;
  top: 185px;
}

.home-page .about-motivacion-block--motivacion {
  right: 0;
  top: 380px;
  text-align: right;
}

.home-page .about-motivacion-block .module__index {
  margin: 0;
  color: rgba(237, 245, 252, 0.82);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.home-page .about-motivacion-block h2 {
  margin: 0.45rem 0 0.85rem;
  color: #f4f9ff;
  font-size: clamp(2.05rem, 3.25vw, 3.05rem);
  font-weight: 600;
  line-height: 0.95;
}

.home-page .about-motivacion-block h2 span {
  color: var(--brand-yellow);
  font-weight: 400;
}

.home-page .about-motivacion-block p {
  margin: 0 0 1.05rem;
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.33;
  max-width: 400px;
}

.home-page .about-motivacion-block--motivacion p {
  margin-left: auto;
}

.home-page .about-motivacion-block .button-link {
  margin-top: 0.28rem;
  min-width: 142px;
  height: 38px;
  padding: 0 1rem;
  font-size: 0.74rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.home-page #objetivos {
  height: 884px;
  min-height: 884px;
  background: #0f1d26;
  color: #e8f0f8;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
}

.home-page #objetivos .objectives-home-wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.home-page .objectives-home-title {
  margin: 0 0 2.2rem;
  padding-left: 112px;
  text-transform: uppercase;
  text-align: left;
  line-height: 46px !important;
  font-size: 46px !important;
  letter-spacing: 0.01em;
}

.home-page .objectives-home-title__main {
  color: #ffffff;
  font-weight: 700;
}

.home-page .objectives-home-title__accent {
  color: var(--brand-yellow);
  font-weight: 400;
}

.home-page .goals-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 274px);
  justify-content: center;
  gap: 1.15rem;
}

.home-page .goal-card-home {
  width: 274px;
  height: 194px;
  border-radius: 20px;
  border: 2px solid transparent;
  background:
    linear-gradient(#0f1d26, #0f1d26) padding-box,
    linear-gradient(90deg, #d8d932 0%, #29869e 100%) border-box;
  padding: 0.9rem 1rem 1.05rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-page .goal-card-home:hover {
  transform: scale(1.04);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.home-page .goal-card-home__kicker {
  margin: 0 0 0.55rem;
  min-height: 34px;
  color: var(--brand-yellow);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}

.home-page .goal-card-home__text {
  margin: -0.15rem 0 0;
  color: #ffffff;
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.42;
}

.home-page #objetivos .module-link--center {
  margin: 1.7rem auto 0;
  padding: 0.72rem 1.45rem;
  font-size: 0.9rem;
  display: table;
}

.home-page #noticias::before {
  width: 760px;
  height: 760px;
  right: -540px;
  top: 50%;
  transform: translateY(-50%) translate(var(--news-ring-x), var(--news-ring-y));
  background: radial-gradient(
    circle,
    rgba(62, 173, 206, 0) 52%,
    rgba(62, 173, 206, 0.62) 59%,
    rgba(62, 173, 206, 0.28) 66%,
    rgba(62, 173, 206, 0) 76%
  );
  filter: blur(11px);
  transition: transform 0.16s ease-out;
}

.home-page #noticias::after {
  width: 760px;
  height: 760px;
  left: -420px;
  bottom: -460px;
  transform: translate(var(--news-bottom-x), var(--news-bottom-y));
  background: radial-gradient(
    circle at 44% 42%,
    rgba(41, 134, 158, 0.5) 0%,
    rgba(41, 134, 158, 0.34) 28%,
    rgba(216, 217, 50, 0.72) 58%,
    rgba(216, 217, 50, 0.18) 72%,
    rgba(216, 217, 50, 0) 84%
  );
  filter: blur(18px);
  transition: transform 0.16s ease-out;
}

.home-page #noticias .news-home-wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.home-page .news-home-title {
  margin: 0 0 2.2rem;
  padding-left: 112px;
  text-transform: uppercase;
  text-align: left;
  line-height: 46px !important;
  font-size: 46px !important;
  letter-spacing: 0.01em;
}

.home-page .news-home-title__main {
  color: #ffffff;
  font-weight: 700;
}

.home-page .news-home-title__accent {
  color: var(--brand-yellow);
  font-weight: 400;
}

.home-page #noticias .news-row {
  margin-top: 0;
  padding-left: 112px;
}

.home-page #noticias .module-link--center {
  margin: 1.7rem auto 0;
  padding: 0.72rem 1.45rem;
  font-size: 0.9rem;
  display: table;
}

.home-page #coordinadores {
  height: 552px;
  min-height: 552px;
  background: #ffffff;
  color: #1c2632;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-page .module__index {
  color: rgba(228, 240, 248, 0.72);
  text-transform: uppercase;
  font-weight: 500;
}

.home-page #coordinadores .module__index {
  color: #4e5c6a;
}

.home-page .module h2 {
  color: #f4f8fc;
  text-transform: uppercase;
  margin-top: 0;
  font-weight: 700;
}

.home-page #coordinadores h2 {
  color: #1e2a36;
}

.home-page #coordinadores .coordinators-home-wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.home-page #coordinadores .coordinators-home-title {
  margin: 0 0 1.55rem;
  padding-left: 112px;
  text-transform: uppercase;
  line-height: 34px;
  letter-spacing: 0.005em;
}

.home-page #coordinadores .coordinators-home-title__main,
.home-page #coordinadores .coordinators-home-title__sub {
  display: block;
  color: #0b0f14;
}

.home-page #coordinadores .coordinators-home-title__main {
  font-size: 34px;
  font-weight: 700;
}

.home-page #coordinadores .coordinators-home-title__sub {
  margin-top: 0.2rem;
  font-size: 34px;
  font-weight: 400;
}

.coordinators-home-title__main,
.coordinators-home-title__sub {
  display: block;
}

.coordinators-home-title {
  margin: 0 0 1.55rem;
  text-transform: uppercase;
  line-height: 34px;
  letter-spacing: 0.005em;
}

.coordinators-home-title__main {
  font-size: 34px;
  font-weight: 700;
}

.coordinators-home-title__sub {
  margin-top: 0.2rem;
  font-size: 34px;
  font-weight: 400;
}

.home-page #coordinadores .coordinators-grid {
  display: grid;
  grid-template-columns: repeat(2, 430px);
  justify-content: flex-start;
  gap: 1.1rem;
  padding-left: 112px;
}

.home-page .person-card.person-card--home {
  border: 0;
  border-radius: 22px;
  background: #0f1d26;
  min-height: 190px;
  padding: 0.95rem 1rem 0.95rem 1.05rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  align-items: stretch;
  gap: 0.95rem;
}

.home-page .person-card.person-card--home .person-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.12rem 0;
  min-width: 0;
}

.home-page .person-card.person-card--home h3 {
  margin: 0;
  color: #f1f7fc;
  font-size: 20px;
  line-height: 1.06;
  font-weight: 600;
  text-transform: uppercase;
}

.home-page .person-card.person-card--home .person-card__bio {
  margin-top: 0;
  align-self: flex-start;
  padding: 0.66rem 1.35rem;
  font-size: 0.84rem;
}

.home-page .avatar-slot.avatar-slot--photo {
  width: 170px;
  height: 170px;
  border-radius: 22px;
  overflow: hidden;
  background: #d6dce3;
  align-self: center;
  justify-self: end;
}

.home-page .avatar-slot.avatar-slot--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-page .person-card__photo-link {
  display: block;
  width: 100%;
  height: 100%;
}

.home-page .person-card__photo-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-page .news-card {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(24, 42, 62, 0.7);
}

.home-page .news-card h3 {
  color: #f0f7ff;
  font-weight: 600;
  line-height: 1.15;
}

.home-page .news-card__image {
  background: rgba(255, 255, 255, 0.06);
}

.home-page .person-card {
  border-color: #cfd6df;
  border-radius: 12px;
  background: #ffffff;
}

.home-page .avatar-slot {
  border: 0;
  background: #e8eef5;
}

.home-page button:not(.lang-btn),
.home-page .button-link {
  padding: 0.52rem 1rem;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.home-page button:not(.lang-btn):hover,
.home-page .button-link:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
}

.subpage-design {
  --brand-black: #0e1317;
  --brand-yellow: #d8d932;
  --brand-blue: #29869e;
  --section-pad-inline: max(1rem, calc((100vw - 1120px) / 2 + 1rem));
  background: #0e1317;
}

.subpage-design .site-header {
  background: rgba(8, 12, 15, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.subpage-design .site-nav a {
  color: #ffffff;
  display: inline-block;
  transform: scale(0.8);
  transform-origin: center;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.subpage-design .site-nav a:hover,
.subpage-design .site-nav a.is-current {
  color: #d8d932;
}

.subpage-design .site-logo {
  border: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 0.2s ease;
}

.subpage-design .site-logo:hover {
  transform: scale(1.08);
}

.subpage-design .lang-switch {
  width: 66px;
  height: 34px;
  border: 2px solid transparent;
  background:
    linear-gradient(#0e1317, #0e1317) padding-box,
    linear-gradient(90deg, #d8d932 0%, #29869e 100%) border-box;
}

.subpage-design .lang-switch::before {
  top: 50%;
  left: 2px;
  width: 28px;
  height: 28px;
  background: #ffffff;
  transform: translateY(-50%);
}

.subpage-design .lang-switch.is-en::before {
  transform: translate(32px, -50%);
}

.subpage-design .lang-switch .lang-btn {
  color: #d8d932 !important;
}

.subpage-design .lang-btn.is-active {
  color: #0e1317 !important;
}

.subpage-design .about-page {
  margin: 0;
  width: 100%;
  max-width: none;
  padding: 0;
}

.subpage-design .sobre-scroll {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background:
    radial-gradient(560px 420px at 70% 55%, rgba(8, 21, 31, 0.76), rgba(8, 21, 31, 0) 72%),
    #0e1317;
  color: #edf3f8;
  padding: 4.2rem var(--section-pad-inline) 4.5rem;
}

.subpage-design .sobre-scroll::before,
.subpage-design .sobre-scroll::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  will-change: transform;
}

.subpage-design .sobre-scroll::before {
  width: 680px;
  height: 680px;
  right: -480px;
  top: 50%;
  transform: translate(
    var(--sobre-ring-x, 0px),
    calc(-50% + var(--sobre-ring-y, 0px))
  );
  background: radial-gradient(
    circle,
    rgba(62, 173, 206, 0) 52%,
    rgba(62, 173, 206, 0.66) 59%,
    rgba(62, 173, 206, 0.32) 66%,
    rgba(62, 173, 206, 0) 76%
  );
  filter: blur(11px);
}

.subpage-design .sobre-scroll::after {
  width: 640px;
  height: 640px;
  left: -210px;
  bottom: -170px;
  transform: translate(
    var(--sobre-bottom-x, 0px),
    var(--sobre-bottom-y, 0px)
  );
  background: radial-gradient(
    circle at 44% 42%,
    rgba(41, 134, 158, 0.62) 0%,
    rgba(41, 134, 158, 0.46) 28%,
    rgba(216, 217, 50, 0.98) 58%,
    rgba(216, 217, 50, 0.48) 72%,
    rgba(216, 217, 50, 0) 84%
  );
  filter: blur(9px);
}

.subpage-design .sobre-scroll__orb {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  will-change: transform;
}

.subpage-design .sobre-scroll__orb--right {
  width: 500px;
  height: 500px;
  right: -45px;
  top: -36px;
  background: radial-gradient(
    circle at 40% 34%,
    rgba(216, 217, 50, 0.92) 0%,
    rgba(41, 134, 158, 0.58) 42%,
    rgba(41, 134, 158, 0.28) 58%,
    rgba(41, 134, 158, 0) 76%
  );
  filter: blur(8px);
  transform: translate(
    var(--sobre-orb-x, 0px),
    var(--sobre-orb-y, 0px)
  );
  z-index: 0;
}

.subpage-design .sobre-scroll__head,
.subpage-design .sobre-scroll__content,
.subpage-design .sobre-scroll__references {
  position: relative;
  z-index: 1;
}

.subpage-design .sobre-scroll__head h1 {
  margin: 0.45rem 0 2.6rem;
  color: #f4f9ff;
  font-size: clamp(2.05rem, 3.25vw, 3.05rem);
  font-weight: 600;
  line-height: 0.95;
  text-transform: uppercase;
}

.subpage-design .sobre-scroll__head h1 span {
  color: #d8d932;
  font-weight: 400;
}

.subpage-design .sobre-scroll__head,
.subpage-design .sobre-scroll__stack,
.subpage-design .sobre-scroll__references {
  width: min(950px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.subpage-design .sobre-scroll__stack {
  display: grid;
  gap: 1.3rem;
}

.subpage-design .sobre-block {
  max-width: 690px;
}

.subpage-design .sobre-block.sobre-block--wide {
  max-width: 950px;
  width: 100%;
}

.subpage-design .sobre-scroll__stack > article.sobre-block:nth-of-type(odd) {
  margin-right: auto;
  text-align: left;
}

.subpage-design .sobre-scroll__stack > article.sobre-block:nth-of-type(even) {
  margin-left: auto;
  text-align: right;
}

.subpage-design .sobre-block h3 {
  margin: 0 0 0.45rem;
  color: #d8d932;
}

.subpage-design .sobre-block p {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: 1.03rem;
  line-height: 1.45;
}

.subpage-design.multimedia-page .sobre-scroll {
  background: #0f1d26 !important;
}

.subpage-design.multimedia-page .sobre-scroll::before,
.subpage-design.multimedia-page .sobre-scroll::after,
.subpage-design.multimedia-page .sobre-scroll__orb {
  display: none;
}

.subpage-design .multimedia-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.subpage-design .multimedia-card {
  border: 2px solid transparent;
  border-radius: 16px;
  background:
    linear-gradient(#0e1317, #0e1317) padding-box,
    linear-gradient(90deg, #d8d932 0%, #29869e 100%) border-box;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.subpage-design .multimedia-card:hover {
  transform: scale(1.01);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.subpage-design .multimedia-card.is-active {
  box-shadow: 0 0 0 2px rgba(216, 217, 50, 0.35);
}

.subpage-design .multimedia-card__trigger {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0.85rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.78rem;
  align-items: stretch;
  text-align: left;
  cursor: pointer;
}

.subpage-design .multimedia-card__thumb {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(20, 37, 56, 0.6);
}

.subpage-design .multimedia-card__thumb img {
  display: block;
  width: 100%;
  height: 156px;
  object-fit: cover;
}

.subpage-design .multimedia-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.subpage-design .multimedia-card__footer h4 {
  margin: 0;
  color: #d8d932;
  font-size: 0.95rem;
  line-height: 1.25;
}

.subpage-design .multimedia-card__plus {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(216, 217, 50, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d8d932;
  flex: 0 0 auto;
}

.subpage-design .multimedia-card__plus::before {
  content: "+";
  font-size: 1.05rem;
  line-height: 1;
  font-weight: 700;
}

.subpage-design .multimedia-card.is-active .multimedia-card__plus::before {
  content: "−";
}

.subpage-design .multimedia-detail-panel {
  margin-top: 1.05rem;
  border: 2px solid transparent;
  border-radius: 16px;
  background:
    linear-gradient(#0e1317, #0e1317) padding-box,
    linear-gradient(90deg, #d8d932 0%, #29869e 100%) border-box;
  padding: 0.95rem;
}

.subpage-design .multimedia-detail p {
  margin: 0 0 0.65rem;
  color: #ffffff;
}

.subpage-design .multimedia-summary-cta {
  margin-top: 1.2rem;
  text-align: left;
  max-width: 100%;
}

.subpage-design .multimedia-summary-cta p {
  margin-bottom: 0.8rem;
}

.subpage-design .multimedia-summary-cta .button-link {
  margin-top: 0.2rem;
}

.subpage-design .multimedia-detail iframe {
  width: 100%;
  border: 0;
  border-radius: 10px;
  aspect-ratio: 16 / 9;
  height: auto;
}

.subpage-design .sobre-scroll .about-highlight {
  max-width: 820px;
  margin: 1.1rem auto 1.4rem;
  background:
    linear-gradient(#0e1317, #0e1317) padding-box,
    linear-gradient(90deg, #d8d932 0%, #29869e 100%) border-box;
  border: 2px solid transparent;
  color: #f2f8fc;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  text-align: center;
}

.subpage-design .sobre-scroll .about-highlight.about-highlight--centered {
  width: min(820px, 100%);
  margin-left: 50%;
  margin-right: 0;
  transform: translateX(-50%);
}

.subpage-design .sobre-scroll .about-highlight.about-highlight--standalone {
  margin-top: 0.25rem;
  margin-bottom: 0.55rem;
}

.subpage-design .sobre-scroll .objective-highlights {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  gap: 0.65rem;
}

.subpage-design .sobre-scroll .objective-tile {
  border: 2px solid transparent;
  border-radius: 14px;
  background:
    linear-gradient(#0e1317, #0e1317) padding-box,
    linear-gradient(90deg, #d8d932 0%, #29869e 100%) border-box;
  padding: 0.9rem 0.95rem;
}

.subpage-design .sobre-scroll .objective-tile p {
  margin: 0;
  color: #f2f8fc;
}

.subpage-design .sobre-scroll .objective-tile strong {
  color: #ffffff;
}

.subpage-design.motivacion-page .sobre-block {
  max-width: 950px;
  width: 100%;
}

.subpage-design.motivacion-page .sobre-scroll__stack > article.sobre-block:nth-of-type(odd),
.subpage-design.motivacion-page .sobre-scroll__stack > article.sobre-block:nth-of-type(even) {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.subpage-design.motivacion-page .sobre-block__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: center;
}

.subpage-design.motivacion-page .sobre-scroll__stack > article.sobre-block:nth-of-type(even) .sobre-block__layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.subpage-design.motivacion-page .sobre-scroll__stack > article.sobre-block:nth-of-type(even) .sobre-block__text {
  grid-column: 2;
}

.subpage-design.motivacion-page .sobre-scroll__stack > article.sobre-block:nth-of-type(even) .about-media-figure {
  grid-column: 1;
  grid-row: 1;
}

.subpage-design.motivacion-page .about-media-figure {
  margin: 0;
  width: 80%;
  min-height: 176px;
  border-radius: 0;
  border: 0;
  background: none;
  overflow: hidden;
  justify-self: center;
}

.subpage-design.motivacion-page .about-media-figure img {
  width: 100%;
  height: 100%;
  min-height: 176px;
  object-fit: cover;
  display: block;
}

.subpage-design.motivacion-page .about-media-figure.js-attribution-trigger {
  cursor: pointer;
}

.image-attribution-tooltip {
  position: fixed;
  z-index: 120;
  max-width: 340px;
  padding: 0.6rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(41, 134, 158, 0.75);
  background: rgba(14, 19, 23, 0.96);
  color: #f2f8fc;
  font-size: 0.82rem;
  line-height: 1.35;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.image-attribution-tooltip[hidden] {
  display: none;
}

.image-attribution-tooltip a {
  color: #d8d932;
  word-break: break-all;
}

.image-attribution-tooltip a:hover {
  color: #f2f8fc;
}

.subpage-design.motivacion-page .motivation-intro-highlight h3 {
  margin: 0 0 0.5rem;
  color: #d8d932;
}

.subpage-design.motivacion-page .motivation-intro-highlight p:last-child {
  margin-bottom: 0;
}

.subpage-design.motivacion-page .motivation-intro-highlight + .sobre-block {
  margin-top: 1rem;
}

.subpage-design.objectives-subpage .objectives-page {
  margin: 0;
  width: 100%;
  max-width: none;
  padding: 0;
}

.subpage-design.objectives-subpage .objectives-shell {
  position: relative;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #0f1d26;
  color: #edf3f8;
  padding: 4.2rem var(--section-pad-inline) 4.5rem;
}

.subpage-design.objectives-subpage .objectives-shell__head,
.subpage-design.objectives-subpage .objectives-grid-nav,
.subpage-design.objectives-subpage .objectives-accordion,
.subpage-design.objectives-subpage .sobre-scroll__references {
  width: min(950px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.subpage-design.objectives-subpage .objectives-shell__head h1 {
  margin: 0.45rem 0 2rem;
  color: #f4f9ff;
  font-size: clamp(2.05rem, 3.25vw, 3.05rem);
  font-weight: 600;
  line-height: 0.95;
  text-transform: uppercase;
}

.subpage-design.objectives-subpage .objectives-shell__head h1 span {
  color: #d8d932;
  font-weight: 400;
}

.subpage-design.objectives-subpage .objectives-grid-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.subpage-design.objectives-subpage .objectives-grid-nav a {
  text-decoration: none;
  color: #ecf4fa;
  border: 2px solid transparent;
  border-radius: 16px;
  background:
    linear-gradient(#0e1317, #0e1317) padding-box,
    linear-gradient(90deg, #d8d932 0%, #29869e 100%) border-box;
  padding: 0.78rem 0.82rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.subpage-design.objectives-subpage .objectives-grid-nav a strong {
  display: block;
  color: #d8d932;
  font-size: 0.96rem;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.subpage-design.objectives-subpage .objectives-grid-nav a span {
  display: block;
  font-size: 0.88rem;
  line-height: 1.28;
}

.subpage-design.objectives-subpage .objectives-grid-nav a:hover {
  transform: scale(1.02);
}

.subpage-design.objectives-subpage .objectives-accordion {
  display: grid;
  gap: 0.85rem;
}

.subpage-design.objectives-subpage .objective-item {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0;
  box-shadow: none;
}

.subpage-design.objectives-subpage .objective-item details {
  border: 2px solid transparent;
  border-radius: 16px;
  background:
    linear-gradient(#0e1317, #0e1317) padding-box,
    linear-gradient(90deg, #d8d932 0%, #29869e 100%) border-box;
  overflow: hidden;
}

.subpage-design.objectives-subpage .objective-item summary {
  list-style: none;
  margin: 0;
  cursor: pointer;
  position: relative;
  padding: 1rem 1rem 1rem 1rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: #d8d932;
  line-height: 1.3;
}

.subpage-design.objectives-subpage .objective-item summary::-webkit-details-marker {
  display: none;
}

.subpage-design.objectives-subpage .objective-item summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #29869e;
  font-size: 1.4rem;
  font-weight: 700;
}

.subpage-design.objectives-subpage .objective-item details[open] summary::after {
  content: "−";
}

.subpage-design.objectives-subpage .objective-content {
  padding: 0 1rem 1rem;
}

.subpage-design.objectives-subpage .objective-content p,
.subpage-design.objectives-subpage .objective-content li {
  color: #ffffff;
  font-size: 1.03rem;
  line-height: 1.45;
}

.subpage-design.objectives-subpage .objective-content p {
  margin: 0 0 1rem;
}

.subpage-design.objectives-subpage .objective-content p:last-child {
  margin-bottom: 0;
}

.subpage-design.objectives-subpage .objective-content ul {
  margin: 0 0 1rem 1.1rem;
  padding: 0;
}

.subpage-design.objectives-subpage .objective-content li + li {
  margin-top: 0.35rem;
}

.subpage-design.objectives-subpage .ref-link {
  color: #29869e;
  text-decoration: none;
}

.subpage-design.objectives-subpage .ref-link:hover {
  color: #54a3b8;
  text-decoration: underline;
}

.subpage-design.objectives-subpage .ref-link.cite-hit {
  color: #0e1317 !important;
  background: #d8d932;
  text-decoration: none;
  font-weight: 700;
  padding: 0.05rem 0.28rem;
  border-radius: 5px;
  box-decoration-break: clone;
}

.subpage-design.objectives-subpage .sobre-scroll__references {
  margin-top: 2rem;
  padding: 1.35rem 1.25rem;
  border-radius: 14px;
  border: 0;
  background: #11283d;
}

.subpage-design.objectives-subpage .sobre-scroll__references h3 {
  margin: 0 0 0.65rem;
  color: #d8d932;
}

.subpage-design.objectives-subpage .sobre-scroll__references ol {
  margin: 0;
}

.subpage-design.objectives-subpage .sobre-scroll__references li {
  color: #eef7ff;
}

.subpage-design.objectives-subpage .sobre-scroll__references li.ref-hit {
  background: rgba(216, 217, 50, 0.16);
  border-radius: 8px;
  padding: 0.2rem 0.35rem;
}

.subpage-design.noticias-subpage .news-page {
  margin: 0;
  width: 100%;
  max-width: none;
  padding: 0;
}

.subpage-design.noticias-subpage .news-shell {
  position: relative;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: var(--brand-black);
  color: #edf3f8;
  padding: 4.2rem var(--section-pad-inline) 4.5rem;
  overflow: hidden;
}

.subpage-design.noticias-subpage .news-shell::before,
.subpage-design.noticias-subpage .news-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.subpage-design.noticias-subpage .news-shell::before {
  width: 760px;
  height: 760px;
  right: -540px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(
    circle,
    rgba(62, 173, 206, 0) 52%,
    rgba(62, 173, 206, 0.62) 59%,
    rgba(62, 173, 206, 0.28) 66%,
    rgba(62, 173, 206, 0) 76%
  );
  filter: blur(11px);
}

.subpage-design.noticias-subpage .news-shell::after {
  width: 760px;
  height: 760px;
  left: -420px;
  bottom: -460px;
  background: radial-gradient(
    circle at 44% 42%,
    rgba(41, 134, 158, 0.5) 0%,
    rgba(41, 134, 158, 0.34) 28%,
    rgba(216, 217, 50, 0.72) 58%,
    rgba(216, 217, 50, 0.18) 72%,
    rgba(216, 217, 50, 0) 84%
  );
  filter: blur(18px);
}

.subpage-design.noticias-subpage .noticias-hero,
.subpage-design.noticias-subpage .news-grid,
.subpage-design.noticias-subpage .news-detail-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.subpage-design.noticias-subpage .noticias-hero {
  margin-bottom: 1.4rem;
}

.subpage-design.noticias-subpage .noticias-hero .module__index {
  color: rgba(228, 240, 248, 0.72);
}

.subpage-design.noticias-subpage .noticias-hero h1 {
  margin: 0.35rem 0 0;
  color: #ffffff;
  text-transform: uppercase;
  font-size: clamp(2.05rem, 3.25vw, 3.05rem);
  line-height: 0.95;
  font-weight: 600;
}

.subpage-design.noticias-subpage .noticias-hero h1 span {
  color: #ffffff;
  font-weight: 700;
}

.subpage-design.noticias-subpage .noticias-hero h1 em {
  color: #d8d932;
  font-style: normal;
  font-weight: 400;
}

.subpage-design.noticias-subpage .news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.subpage-design.noticias-subpage .news-card-nav {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(24, 42, 62, 0.7);
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
  align-content: start;
  cursor: pointer;
}

.subpage-design.noticias-subpage .news-card-nav:hover {
  transform: none;
  box-shadow: none;
}

.subpage-design.noticias-subpage .news-card-nav.is-active {
  border: 2px solid transparent;
  background:
    linear-gradient(rgba(24, 42, 62, 0.7), rgba(24, 42, 62, 0.7)) padding-box,
    linear-gradient(90deg, #d8d932 0%, #29869e 100%) border-box;
}

.subpage-design.noticias-subpage .news-card-nav h3 {
  margin: 0;
  color: #f0f7ff;
  font-size: 1.35rem;
  line-height: 1.2;
}

.subpage-design.noticias-subpage .news-card-nav__meta {
  margin: -0.2rem 0 0;
  color: #d8d932;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.subpage-design.noticias-subpage .news-card-nav__image {
  min-height: 220px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.subpage-design.noticias-subpage .news-card-nav__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.subpage-design.noticias-subpage .news-card-nav__btn {
  align-self: end;
  justify-self: start;
}

.subpage-design.noticias-subpage .news-detail-panel {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(24, 42, 62, 0.7);
  padding: 1rem;
  scroll-margin-top: 95px;
}

.subpage-design.noticias-subpage .news-detail {
  width: 80%;
  margin: 0 auto;
}

.subpage-design.noticias-subpage .news-detail h3 {
  margin: 0 0 0.8rem;
  color: #f0f7ff;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  width: 60%;
}

.subpage-design.noticias-subpage .news-detail__meta {
  margin: 0 0 0.45rem;
  color: #d8d932;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.subpage-design.noticias-subpage .news-detail__subtitle {
  margin: 1.1rem 0 0.7rem;
  color: #ffffff;
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.2;
  font-weight: 600;
}

.subpage-design.noticias-subpage .news-detail p,
.subpage-design.noticias-subpage .news-detail li {
  color: #e6eff8;
  line-height: 1.62;
  margin: 0.78rem 0;
}

.subpage-design.noticias-subpage .news-highlight {
  margin: 2rem 0 0.95rem;
  color: #ffffff;
  font-size: clamp(1.08rem, 1.55vw, 1.24rem);
  line-height: 1.35;
  font-weight: 800;
  text-align: left;
  clear: both;
}

.subpage-design.noticias-subpage .news-detail::after {
  content: "";
  display: block;
  clear: both;
}

.subpage-design.noticias-subpage .news-lead-media {
  margin: 0 0 1.6rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(6, 14, 20, 0.5);
}

.subpage-design.noticias-subpage .news-lead-media img {
  width: 100%;
  height: min(50vw, 520px);
  object-fit: cover;
  display: block;
}

.subpage-design.noticias-subpage .news-split-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
  align-items: start;
  margin: 0.65rem 0 1.4rem;
}

.subpage-design.noticias-subpage .news-split-row--media-left {
  grid-template-columns: 0.85fr 1.15fr;
}

.subpage-design.noticias-subpage .news-split-row--compact {
  grid-template-columns: 1fr 0.75fr;
  margin-top: 0.25rem;
}

.subpage-design.noticias-subpage .news-split-row--final {
  grid-template-columns: 1.12fr 0.88fr;
  margin-top: 0.95rem;
}

.subpage-design.noticias-subpage .news-split-row__text {
  min-width: 0;
}

.subpage-design.noticias-subpage .news-split-row__media {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(8, 19, 28, 0.62);
}

.subpage-design.noticias-subpage .news-split-row__media img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  display: block;
}

.subpage-design.noticias-subpage .news-split-row__media--press img {
  min-height: 250px;
  height: 250px;
}

.subpage-design.noticias-subpage .news-split-row__media--nec img {
  min-height: 155px;
  height: 155px;
}

.subpage-design.noticias-subpage .news-split-row--final .news-split-row__media img {
  min-height: 340px;
  height: 340px;
}

.subpage-design.noticias-subpage .news-block-image {
  width: min(760px, 100%);
  margin: 0.65rem auto 1.45rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 19, 28, 0.62);
}

.subpage-design.noticias-subpage .news-block-image img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  display: block;
}

.subpage-design.noticias-subpage .news-media-list {
  margin: 0.45rem 0 0.2rem;
  padding-left: 1rem;
}

.subpage-design.noticias-subpage .news-media-list a {
  color: #d8edff;
  text-decoration-color: rgba(216, 217, 50, 0.65);
  text-decoration-thickness: 1px;
}

.subpage-design.noticias-subpage .news-media-list a::after {
  content: " \2197";
  font-weight: 700;
}

.subpage-design.noticias-subpage .news-media-list a:hover {
  color: #ffffff;
}

.subpage-design.noticias-subpage .news-event-info {
  border: 1px solid rgba(216, 217, 50, 0.5);
  border-radius: 12px;
  background: rgba(14, 19, 23, 0.72);
  padding: 0.8rem 0.9rem;
  margin: 0.8rem 0 1rem;
  color: #ffffff;
}

.subpage-design.noticias-subpage .news-event-info strong {
  color: #ffffff;
  font-weight: 600;
  line-height: 1.45;
}

.subpage-design.coordinadores-subpage {
  background: #ffffff;
}

.subpage-design.coordinadores-subpage .coordinadores-page {
  margin: 0;
  width: 100%;
  max-width: none;
  padding: 0;
}

.subpage-design.coordinadores-subpage .coordinadores-shell {
  position: relative;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #ffffff;
  color: #0e1317;
  padding: 4.2rem var(--section-pad-inline) 4.5rem;
  overflow: hidden;
  margin: 0;
  width: 100%;
}

.subpage-design.coordinadores-subpage .coordinators-home-title {
  margin: 0 auto 1.5rem;
  color: #0b0f14;
}

.subpage-design.coordinadores-subpage .coordinators-home-title__main,
.subpage-design.coordinadores-subpage .coordinators-home-title__sub {
  color: #0b0f14;
}

.subpage-design.coordinadores-subpage .coordinadores-grid-nav,
.subpage-design.coordinadores-subpage .coordinadores-detail-panel {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.subpage-design.coordinadores-subpage .coordinadores-grid-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.subpage-design.coordinadores-subpage .coordinator-card-nav {
  border: 1px solid rgba(14, 19, 23, 0.18);
  border-radius: 18px;
  background: #0f1d26;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 90px;
  gap: 0.85rem;
  align-items: center;
  cursor: pointer;
  transform: none !important;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.subpage-design.coordinadores-subpage .coordinator-card-nav__photo {
  grid-column: 2;
  grid-row: 1;
  width: 90px;
  height: 90px;
  border-radius: 14px;
  overflow: hidden;
  justify-self: end;
}

.subpage-design.coordinadores-subpage .coordinator-card-nav__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.subpage-design.coordinadores-subpage .coordinator-card-nav__content {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.subpage-design.coordinadores-subpage .coordinator-card-nav h3 {
  margin: 0;
  color: #f1f7fc;
  font-size: 1.15rem;
  line-height: 1.15;
  font-weight: 600;
}

.subpage-design.coordinadores-subpage .coordinator-card-nav:hover {
  box-shadow: none;
}

.subpage-design.coordinadores-subpage .coordinator-card-nav.is-active {
  border: 2px solid transparent;
  background:
    linear-gradient(#0f1d26, #0f1d26) padding-box,
    linear-gradient(90deg, #d8d932 0%, #29869e 100%) border-box;
}

.subpage-design.coordinadores-subpage .coordinator-card-nav.is-active h3 {
  color: #ffffff;
}

.subpage-design.coordinadores-subpage .coordinator-card-nav.is-active .coordinator-card-nav__btn {
  color: #d8d932;
}

.subpage-design.coordinadores-subpage .coordinator-card-nav__btn {
  align-self: flex-start;
}

.subpage-design.coordinadores-subpage .coordinadores-detail-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: #0e1317;
  padding: 1.15rem;
  scroll-margin-top: 95px;
}

.subpage-design.coordinadores-subpage .coordinador-detail {
  color: #ffffff;
}

.subpage-design.coordinadores-subpage .coordinador-detail__header {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.4rem;
}

.subpage-design.coordinadores-subpage .coordinador-detail__photo {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
}

.subpage-design.coordinadores-subpage .coordinador-detail__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.subpage-design.coordinadores-subpage .coordinador-detail__meta {
  min-width: 0;
}

.subpage-design.coordinadores-subpage .coordinador-detail__role {
  margin: 0 0 0.35rem;
  color: #d8d932;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.64rem;
  font-weight: 400;
}

.subpage-design.coordinadores-subpage .coordinador-detail h3 {
  margin: 0 0 1rem;
  text-align: left;
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.08;
}

.subpage-design.coordinadores-subpage .coordinador-detail p {
  margin: 0 0 1rem;
  color: #eaf2f8;
  font-size: 1.05rem;
  line-height: 1.45;
  letter-spacing: 0;
  font-family: "Space Grotesk", sans-serif;
}

.subpage-design.coordinadores-subpage .coordinador-detail p.coordinador-detail__role {
  margin: 0 0 0.35rem;
  color: #d8d932;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.6rem;
  font-weight: 400;
  line-height: 1.25;
}

.subpage-design.coordinadores-subpage .coordinador-detail__actions {
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.subpage-design.coordinadores-subpage .coordinador-detail__meta .coordinador-detail__actions {
  margin-top: 0.45rem;
}

.subpage-design.coordinadores-subpage .coordinador-detail__actions .button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  padding: 0.5rem 1rem;
}

.subpage-design .sobre-scroll__references {
  margin-top: 2rem;
  padding: 1.35rem 1.25rem;
  border-radius: 14px;
  border: 0;
  background: #11283d;
}

.subpage-design .sobre-scroll__references h3 {
  margin: 0 0 0.65rem;
  color: #d8d932;
}

.subpage-design .sobre-scroll__references ol {
  margin: 0;
}

.subpage-design .sobre-scroll__references li {
  color: #eef7ff;
}

.subpage-design .sobre-scroll .ref-link {
  color: #29869e;
  text-decoration: none;
}

.subpage-design .sobre-scroll .ref-link:hover {
  color: #54a3b8;
  text-decoration: underline;
}

.subpage-design .sobre-scroll .ref-link.cite-hit {
  color: #0e1317 !important;
  background: #d8d932;
  text-decoration: none;
  font-weight: 700;
  padding: 0.05rem 0.28rem;
  border-radius: 5px;
  box-decoration-break: clone;
}

.subpage-design .sobre-scroll__references li.ref-hit {
  background: rgba(216, 217, 50, 0.16);
  border-radius: 8px;
  padding: 0.2rem 0.35rem;
}

.subpage-design .site-footer {
  border-top: 0;
  color: #dbe6ef;
}

.subpage-design .site-footer.site-footer--main {
  height: 475px;
  min-height: 475px;
  background:
    radial-gradient(700px 420px at 18% 36%, rgba(41, 134, 158, 0.66), rgba(41, 134, 158, 0) 74%),
    radial-gradient(920px 520px at 84% 76%, rgba(216, 217, 50, 0.72), rgba(216, 217, 50, 0) 74%),
    linear-gradient(180deg, #10212f 0%, #1b2f3f 100%);
  padding: 0 var(--section-pad-inline);
  display: flex;
  align-items: center;
}

.subpage-design .site-footer__inner {
  position: relative;
  max-width: 1120px;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 1.5rem;
  align-items: center;
}

.subpage-design .site-footer__content {
  min-width: 0;
  padding-left: 112px;
}

.subpage-design .site-footer__headline {
  margin: 0;
  color: #ebf3fa;
  text-transform: uppercase;
  font-size: 31px;
  line-height: 1.34;
  font-weight: 400;
}

.subpage-design .site-footer__headline-accent {
  color: var(--brand-yellow);
}

.subpage-design .site-footer__nav {
  margin-top: 2.1rem;
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 0.75rem 3.2rem;
}

.subpage-design .site-footer__nav a {
  color: #e9f2f9;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
}

.subpage-design .site-footer__nav a:hover {
  color: #d8d932;
}

.subpage-design .site-footer__to-top {
  position: absolute;
  right: -5.4rem;
  bottom: 3.1rem;
  width: 78px;
  height: 78px;
  border: 2px solid #f0f6fc;
  border-radius: 999px;
  color: #f4fbff;
  text-decoration: none;
  display: grid;
  place-items: center;
  font-size: 2.35rem;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.subpage-design .site-footer__to-top:hover {
  transform: scale(1.08);
  background: #ffffff;
  color: #0f1d26;
}

.subpage-design .site-footer__logos {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.9rem;
  padding-right: 0.25rem;
  margin-bottom: 5.2rem;
}

.subpage-design .site-footer__logos a {
  display: inline-flex;
  transition: transform 0.2s ease;
}

.subpage-design .site-footer__logos a:hover {
  transform: scale(1.08);
}

.subpage-design .site-footer__logos-top {
  width: 385px;
  display: flex;
  justify-content: flex-end;
}

.subpage-design .site-footer__logo.site-footer__logo--uni {
  width: 385px;
  max-width: 385px;
  max-height: 72px;
}

.subpage-design .site-footer__logos-row {
  width: 385px;
  display: grid;
  grid-template-columns: repeat(3, 123px);
  align-items: center;
  justify-content: end;
  column-gap: 0;
}

.subpage-design .site-footer__logo-slot {
  width: 123px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.subpage-design .site-footer__logo-slot + .site-footer__logo-slot {
  margin-left: -8px;
}

.subpage-design .site-footer__logo--ants {
  width: 100px;
  height: 36px;
  object-fit: contain;
}

.subpage-design .site-footer__logo--csit {
  width: 96px;
  height: 34px;
  object-fit: contain;
}

.subpage-design .site-footer__logo--6gsoc {
  width: 168px;
  height: 66px;
  transform: scale(0.92);
  transform-origin: center right;
  object-fit: contain;
}

.subpage-design .footer-funding {
  background: #ffffff;
  height: 115px;
  min-height: 115px;
  padding: 0 var(--section-pad-inline);
  display: flex;
  align-items: center;
}

.subpage-design .footer-funding__inner {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.12rem;
  text-align: center;
}

.subpage-design .footer-funding__logos {
  width: min(820px, 100%);
  height: auto;
  display: block;
  margin: 0 auto;
}

.subpage-design .footer-funding__note {
  margin: 0;
  color: #1b2a38;
  font-size: 0.69rem;
  font-weight: 400;
  line-height: 1.2;
  max-width: 1100px;
}

.home-page .site-footer {
  border-top: 0;
  color: #dbe6ef;
}

.home-page .site-footer.site-footer--main {
  height: 475px;
  min-height: 475px;
  background:
    radial-gradient(700px 420px at 18% 36%, rgba(41, 134, 158, 0.66), rgba(41, 134, 158, 0) 74%),
    radial-gradient(920px 520px at 84% 76%, rgba(216, 217, 50, 0.72), rgba(216, 217, 50, 0) 74%),
    linear-gradient(180deg, #10212f 0%, #1b2f3f 100%);
  padding: 0 var(--section-pad-inline);
  display: flex;
  align-items: center;
}

.home-page .site-footer__inner {
  position: relative;
  max-width: 1120px;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 1.5rem;
  align-items: center;
}

.home-page .site-footer__content {
  min-width: 0;
  padding-left: 112px;
}

.home-page .site-footer__headline {
  margin: 0;
  color: #ebf3fa;
  text-transform: uppercase;
  font-size: 31px;
  line-height: 1.34;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.home-page .site-footer__headline strong {
  font-weight: 700;
}

.home-page .site-footer__headline-accent {
  color: var(--brand-yellow);
}

.home-page .site-footer__nav {
  margin-top: 2.1rem;
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 0.75rem 3.2rem;
}

.home-page .site-footer__nav a {
  color: #e9f2f9;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: none;
}

.home-page .site-footer__nav a:hover {
  text-decoration: underline;
}

.home-page .site-footer__to-top {
  position: absolute;
  right: -5.4rem;
  bottom: 3.1rem;
  width: 78px;
  height: 78px;
  border: 2px solid #f0f6fc;
  border-radius: 999px;
  color: #f4fbff;
  text-decoration: none;
  display: grid;
  place-items: center;
  font-size: 2.35rem;
  line-height: 1;
  font-weight: 300;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  overflow: visible;
}

.home-page .site-footer__to-top::before {
  content: none;
}

.home-page .site-footer__to-top::after {
  content: none;
}

.home-page .site-footer__to-top:hover {
  transform: scale(1.08);
  background: #ffffff;
  color: #0f1d26;
}

.home-page .site-footer__logos {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.9rem;
  padding-right: 0.25rem;
  margin-bottom: 5.2rem;
}

.home-page .site-footer__logos a {
  display: inline-flex;
  transition: transform 0.2s ease;
}

.home-page .site-footer__logos a:hover {
  transform: scale(1.08);
}

.home-page .site-footer__logo {
  display: block;
  width: auto;
  max-width: 120px;
  max-height: 48px;
  object-fit: contain;
}

.home-page .site-footer__logos-top {
  width: 385px;
  display: flex;
  justify-content: flex-end;
}

.home-page .site-footer__logos-row {
  width: 385px;
  display: grid;
  grid-template-columns: repeat(3, 123px);
  align-items: center;
  justify-content: end;
  column-gap: 0;
  margin-left: auto;
}

.home-page .site-footer__logo-slot {
  width: 123px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-page .site-footer__logo-slot + .site-footer__logo-slot {
  margin-left: -8px;
}

.home-page .site-footer__logo.site-footer__logo--uni {
  width: 385px;
  max-width: 385px;
  max-height: 72px;
}

.home-page .site-footer__logo--row {
  object-fit: contain;
  max-width: none;
  max-height: none;
}

.home-page .site-footer__logo--ants {
  width: 96px;
  height: 34px;
}

.home-page .site-footer__logo--csit {
  width: 92px;
  height: 32px;
}

.home-page .site-footer__logo--6gsoc {
  width: 168px;
  height: 66px;
  transform: scale(0.92);
  transform-origin: center right;
  object-fit: contain;
}

.home-page .footer-funding {
  background: #ffffff;
  height: 115px;
  min-height: 115px;
  padding: 0 var(--section-pad-inline);
  display: flex;
  align-items: center;
}

.home-page .footer-funding__inner {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.12rem;
  text-align: center;
}

.home-page .footer-funding__logos {
  width: min(820px, 100%);
  height: auto;
  display: block;
  margin: 0 auto;
}

.home-page .footer-funding__note {
  margin: 0;
  color: #1b2a38;
  font-size: 0.69rem;
  font-weight: 400;
  line-height: 1.2;
  max-width: 1100px;
}

@media (max-width: 1040px) {
  .site-header__inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.62rem 0 0.7rem;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1rem;
  }

  .home-page #objetivos {
    height: auto;
    min-height: 884px;
    padding: 3rem var(--section-pad-inline);
    align-items: flex-start;
  }

  .home-page .goals-grid-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page #coordinadores {
    height: auto;
    min-height: 552px;
    padding: 2.2rem var(--section-pad-inline);
    align-items: flex-start;
  }

  .home-page #coordinadores .coordinators-home-title,
  .home-page #coordinadores .coordinators-grid {
    padding-left: 0;
  }

  .home-page #coordinadores .coordinators-home-title__main,
  .home-page #coordinadores .coordinators-home-title__sub {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .home-page #coordinadores .coordinators-grid {
    grid-template-columns: 1fr;
  }

  .home-page .site-footer.site-footer--main {
    height: auto;
    min-height: 0;
    padding: 2.4rem var(--section-pad-inline);
    align-items: flex-start;
  }

  .home-page .site-footer__headline {
    font-size: clamp(2rem, 6.4vw, 3rem);
  }

  .home-page .site-footer__inner {
    grid-template-columns: 1fr;
    height: auto;
    gap: 1.1rem;
    align-items: start;
  }

  .home-page .site-footer__content {
    padding-left: 0;
  }

  .home-page .site-footer__logos {
    justify-self: start;
    align-items: flex-start;
    margin-bottom: 0.8rem;
  }

  .home-page .site-footer__logos-top,
  .home-page .site-footer__logos-row {
    width: min(385px, 100%);
  }

  .home-page .site-footer__to-top {
    position: static;
    margin: 1.2rem 0 0 auto;
  }

  .home-page .footer-funding {
    height: auto;
    min-height: 0;
    padding: 0.9rem var(--section-pad-inline);
  }
}

@media (max-width: 620px) {
  .home-page {
    --section-pad-inline: 1rem;
  }

  .home-page .hero {
    padding-top: 2.2rem;
  }

  .home-page #objetivos {
    min-height: 0;
    padding: 2.3rem var(--section-pad-inline);
  }

  .home-page .objectives-home-title {
    margin-bottom: 1.3rem;
  }

  .home-page .goals-grid-home {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .home-page .goal-card-home {
    min-height: 0;
  }

  .home-page .person-card.person-card--home {
    grid-template-columns: 1fr;
  }

  .home-page .avatar-slot.avatar-slot--photo {
    width: 100%;
    height: 190px;
  }

  .home-page .site-footer__nav {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .home-page .metrics {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .home-page .hero-metrics {
    height: auto;
    min-height: 120px;
    padding: 0.7rem 0;
  }

  .home-page .hero-metrics .metrics {
    height: auto;
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .home-page .pill {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding-left: 0;
    padding-right: 0;
  }

  .home-page .pill:last-child {
    border-bottom: 0;
  }

  .home-page .metrics--breakdown .pill {
    border-bottom: 0;
  }

  .home-page .module {
    padding-top: 2.6rem;
    padding-bottom: 2.6rem;
  }

  .home-page .about-motivacion-home {
    height: auto;
    min-height: auto;
    padding: 2.6rem 1rem;
  }

  .home-page .about-motivacion-home__inner {
    height: auto;
  }

  .home-page .about-motivacion-block {
    position: static;
    max-width: none;
    margin-bottom: 2rem;
  }

  .home-page .about-motivacion-block:last-child {
    margin-bottom: 0;
  }

  .hero__headline {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__logo {
    width: min(170px, 50vw);
  }

  .home-page .hero__headline {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.1rem;
  }

  .home-page .hero__copy {
    align-items: center;
    text-align: center;
  }

  .home-page .hero__logo {
    height: 170px;
    width: auto;
  }

  .news-row {
    flex-direction: column;
  }

  .news-track--home {
    width: 100%;
    flex-direction: column;
  }

  .news-track--home .news-card {
    flex: 1 1 auto;
    max-width: none;
  }

  .objectives-grid-nav {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .subpage-design.noticias-subpage .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .subpage-design.noticias-subpage .news-split-row,
  .subpage-design.noticias-subpage .news-split-row--media-left,
  .subpage-design.noticias-subpage .news-split-row--compact,
  .subpage-design.noticias-subpage .news-split-row--final {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .subpage-design.noticias-subpage .news-block-image img {
    height: 230px;
  }

  .subpage-design.noticias-subpage .news-detail {
    width: 100%;
  }

  .subpage-design.noticias-subpage .news-detail h3 {
    width: 100%;
  }

  .subpage-design.noticias-subpage .news-split-row__media--press img,
  .subpage-design.noticias-subpage .news-split-row__media--nec img {
    min-height: 200px;
    height: 200px;
  }
}

@media (min-width: 621px) and (max-width: 980px) {
  .objectives-grid-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 780px) {
  .page-content {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }

  .news-card {
    flex-basis: 50%;
  }

  .coordinators-grid {
    grid-template-columns: 1fr 1fr;
  }

  .objective-highlights {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 980px) {
  .subpage-design .sobre-scroll {
    padding: 3rem var(--section-pad-inline) 3.2rem;
  }

  .subpage-design .sobre-scroll__head,
  .subpage-design .sobre-scroll__stack,
  .subpage-design .sobre-scroll__references {
    width: 100%;
  }

  .subpage-design .sobre-scroll .objective-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .subpage-design.objectives-subpage .objectives-shell {
    padding: 3rem var(--section-pad-inline) 3.2rem;
  }

  .subpage-design.objectives-subpage .objectives-grid-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .subpage-design.noticias-subpage .news-grid {
    grid-template-columns: 1fr;
  }

  .subpage-design.coordinadores-subpage .coordinadores-grid-nav {
    grid-template-columns: 1fr;
  }

  .subpage-design.coordinadores-subpage .coordinador-detail__header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .subpage-design.motivacion-page .sobre-block__layout {
    grid-template-columns: 1fr;
  }

  .subpage-design.motivacion-page .sobre-scroll__stack > article.sobre-block:nth-of-type(even) .sobre-block__text,
  .subpage-design.motivacion-page .sobre-scroll__stack > article.sobre-block:nth-of-type(even) .about-media-figure {
    grid-column: auto;
    grid-row: auto;
  }

  .subpage-design.motivacion-page .about-media-figure {
    width: 80%;
    min-height: 144px;
  }

  .subpage-design.motivacion-page .about-media-figure img {
    min-height: 144px;
  }
}

@media (max-width: 620px) {
  .subpage-design .sobre-scroll .objective-highlights {
    grid-template-columns: 1fr;
  }

  .subpage-design.objectives-subpage .objectives-grid-nav {
    grid-template-columns: 1fr;
  }

  .subpage-design.coordinadores-subpage .coordinadores-shell {
    padding-top: 3rem;
    padding-bottom: 3.2rem;
  }

  .subpage-design.coordinadores-subpage .coordinator-card-nav {
    grid-template-columns: 1fr 72px;
  }

  .subpage-design.coordinadores-subpage .coordinator-card-nav__photo {
    width: 72px;
    height: 72px;
  }

  .subpage-design.coordinadores-subpage .coordinador-detail h3 {
    font-size: clamp(1.35rem, 7vw, 1.9rem);
  }

  .subpage-design.coordinadores-subpage .coordinador-detail__photo {
    width: 112px;
    height: 112px;
  }

  .subpage-design.coordinadores-subpage .coordinador-detail__role {
  font-size: 0.6rem;
    letter-spacing: 0.07em;
  }

  .subpage-design.coordinadores-subpage .coordinador-detail p.coordinador-detail__role {
  font-size: 0.58rem;
    letter-spacing: 0.06em;
  }

  .subpage-design.coordinadores-subpage .coordinador-detail p {
    font-size: 0.98rem;
    line-height: 1.4;
  }

  .subpage-design.coordinadores-subpage .coordinators-home-title {
    margin-bottom: 1.25rem;
  }

  .subpage-design.coordinadores-subpage .coordinators-home-title__main,
  .subpage-design.coordinadores-subpage .coordinators-home-title__sub {
    font-size: clamp(2rem, 7vw, 3rem);
  }
}

/* =========================
   FINANCIACIÓN subpage
   ========================= */

.financiacion-subpage {
  background: #ffffff;
}

.financiacion-page {
  padding: 4.2rem 0 0;
}

.financiacion-subpage .hero-metrics {
  height: 120px;
  background: #0f1d26;
  display: flex;
  align-items: center;
  scroll-margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.financiacion-subpage .hero-metrics .container {
  margin: 0 auto;
  width: 100%;
}

.financiacion-subpage .hero-metrics .metrics {
  width: min(980px, 100%);
  margin: 0 auto;
  border: 0;
  padding: 0;
  align-items: center;
  grid-template-columns: minmax(250px, 330px) 1fr;
}

.financiacion-subpage .hero-metrics .metrics--breakdown .pill {
  border: 0;
  border-right: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

.financiacion-subpage .hero-metrics .metrics--breakdown .pill--total {
  border: 0;
  border-radius: 0;
  padding: 0.5rem 0.7rem;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.financiacion-subpage .hero-metrics .metrics-breakdown {
  border: 0;
  border-radius: 0;
  padding: 0.12rem 0.55rem;
  height: auto;
  display: flex;
  align-items: center;
}

.financiacion-subpage .hero-metrics .metrics-breakdown__items {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.15rem;
  width: 100%;
  align-items: center;
}

.financiacion-subpage .hero-metrics .metrics-breakdown__items::before {
  content: "+";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.financiacion-subpage .hero-metrics .metrics--breakdown .pill--part {
  padding: 0.2rem 0.55rem;
}

.financiacion-subpage .hero-metrics .metrics--breakdown .pill--part .pill__title {
  font-size: 0.58rem;
  font-weight: 400;
}

.financiacion-subpage .hero-metrics .metrics--breakdown .pill--part .pill__value {
  font-size: 0.98rem;
  font-weight: 500;
}

.financiacion-subpage .hero-metrics .metrics--breakdown .pill--total .pill__title {
  font-size: 0.64rem;
  font-weight: 400;
}

.financiacion-subpage .hero-metrics .metrics--breakdown .pill--total .pill__value {
  font-size: 1.3rem;
  font-weight: 500;
}

.financiacion-subpage .hero-metrics .pill {
  background: transparent;
  border: 0;
  border-right: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0.15rem 0.6rem;
  text-align: center;
}

.financiacion-subpage .hero-metrics .pill__title {
  font-family: "Space Grotesk", sans-serif;
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  line-height: 1.15;
}

.financiacion-subpage .hero-metrics .pill__value {
  font-family: "Space Grotesk", sans-serif;
  color: #ffffff;
  font-size: 1.24rem;
  font-weight: 500;
  margin-top: 0.34rem;
  line-height: 1.08;
}

.financiacion-page__inner {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.financiacion-subpage .coordinators-home-title,
.financiacion-subpage .coordinators-home-title__main,
.financiacion-subpage .coordinators-home-title__sub {
  color: #000000;
}

.financiacion-subpage .coordinators-home-title {
  margin: 0 auto 1.5rem;
}

.financiacion-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.95rem;
}

.financiacion-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  border-radius: 16px;
  padding: 1rem;
  text-decoration: none;
  background: linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(90deg, #1b4d9f 0%, #5eb0d6 100%) border-box;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.financiacion-logo-card:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 28px -20px rgba(13, 50, 105, 0.42);
}

.financiacion-logo-card img {
  max-width: 100%;
  max-height: 74px;
  object-fit: contain;
}

.financiacion-hashtag-block {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  max-width: 680px;
  margin-top: 2.4rem;
}

.financiacion-intro-text {
  color: #081225;
  margin: 1.8rem auto 0;
  max-width: 980px;
  text-align: center;
  line-height: 1.45;
  font-size: 1rem;
  font-weight: 400;
}

.financiacion-intro-text strong {
  color: #0d2b5a;
  font-weight: 700;
}

.financiacion-hashtag-block__logo {
  width: min(192px, 22.4vw);
  height: auto;
  flex: 0 0 auto;
  margin-right: 1.2rem;
}

.financiacion-hashtag-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.35rem;
}

.financiacion-hashtag {
  margin: 0;
  color: #081225;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.financiacion-hashtag--bold {
  font-weight: 700;
}

.financiacion-amount-module {
  margin: 2.4rem auto 0;
}

.funding-band-link {
  display: inline-block;
  transition: transform 0.22s ease;
}

.funding-band-link:hover {
  transform: scale(1.04);
}

@media (max-width: 680px) {
  .financiacion-page {
    padding-top: 3rem;
    padding-bottom: 3.2rem;
  }

  .financiacion-grid {
    grid-template-columns: 1fr;
  }

  .financiacion-logo-card {
    min-height: 116px;
  }

  .financiacion-hashtag-block__logo {
    width: min(152px, 56vw);
  }

  .financiacion-hashtag-block {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .financiacion-hashtag-list {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 1040px) {
  .lang-switch {
    margin-right: 0;
  }

  .home-page #noticias {
    height: auto;
    min-height: 0;
    padding: 2.8rem var(--section-pad-inline);
    align-items: flex-start;
  }

  .subpage-design .site-footer.site-footer--main {
    height: auto;
    min-height: 0;
    padding: 2.8rem var(--section-pad-inline);
  }

  .subpage-design .site-footer__inner {
    grid-template-columns: 1fr;
    height: auto;
    gap: 1.2rem;
  }

  .subpage-design .site-footer__content {
    padding-left: 0;
  }

  .subpage-design .site-footer__headline {
    font-size: clamp(2rem, 6.4vw, 3rem);
  }

  .subpage-design .site-footer__logos {
    justify-self: start;
    align-items: flex-start;
    margin-bottom: 0.8rem;
  }

  .subpage-design .site-footer__logos-top,
  .subpage-design .site-footer__logos-row {
    width: min(385px, 100%);
  }

  .subpage-design .site-footer__to-top {
    position: static;
    margin: 1.2rem 0 0 auto;
  }
}

@media (max-width: 620px) {
  .site-header__inner {
    gap: 0.55rem;
    padding: 0.45rem 0 0.55rem;
  }

  .site-header__inner nav {
    order: 3;
    flex: 1 0 100%;
  }

  .site-logo {
    width: 118px;
    min-width: 118px;
    height: 32px;
  }

  .site-nav {
    gap: 0.55rem 0.8rem;
  }

  .site-nav a {
    font-size: 0.68rem;
    letter-spacing: 0.035em;
  }

  .home-page #noticias {
    padding: 2.4rem var(--section-pad-inline);
  }

  .home-page #coordinadores {
    min-height: 0;
    padding: 2.4rem var(--section-pad-inline);
  }

  .home-page .news-card {
    width: 100%;
    max-width: none;
    min-height: 0;
  }

  .home-page .news-card__image {
    min-height: 190px;
  }

  .home-page .funding-module {
    height: auto;
    min-height: 0;
    padding: 1.8rem 0;
  }

  .subpage-design .site-footer__nav {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .subpage-design .footer-funding {
    height: auto;
    min-height: 0;
    padding: 0.9rem var(--section-pad-inline);
  }

  .subpage-design .footer-funding__note {
    font-size: 0.72rem;
    line-height: 1.35;
  }
}

/* =========================
   Responsive hardening
   ========================= */

@media (max-width: 1040px) {
  .subpage-design .multimedia-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html,
  body {
    overflow-x: hidden;
  }

  .home-page .hero {
    height: auto;
    min-height: 0;
    padding: 2.2rem 0 2.1rem;
  }

  .home-page .hero__inner {
    height: auto;
    padding: 0 1.25rem;
  }

  .home-page .hero__headline {
    gap: 1.35rem;
  }

  .home-page .objectives-home-title,
  .home-page .news-home-title,
  .home-page #noticias .news-row {
    padding-left: 0;
  }

  .home-page .objectives-home-title,
  .home-page .news-home-title {
    margin-bottom: 1.35rem;
    line-height: 1.02 !important;
    font-size: clamp(2rem, 6.2vw, 3rem) !important;
  }

  .home-page .goals-grid-home {
    justify-content: stretch;
  }

  .home-page .goal-card-home {
    width: 100%;
    height: auto;
    min-height: 170px;
  }

  .subpage-design .site-header__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
  }

  .subpage-design .site-header__inner nav {
    flex: 1 0 100%;
    order: 3;
  }

  .subpage-design .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem 0.9rem;
  }
}

@media (max-width: 680px) {
  .financiacion-subpage .hero-metrics {
    height: auto;
    min-height: 0;
    padding: 0.75rem 0;
  }

  .financiacion-subpage .hero-metrics .metrics {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .financiacion-subpage .hero-metrics .metrics--breakdown .pill--total {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding-bottom: 0.55rem;
  }
}

@media (max-width: 620px) {
  .subpage-design .multimedia-grid {
    grid-template-columns: 1fr;
  }

  .subpage-design .multimedia-card__trigger {
    gap: 0.65rem;
  }

  .subpage-design .multimedia-card__thumb img {
    height: 180px;
  }

  .site-header__inner {
    min-height: auto;
  }

  html,
  body {
    overflow-y: auto;
    overscroll-behavior-y: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }

  .lang-switch {
    width: 64px;
    height: 32px;
  }

  .lang-switch::before {
    width: 26px;
    height: 26px;
  }

  .lang-switch.is-en::before {
    transform: translateX(32px);
  }

  .home-page .hero__inner {
    padding: 0 1rem;
  }

  .home-page .hero__headline {
    gap: 0.95rem;
  }

  .home-page .hero__logo {
    height: 140px;
    width: auto;
  }

  .home-page h1 {
    font-size: clamp(1.45rem, 8vw, 2rem);
    line-height: 1.02;
  }

  .home-page .about-motivacion-block h2 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .home-page .goal-card-home__text {
    font-size: 0.98rem;
  }

  .home-page #coordinadores .coordinators-home-title {
    padding-left: 0;
    margin-bottom: 1.1rem;
  }

  .home-page #coordinadores .coordinators-home-title__main,
  .home-page #coordinadores .coordinators-home-title__sub {
    font-size: clamp(2rem, 9vw, 2.6rem);
    line-height: 1.02;
  }

  .home-page #coordinadores .coordinators-grid {
    padding-left: 0;
    gap: 0.8rem;
  }

  .home-page .person-card.person-card--home {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .home-page .avatar-slot.avatar-slot--photo {
    width: 100%;
    height: 170px;
    justify-self: stretch;
  }

  .home-page .site-footer.site-footer--main {
    height: auto;
    min-height: 0;
    padding: 2rem var(--section-pad-inline);
    align-items: flex-start;
  }

  .home-page .site-footer__inner {
    grid-template-columns: 1fr;
    height: auto;
    gap: 1rem;
    align-items: start;
  }

  .home-page .site-footer__content {
    padding-left: 0;
  }

  .home-page .site-footer__headline {
    font-size: clamp(1.55rem, 8.2vw, 2.1rem);
    line-height: 1.18;
  }

  .home-page .site-footer__nav {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    margin-top: 1.2rem;
  }

  .home-page .site-footer__logos {
    justify-self: start;
    align-items: flex-start;
    margin-bottom: 0;
    padding-right: 0;
  }

  .home-page .site-footer__logos-top,
  .home-page .site-footer__logos-row {
    width: min(320px, 100%);
  }

  .home-page .site-footer__logos-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-page .site-footer__logo-slot {
    width: auto;
  }

  .home-page .site-footer__logo-slot + .site-footer__logo-slot {
    margin-left: 0;
  }

  .home-page .site-footer__to-top {
    display: none;
  }

  .home-page .footer-funding {
    height: auto;
    min-height: 0;
    padding: 0.9rem var(--section-pad-inline);
  }

  .home-page .footer-funding__note {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .subpage-design .site-nav a {
    font-size: 0.68rem;
    letter-spacing: 0.035em;
  }

  .subpage-design.noticias-subpage .news-card-nav {
    padding: 0.85rem;
  }

  .subpage-design.noticias-subpage .news-card-nav h3 {
    font-size: 1.12rem;
  }

  .subpage-design.noticias-subpage .news-detail-panel {
    padding: 0.9rem;
  }

  .subpage-design.noticias-subpage .news-lead-media img {
    height: 220px;
  }

  .subpage-design.noticias-subpage .news-split-row__media img,
  .subpage-design.noticias-subpage .news-split-row__media--press img,
  .subpage-design.noticias-subpage .news-split-row__media--nec img,
  .subpage-design.noticias-subpage .news-split-row--final .news-split-row__media img {
    height: 210px;
    min-height: 210px;
  }
}

/* Multimedia mobile-first refinements (desktop untouched) */
@media (max-width: 980px) {
  .subpage-design.multimedia-page .sobre-scroll {
    padding-top: 2.6rem;
    padding-bottom: 2.8rem;
  }

  .subpage-design.multimedia-page .sobre-scroll__head h1 {
    margin: 0.2rem 0 1.55rem;
    line-height: 1;
  }

  .subpage-design.multimedia-page .multimedia-grid {
    margin-top: 1.2rem;
    gap: 0.85rem;
  }

  .subpage-design.multimedia-page .multimedia-card__thumb img {
    height: 142px;
  }

  .subpage-design.multimedia-page .multimedia-detail-panel {
    margin-top: 0.9rem;
    padding: 0.82rem;
  }
}

@media (max-width: 620px) {
  .subpage-design.multimedia-page .sobre-scroll {
    padding-top: 2.35rem;
    padding-bottom: 2.6rem;
  }

  .subpage-design.multimedia-page .sobre-scroll__head h1 {
    margin: 0 0 1.25rem;
    font-size: clamp(1.7rem, 10vw, 2.2rem);
  }

  .subpage-design.multimedia-page .multimedia-card__trigger {
    padding: 0.7rem;
    gap: 0.55rem;
  }

  .subpage-design.multimedia-page .multimedia-card__thumb img {
    height: 170px;
  }

  .subpage-design.multimedia-page .multimedia-card__footer {
    align-items: flex-start;
    gap: 0.7rem;
  }

  .subpage-design.multimedia-page .multimedia-card__footer h4 {
    font-size: 0.9rem;
    line-height: 1.28;
  }

  .subpage-design.multimedia-page .multimedia-card__plus {
    width: 26px;
    height: 26px;
  }

  .subpage-design.multimedia-page .multimedia-detail h3 {
    margin: 0.72rem 0 0.48rem;
    font-size: 1rem;
    line-height: 1.22;
  }

  .subpage-design.multimedia-page .multimedia-detail p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .subpage-design.multimedia-page .multimedia-summary-cta {
    margin-top: 1rem;
  }

  .subpage-design.multimedia-page .multimedia-summary-cta .button-link {
    display: inline-flex;
    justify-content: center;
    min-height: 40px;
    padding: 0.68rem 0.95rem;
  }
}

@media (max-width: 420px) {
  .subpage-design.multimedia-page .multimedia-card__thumb img {
    height: 154px;
  }

  .subpage-design.multimedia-page .multimedia-detail p {
    font-size: 0.9rem;
  }

  .subpage-design.multimedia-page .multimedia-summary-cta .button-link {
    width: 100%;
  }
}
