/* === City Guide =============================================================
   A guide is judged on whether someone can act on it, so the page is built
   around answers rather than headings that promise them.
   ========================================================================== */

.icrt-guide { padding: 2rem 0 3.5rem; }

.icrt-guide__head { max-width: 46rem; margin-bottom: 2rem; }

.icrt-guide__eyebrow {
  margin: 0 0 .5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--icrt-accent);
}

.icrt-guide__title {
  margin: 0 0 .75rem;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.icrt-guide__lead { margin: 0; font-size: 1.05rem; line-height: 1.6; color: var(--icrt-ink-soft); }

/* --- first week ------------------------------------------------------------
   The one thing a newcomer wants before they want anything else, so it sits
   above the reference material rather than under it. */

.icrt-guide__week {
  margin: 2.5rem 0 2.5rem;
  padding: 1.5rem 1.75rem 1.25rem;
  border-radius: 16px;
  background: var(--icrt-mist);
  color: var(--icrt-ink);
}

.icrt-guide__weekTitle {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--icrt-ink);
}

.icrt-week {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  counter-reset: none;
}

.icrt-week__step { display: flex; align-items: flex-start; gap: .75rem; }

.icrt-week__n {
  flex: 0 0 auto;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: var(--icrt-muted);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.icrt-week__text {
  font-size: .95rem;
  line-height: 1.5;
  color: var(--icrt-ink);
}

/* --- the reference sections ------------------------------------------------ */

.icrt-guide__cols {
  display: grid;
  gap: 1.75rem;
  align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
}

.icrt-guide__section {
  min-width: 0;
  padding: 0;
  border: 0;
  border-top: 1px solid var(--icrt-line);
  border-radius: 0;
  background: none;
}

.icrt-guide__sectionTitle {
  margin: 1.1rem 0 .5rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 0;
  border: 0;
}

.icrt-guide__sectionBlurb {
  margin: .75rem 0 1.25rem;
  font-size: .92rem;
  line-height: 1.55;
  color: var(--icrt-ink-soft);
}

.icrt-guide__list { margin: 0; }

.icrt-guide__term {
  margin: 0 0 .25rem;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.35;
}

.icrt-guide__detail {
  margin: 0 0 1.1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--icrt-line);
  font-size: .89rem;
  line-height: 1.6;
  color: var(--icrt-ink-soft);
}

.icrt-guide__list > .icrt-guide__detail:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }

/* --- closing call ----------------------------------------------------------- */

.icrt-guide__cta {
  margin: 2.5rem 0 0;
  padding: 1.5rem 1.75rem;
  border: 0;
  border-radius: 16px;
  background: var(--icrt-mist);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.icrt-guide__ctaTitle { margin: 0 0 .3rem; font-size: 1.25rem; letter-spacing: -.01em; }
.icrt-guide__ctaBody { margin: 0; color: var(--icrt-ink-soft); font-size: .95rem; max-width: 46rem; }
