/* NIHC Events — filter bar, card grid, single layouts. Brand: purple #2d1c3f, orange #e86354. */
.nihc-ev, .nihc-ev-single {
	--nihc-purple: #2d1c3f;
	--nihc-orange: #e86354;
	--nihc-lilac: #f0edf5;
}

/* ---- Filter bar ---- */
.nihc-ev-filter { background: var(--nihc-purple); border-radius: 12px; padding: 24px; margin-bottom: 32px; }
.nihc-ev-filter-fields { display: grid; grid-template-columns: 1.6fr 1.3fr 1fr; gap: 16px; margin-bottom: 16px; }
.nihc-ev-filter input[type="search"], .nihc-ev-filter select {
	width: 100%; padding: 12px 14px; border: 1px solid #46345c; border-radius: 6px;
	background: #fff; color: var(--nihc-purple); font-size: 15px; line-height: 1.4;
}
.nihc-ev-filter input[type="search"]:focus, .nihc-ev-filter select:focus { outline: 2px solid var(--nihc-orange); outline-offset: 1px; }
.nihc-ev-filter-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.nihc-ev-past-toggle { color: #fff; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }
.nihc-ev-past-toggle input { width: 18px; height: 18px; accent-color: var(--nihc-orange); }
.nihc-ev-search-btn { background: var(--nihc-orange); color: #fff; border: 0; border-radius: 999px; padding: 13px 30px; font-size: 16px; font-weight: 700; cursor: pointer; }
.nihc-ev-search-btn:hover { filter: brightness(0.92); }
.nihc-ev-search-btn:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

/* ---- Cards ---- */
.nihc-ev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.nihc-ev-card { border: 1px solid #e6e6e6; border-radius: 12px; overflow: hidden; background: #fff; transition: box-shadow 0.15s ease, transform 0.15s ease; }
.nihc-ev-card:hover { box-shadow: 0 8px 24px rgba(45, 28, 63, 0.16); transform: translateY(-2px); }
.nihc-ev-card-link { display: block; color: inherit; text-decoration: none; height: 100%; }
.nihc-ev-card-media { aspect-ratio: 16 / 9; background: var(--nihc-lilac); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.nihc-ev-card-media img { width: 100%; height: 100%; object-fit: cover; }
.nihc-ev-card-placeholder { font-size: 48px; font-weight: 700; color: var(--nihc-orange); }
.nihc-ev-card-body { padding: 18px 20px 20px; }
.nihc-ev-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.nihc-ev-tag { background: var(--nihc-lilac); color: var(--nihc-purple); border-radius: 999px; padding: 3px 10px; font-size: 12px; font-weight: 600; }
.nihc-ev-tag--members { background: var(--nihc-orange); color: #fff; }
.nihc-ev-card-date { color: var(--nihc-orange); font-weight: 700; font-size: 14px; margin: 0 0 6px; }
.nihc-ev-card-title { font-size: 18px; line-height: 1.3; margin: 0 0 8px; color: var(--nihc-purple); }
.nihc-ev-card-venue { color: #555; font-size: 14px; margin: 0 0 12px; }
.nihc-ev-card-excerpt { color: #555; font-size: 14px; margin: 0 0 12px; }
.nihc-ev-card-cta { color: var(--nihc-orange); font-weight: 700; font-size: 14px; }
.nihc-ev-empty { padding: 24px; background: var(--nihc-lilac); border-radius: 12px; text-align: center; color: var(--nihc-purple); }
.nihc-ev-results.is-loading { opacity: 0.5; transition: opacity 0.15s; }

/* ---- Single event ---- */
.nihc-ev-single-media { margin: 0 0 20px; border-radius: 12px; overflow: hidden; }
.nihc-ev-single-media img { width: 100%; height: auto; display: block; }
.nihc-ev-single .nihc-ev-card-tags { margin-bottom: 16px; }
.nihc-ev-details { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; background: var(--nihc-lilac); border-radius: 12px; padding: 20px 24px; margin: 0 0 28px; }
.nihc-ev-details div { margin: 0; }
.nihc-ev-details dt { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--nihc-orange); font-weight: 700; margin-bottom: 4px; }
.nihc-ev-details dd { margin: 0; color: var(--nihc-purple); font-weight: 600; }
.nihc-ev-description { margin-bottom: 28px; }
.nihc-ev-book { display: inline-block; background: var(--nihc-orange); color: #fff !important; border-radius: 999px; padding: 13px 30px; font-weight: 700; text-decoration: none; margin: 8px 0 28px; }
.nihc-ev-book:hover { filter: brightness(0.92); }
.nihc-ev-section-title { color: var(--nihc-purple); font-size: 22px; margin: 32px 0 16px; }
.nihc-ev-speaker { display: flex; gap: 20px; align-items: flex-start; padding: 20px 0; border-top: 1px solid #e6e6e6; }
.nihc-ev-speaker-photo { flex: 0 0 96px; width: 96px; height: 96px; border-radius: 50%; overflow: hidden; background: var(--nihc-lilac); display: flex; align-items: center; justify-content: center; font-size: 36px; font-weight: 700; color: var(--nihc-orange); }
.nihc-ev-speaker-photo img { width: 100%; height: 100%; object-fit: cover; }
.nihc-ev-speaker-name { margin: 0 0 2px; font-size: 18px; color: var(--nihc-purple); }
.nihc-ev-speaker-role { margin: 0 0 8px; color: var(--nihc-orange); font-weight: 600; font-size: 14px; }
.nihc-ev-speaker-bio { margin: 0; }
.nihc-ev-session { border: 1px solid #e6e6e6; border-radius: 12px; padding: 20px 24px; margin-bottom: 16px; }
.nihc-ev-session-date { color: var(--nihc-orange); font-weight: 700; font-size: 14px; margin: 0 0 4px; }
.nihc-ev-session-title { margin: 0 0 6px; font-size: 18px; color: var(--nihc-purple); }
.nihc-ev-session-meta { margin: 0 0 10px; color: #555; font-size: 14px; }
.nihc-ev-session .nihc-ev-book { margin: 8px 0 0; padding: 10px 22px; font-size: 14px; }
.nihc-ev-past-sessions { list-style: none; padding: 0; margin: 0; }
.nihc-ev-past-sessions li { padding: 10px 0; border-top: 1px solid #e6e6e6; color: #555; }
.nihc-ev-past-sessions li span { color: var(--nihc-purple); font-weight: 600; }

/* ---- Responsive ---- */
@media (max-width: 980px) { .nihc-ev-grid { grid-template-columns: repeat(2, 1fr); } .nihc-ev-filter-fields { grid-template-columns: 1fr 1fr; } .nihc-ev-filter-fields input[type="search"] { grid-column: 1 / -1; } }
@media (max-width: 640px) { .nihc-ev-grid { grid-template-columns: 1fr; } .nihc-ev-filter-fields { grid-template-columns: 1fr; } .nihc-ev-filter { padding: 18px; } .nihc-ev-speaker { flex-direction: column; } }
