/* =========================================================================
   Clubabend / Club night — "run-of-night" layout signature
   Page flourishes only. Base tokens & components live in styles.css.
   ========================================================================= */

/* Hero — broadsheet lead with accent top rule under the masthead headline */
.clubabend-hero { border-bottom: 1px solid var(--rule); }
.clubabend-hero h1 { max-width: 18ch; }
.clubabend-hero .answer { max-width: 46rem; }

/* Make the double rule respect the container gutters */
hr.rule-double.container { max-width: var(--container); }

/* Run-of-night timeline — features list with a vertical thread + numeral chips */
.runofnight__steps { counter-reset: step; gap: 0; }
.runofnight__steps > li {
  position: relative;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--rule);
}
.runofnight__steps > li:first-child { border-top: 3px solid var(--ink); }
.runofnight__steps .no {
  display: grid;
  place-items: center;
  width: 2.6rem; height: 2.6rem;
  border: 2px solid var(--accent);
  border-radius: 50%;
  font-size: 1.35rem;
  background: var(--card);
}
.runofnight__steps .step__kicker {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .15rem;
}
.runofnight__steps h3 { margin-bottom: .35rem; }
.runofnight__steps p { color: var(--body); margin-top: 0; }

/* Vertical thread connecting the numerals */
@media (min-width: 35rem) {
  .runofnight__steps > li::before {
    content: "";
    position: absolute;
    left: 1.3rem;
    top: 4.1rem;
    bottom: -1.5rem;
    width: 2px;
    background: var(--rule-strong);
    z-index: 0;
  }
  .runofnight__steps > li:last-child::before { display: none; }
  .runofnight__steps .no { position: relative; z-index: 1; }
}

/* Play-scene photo under the timeline */
.runofnight__media { margin-top: clamp(1.8rem, 4vw, 2.8rem); }
.runofnight__media figcaption { margin-top: .7rem; font-family: var(--mono); font-size: .78rem; letter-spacing: .03em; color: var(--muted); }

/* Hours & access — broadsheet <dl> as a ruled grid of cards */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  border: 1px solid var(--rule-strong);
  border-bottom: 0;
  background: var(--card);
}
.hours-grid__item {
  padding: 1.4rem 1.3rem;
  border-bottom: 1px solid var(--rule-strong);
  border-right: 1px solid var(--rule);
}
.hours-grid dt {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.hours-grid__val {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 1.9rem);
  color: var(--accent);
  line-height: 1.1;
  margin: .3rem 0 .5rem;
}
.hours-grid__note { color: var(--body); font-size: .95rem; }
@media (min-width: 46rem) {
  /* drop the right rule on the last column of each row visually via nth */
  .hours-grid__item:nth-child(even) { border-right: 0; }
}

/* Tasteful Augsburg green accent: every other hours card picks up green */
.hours-grid__item:nth-child(even) .hours-grid__val { color: var(--green); }

/* "Was du mitbringst" — checklist gets a little broadsheet padding */
.bring-list li { line-height: 1.5; }
.bring-list + p a { color: var(--accent); }

/* Anfahrt card */
.anfahrt__card { background: var(--card); border: 1px solid var(--rule); border-top: 3px solid var(--ink); padding: clamp(1.2rem, 3vw, 1.7rem); }
.anfahrt__card .nap-name { font-family: var(--serif); font-weight: 700; color: var(--ink); font-size: 1.1rem; }
.anfahrt__card address { font-style: normal; line-height: 1.6; }
