/* ==========================================================
   Football Highlights Plugin – style.css  v2.0
   ========================================================== */

:root {
  --fl-primary:       #00e676;
  --fl-accent:        #ff6f00;
  --fl-accent2:       #ffd600;
  --fl-live:          #f44336;
  --fl-muted:         #7a9abf;
  --fl-bg:            #0a1929;
  --fl-surface:       #061220;
  --fl-surface2:      #0d2137;
  --fl-card:          #0f2744;
  --fl-border:        #1e3a5f;
  --fl-border-bright: #2e6090;
  --fl-text:          #e8f0fe;
  --fl-radius:        12px;
  --fl-transition:    .25s ease;
  --fl-btn-red:       #e53935;
  --fl-btn-red-hover: #c62828;
}

/* ──────────────────────────────────────────
   HERO
────────────────────────────────────────── */

.fl-zone-highlights {
    padding: 0 0 4px;
}

.fl-hl-grid {
    padding: 0 12px 12px;
}

.fhl-card .fl-hl-dur {
    position: absolute;
    bottom: 5px;
    right: 6px;
    background: rgba(0,0,0,.72);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 1px 5px;
    border-radius: 3px;
    pointer-events: none;
}


.fhl-section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0 20px;
}
.fhl-section-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fl-border-bright), transparent);
}
.fhl-section-divider__label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--fl-muted);
  white-space: nowrap;
  padding: 6px 16px;
  border: 1px solid var(--fl-border);
  border-radius: 100px;
  background: var(--fl-surface2);
}

.fhl-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 8px;
    color: #888;
}
.fhl-empty__icon {
    font-size: 32px;
    line-height: 1;
}
.fhl-empty__text {
    margin: 0;
    font-size: 14px;
}
.fhl-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #071828 0%, #0d2137 60%, #071422 100%);
  border: 1px solid var(--fl-border-bright);
  border-radius: var(--fl-radius);
  padding: 40px 40px 30px;
  text-align: center;
}
.fhl-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(30, 58, 95, 0.35) 1px, transparent 1px), linear-gradient(90deg, rgba(30, 58, 95, 0.35) 1px, transparent 1px);
    background-size: 48px 48px;
    animation: wc-gridMove 20s linear infinite;
    pointer-events: none;
}
.fhl-btn-load-more__text{
    display: flex;
    justify-content: center;
    align-items: center;
}
.fhl-hero__inner { position: relative; z-index: 2; }
.fhl-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,230,118,.12);
  border: 1px solid rgba(0,230,118,.35);
  color: var(--fl-primary);
  font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 20px;
}
.fhl-hero__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--fl-primary);
  animation: fhl-pulse 1.4s ease-in-out infinite;
}
.fhl-hero__title {
  font-size: clamp(28px, 5vw, 48px); font-weight: 800;
  color: var(--fl-text); margin: 0 0 16px; line-height: 1.15;
}
.fhl-hero__title span { color: var(--fl-primary); }
.fhl-hero__subtitle {
  max-width: 600px; margin: 0 auto 32px;
  font-size: 15px; color: var(--fl-muted); line-height: 1.7;
}
.fhl-hero__stats {
  display: inline-flex; gap: 40px;
  justify-content: center; flex-wrap: wrap;
}
.fhl-hero__stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.fhl-hero__stat-value { font-size: 26px; font-weight: 800; color: var(--fl-accent2); line-height: 1; }
.fhl-hero__stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: .07em; color: var(--fl-muted); }
/* ──────────────────────────────────────────
   LIST SECTION + GRID
────────────────────────────────────────── */
.fhl-list-section { padding-top: 10px; }

.fhl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

/* Cards below fold: skip paint until visible (Core Web Vitals) */
.fhl-card:nth-child(n+7) {
  content-visibility: auto;
  contain-intrinsic-size: 0 320px;
}
@media (max-width: 1199px) { .fhl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 749px)  { .fhl-grid { grid-template-columns: 1fr; } }

