/*
 * Public holiday show page — calm, compressed, brand-aligned.
 * Replaces ~890 lines of inline CSS. Brand: green #53d690, red #e44d3a, white, black.
 * Scoped under .hol so the site theme doesn't bleed in (and vice-versa).
 */

.hol {
    --red: #e44d3a;
    --green: #53d690;
    --green-ink: #2f9c65;
    --ink: #1a1a1a;
    --muted: #6b7280;
    --line: #e7e9ee;
    --surface: #ffffff;
    --surface-2: #f7f8fa;

    max-width: 960px;
    margin: 0 auto;
    padding: 8px 16px 64px;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
}
.hol *, .hol *::before, .hol *::after { box-sizing: border-box; }

/* ---- Breadcrumb ---- */
.hol-crumb {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
    width: 100%; font-size: 13.5px; color: var(--muted); margin-bottom: 22px;
}
.hol-crumb a { color: var(--muted); text-decoration: none; }
.hol-crumb a:hover { color: var(--green-ink); }
.hol-crumb i { font-size: 11px; }

/* ---- Hero ---- */
.hol-hero { margin-bottom: 30px; }
.hol-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(83,214,144,0.15); color: var(--green-ink);
    padding: 5px 13px; border-radius: 20px; font-size: 13px; font-weight: 700;
    text-transform: capitalize; margin-bottom: 14px;
}
.hol-title { font-size: 40px; line-height: 1.12; font-weight: 800; margin: 0 0 14px; letter-spacing: -0.01em; }
.hol-summary { font-size: 19px; color: #37414d; margin: 0 0 22px; max-width: 40em; }

.hol-facts { display: flex; flex-wrap: wrap; gap: 12px; width: 100%; }
.hol-fact {
    display: flex; align-items: center; gap: 11px;
    background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
    padding: 12px 16px; min-width: 200px; flex: 1 1 200px;
}
.hol-fact__icon {
    width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(228,77,58,0.10); color: var(--red); font-size: 16px;
}
.hol-fact__label { display: block; font-size: 11.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); font-weight: 700; }
.hol-fact__value { display: block; font-weight: 700; color: var(--ink); font-size: 14.5px; }

/* ---- Share ---- */
.hol-share { display: flex; align-items: center; gap: 10px; margin-top: 22px; }
.hol-share__label { font-size: 13.5px; color: var(--muted); font-weight: 600; }
.hol-share__btn {
    width: 38px; height: 38px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--line); color: var(--muted); font-size: 17px; text-decoration: none;
    transition: background .15s, color .15s, border-color .15s;
}
.hol-share__btn:hover { background: var(--surface-2); color: var(--ink); }

/* ---- Section heading ---- */
.hol-h2 {
    display: flex; align-items: center; gap: 9px;
    font-size: 21px; font-weight: 800; margin: 36px 0 6px;
}
.hol-h2 i { color: var(--green-ink); font-size: 18px; }
.hol-sub { color: var(--muted); font-size: 14.5px; margin: 0 0 16px; }

/* ---- Country selector (compact chips) ---- */
.hol-countries { margin-top: 34px; }
.hol-filter { position: relative; max-width: 340px; margin: 0 0 16px; }
.hol-filter i { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 15px; }
.hol-filter input {
    width: 100%; height: 42px; border: 1px solid var(--line); border-radius: 10px;
    padding: 0 14px 0 38px; font-size: 15px; color: var(--ink); outline: none; font-family: inherit;
    transition: border-color .15s, box-shadow .15s;
}
.hol-filter input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(83,214,144,0.18); }

.hol-chips { display: grid; grid-template-columns: repeat(auto-fill, minmax(196px, 1fr)); gap: 10px; }
.hol-chip {
    display: flex; align-items: center; gap: 10px;
    border: 1px solid var(--line); border-radius: 12px; padding: 11px 13px;
    background: var(--surface); text-decoration: none; color: var(--ink);
    transition: border-color .15s, box-shadow .15s, transform .12s;
}
.hol-chip:hover { border-color: var(--green); box-shadow: 0 4px 14px rgba(0,0,0,0.06); transform: translateY(-1px); color: var(--ink); text-decoration: none; }
.hol-chip__flag { font-size: 22px; line-height: 1; flex-shrink: 0; }
.hol-chip__name { font-weight: 700; font-size: 14.5px; flex: 1; min-width: 0; }
.hol-chip__date { font-size: 12.5px; color: var(--muted); font-weight: 600; white-space: nowrap; }
.hol-chip__arrow { color: #c3c8d0; font-size: 12px; }
.hol-filter__empty { color: var(--muted); font-size: 14.5px; padding: 8px 2px; display: none; }

/* ---- Description / note ---- */
.hol-prose { font-size: 16.5px; color: #2b333d; margin-top: 22px; }
.hol-prose p { margin: 0 0 16px; }
.hol-note {
    display: flex; gap: 12px; align-items: flex-start;
    background: rgba(83,214,144,0.08); border: 1px solid rgba(83,214,144,0.28);
    border-radius: 12px; padding: 14px 16px; margin: 18px 0; color: #2b3b32;
}
.hol-note i { color: var(--green-ink); font-size: 17px; margin-top: 2px; }
.hol-note p { margin: 0; }

/* ---- Related / sibling grids ---- */
.hol-related { margin-top: 10px; }
.hol-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px; }
.hol-card {
    display: flex; align-items: center; gap: 12px;
    border: 1px solid var(--line); border-radius: 14px; padding: 16px;
    background: var(--surface); text-decoration: none; color: var(--ink);
    transition: border-color .15s, box-shadow .15s, transform .12s;
}
.hol-card:hover { border-color: var(--green); box-shadow: 0 6px 18px rgba(0,0,0,0.06); transform: translateY(-2px); color: var(--ink); text-decoration: none; }
.hol-card__body { flex: 1; min-width: 0; }
.hol-card__body h3 { font-size: 16px; font-weight: 700; margin: 0 0 4px; }
.hol-card__body p { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.5; }
.hol-card__arrow { color: #c3c8d0; flex-shrink: 0; }

/* ---- Responsive ---- */
@media (max-width: 640px) {
    .hol-title { font-size: 30px; }
    .hol-summary { font-size: 17px; }
    .hol-chips { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
}
