/* ==========================================================================
   The Hmong Inc. — Community Events (program detail), v1 draft
   Device of its own: a YEAR LIST of events, each a wide row led by a month
   block, with the festival pulled out as a lead card above it. Closes on a
   photo strip of past gatherings.
   Reference: Wing Luke's repeated event rows, Folklife's calendar.
   Light register, shared type scale. Extends styles.css.
   ========================================================================== */

.crumb {
  font-family: var(--ui); font-variation-settings: "wdth" 100, "wght" 600;
  font-size: .74rem; letter-spacing: .11em; text-transform: uppercase;
  color: var(--secondary); display: flex; gap: .55rem; align-items: center; margin: 0 0 1.6rem; flex-wrap: wrap;
}
.crumb a { color: var(--secondary); text-decoration: none; }
.crumb a:hover { color: var(--green-ink); }
.crumb span { color: var(--hair-strong); }
.crumb b { font-variation-settings: "wdth" 100, "wght" 700; color: var(--ink); }

.pgh { padding-block: clamp(52px, 7vw, 104px) clamp(36px, 4.5vw, 60px); }
.pgh__grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 88px); align-items: end; }
@media (max-width: 900px) { .pgh__grid { grid-template-columns: 1fr; gap: 2rem; } }
.pgh .d1 { font-size: clamp(2.6rem, 5.8vw, 4.8rem); }
.pgh__side { color: var(--secondary); max-width: 36ch; }

/* --- the lead: the festival, pulled out above the year list --------------- */
.lead-event { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: clamp(30px, 4vw, 64px); align-items: center; }
@media (max-width: 900px) { .lead-event { grid-template-columns: 1fr; gap: 1.8rem; } }
.lead-event__media { margin: 0; }
.lead-event__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 4px; }
.lead-event__flag {
  display: inline-block; margin-bottom: .9rem;
  font-family: var(--ui); font-variation-settings: "wdth" 100, "wght" 800;
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: #fff;
  background: var(--crimson); padding: .38em .7em; border-radius: 3px;
}
.lead-event__when { font-family: var(--ui); font-variation-settings: "wdth" 100, "wght" 700;
  font-size: 1rem; color: var(--green-ink); margin: .9rem 0 0; font-variant-numeric: lining-nums; }
.lead-event__ctas { display: flex; gap: .8rem 1.4rem; flex-wrap: wrap; align-items: center; margin-top: 1.6rem; }

/* --- the year list -------------------------------------------------------- */
.yearlist { list-style: none; margin: clamp(30px,4vw,50px) 0 0; padding: 0; border-top: 1px solid var(--hair-strong); }
.yearlist > li { border-bottom: 1px solid var(--hair); }
.ev {
  display: grid; grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 44px); align-items: center;
  padding-block: clamp(20px, 2.4vw, 30px);
}
@media (max-width: 760px) { .ev { grid-template-columns: 76px minmax(0,1fr); gap: 14px 20px; align-items: start; } .ev__go { grid-column: 2; justify-self: start; } }
.ev__mo {
  display: grid; place-items: center; gap: .1rem; padding: .55rem 0 .6rem;
  border: 1px solid var(--hair-strong); border-radius: 4px; background: var(--card);
}
.ev__mo b { font-family: var(--display); font-variation-settings: "wdth" 68, "wght" 850;
  text-transform: uppercase; font-size: .95rem; letter-spacing: .04em; color: var(--ink); }
.ev__mo i { font-family: var(--ui); font-style: normal; font-variation-settings: "wdth" 100, "wght" 600;
  font-size: .68rem; letter-spacing: .12em; color: var(--secondary); font-variant-numeric: lining-nums; }
.ev__t { font-family: var(--display); font-variation-settings: "wdth" 72, "wght" 800;
  text-transform: uppercase; font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--ink); margin: 0 0 .35rem; }
.ev__d { color: var(--secondary); font-size: 1rem; line-height: 1.5; margin: 0; }
.ev__go { font-family: var(--ui); font-variation-settings: "wdth" 100, "wght" 700;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--secondary); white-space: nowrap; }

/* --- photo strip ---------------------------------------------------------- */
.strip { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: clamp(12px, 1.6vw, 20px); }
@media (max-width: 820px) { .strip { grid-template-columns: 1fr 1fr; } }
.strip img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 4px; }
