body[data-page="que-es"] {
  /* Estilos específicos de la página que explica el concepto Metalink. */
  background:
    linear-gradient(115deg, rgba(246, 196, 0, 0.1), transparent 32%),
    var(--paper);
}

.about-hero {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100% - var(--max)) / 2));
  padding-right: max(18px, calc((100% - var(--max)) / 2));
  padding-top: 34px;
  padding-bottom: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.72fr);
  gap: 26px;
  align-items: center;
  background:
    linear-gradient(115deg, rgba(246, 196, 0, 0.1), transparent 34%),
    #ffffff;
  border-bottom: 1px solid rgba(6, 6, 6, 0.08);
}
.about-hero-copy {
  align-self: start;
}

.about-hero-copy h1 {
  max-width: 830px;
}

.about-hero-copy p:last-child {
  max-width: 700px;
  margin-top: 14px;
  color: var(--muted-dark);
  font-size: 18px;
  line-height: 1.6;
}

.name-panel {
  /* Bloque negro del nombre: concentra Meta/Metal + Link sin tarjetas pesadas. */
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  padding: 24px;
  color: var(--white);
  background: #000000;
  border: 1px solid rgba(246, 196, 0, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.name-panel span,
.problem-grid span {
  display: block;
  color: var(--yellow);
  font-weight: 950;
}

.name-panel h2 {
  font-size: clamp(42px, 5.4vw, 68px);
  line-height: 0.94;
}

.name-panel p {
  max-width: 520px;
  color: var(--muted);
}

.name-panel dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 14px;
}

.name-panel dl div {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.name-panel dt {
  margin-bottom: 8px;
  color: var(--yellow);
  font-weight: 950;
}

.name-panel dd {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.28;
  text-wrap: pretty;
}

.problem-grid {
  /* Mapa de problemas que Metalink busca simplificar. */
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.problem-map {
  padding-top: 26px;
}

.problem-grid article {
  min-height: 176px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.problem-card {
  grid-column: span 3;
}

.problem-card-wide {
  grid-column: span 4;
  min-height: 230px;
}

.problem-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 12px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--yellow);
  border: 1px solid rgba(6, 6, 6, 0.08);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(246, 196, 0, 0.22);
}

.problem-grid .problem-icon {
  display: grid;
  place-items: center;
  color: var(--black);
}

.problem-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-card-wide .problem-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  background: rgba(246, 196, 0, 0.16);
  border-color: rgba(246, 196, 0, 0.34);
  box-shadow: none;
}

.problem-card-wide .problem-icon svg {
  width: 35px;
  height: 35px;
}

.problem-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.1;
}

.problem-grid p,
.problem-grid li,
.solution-lines p {
  color: var(--muted-dark);
}

.problem-grid ul {
  display: grid;
  gap: 12px;
  padding-left: 18px;
  line-height: 1.55;
}

.solution-lines {
  display: grid;
  gap: 12px;
}

.solution-lines div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.solution-lines b {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 21px;
}

.solution-lines p {
  color: var(--muted);
}

.solution-impact .section-grid {
  align-items: center;
}

.solution-impact h2 {
  max-width: 560px;
}

.impact-list {
  display: grid;
  gap: 12px;
}

.impact-list p {
  min-height: 60px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.28;
}

.impact-list strong {
  color: var(--yellow);
}

.impact-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--yellow);
  border: 1px solid rgba(246, 196, 0, 0.52);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 950;
}

.impact-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.impact-copy {
  display: block;
}

.impact-closing {
  border-left: 3px solid var(--yellow);
}

@media (max-width: 980px) {
  .about-hero {
    grid-template-columns: 1fr;
  }

  .problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem-card,
  .problem-card-wide {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .name-panel dl {
    grid-template-columns: 1fr;
  }
}