.fhl-grid-hot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (max-width: 1199px) { .fhl-grid-hot { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 749px)  { .fhl-grid-hot { grid-template-columns: 1fr; } }

/* ──────────────────────────────────────────
   CARD
────────────────────────────────────────── */

/* Fade-in khi scroll vào – controlled by IntersectionObserver */
.fhl-card {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity .35s ease,
    transform .35s ease,
    box-shadow var(--fl-transition),
    border-color var(--fl-transition);
}
.fhl-card--visible {
  opacity: 1;
  transform: translateY(0);
}

.fhl-card {
  background: var(--fl-card);
  border: 1px solid var(--fl-border);
  border-radius: var(--fl-radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--fl-transition), box-shadow var(--fl-transition), border-color var(--fl-transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Accent top bar on hover */
.fhl-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--fl-btn-red), var(--fl-accent2));
  opacity: 0;
  transition: opacity var(--fl-transition);
  z-index: 2;
}
.fhl-card:hover::before,
.fhl-card:focus-visible::before { opacity: 1; }

.fhl-card:hover,
.fhl-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 2px 15px var(--fl-primary) !important;
  border-color: var(--fl-primary);
  outline: none;
}

/* Thumbnail */
.fhl-card__thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  padding: 8px;
  overflow: hidden;
  background: var(--fl-surface);
}
.fhl-card__thumb {
  width: 100%; height: 100%;
  border-radius: 10px;
  object-fit: cover; display: block;
  transition: transform .45s ease;
}
.fhl-card:hover .fhl-card__thumb { transform: scale(1.06); }

/* Gradient overlay */
.fhl-card__thumb-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(6,18,32,.85) 0%, transparent 100%);
  pointer-events: none;
}

/* Play overlay */
.fhl-card__play-overlay {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--fl-transition);
}
.fhl-card:hover .fhl-card__play-overlay { opacity: 1; }
.fhl-card__play-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(229,57,53,.92);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px rgba(229,57,53,.2), 0 4px 20px rgba(229,57,53,.6);
  transform: scale(.8);
  transition: transform var(--fl-transition), box-shadow var(--fl-transition);
}
.fhl-card:hover .fhl-card__play-btn {
  transform: scale(1);
  box-shadow: 0 0 0 12px rgba(229,57,53,.15), 0 6px 28px rgba(229,57,53,.7);
}

/* League badge */
.fhl-card__league-badge {
  position: absolute; bottom: 10px; left: 10px; z-index: 2;
  display: flex; align-items: center; gap: 5px;
  background: rgba(6,18,32,.88);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  padding: 4px 10px 4px 6px;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--fl-text);
  max-width: calc(100% - 20px);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.fhl-card__league-badge img { width: 16px; height: 16px; object-fit: contain; flex-shrink: 0; }

