/* =========================================================================
   Gippsland Events — minimal functional base.
   Intentionally plain: the developer owns the visual design. Class names are
   styling hooks only. Replace freely.
   ========================================================================= */
* { box-sizing: border-box; }
body {
  margin: 0; max-width: 760px; padding: 1rem; margin-left: auto; margin-right: auto;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #1a1a1a; line-height: 1.5;
}

.site-header h1 { font-size: 1.5rem; margin: .5rem 0 1rem; }

/* Filters */
.filters { display: flex; flex-wrap: wrap; gap: .75rem 1rem; align-items: flex-end; margin-bottom: 1rem; }
.filter { display: flex; flex-direction: column; gap: .2rem; }
.filter label { font-size: .75rem; color: #555; }
.filter--ongoing label { flex-direction: row; align-items: center; gap: .35rem; font-size: .85rem; }
.filters select, .filters input[type="search"] { padding: .4rem .5rem; border: 1px solid #ccc; border-radius: 6px; font-size: .9rem; }
.filters__clear { padding: .45rem .7rem; border: 1px solid #ccc; background: #fff; border-radius: 6px; cursor: pointer; }

.result-count { color: #666; font-size: .85rem; margin: 0 0 1rem; }

/* Feed */
.event-list { list-style: none; margin: 0; padding: 0; }
.group-header { font-size: 1.1rem; font-weight: 700; margin: 1.5rem 0 .5rem; color: #333; }
.event-card { padding: .75rem 0; border-bottom: 1px solid #eee; }
.event-card__date { font-size: .85rem; font-weight: 600; color: #b45309; }
.event-card__title { font-size: 1.1rem; margin: .15rem 0; }
.event-card__title a { color: #1d4ed8; text-decoration: none; }
.event-card__title a:hover { text-decoration: underline; }
.event-card__time, .event-card__venue { font-size: .85rem; color: #555; }
.event-card__description { font-size: .9rem; color: #333; margin: .4rem 0; }
.event-card__meta { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; }
.event-card__category, .event-card__price, .event-card__repeat {
  font-size: .72rem; padding: .15rem .5rem; border-radius: 999px; background: #eef2f7; color: #475569;
}
.event-card__price { background: #ecfdf5; color: #047857; }
/* Donation: a soft gold "$" — a hint of coin, not a heavy badge. */
.event-card__price--donation {
  background: radial-gradient(circle at 38% 32%, #fdf6e3, #f3e3b3);
  color: #9c7d2e; font-weight: 600;
  min-width: 1.5em; padding: .15rem .35rem; text-align: center;
  box-shadow: inset 0 0 0 1px rgba(156, 125, 46, .14);
}

/* States */
.state { padding: 1.25rem; text-align: center; color: #6b7280; }
.sentinel { height: 1px; }
