/* ============================================================
   DESCARGA — "Cómo descargar" instructional spread.
   Different anatomy from FRONT: full-bleed plate, then an
   asymmetric body — Android procedure (hanging jersey numerals)
   beside an iOS ficha (bordered side note).
   ============================================================ */

.descarga {
  border-top: 1px solid var(--rule);
  padding-block: var(--rhythm);
}

.descarga__head { max-width: 40ch; }
.descarga__head h2 { margin-top: 1rem; }
.descarga__head .standfirst { margin-top: 1rem; }

/* full-bleed photo plate between header and body */
.descarga__plate {
  margin-top: clamp(28px, 4vw, 56px);
}
.descarga__plate img {
  width: 100%;
  height: clamp(340px, 46vw, 620px);
  object-fit: cover;
  object-position: 50% 22%;
}

/* body: procedure | ficha — uneven split */
.descarga__body {
  margin-top: clamp(34px, 4vw, 60px);
  display: grid;
  grid-template-columns: 1.45fr 0.8fr;
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
}

/* OS heading (Android) */
.descarga__os {
  display: flex;
  align-items: baseline;
  gap: 1ch;
  padding-bottom: 0.9rem;
  border-bottom: 2px solid var(--ember-line);
}
.descarga__os_name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.descarga__os_tag {
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.descarga__lead {
  margin: 1.3rem 0 0;
  color: var(--ink-soft);
  max-width: 52ch;
}

/* procedure — numbered steps with hanging condensed numerals */
.procedure {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
}
.procedure__step {
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: 0.6rem 1.2rem;
  align-items: baseline;
  padding: 1.05rem 0;
  border-top: 1px solid var(--rule);
}
.procedure__step:first-child { border-top: 0; }
.procedure__no {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 0.8;
  color: var(--ember);
  /* outline-ish stadium numeral */
  -webkit-text-stroke: 0;
}
.procedure__step p { margin: 0; color: var(--ink); }

.note-inline {
  margin: 1.4rem 0 0;
  padding-left: 1rem;
  border-left: 2px solid var(--ember-line);
  font-size: 0.92rem;
  color: var(--ink-faint);
  max-width: 50ch;
}

.descarga__main .ticket { margin-top: 1.8rem; }

/* iOS ficha — bordered side card with an ember kit-bar on top */
.ficha {
  position: relative;
  border: 1px solid var(--rule-strong);
  background: var(--night-2);
  padding: clamp(1.4rem, 2.4vw, 2.1rem);
}
.ficha::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--ember);
}
.ficha__os {
  display: flex;
  align-items: baseline;
  gap: 1ch;
  margin-bottom: 1rem;
}
.ficha__os_name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  text-transform: uppercase;
}
.ficha__os_tag {
  font-family: var(--display);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.ficha p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }
.ficha .ticket { margin-top: 1.5rem; }

/* ===== mobile ===== */
@media (max-width: 880px) {
  .descarga__body { grid-template-columns: 1fr; gap: clamp(28px, 8vw, 44px); }
  .descarga__head { max-width: none; }
}
@media (max-width: 520px) {
  .procedure__step { grid-template-columns: 2.6rem 1fr; }
  .procedure__no { font-size: 2rem; }
  .descarga__main .ticket,
  .ficha .ticket { width: 100%; justify-content: center; }
}