/* Card body */
.fhl-card__body {
  padding: 12px 14px 14px; flex: 1;
  display: flex; flex-direction: column; gap: 8px;
  background: linear-gradient(180deg, var(--fl-card) 0%, #0c2040 100%);
}

/* Teams */
.fhl-card__teams { display: flex; align-items: center; gap: 6px; }
.fhl-card__team { display: flex; align-items: center; gap: 6px; flex: 1; min-width: 0; }
.fhl-card__team--away { justify-content: flex-end; }
.fhl-card__team-logo {
  width: 28px; height: 28px; object-fit: contain; flex-shrink: 0;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.5));
}
.fhl-card__team-name {
  font-size: 12px; font-weight: 700; color: var(--fl-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.fhl-card__vs {
  font-size: 10px; font-weight: 900; color: var(--fl-accent2);
  letter-spacing: .05em; flex-shrink: 0;
  padding: 3px 8px;
  background: rgba(255,214,0,.12);
  border: 1px solid rgba(255,214,0,.25);
  border-radius: 4px;
}

/* Meta */
.fhl-card__meta { display: flex; align-items: center; gap: 10px; }
.fhl-card__date,
.fhl-card__time {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; color: var(--fl-muted);
}
.fhl-card__time { color: var(--fl-accent2); font-weight: 600; }

/* Watch btn */
.fhl-card__watch-btn {
  margin-top: auto; width: 100%; padding: 9px 14px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--fl-btn-red);
  color: #fff; border: none; border-radius: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: .04em;
  cursor: pointer;
  transition: background var(--fl-transition), box-shadow var(--fl-transition);
  box-shadow: 0 2px 8px rgba(229,57,53,.3);
}
.fhl-card:hover .fhl-card__watch-btn {
  background: var(--fl-btn-red-hover);
  box-shadow: 0 4px 16px rgba(229,57,53,.5);
}

/* ──────────────────────────────────────────
   LOAD MORE
────────────────────────────────────────── */
.fhl-load-more-wrap { display: flex; justify-content: center;  margin-top: 20px;
    margin-bottom: 15px; }
.fhl-btn-load-more {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 28px;
  background: var(--fl-btn-red);
  border: none; border-radius: 100px;
  color: #fff; font-size: 13px; font-weight: 700;
  cursor: pointer; letter-spacing: .04em;
  box-shadow: 0 4px 20px rgba(229,57,53,.35);
  transition: background var(--fl-transition), transform var(--fl-transition), box-shadow var(--fl-transition);
}
.fhl-btn-load-more:hover {
  background: var(--fl-btn-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(229,57,53,.5);
}
.fhl-btn-load-more:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.fhl-btn-load-more__spinner {
  display: none; width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff; border-radius: 50%;
  animation: fhl-spin .7s linear infinite;
}
.fhl-btn-load-more.is-loading .fhl-btn-load-more__text    { display: none; }
.fhl-btn-load-more.is-loading .fhl-btn-load-more__spinner { display: block; }

/* ══════════════════════════════════════════════════════════
   MODAL / POPUP  v2.0
   – border đậm + glow, box-shadow nổi bật, mobile centered
══════════════════════════════════════════════════════════ */
.fhl-modal {
  position: fixed; inset: 0; z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.fhl-modal[hidden] { display: none; }

.fhl-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(2,8,18,.8);
  /* backdrop-filter: blur(12px) saturate(1.4); */
  cursor: pointer;
}

/* ── Box chính ── */
.fhl-modal__box {
  position: relative; z-index: 1;
  width: 100%; max-width: 1000px;
  display: flex; flex-direction: column;
  background: #07182e;

  /* Border đậm rõ */
  border: 2px solid var(--fl-border-bright);
  border-radius: 4px;

  /* Box-shadow nổi bật nhiều lớp */
  box-shadow:
    0 0 0 1px rgba(0,230,118,.18),
    0 0 30px rgba(0,144,255,.18),
    0 8px 32px rgba(0,0,0,.9),
    0 32px 90px rgba(0,0,0,.75),
    inset 0 1px 0 rgba(255,255,255,.06);

  overflow: hidden;
  animation: fhl-modal-in .28s cubic-bezier(.22,.68,0,1.2) forwards;
}

/* Rainbow top bar */
.fhl-modal__box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--fl-btn-red) 0%, var(--fl-accent) 30%, var(--fl-accent2) 60%, var(--fl-primary) 100%);
  z-index: 10;
}

