/* ============================================================
   FRONT — front page / hero spread.
   Asymmetric broadsheet: headline column + bleeding photo plate
   with an overlapping rotated sello (sponsor stamp).
   ============================================================ */

.front {
  position: relative;
  padding-top: clamp(36px, 5vw, 72px);
  padding-bottom: var(--rhythm);
  overflow: hidden;
}

.front__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(28px, 4vw, 72px);
  align-items: end;
}

/* — headline column — */
.front__text { min-width: 0; }

.front__head {
  margin-top: 1.4rem;
  /* hand-set: the headline hangs a touch into the left margin */
  margin-left: -0.04em;
}
.front__head .accent { display: inline; }

.front__copy {
  margin-top: 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.front__copy p { margin: 0; }
.front__copy .standfirst:last-of-type {
  font-size: 1rem;
  color: var(--ink-faint);
  max-width: 46ch;
}

.front__cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1rem;
  align-items: center;
}

/* cobertura micro-strip — real fixture terms set as a running line */
.front__cover {
  margin-top: 2.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6ch 1.4ch;
  font-family: var(--display);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.front__cover span { white-space: nowrap; }
.front__cover span + span::before {
  content: "·";
  color: var(--ember);
  margin-right: 1.4ch;
}

/* — photo plate column — */
.front__visual { position: relative; align-self: stretch; }

.front__plate {
  position: relative;
  height: 100%;
  min-height: clamp(360px, 42vw, 560px);
}
.front__plate img {
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 42vw, 560px);
  object-fit: cover;
  object-position: 50% 28%;
  box-shadow: var(--shadow-plate);
  /* ink wash bottom so caption + stamp sit on the photo */
  -webkit-mask-image: linear-gradient(180deg, #000 78%, rgba(0,0,0,0.92) 100%);
          mask-image: linear-gradient(180deg, #000 78%, rgba(0,0,0,0.92) 100%);
}
.front__plate figcaption {
  position: absolute;
  left: 0; bottom: -1.9rem;
}

/* sello — sponsor stamp, slightly rotated, overlapping the plate */
.sello {
  position: absolute;
  top: clamp(-14px, -1vw, -6px);
  left: clamp(-18px, -2vw, -10px);
  transform: rotate(-5deg);
  background: var(--night);
  border: 2px solid var(--ember);
  padding: 0.7rem 1rem 0.6rem;
  box-shadow: 0 12px 30px -14px rgba(0,0,0,0.9);
  max-width: 17ch;
}
.sello__line {
  display: block;
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.sello__name {
  display: block;
  margin-top: 0.15rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ember);
  line-height: 1.05;
}

/* ===== mobile ===== */
@media (max-width: 880px) {
  .front__grid {
    grid-template-columns: 1fr;
    gap: clamp(34px, 9vw, 52px);
  }
  .front__visual { order: -1; }
  .front__head { margin-top: 1rem; }
  .front__plate, .front__plate img { min-height: clamp(300px, 70vw, 460px); }
  .front__plate figcaption { position: static; margin-top: 2.4rem; }
  .front__copy .standfirst,
  .front__copy .standfirst:last-of-type { max-width: none; }
}

@media (max-width: 520px) {
  .sello { transform: rotate(-4deg) scale(0.92); }
  .front__cta .ticket { flex: 1 1 100%; justify-content: center; }
}
