/* Additive helpers for the public worker. Does NOT alter approved design
   components — only covers states the static mockups didn't include
   (filled ad slots, empty-section spacing, search form reset). */

/* Filled advertiser banners: image covers the fixed slot, sizes unchanged. */
.banner-horizontal--filled,
.banner-300x600--filled,
.ad-incontent--filled { padding: 0; }
.banner-horizontal--filled img,
.banner-300x600--filled img,
.ad-incontent--filled img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Search overlay form should carry no default margins. */
#searchForm { margin: 0; }

/* Empty-state note reuse of post-meta spacing inside grids. */
.section-empty {
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  color: var(--grey-mid);
  letter-spacing: 0.06em;
  padding: 8px 0 28px;
}

/* ── EXPERT PICKS PAGE (relocated from design page-local <style>) ── */
.ep-header { margin-bottom: 28px; }
.ep-title-row { display: flex; align-items: baseline; gap: 20px; margin-top: 16px; }
.ep-title { font-family: var(--font-display); font-size: var(--fs-page); letter-spacing: 0.06em; color: var(--white); line-height: 1; }
.ep-subtitle { font-family: var(--font-mono); font-size: var(--fs-caption); color: var(--grey-mid); letter-spacing: 0.1em; text-transform: uppercase; }
.ep-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); gap: 16px; margin-top: 24px; }
.ep-card { background: var(--coal-card); border: 1px solid var(--coal-border); border-radius: var(--r-lg); overflow: hidden; transition: border-color var(--t-base), transform var(--t-fast); animation: fadeUp 0.5s ease both; }
.ep-card:hover { border-color: var(--grey-lo); transform: translateY(-3px); }
.ep-card-header { background: var(--coal-mid); padding: 12px 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--coal-border); }
.ep-league { font-family: var(--font-mono); font-size: var(--fs-sm); letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); transition: color var(--t-accent); }
.ep-time { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey-mid); }
.ep-matchup { display: flex; align-items: stretch; padding: 20px; gap: 0; }
.ep-team { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.ep-team--right { text-align: right; align-items: flex-end; }
.ep-team-name { font-family: var(--font-display); font-size: var(--fs-title); letter-spacing: 0.04em; color: var(--grey-hi); line-height: 1; }
.ep-team--pick .ep-team-name { color: var(--white); }
.ep-team-record { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--grey-mid); letter-spacing: 0.06em; }
.ep-pick-badge { display: inline-flex; align-items: center; gap: 4px; font-family: var(--font-mono); font-size: var(--fs-micro); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: var(--accent); color: #111; padding: 2px 8px; border-radius: var(--r-sm); width: fit-content; transition: background var(--t-accent); }
.ep-sep { display: flex; align-items: center; justify-content: center; padding: 0 16px; font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--grey-lo); }
.ep-confidence { padding: 0 20px 16px; }
.ep-conf-bar-wrap { height: 6px; background: var(--coal-border); border-radius: 3px; overflow: hidden; margin-bottom: 6px; }
.ep-conf-bar { height: 100%; background: var(--accent); border-radius: 3px; transition: background var(--t-accent); }
.ep-conf-labels { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: 0.06em; }
.ep-conf-fav { color: var(--accent); font-weight: 600; transition: color var(--t-accent); }
.ep-conf-dog { color: var(--grey-mid); }
.ep-details { padding: 14px 20px; border-top: 1px solid var(--coal-border); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.ep-spread { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--grey-mid); letter-spacing: 0.06em; text-transform: uppercase; }
.ep-spread strong { color: var(--grey-hi); font-weight: 600; }
.ep-reasoning { padding: 0 20px 20px; font-size: var(--fs-label); font-weight: 300; color: var(--grey-hi); line-height: 1.6; border-top: 1px solid var(--coal-border); padding-top: 14px; }
.ep-disclaimer { margin-top: 36px; text-align: center; font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--grey-mid); letter-spacing: 0.06em; }
@media (max-width: 900px) { .ep-grid { grid-template-columns: 1fr; } }
