/* Hearts of Harris – Events (front-end) */
:root {
	--hoh-wine: #7a1f1f;
	--hoh-wine-dark: #641818;
	--hoh-cream: #faf6f2;
	--hoh-ink: #3a2b25;
}

/* ---------- Grid ---------- */
.hoh-ev-grid { display: grid; gap: 24px; margin: 24px 0; }
.hoh-ev-cols-1 { grid-template-columns: 1fr; }
.hoh-ev-cols-2 { grid-template-columns: repeat(2, 1fr); }
.hoh-ev-cols-3 { grid-template-columns: repeat(3, 1fr); }
.hoh-ev-cols-4 { grid-template-columns: repeat(4, 1fr); }

.hoh-ev-card {
	background: #fff; border: 1px solid #ece5df; border-radius: 12px; overflow: hidden;
	display: flex; flex-direction: column; box-shadow: 0 6px 22px rgba(0, 0, 0, .06);
	transition: transform .18s ease, box-shadow .18s ease;
}
.hoh-ev-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0, 0, 0, .12); }
.hoh-ev-card-media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--hoh-cream); }

/* Status badge */
.hoh-ev-status { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 800; letter-spacing: .3px; text-transform: uppercase; color: #fff; }
.hoh-ev-card-media .hoh-ev-status { position: absolute; top: 10px; left: 10px; z-index: 2; box-shadow: 0 2px 8px rgba(0,0,0,.25); }
.hoh-ev-status-soldout { background: #c0392b; }
.hoh-ev-status-cancelled { background: #66707a; }
.hoh-ev-status-upcoming { background: #1a7f37; }
.hoh-ev-meta .hoh-ev-status { padding: 6px 14px; }
.hoh-ev-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hoh-ev-noimg { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 44px; }
.hoh-ev-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.hoh-ev-card-date { font-size: 12.5px; font-weight: 700; color: var(--hoh-wine); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 6px; }
.hoh-ev-card-title { font-size: 19px; margin: 0 0 8px; line-height: 1.25; }
.hoh-ev-card-title a { color: var(--hoh-ink); text-decoration: none; }
.hoh-ev-card-title a:hover { color: var(--hoh-wine); }
.hoh-ev-card-ex { font-size: 14px; color: #6b5c53; margin: 0 0 14px; flex: 1; }
.hoh-ev-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.hoh-ev-price { font-weight: 700; color: var(--hoh-ink); font-size: 14px; }
.hoh-ev-card-btn {
	background: var(--hoh-wine); color: #fff !important; text-decoration: none;
	padding: 9px 16px; border-radius: 7px; font-size: 13.5px; font-weight: 600; white-space: nowrap;
}
.hoh-ev-card-btn:hover { background: var(--hoh-wine-dark); }
.hoh-ev-empty { padding: 20px; background: var(--hoh-cream); border-radius: 8px; text-align: center; color: #6b5c53; }

/* ---------- Archive page ---------- */
.hoh-ev-archive-wrap { padding: 40px 20px 60px; }
.hoh-ev-archive-inner { max-width: 1200px; margin: 0 auto; }
.hoh-ev-archive-lead { text-align: center; color: #6b5c53; font-size: 17px; margin: 0 0 30px; }
.hoh-ev-archive-sub { margin: 46px 0 18px; color: var(--hoh-wine); border-bottom: 2px solid #ece0d6; padding-bottom: 8px; }

/* ---------- Single event ---------- */
.hoh-ev-single-wrap { padding: 40px 20px 60px; }
.hoh-ev-single-post { position: relative; z-index: 1; }
.hoh-ev-single { max-width: 1040px; margin: 34px auto 50px; position: relative; z-index: 1; }
.hoh-ev-hero img { width: 100%; border-radius: 12px; display: block; }

/* Poster + video side by side */
.hoh-ev-media-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.hoh-ev-media-2 .hoh-ev-hero { aspect-ratio: 16 / 9; background: var(--hoh-cream); border-radius: 12px; overflow: hidden; }
.hoh-ev-media-2 .hoh-ev-hero img { width: 100%; height: 100%; object-fit: contain; }
.hoh-ev-media-2 .hoh-ev-video { margin: 0; }
.hoh-ev-qr-dl { display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 700; color: var(--hoh-wine); text-decoration: none; border: 1px solid #e0d3c8; padding: 7px 14px; border-radius: 7px; }
.hoh-ev-qr-dl:hover { background: var(--hoh-cream); }
@media (max-width: 768px) { .hoh-ev-media-2 { grid-template-columns: 1fr; } }
.hoh-ev-video { position: relative; padding-top: 56.25%; border-radius: 12px; overflow: hidden; background: #000; }
.hoh-ev-video iframe, .hoh-ev-video video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.hoh-ev-body { display: grid; grid-template-columns: 1fr 300px; gap: 32px; margin-top: 26px; }
.hoh-ev-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.hoh-ev-chip { background: var(--hoh-cream); border: 1px solid #ece0d6; border-radius: 20px; padding: 6px 14px; font-size: 13.5px; color: var(--hoh-ink); font-weight: 600; }
.hoh-ev-desc { font-size: 16px; line-height: 1.7; color: #4a3b33; }
.hoh-ev-highlights { list-style: none; padding: 0; margin: 8px 0 0; }
.hoh-ev-highlights li { padding: 7px 0 7px 28px; position: relative; border-bottom: 1px dashed #ece0d6; }
.hoh-ev-highlights li::before { content: "✦"; position: absolute; left: 4px; color: var(--hoh-wine); }

.hoh-ev-side { align-self: start; position: sticky; top: 20px; }
.hoh-ev-qr-card { background: #fff; border: 1px solid #ece5df; border-radius: 12px; padding: 18px; text-align: center; box-shadow: 0 6px 20px rgba(0, 0, 0, .06); }
.hoh-ev-qr-card h3 { margin: 0 0 12px; font-size: 16px; color: var(--hoh-ink); }
.hoh-ev-qr-card img { border: 1px solid #eee; border-radius: 8px; }
.hoh-ev-qr-card p { font-size: 12.5px; color: #8a7a70; margin: 12px 0 0; }
.hoh-ev-cta { width: 100%; margin-top: 14px; background: var(--hoh-wine); color: #fff; border: 0; padding: 14px; border-radius: 9px; font-size: 15px; font-weight: 700; cursor: pointer; }
.hoh-ev-cta:hover { background: var(--hoh-wine-dark); }

/* ---------- RSVP form ---------- */
.hoh-ev-rsvp { max-width: 720px; margin: 40px auto 0; background: var(--hoh-cream); border: 1px solid #ece0d6; border-radius: 12px; padding: 26px; }
.hoh-ev-rsvp h3 { margin: 0 0 16px; color: var(--hoh-wine); }
.hoh-ev-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.hoh-ev-rsvp input, .hoh-ev-rsvp textarea { width: 100%; padding: 11px 13px; border: 1px solid #d8cfc7; border-radius: 7px; font-size: 15px; background: #fff; box-sizing: border-box; }
.hoh-ev-rsvp textarea { margin-bottom: 12px; }
.hoh-ev-submit { background: var(--hoh-wine); color: #fff; border: 0; padding: 13px 26px; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; width: 100%; }
.hoh-ev-submit:hover { background: var(--hoh-wine-dark); }
.hoh-ev-submit:disabled { opacity: .6; }
.hoh-ev-alert { background: #fdecea; color: #8a1c13; border: 1px solid #f5c6c0; padding: 10px 14px; border-radius: 7px; margin-bottom: 12px; font-size: 14px; }
.hoh-ev-success { background: #eaf7ee; border: 1px solid #b6e0c2; color: #1a7f37; padding: 22px; border-radius: 10px; text-align: center; font-size: 16px; }
.hoh-ev-hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }

@media (max-width: 900px) {
	.hoh-ev-cols-3, .hoh-ev-cols-4 { grid-template-columns: repeat(2, 1fr); }
	.hoh-ev-body { grid-template-columns: 1fr; }
	.hoh-ev-side { position: static; }
}
@media (max-width: 560px) {
	.hoh-ev-cols-2, .hoh-ev-cols-3, .hoh-ev-cols-4 { grid-template-columns: 1fr; }
	.hoh-ev-row { grid-template-columns: 1fr; }
}
