/*
 * Public "holiday in country" detail page — extra components on top of
 * holiday-show.css (which provides the .hol base, hero, facts, chips, cards).
 * Both are scoped under .hol and share its design tokens.
 */

/* "See all country holidays" link */
.hol-callink { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--green-ink); text-decoration: none; margin-bottom: 20px; }
.hol-callink:hover { color: var(--green-ink); text-decoration: underline; }

/* Alt-names line in hero */
.hol-altnames { font-size: 14px; color: var(--muted); margin: 0 0 14px; }
.hol-altnames strong { color: var(--ink); }

/* Fact tag row (replaces the boolean fact-cards + status + timeline) */
.hol-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 4px; }
.hol-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--surface-2); border: 1px solid var(--line); color: var(--ink); padding: 6px 13px; border-radius: 20px; font-size: 13px; font-weight: 600; }
.hol-tag.is-green { background: rgba(83,214,144,0.13); border-color: rgba(83,214,144,0.3); color: var(--green-ink); }
.hol-tag.is-red { background: rgba(228,77,58,0.09); border-color: rgba(228,77,58,0.25); color: var(--red); }

/* Detail blocks — one per per-country field group */
.hol-detail { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.hol-block { border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; background: var(--surface); }
.hol-block--wide { grid-column: 1 / -1; }
.hol-block__label { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin: 0 0 11px; }
.hol-block__label i { color: var(--green-ink); font-size: 14px; }
.hol-block p { margin: 0; color: #2b333d; font-size: 14.5px; line-height: 1.55; }
.hol-list { display: flex; flex-wrap: wrap; gap: 7px; }
.hol-list span { background: var(--surface-2); border: 1px solid var(--line); border-radius: 8px; padding: 5px 11px; font-size: 13.5px; color: var(--ink); }

/* Public-life closures */
.hol-closures { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
.hol-closure { display: flex; align-items: center; gap: 11px; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; background: var(--surface); }
.hol-closure__icon { width: 36px; height: 36px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; background: rgba(228,77,58,0.10); color: var(--red); flex-shrink: 0; font-size: 15px; }
.hol-closure__name { font-weight: 700; font-size: 14px; }
.hol-closure__state { font-size: 12.5px; color: var(--muted); }

/* External resource buttons */
.hol-links { display: flex; flex-wrap: wrap; gap: 10px; }
.hol-linkbtn { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 10px; padding: 10px 16px; text-decoration: none; color: var(--ink); font-weight: 600; background: var(--surface); }
.hol-linkbtn:hover { background: var(--surface-2); color: var(--ink); text-decoration: none; }

/* Gallery */
.hol-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.hol-gallery img { width: 100%; height: 130px; object-fit: cover; border-radius: 10px; cursor: pointer; display: block; }
.hol-lightbox { position: fixed; inset: 0; background: rgba(17,17,17,0.9); display: flex; align-items: center; justify-content: center; z-index: 3000; padding: 24px; cursor: zoom-out; }
.hol-lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 8px; }