/* ── Header – column centered, đồng nhất desktop & mobile ── */
.fhl-modal__header {
  display: flex; flex-direction: column; align-items: center;
  background: linear-gradient(160deg, #071828 0%, #0e2845 55%, #071828 100%);
  border-bottom: 2px solid var(--fl-border-bright);
  position: relative; flex-shrink: 0;
  padding: 28px 60px 0;
  overflow: hidden;
}
.fhl-modal__header::after {
  content: '\26BD';
  position: absolute; font-size: 160px; opacity: .025;
  right: 20px; top: 50%; transform: translateY(-50%);
  pointer-events: none; user-select: none; line-height: 1;
}

/* Match info */
.fhl-modal__match-info {
  width: 100%; display: flex; flex-direction: column;
  align-items: center; gap: 12px;
}

/* Teams row */
.fhl-modal__teams {
  display: flex; align-items: center;
  justify-content: center; gap: 24px; width: 100%;
}
.fhl-modal__team {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; flex: 1; max-width: 160px; min-width: 0;
}

/* Logo wrap */
.fhl-modal__team-logo-wrap {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.05);
  border-radius: 50%; border: 1px solid rgba(255,255,255,.12);
}
.fhl-modal__team-logo {
  width: 40px; height: 40px; object-fit: contain;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,.6));
}
.fhl-modal__team-name {
  font-size: 14px; font-weight: 800; color: var(--fl-text);
  text-align: center; line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%;
}

/* VS + league */
.fhl-modal__score-block {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px; flex-shrink: 0;
}
.fhl-modal__vs-badge {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, #1a3a5c, #0d2137);
  border: 2px solid var(--fl-border-bright);
  font-size: 12px; font-weight: 900; color: var(--fl-accent2);
  letter-spacing: .06em;
  box-shadow: 0 0 14px rgba(30,58,95,.9), inset 0 1px 0 rgba(255,255,255,.07);
}
.fhl-modal__league-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15); border-radius: 100px;
  padding: 4px 12px 4px 7px;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--fl-text);
  max-width: 200px;
}
.fhl-modal__league-pill img { width: 14px; height: 14px; object-fit: contain; flex-shrink: 0; }
.fhl-modal__league-pill__text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
/* Meta row – ngang, centered, dưới teams */
.fhl-modal__meta-col {
  display: flex; flex-direction: row;
  align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 12px;
  padding: 12px 16px 14px; width: 100%;
  border-top: 1px solid rgba(255,255,255,.06);
}
.fhl-modal__meta-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, rgba(229,57,53,.22), rgba(229,57,53,.1));
  border: 1px solid rgba(229,57,53,.55); border-radius: 100px;
  padding: 5px 14px;
  font-size: 10px; font-weight: 800;
  color: #ff6b6b; letter-spacing: .09em; text-transform: uppercase;
}
.fhl-modal__meta-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ff5252; animation: fhl-pulse 1.2s ease-in-out infinite;
}
.fhl-modal__meta-date,
.fhl-modal__meta-time {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--fl-muted); white-space: nowrap;
}
.fhl-modal__meta-time { color: var(--fl-accent2); font-weight: 700; font-size: 13px; }

/* Separator – mobile only */
.fhl-modal__header-sep { display: none; }

/* ── Close btn – absolute, luôn hiện, SVG rõ ── */
.fhl-modal__close {
  position: absolute; top: 12px; right: 12px;
  min-width: 32px;
  max-width: 32px;
  min-height: 32px;
  max-height: 32px;
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,.18); border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--fl-text);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  padding: 0; line-height: 1;
  transition: background var(--fl-transition), border-color var(--fl-transition), color var(--fl-transition);
  z-index: 20;
}
.fhl-modal__close svg { display: block; pointer-events: none; flex-shrink: 0; }
.fhl-modal__close:hover {
  background: rgba(229,57,53,.3);
  border-color: rgba(229,57,53,.7);
  color: #ff5252;
}

/* ── Player wrapper ── */
.fhl-modal__player {
  position: relative;
  aspect-ratio: 16/9;
  background: #000; flex-shrink: 0;

  /* Border đậm + glow theo yêu cầu */
  border-top: 3px solid #2e6090;
  border-bottom: 3px solid #2e6090;
  box-shadow:
    0 0 40px rgba(0,96,180,.35),
    0 0 80px rgba(0,60,120,.2),
    inset 0 0 50px rgba(0,0,0,.7);
}
.fhl-modal__player video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; display: block;
}

/* Loading */
.fhl-modal__loading {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  background: rgba(0,0,0,.6); color: var(--fl-muted); font-size: 13px;
}
.fhl-modal__loading-ring {
  width: 48px; height: 48px;
  border: 3px solid rgba(255,255,255,.1);
  border-top-color: var(--fl-primary); border-radius: 50%;
  animation: fhl-spin .8s linear infinite;
}

/* ── Footer ── */
.fhl-modal__footer {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 20px;
  background: linear-gradient(135deg, #061220, #071828);
  border-top: 2px solid var(--fl-border-bright);
  flex-wrap: wrap;
}
.fhl-modal__footer-title {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--fl-text);
  flex: 1; min-width: 0;
  overflow: auto; text-overflow: ellipsis; white-space: nowrap;
}
.fhl-modal__footer-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.fhl-modal__tag {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1); border-radius: 6px;
  padding: 3px 9px; font-size: 11px; color: var(--fl-muted);
}
.fhl-modal__tag svg { flex-shrink: 0; }

/* ──────────────────────────────────────────
   ERROR
────────────────────────────────────────── */
.fhl-error {
  background: rgba(244,67,54,.1);
  border: 1px solid rgba(244,67,54,.35);
  border-radius: var(--fl-radius);
  padding: 20px 24px; color: #ff8a80; font-size: 14px;
}

/* ──────────────────────────────────────────
   KEYFRAMES
────────────────────────────────────────── */
@keyframes fhl-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.8); }
}
@keyframes fhl-spin { to { transform: rotate(360deg); } }
@keyframes fhl-modal-in {
  from { opacity: 0; transform: scale(.96) translateY(14px); }
  to   { opacity: 1; transform: scale(1)   translateY(0); }
}
@keyframes fhl-slide-up {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE MOBILE  (≤ 749px)
   – layout header đã centered sẵn, chỉ cần shrink + slide-up
══════════════════════════════════════════════════════════ */
@media (max-width: 749px) {

  /* Hero */
  .fhl-hero { padding: 36px 20px 32px; }
  .fhl-hero__stats { gap: 24px; }

  /* Modal: full screen, slide up từ dưới */
  .fhl-modal {
    padding: 0;
    align-items: center;
    justify-content: center;
  }
  .fhl-modal__box {
    width: 100%; max-width: 100%;
    max-height: 100dvh; overflow-y: auto;
    border-left: none; border-right: none; border-bottom: none;
    border-top: 3px solid var(--fl-border-bright);
    border-radius: 0;
    animation: fhl-slide-up .3s cubic-bezier(.22,.68,0,1.1) forwards;
  }

  /* Header: shrink padding cho mobile */
  .fhl-modal__header { padding: 40px 16px 0; }
  .fhl-modal__header::after { display: none; }

  /* Teams: nhỏ hơn chút */
  .fhl-modal__teams { gap: 15px; }
  .fhl-modal__team  { max-width: 120px; }
  .fhl-modal__team-logo-wrap { width: 54px; height: 54px; }
  .fhl-modal__team-logo      { width: 42px; height: 42px; }
  .fhl-modal__team-name      { font-size: 12px; }
  .fhl-modal__vs-badge       { width: 40px; height: 40px; font-size: 11px; }
  .fhl-modal__league-pill    { font-size: 9px; max-width: 200px; }

  /* Close: giữ absolute, size chuẩn */
  .fhl-modal__close { top: 10px; right: 10px; width: 30px; height: 30px; }

  /* Player */
  .fhl-modal__player { border-left: none; border-right: none; }

  /* Footer */
  .fhl-modal__footer { padding: 10px 14px; gap: 8px; flex-direction: column; }
  .fhl-modal__footer-title { font-size: 11px; }
  .fhl-modal__footer-tags  { gap: 4px; }
  .fhl-modal__tag          { font-size: 10px; padding: 2px 7px; }
}
