/*
Theme Name: FutsalHungary Child
Theme URI: https://futsalhungary.hu
Description: FutsalHungary migration child theme built on Hello Elementor.
Author: Halmai Ramon
Template: hello-elementor
Version: 0.1.0
Text Domain: futsalhungary
*/

:root {
  --fh-blue: #006bb6;
  --fh-navy: #071d33;
  --fh-ink: #03070c;
  --fh-carbon: #081018;
  --fh-panel: #0c151d;
  --fh-cyan: #18a7e0;
  --fh-green: #65b32e;
  --fh-red: #e30613;
  --fh-hot-red: #f31822;
  --fh-dark: #111827;
  --fh-muted: #6b7280;
  --fh-border: #e5e7eb;
  --fh-light: #f8fafc;
}

body {
  color: var(--fh-dark);
  font-family: "Manrope", sans-serif;
  margin: 0;
}

h1,
h2,
h3,
.fh-site-brand {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0;
}

.fh-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.fh-menu-toggle {
  height: 1px;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  width: 1px;
}

.fh-site-header {
  left: 0;
  padding: 14px 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 80;
}

.fh-site-header .fh-container {
  max-width: 1180px;
  width: calc(100vw - 32px);
}

.admin-bar .fh-site-header {
  top: 32px;
}

.fh-site-header__inner {
  align-items: center;
  backdrop-filter: blur(22px) saturate(150%);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-sizing: border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 22px 70px rgba(0, 0, 0, 0.28);
  display: flex;
  gap: 18px;
  min-height: 64px;
  padding: 0 14px 0 18px;
}

.fh-site-brand {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  text-decoration: none;
  white-space: nowrap;
}

.fh-site-brand picture {
  display: block;
  line-height: 0;
}

.fh-site-brand img {
  display: block;
  height: 42px;
  object-fit: contain;
  width: auto;
}

.fh-site-nav {
  align-items: center;
  box-sizing: border-box;
  display: grid;
  flex: 1;
  gap: 0;
  grid-template-columns: repeat(7, minmax(max-content, 1fr));
  justify-items: center;
  min-width: 0;
}

.fh-site-nav > .fh-nav-link,
.fh-site-nav > .fh-nav-dropdown {
  justify-self: center;
}

.fh-site-nav__mobile-head,
.fh-site-nav__close,
.fh-menu-button,
.fh-menu-backdrop {
  display: none;
}

.fh-nav-link,
.fh-nav-dropdown > summary,
.fh-section-nav a {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
  display: flex;
  font-size: 12px;
  font-weight: 900;
  min-height: 38px;
  padding: 0 11px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.fh-nav-link:hover,
.fh-nav-dropdown:hover > summary,
.fh-nav-dropdown[open] > summary,
.fh-section-nav a:hover,
.fh-card__title a:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.fh-nav-dropdown {
  position: relative;
}

.fh-nav-dropdown > summary {
  cursor: pointer;
  list-style: none;
}

.fh-nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.fh-nav-dropdown > summary::after {
  background: var(--fh-hot-red);
  clip-path: polygon(50% 72%, 0 28%, 100% 28%);
  content: "";
  height: 7px;
  margin-left: 8px;
  width: 8px;
}

.fh-nav-dropdown__panel {
  backdrop-filter: blur(24px) saturate(155%);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    rgba(8, 14, 22, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  display: grid;
  gap: 4px;
  left: 0;
  min-width: 220px;
  opacity: 0;
  padding: 8px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 10px);
  transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.fh-nav-dropdown[open] .fh-nav-dropdown__panel,
.fh-nav-dropdown:hover .fh-nav-dropdown__panel,
.fh-nav-dropdown:focus-within .fh-nav-dropdown__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fh-nav-dropdown__panel a {
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
  padding: 11px 12px;
  text-decoration: none;
  text-transform: uppercase;
}

.fh-nav-dropdown__panel a:hover {
  background: rgba(243, 24, 34, 0.9);
  color: #fff;
}

.fh-site-socials {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 6px;
}

.fh-site-socials--mobile {
  display: none;
}

.fh-site-social {
  align-items: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
  width: 42px;
}

.fh-site-social svg {
  display: block;
  fill: currentColor;
  height: 19px;
  width: 19px;
}

.fh-site-social:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  color: #fff;
  transform: translateY(-1px);
}

.fh-site-social--youtube:hover {
  background: #f31822;
  border-color: rgba(255, 255, 255, 0.32);
}

.fh-site-social--facebook:hover {
  background: #1877f2;
  border-color: rgba(255, 255, 255, 0.32);
}

.fh-site-social--instagram:hover {
  background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #8134af);
  border-color: rgba(255, 255, 255, 0.32);
}

.fh-site-social--tiktok:hover {
  background: linear-gradient(135deg, #00f2ea, #111 48%, #ff0050);
  border-color: rgba(255, 255, 255, 0.32);
}

.fh-site-social--placeholder {
  cursor: default;
}

.fh-site-search {
  box-sizing: border-box;
  margin-left: 6px;
  position: relative;
}

.fh-site-search__trigger {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid transparent;
  border-radius: 6px;
  box-sizing: border-box;
  cursor: pointer;
  height: 42px;
  outline: 0;
  position: relative;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  width: 42px;
}

.fh-site-search__trigger:focus,
.fh-site-search__trigger:focus-visible,
.fh-site-search__trigger:active {
  border-color: transparent;
  box-shadow: none;
  outline: 0;
}

.fh-site-header .fh-site-search__trigger,
.fh-site-header .fh-site-search__trigger:hover,
.fh-site-header .fh-site-search__trigger:focus,
.fh-site-header .fh-site-search__trigger:focus-visible,
.fh-site-header .fh-site-search__trigger:active,
.fh-site-header .fh-site-search.is-open .fh-site-search__trigger {
  border-color: transparent !important;
  height: 42px !important;
  padding: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  width: 42px !important;
}

.fh-site-search__trigger::before {
  border: 2px solid #fff;
  border-radius: 999px;
  content: "";
  height: 13px;
  left: 11px;
  position: absolute;
  top: 11px;
  width: 13px;
}

.fh-site-search__trigger::after {
  background: #fff;
  border-radius: 999px;
  content: "";
  height: 2px;
  left: 24px;
  position: absolute;
  top: 26px;
  transform: rotate(45deg);
  transform-origin: left center;
  width: 9px;
}

.fh-site-search.is-open .fh-site-search__trigger,
.fh-site-search__trigger:hover {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.1);
  transform: none;
}

.fh-site-search__panel {
  backdrop-filter: blur(26px) saturate(155%);
  background:
    radial-gradient(circle at 0 0, rgba(243, 24, 34, 0.22), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08)),
    rgba(8, 14, 22, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  width: min(420px, calc(100vw - 32px));
}

.fh-site-search.is-open .fh-site-search__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fh-site-search__form {
  align-items: center;
  display: flex;
  gap: 8px;
}

.fh-site-search__form input {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: #fff;
  flex: 1;
  font-size: 14px;
  min-height: 44px;
  min-width: 0;
  padding: 0 12px;
}

.fh-site-search__form input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.fh-site-search__form button {
  background: var(--fh-hot-red);
  border: 0;
  border-radius: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  min-height: 44px;
  padding: 0 14px;
  text-transform: uppercase;
}

.fh-site-search__results {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  max-height: min(520px, calc(100vh - 190px));
  overflow: auto;
}

.fh-site-search__results p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  margin: 6px 2px 4px;
}

.fh-site-search__group {
  display: grid;
  gap: 5px;
}

.fh-site-search__group h3 {
  color: rgba(255, 255, 255, 0.58);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin: 0 0 2px;
  text-transform: uppercase;
}

.fh-site-search__item {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  color: #fff;
  display: grid;
  gap: 2px 10px;
  grid-template-columns: 42px minmax(0, 1fr);
  min-height: 54px;
  padding: 7px;
  text-decoration: none;
}

.fh-site-search__item:hover {
  background: rgba(243, 24, 34, 0.82);
  border-color: rgba(255, 255, 255, 0.2);
}

.fh-site-search__item img,
.fh-site-search__item > span {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  grid-row: span 2;
  height: 42px;
  object-fit: contain;
  width: 42px;
}

.fh-site-search__item strong {
  font-size: 13px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fh-site-search__item small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
}

.fh-site-search__all {
  background: rgba(243, 24, 34, 0.95);
  border-radius: 7px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 12px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.fh-site-footer {
  background:
    radial-gradient(circle at 0% 20%, rgba(243, 24, 34, 0.16), transparent 28%),
    radial-gradient(circle at 100% 18%, rgba(101, 179, 46, 0.15), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 38%),
    rgba(4, 9, 14, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.66);
  overflow: hidden;
  padding: 54px 0 26px;
  position: relative;
}

.fh-site-footer::before {
  background: url("assets/images/footer-ribbon.png") center / contain no-repeat;
  bottom: -112px;
  content: "";
  height: 520px;
  left: -270px;
  opacity: 0.56;
  pointer-events: none;
  position: absolute;
  width: 520px;
  z-index: 0;
}

.fh-site-footer::after {
  background: url("assets/images/footer-ribbon.png") center / contain no-repeat;
  bottom: -112px;
  content: "";
  height: 520px;
  opacity: 0.56;
  pointer-events: none;
  position: absolute;
  right: -270px;
  transform: scaleX(-1);
  width: 520px;
  z-index: 0;
}

.fh-site-footer__inner {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(260px, 1.45fr) minmax(170px, 0.8fr) minmax(190px, 0.7fr);
  padding: 12px 0 38px;
  position: relative;
  z-index: 1;
}

.fh-site-footer__bottom {
  position: relative;
  z-index: 1;
}

.fh-site-footer__brand {
  align-content: start;
  display: grid;
  gap: 18px;
}

.fh-site-footer__logo {
  display: inline-flex;
  max-width: 300px;
}

.fh-site-footer__logo img {
  display: block;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.fh-site-footer__brand p {
  color: #fff;
  font-size: clamp(12px, 0.9vw, 13px);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 0;
  max-width: 300px;
  text-transform: uppercase;
  white-space: nowrap;
  width: 100%;
}

.fh-site-footer__links,
.fh-site-footer__social {
  align-content: start;
  display: grid;
  gap: 11px;
}

.fh-site-footer__links strong,
.fh-site-footer__social strong {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.fh-site-footer__links a,
.fh-site-footer__bottom a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.18s ease, transform 0.18s ease;
}

.fh-site-footer__links a:hover,
.fh-site-footer__bottom a:hover {
  color: #fff;
  transform: translateX(2px);
}

.fh-site-footer__social-icons {
  display: flex;
  gap: 8px;
}

.fh-site-footer__bottom {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding-top: 22px;
  position: relative;
  z-index: 1;
}

.fh-site-footer p {
  margin: 0;
}

.fh-site-footer__bottom p {
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.fh-site-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.fh-site-footer__bottom a {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.fh-home {
  background:
    radial-gradient(circle at 80% 10%, rgba(227, 6, 19, 0.16), transparent 28%),
    radial-gradient(circle at 18% 76%, rgba(101, 179, 46, 0.18), transparent 24%),
    linear-gradient(180deg, #020409 0%, #081018 44%, #05080d 100%);
  color: #fff;
  overflow: hidden;
}

.fh-home-hero {
  background-color: #05080d;
  background-position: center;
  background-size: cover;
  min-height: clamp(520px, 74vw, 760px);
  position: relative;
}

.fh-home-hero--1 {
  background-image:
    linear-gradient(90deg, rgba(3, 7, 12, 0.99) 0%, rgba(3, 7, 12, 0.92) 29%, rgba(3, 7, 12, 0.56) 49%, rgba(3, 7, 12, 0.08) 100%),
    url("assets/images/futsal-hero-20260617.png?v=20260617");
}

.fh-home-hero--2 {
  background-image:
    linear-gradient(90deg, rgba(3, 7, 12, 0.99) 0%, rgba(3, 7, 12, 0.92) 28%, rgba(3, 7, 12, 0.48) 51%, rgba(3, 7, 12, 0.1) 100%),
    url("assets/images/futsal-hero-20260617.png?v=20260617");
}

.fh-home-hero::after {
  content: none;
}

.fh-home-hero__inner {
  align-items: center;
  display: flex;
  gap: 42px;
  justify-content: space-between;
  min-height: inherit;
  position: relative;
  z-index: 1;
}

.fh-home-hero__copy {
  max-width: 650px;
  padding: 70px 0 110px;
}

.fh-home-eyebrow {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.fh-home-hero h1 {
  font-size: clamp(50px, calc(7.65vw - 3px), 92px);
  font-weight: 900;
  line-height: 0.86;
  margin: 0;
  text-transform: uppercase;
}

.fh-home-hero h1 span {
  color: var(--fh-hot-red);
  display: block;
  font-style: italic;
}

.fh-home-hero__tagline {
  color: #fff;
  font-size: clamp(18px, 2.05vw, 29px);
  font-weight: 800;
  letter-spacing: 0;
  margin: 18px 0 0;
  text-transform: uppercase;
}

.fh-home-tricolor {
  display: grid;
  gap: 0;
  grid-template-columns: 82px 82px 82px;
  height: 5px;
  margin-top: 18px;
  transform: skewX(-18deg);
  width: max-content;
}

.fh-home-tricolor span:nth-child(1) {
  background: var(--fh-hot-red);
}

.fh-home-tricolor span:nth-child(2) {
  background: #fff;
}

.fh-home-tricolor span:nth-child(3) {
  background: var(--fh-green);
}

.fh-home-hero__tags,
.fh-home-hero__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 24px;
}

.fh-home-hero__tags span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.fh-home-hero__tags span + span::before {
  background: radial-gradient(circle, #ff3a42 0 34%, rgba(243, 24, 34, 0.72) 48%, rgba(243, 24, 34, 0.2) 72%, rgba(243, 24, 34, 0) 100%);
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(243, 24, 34, 0.38);
  content: "";
  display: inline-block;
  height: 11px;
  margin-right: 13px;
  transform: translateY(-2px);
  width: 11px;
}

.fh-home-button {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  min-height: 48px;
  padding: 0 24px;
  text-decoration: none;
  text-transform: uppercase;
}

.fh-home-button--primary {
  background: var(--fh-hot-red);
  border-color: var(--fh-hot-red);
}

.fh-home-hero-news {
  background: transparent;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
  box-sizing: border-box;
  overflow: visible;
  padding: 0;
  position: absolute;
  bottom: 62px;
  left: 0;
  right: 0;
  width: 100%;
}

.fh-home-hero-news::before {
  display: none;
}

.fh-home-hero-news__head {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 10px;
}

.fh-home-hero-news__head span,
.fh-home-hero-news__head a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fh-home-hero-news__head a {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
}

.fh-home-hero-news__list {
  display: block;
  min-height: 88px;
  position: relative;
}

.fh-home-hero-news__group {
  animation: fhHeroNewsGroupFade 12s infinite;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  inset: 0;
  opacity: 0;
  position: absolute;
  visibility: hidden;
}

.fh-home-hero-news__group:nth-child(2) {
  animation-delay: 6s;
}

.fh-home-hero-news__item a {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(12px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 10px 22px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  display: grid;
  gap: 5px;
  height: 88px;
  padding: 11px 12px;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.fh-home-hero-news__item a:hover {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.145), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.fh-home-hero-news__meta {
  align-items: center;
  color: rgba(255, 255, 255, 0.54);
  display: flex;
  flex-wrap: wrap;
  font-size: 10px;
  font-weight: 900;
  gap: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.fh-home-hero-news__meta span {
  color: rgba(255, 255, 255, 0.7);
}

.fh-home-hero-news__meta span::before {
  background: radial-gradient(circle, #ff3a42 0 38%, rgba(243, 24, 34, 0.18) 72%, rgba(243, 24, 34, 0) 100%);
  border-radius: 999px;
  content: "";
  display: inline-block;
  height: 7px;
  margin-right: 8px;
  transform: translateY(-1px);
  width: 7px;
}

.fh-home-hero-news__item strong {
  color: #fff;
  display: -webkit-box;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.16;
  overflow: hidden;
  text-transform: uppercase;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@keyframes fhHeroNewsGroupFade {
  0%,
  44% {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  50%,
  100% {
    opacity: 0;
    transform: translateY(-6px);
    visibility: hidden;
  }
}

.fh-home-partners,
.fh-home-score-strip,
.fh-home-lower,
.fh-home-summary-layout,
.fh-home-news-grid,
.fh-home-categories {
  display: grid;
  gap: 18px;
}

.fh-home-partners {
  backdrop-filter: blur(22px) saturate(130%);
  background:
    radial-gradient(circle at 28% 0%, rgba(255, 255, 255, 0.11), transparent 32%),
    radial-gradient(circle at 78% 24%, rgba(101, 179, 46, 0.13), transparent 30%),
    linear-gradient(135deg, rgba(12, 21, 29, 0.72), rgba(5, 10, 16, 0.86));
  border: 1px solid rgba(101, 179, 46, 0.72);
  box-shadow:
    inset 5px 0 0 rgba(243, 24, 34, 0.92),
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 24px 70px rgba(0, 0, 0, 0.42);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: -17px;
  padding: 48px 22px 22px;
  position: relative;
  z-index: 2;
}

.fh-home-partners,
.fh-home-stats,
.fh-home-score-card,
.fh-home-stats-card,
.fh-home-panel,
.fh-home-summary-panel,
.fh-home-archive-card,
.fh-home-media-card,
.fh-home-news-card,
.fh-home-compact-card,
.fh-home-category {
  border-radius: 8px;
}

.fh-home-score-card,
.fh-home-stats-card,
.fh-home-panel,
.fh-home-summary-panel,
.fh-home-archive-card,
.fh-home-media-card,
.fh-home-news-card,
.fh-home-compact-card,
.fh-home-category {
  background: rgba(10, 18, 26, 0.9);
}

.fh-home-partners::before {
  background: linear-gradient(90deg, rgba(243, 24, 34, 0.84), transparent 16%, transparent 84%, rgba(101, 179, 46, 0.7));
  border-radius: inherit;
  content: "";
  inset: -1px;
  opacity: 0.55;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.fh-home-partners .fh-home-partners__badge {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(243, 24, 34, 0.32), rgba(243, 24, 34, 0.08) 34%, rgba(101, 179, 46, 0.16)),
    linear-gradient(135deg, rgba(20, 29, 38, 0.96), rgba(8, 14, 21, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 4px solid var(--fh-hot-red);
  border-radius: 4px 7px 7px 4px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 16px 34px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(243, 24, 34, 0.12);
  color: rgba(255, 255, 255, 0.86);
  display: inline-flex;
  font-size: 12px;
  font-weight: 950;
  gap: 10px;
  left: 30px;
  letter-spacing: 0.11em;
  min-height: 36px;
  padding: 0 18px 0 14px;
  position: absolute;
  text-transform: uppercase;
  top: -15px;
  z-index: 2;
}

.fh-home-partners .fh-home-partners__badge::before {
  background:
    radial-gradient(circle, #fff 0 30%, rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle, #ff3039 0 42%, rgba(243, 24, 34, 0.18) 73%, rgba(243, 24, 34, 0) 100%);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(243, 24, 34, 0.48);
  content: "";
  height: 12px;
  width: 12px;
}

.fh-home-partners .fh-home-partners__badge::after {
  background: linear-gradient(135deg, rgba(101, 179, 46, 0.28), rgba(243, 24, 34, 0.1));
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  content: "";
  height: 24px;
  position: absolute;
  right: -11px;
  top: 5px;
  transform: skewX(-23deg);
  width: 22px;
  z-index: -1;
}

.fh-home-partners div {
  display: grid;
  gap: 8px;
  min-height: 104px;
  place-content: center;
}

.fh-home-partners div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.fh-home-partners span,
.fh-home-partners small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.fh-home-partners strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 48px;
  line-height: 0.9;
}

.fh-home-partners img {
  display: block;
  height: auto;
  margin: 2px 0;
  max-height: 58px;
  max-width: min(280px, 100%);
  object-fit: contain;
  width: auto;
}

.fh-home-partners div:last-child img {
  max-height: 52px;
  max-width: min(220px, 100%);
}

.fh-home-stats {
  backdrop-filter: blur(24px) saturate(135%);
  background:
    radial-gradient(circle at 14% 0%, rgba(243, 24, 34, 0.22), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(101, 179, 46, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(12, 20, 28, 0.84), rgba(4, 9, 14, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 72px rgba(0, 0, 0, 0.38);
  margin-top: 26px;
  overflow: hidden;
  padding: 24px;
  position: relative;
}

.fh-home-stats::before {
  background: linear-gradient(90deg, var(--fh-hot-red), rgba(101, 179, 46, 0.86));
  content: "";
  height: 3px;
  left: 24px;
  position: absolute;
  right: 24px;
  top: 0;
}

.fh-home-stats__head h2 {
  color: #fff;
  font-size: 34px;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.fh-home-stats__head h2::after {
  background: var(--fh-hot-red);
  content: "";
  display: block;
  height: 3px;
  margin-top: 8px;
  width: 58px;
}

.fh-home-stats-tabs {
  display: grid;
  gap: 18px;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 430px;
  position: relative;
}

.fh-home-stats-tabs__input,
.fh-home-stats-card-toggle {
  height: 1px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 1px;
}

.fh-home-stats-tabs__nav {
  align-content: center;
  display: grid;
  gap: 10px;
  grid-auto-rows: max-content;
  grid-template-columns: 1fr;
  margin: 0;
  max-width: none;
  padding: 6px;
}

.fh-home-stats-tabs__nav label {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  display: flex;
  font-size: 13px;
  font-weight: 900;
  justify-content: flex-start;
  min-height: 62px;
  padding: 0 18px;
  text-align: left;
  text-transform: uppercase;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.fh-home-stats-tabs__nav label::after {
  content: none;
}

.fh-home-stats-tabs__nav label:hover {
  background: rgba(243, 24, 34, 0.14);
  border-color: rgba(243, 24, 34, 0.48);
  box-shadow: 0 12px 28px rgba(243, 24, 34, 0.16);
  color: #fff;
}

.fh-home-stats-panel {
  display: none;
  min-width: 0;
}

#fh-home-stats-tab-ferfi-helyosztok:checked ~ .fh-home-stats-tabs__nav label[for="fh-home-stats-tab-ferfi-helyosztok"],
#fh-home-stats-tab-noi-helyosztok:checked ~ .fh-home-stats-tabs__nav label[for="fh-home-stats-tab-noi-helyosztok"] {
  background: linear-gradient(135deg, rgba(243, 24, 34, 0.98), rgba(159, 20, 28, 0.9));
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 34px rgba(243, 24, 34, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: #fff;
}

#fh-home-stats-tab-ferfi-helyosztok:checked ~ .fh-home-stats-tabs__nav label[for="fh-home-stats-tab-ferfi-helyosztok"]::after,
#fh-home-stats-tab-noi-helyosztok:checked ~ .fh-home-stats-tabs__nav label[for="fh-home-stats-tab-noi-helyosztok"]::after {
  content: none;
}

#fh-home-stats-tab-ferfi-helyosztok:checked ~ .fh-home-stats-tabs__panels .fh-home-stats-panel--ferfi-helyosztok,
#fh-home-stats-tab-noi-helyosztok:checked ~ .fh-home-stats-tabs__panels .fh-home-stats-panel--noi-helyosztok {
  display: block;
}

.fh-home-stats-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fh-home-stats-stage {
  align-items: center;
  display: grid;
  min-width: 0;
  min-height: 378px;
}

.fh-home-stats-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  min-height: 0;
  overflow: hidden;
  padding: 0;
}

.fh-home-stats-stage .fh-home-stats-card {
  display: none;
  width: 100%;
}

.fh-home-stats-card-toggle--matches:checked ~ .fh-home-stats-stage .fh-home-stats-card--matches,
.fh-home-stats-card-toggle--results:checked ~ .fh-home-stats-stage .fh-home-stats-card--results,
.fh-home-stats-card-toggle--table:checked ~ .fh-home-stats-stage .fh-home-stats-card--table {
  display: block;
}

.fh-home-stats-card-pager {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}

.fh-home-stats-card-pager label {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.66);
  cursor: pointer;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  min-height: 34px;
  padding: 0 13px;
  text-transform: uppercase;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.fh-home-stats-card-pager label:hover {
  background: rgba(243, 24, 34, 0.14);
  border-color: rgba(243, 24, 34, 0.64);
  box-shadow: 0 10px 22px rgba(243, 24, 34, 0.14);
  color: #fff;
  transform: translateY(-1px);
}

.fh-home-stats-card-toggle--matches:checked ~ .fh-home-stats-card-pager label[data-card="matches"]:hover,
.fh-home-stats-card-toggle--results:checked ~ .fh-home-stats-card-pager label[data-card="results"]:hover,
.fh-home-stats-card-toggle--table:checked ~ .fh-home-stats-card-pager label[data-card="table"]:hover {
  background: linear-gradient(135deg, rgba(243, 24, 34, 0.98), rgba(159, 20, 28, 0.9));
  border-color: rgba(243, 24, 34, 0.98);
  box-shadow: 0 12px 28px rgba(243, 24, 34, 0.22);
}

.fh-home-stats-card-toggle--matches:checked ~ .fh-home-stats-card-pager label[data-card="matches"],
.fh-home-stats-card-toggle--results:checked ~ .fh-home-stats-card-pager label[data-card="results"],
.fh-home-stats-card-toggle--table:checked ~ .fh-home-stats-card-pager label[data-card="table"] {
  background: linear-gradient(135deg, rgba(101, 179, 46, 0.98), rgba(33, 105, 55, 0.95));
  border-color: rgba(101, 179, 46, 0.98);
  box-shadow: 0 12px 28px rgba(101, 179, 46, 0.18);
  color: #fff;
}

.fh-home-stats-card-toggle--matches:checked ~ .fh-home-stats-card-pager label[data-card="matches"]:hover,
.fh-home-stats-card-toggle--results:checked ~ .fh-home-stats-card-pager label[data-card="results"]:hover,
.fh-home-stats-card-toggle--table:checked ~ .fh-home-stats-card-pager label[data-card="table"]:hover {
  background: linear-gradient(135deg, rgba(243, 24, 34, 0.98), rgba(159, 20, 28, 0.9));
  border-color: rgba(243, 24, 34, 0.98);
  box-shadow: 0 12px 28px rgba(243, 24, 34, 0.22);
}

.fh-home-stats-card__head {
  align-items: baseline;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 12px;
}

.fh-home-stats-card__head span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fh-home-stats-card__head strong {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
}

.fh-home-stats .fh-home-match-slide__list {
  gap: 8px;
}

.fh-home-stats-series {
  display: grid;
  gap: 6px;
}

.fh-home-stats-series + .fh-home-stats-series,
.fh-home-stats-table-series + .fh-home-stats-table-series {
  margin-top: 12px;
}

.fh-home-stats-series__label {
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  font-size: 11px;
  font-weight: 950;
  gap: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fh-home-stats-series__label::before {
  background: var(--fh-hot-red);
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(243, 24, 34, 0.48);
  content: "";
  height: 6px;
  width: 6px;
}

.fh-home-empty--series {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  margin: 0;
  min-height: 58px;
  padding: 18px 16px;
}

.fh-home-stats .fh-home-match-row {
  background: rgba(255, 255, 255, 0.042);
  grid-template-columns: minmax(0, 1fr) minmax(62px, max-content) minmax(0, 1fr);
  min-height: 74px;
  padding: 9px 10px 10px;
}

.fh-home-stats .fh-home-match-row time {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  margin-bottom: 2px;
}

.fh-home-stats .fh-home-team-chip span {
  font-size: 13px;
}

.fh-home-stats .fh-home-match-row .fh-home-team-chip:first-of-type {
  justify-content: end;
  text-align: right;
}

.fh-home-stats .fh-home-match-row .fh-home-team-chip:first-of-type img {
  order: 2;
}

.fh-home-stats .fh-home-match-row .fh-home-team-chip:last-of-type {
  justify-content: start;
  text-align: left;
}

.fh-home-stats .fh-home-team-chip img {
  height: 38px;
  width: 38px;
}

.fh-home-stats .fh-home-match-row > span {
  font-size: 25px;
}

.fh-home-stats-card--table,
.fh-home-stats-card--scorers {
  align-self: stretch;
  min-height: 0;
}

.fh-home-stats-card--scorers {
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fh-home-stats .fh-home-standings {
  font-size: 13px;
}

.fh-home-stats-table-list {
  display: grid;
  gap: 0;
}

.fh-home-stats-table-series .fh-home-standings {
  margin-top: 6px;
}

.fh-home-stats .fh-home-standings th,
.fh-home-stats .fh-home-standings td {
  padding: 8px 6px;
}

.fh-home-stats .fh-home-standings-team img {
  height: 28px;
  width: 28px;
}

.fh-home-stats .fh-home-standings-team strong {
  font-size: 12px;
}

.fh-home-scorers {
  align-content: center;
  display: grid;
  flex: 1 1 auto;
  gap: 7px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fh-home-scorers__toggle {
  height: 1px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 1px;
}

.fh-home-scorers__extra {
  display: none;
}

.fh-home-scorers__toggle:checked ~ .fh-home-scorers .fh-home-scorers__extra {
  display: list-item;
}

.fh-home-scorers a {
  align-items: center;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  color: #fff;
  display: grid;
  gap: 10px;
  grid-template-columns: 30px minmax(0, 1fr) 34px;
  min-height: 42px;
  padding: 8px 10px;
  text-decoration: none;
}

.fh-home-scorers a:hover {
  border-color: rgba(243, 24, 34, 0.5);
}

.fh-home-scorers span {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 900;
}

.fh-home-scorers strong {
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.fh-home-scorers em {
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  text-align: right;
}

.fh-home-scorers-more {
  align-items: center;
  align-self: center;
  background: rgba(243, 24, 34, 0.12);
  border: 1px solid rgba(243, 24, 34, 0.55);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  justify-content: center;
  margin-top: 12px;
  min-height: 34px;
  padding: 0 18px;
  text-transform: uppercase;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.fh-home-scorers-more:hover {
  background: rgba(243, 24, 34, 0.22);
  border-color: rgba(243, 24, 34, 0.86);
  transform: translateY(-1px);
}

.fh-home-scorers-more__close {
  display: none;
}

.fh-home-scorers__toggle:checked ~ .fh-home-scorers-more .fh-home-scorers-more__open {
  display: none;
}

.fh-home-scorers__toggle:checked ~ .fh-home-scorers-more .fh-home-scorers-more__close {
  display: inline;
}

.fh-home-score-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.fh-home-score-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 120px;
  padding: 18px;
}

.fh-home-score-card > span,
.fh-home-section__head a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.fh-home-score-card__teams {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  margin-top: 16px;
}

.fh-home-score-card__teams > strong,
.fh-home-score-card--round strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 42px;
  line-height: 1;
}

.fh-home-score-card small,
.fh-home-empty {
  color: rgba(255, 255, 255, 0.6);
}

.fh-home-match-carousel {
  overflow: hidden;
  position: relative;
}

.fh-home-match-carousel__input {
  height: 1px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 1px;
}

.fh-home-match-carousel__head {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.fh-home-match-carousel__head > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.fh-home-match-carousel__panels {
  margin-top: 14px;
}

.fh-home-match-slide {
  display: none;
  min-width: 0;
}

#fh-home-match-toggle-nb1-felsohaz:checked ~ .fh-home-match-carousel__panels .fh-home-match-slide--nb1-felsohaz,
#fh-home-match-toggle-nb1-alsohaz:checked ~ .fh-home-match-carousel__panels .fh-home-match-slide--nb1-alsohaz,
#fh-home-match-toggle-noi-nb1:checked ~ .fh-home-match-carousel__panels .fh-home-match-slide--noi-nb1,
#fh-home-result-toggle-nb1-felsohaz:checked ~ .fh-home-match-carousel__panels .fh-home-match-slide--nb1-felsohaz,
#fh-home-result-toggle-nb1-alsohaz:checked ~ .fh-home-match-carousel__panels .fh-home-match-slide--nb1-alsohaz,
#fh-home-result-toggle-noi-nb1:checked ~ .fh-home-match-carousel__panels .fh-home-match-slide--noi-nb1,
#fh-home-table-toggle-nb1-felsohaz:checked ~ .fh-home-match-carousel__panels .fh-home-match-slide--nb1-felsohaz,
#fh-home-table-toggle-nb1-alsohaz:checked ~ .fh-home-match-carousel__panels .fh-home-match-slide--nb1-alsohaz,
#fh-home-table-toggle-noi-nb1:checked ~ .fh-home-match-carousel__panels .fh-home-match-slide--noi-nb1 {
  display: block;
}

.fh-home-match-slide > strong {
  color: #fff;
  display: block;
  font-size: 12px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.fh-home-match-slide__list {
  display: grid;
  gap: 6px;
}

.fh-home-match-row {
  align-items: center;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  color: #fff;
  display: grid;
  gap: 5px 8px;
  grid-template-columns: minmax(0, 1fr) 38px minmax(0, 1fr);
  min-height: 58px;
  padding: 7px 8px 8px;
  text-decoration: none;
}

.fh-home-match-row:visited {
  color: #fff;
}

.fh-home-match-row:hover,
.fh-home-match-row:focus-visible {
  background: linear-gradient(135deg, rgba(243, 24, 34, 0.14), rgba(243, 24, 34, 0.035));
  border-color: rgba(243, 24, 34, 0.74);
  box-shadow: 0 12px 28px rgba(243, 24, 34, 0.16);
  color: var(--fh-hot-red);
}

.fh-home-match-row:hover time,
.fh-home-match-row:focus-visible time,
.fh-home-match-row:hover .fh-home-team-chip span,
.fh-home-match-row:focus-visible .fh-home-team-chip span,
.fh-home-match-row:hover > span,
.fh-home-match-row:focus-visible > span {
  color: var(--fh-hot-red);
}

.fh-home-match-row > span {
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  min-width: max-content;
  text-align: center;
  white-space: nowrap;
}

.fh-home-match-row time {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  grid-column: 1 / -1;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
}

.fh-home-match-carousel__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}

.fh-home-match-carousel__dots label {
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  cursor: pointer;
  height: 8px;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, width 0.18s ease;
  width: 8px;
}

.fh-home-match-carousel__dots label span {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

#fh-home-match-toggle-nb1-felsohaz:checked ~ .fh-home-match-carousel__dots label[for="fh-home-match-toggle-nb1-felsohaz"],
#fh-home-match-toggle-nb1-alsohaz:checked ~ .fh-home-match-carousel__dots label[for="fh-home-match-toggle-nb1-alsohaz"],
#fh-home-match-toggle-noi-nb1:checked ~ .fh-home-match-carousel__dots label[for="fh-home-match-toggle-noi-nb1"],
#fh-home-result-toggle-nb1-felsohaz:checked ~ .fh-home-match-carousel__dots label[for="fh-home-result-toggle-nb1-felsohaz"],
#fh-home-result-toggle-nb1-alsohaz:checked ~ .fh-home-match-carousel__dots label[for="fh-home-result-toggle-nb1-alsohaz"],
#fh-home-result-toggle-noi-nb1:checked ~ .fh-home-match-carousel__dots label[for="fh-home-result-toggle-noi-nb1"],
#fh-home-table-toggle-nb1-felsohaz:checked ~ .fh-home-match-carousel__dots label[for="fh-home-table-toggle-nb1-felsohaz"],
#fh-home-table-toggle-nb1-alsohaz:checked ~ .fh-home-match-carousel__dots label[for="fh-home-table-toggle-nb1-alsohaz"],
#fh-home-table-toggle-noi-nb1:checked ~ .fh-home-match-carousel__dots label[for="fh-home-table-toggle-noi-nb1"] {
  background: var(--fh-hot-red);
  border-color: var(--fh-hot-red);
  transform: translateY(-1px);
  width: 22px;
}

.fh-home-table-carousel {
  padding-bottom: 14px;
}

.fh-home-standings {
  border-collapse: collapse;
  color: #fff;
  font-size: 11px;
  table-layout: fixed;
  width: 100%;
}

.fh-home-standings th,
.fh-home-standings td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 6px 4px;
  text-align: center;
}

.fh-home-standings th {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.fh-home-standings th:first-child,
.fh-home-standings td:first-child {
  text-align: left;
  width: 68%;
}

.fh-home-standings-team {
  align-items: center;
  display: flex;
  gap: 6px;
  min-width: 0;
  width: 100%;
}

.fh-home-standings-team span {
  color: rgba(255, 255, 255, 0.45);
  flex: 0 0 auto;
  font-weight: 900;
  width: 16px;
}

.fh-home-standings-team img {
  flex: 0 0 auto;
  height: 22px;
  object-fit: contain;
  width: 22px;
}

.fh-home-standings-team strong {
  display: block;
  font-size: 10px;
  font-weight: 900;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.fh-home-standings td > strong {
  color: #fff;
}

.fh-home-team-chip {
  align-items: center;
  display: flex;
  gap: 9px;
  min-width: 0;
}

.fh-home-team-chip img {
  height: 34px;
  object-fit: contain;
  width: 34px;
}

.fh-home-team-chip span {
  font-size: 12px;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.fh-home-section {
  margin-top: 38px;
}

.fh-home-section__head {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.fh-home-section__head h2 {
  font-size: 34px;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.fh-home-section__head h2::after {
  background: var(--fh-hot-red);
  content: "";
  display: block;
  height: 3px;
  margin-top: 8px;
  width: 58px;
}

.fh-home-news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fh-home-news-tabs {
  position: relative;
}

.fh-home-news-tabs__input {
  height: 1px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 1px;
}

.fh-home-news-tabs__nav {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(7, 14, 22, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 18px 44px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: -2px 0 20px;
  padding: 6px;
  width: max-content;
}

.fh-home-news-tabs__nav label {
  align-items: center;
  backdrop-filter: blur(14px) saturate(130%);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.66);
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  min-height: 34px;
  padding: 0 17px;
  text-transform: uppercase;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.fh-home-news-tabs__nav label:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.fh-home-news-tab-panel {
  display: none;
}

#fh-news-tab-nb1-ferfi:checked ~ .fh-home-news-tabs__nav label[for="fh-news-tab-nb1-ferfi"],
#fh-news-tab-nb1-noi:checked ~ .fh-home-news-tabs__nav label[for="fh-news-tab-nb1-noi"],
#fh-news-tab-magyar-kupa:checked ~ .fh-home-news-tabs__nav label[for="fh-news-tab-magyar-kupa"],
#fh-news-tab-valogatott:checked ~ .fh-home-news-tabs__nav label[for="fh-news-tab-valogatott"] {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), transparent 34%),
    linear-gradient(135deg, rgba(243, 24, 34, 0.98), rgba(173, 7, 17, 0.94));
  border-color: rgba(243, 24, 34, 1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 28px rgba(243, 24, 34, 0.2);
  color: #fff;
}

#fh-news-tab-nb1-ferfi:checked ~ .fh-home-news-tabs__panels .fh-home-news-tab-panel--nb1-ferfi,
#fh-news-tab-nb1-noi:checked ~ .fh-home-news-tabs__panels .fh-home-news-tab-panel--nb1-noi,
#fh-news-tab-magyar-kupa:checked ~ .fh-home-news-tabs__panels .fh-home-news-tab-panel--magyar-kupa,
#fh-news-tab-valogatott:checked ~ .fh-home-news-tabs__panels .fh-home-news-tab-panel--valogatott {
  display: grid;
}

.fh-home-news-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.fh-home-news-card__image {
  aspect-ratio: 16 / 9;
  background: #121b24;
  display: block;
  overflow: hidden;
  position: relative;
}

.fh-home-news-card__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
  width: 100%;
}

.fh-home-news-card:hover img,
.fh-home-compact-card:hover img {
  transform: scale(1.04);
}

.fh-home-news-card__image::after {
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.74));
  content: "";
  inset: 0;
  position: absolute;
}

.fh-home-news-card__image span {
  background: var(--fh-hot-red);
  bottom: 14px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  left: 14px;
  padding: 5px 10px;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

.fh-home-news-card div {
  padding: 16px;
}

.fh-home-news-card h3,
.fh-home-compact-card strong {
  font-size: 18px;
  line-height: 1.2;
  margin: 0 0 12px;
}

.fh-home-news-card a,
.fh-home-compact-card a,
.fh-home-match-list a,
.fh-home-category {
  color: #fff;
  text-decoration: none;
}

.fh-home-news-card time {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.fh-home-media {
  margin-top: 38px;
}

.fh-home-media .fh-home-section__head {
  margin-bottom: 18px;
}

.fh-home-media__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fh-home-media-card {
  backdrop-filter: blur(22px) saturate(135%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 60px rgba(0, 0, 0, 0.34);
  min-height: 430px;
  overflow: hidden;
  padding: 22px;
  position: relative;
}

.fh-home-media-card::before {
  background: linear-gradient(90deg, var(--fh-hot-red), transparent 30%, rgba(101, 179, 46, 0.82));
  content: "";
  height: 2px;
  left: 22px;
  opacity: 0.88;
  position: absolute;
  right: 22px;
  top: 0;
}

.fh-home-media-card--video {
  background:
    radial-gradient(circle at 0% 0%, rgba(243, 24, 34, 0.2), transparent 32%),
    radial-gradient(circle at 90% 18%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), transparent 42%),
    rgba(8, 15, 22, 0.92);
}

.fh-home-media-card--gallery {
  background:
    radial-gradient(circle at 100% 0%, rgba(101, 179, 46, 0.16), transparent 32%),
    radial-gradient(circle at 12% 88%, rgba(243, 24, 34, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), transparent 42%),
    rgba(8, 15, 22, 0.92);
}

.fh-home-media-card__head {
  align-items: end;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.fh-home-media-card__head span {
  color: rgba(255, 255, 255, 0.56);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.fh-home-media-card__head h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(32px, 3.1vw, 48px);
  font-weight: 600;
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
}

.fh-home-media-card__head > a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 900;
  min-height: 36px;
  padding: 0 14px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.fh-home-media-card__head > a:hover {
  background: var(--fh-hot-red);
  border-color: var(--fh-hot-red);
  transform: translateY(-1px);
}

.fh-home-media-list {
  display: grid;
  gap: 12px;
}

.fh-home-media-item a {
  align-items: stretch;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 8px;
  color: #fff;
  display: grid;
  grid-template-columns: minmax(136px, 0.42fr) minmax(0, 1fr);
  min-height: 118px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.fh-home-media-item a:hover {
  border-color: rgba(243, 24, 34, 0.5);
  transform: translateY(-2px);
}

.fh-home-media-item__image {
  background: rgba(255, 255, 255, 0.06);
  display: block;
  min-height: 118px;
  overflow: hidden;
  position: relative;
}

.fh-home-media-item__image::after {
  background: linear-gradient(90deg, transparent 46%, rgba(3, 7, 12, 0.58));
  content: "";
  inset: 0;
  position: absolute;
}

.fh-home-media-item__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.24s ease;
  width: 100%;
}

.fh-home-media-item a:hover img {
  transform: scale(1.04);
}

.fh-home-media-item__fallback {
  align-items: center;
  background:
    radial-gradient(circle at 26% 20%, rgba(243, 24, 34, 0.26), transparent 34%),
    radial-gradient(circle at 80% 80%, rgba(101, 179, 46, 0.22), transparent 38%),
    #111a23;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  font-size: 34px;
  font-weight: 900;
  height: 100%;
  justify-content: center;
  min-height: 118px;
  text-transform: uppercase;
  width: 100%;
}

.fh-home-media-item__play {
  align-items: center;
  background: var(--fh-hot-red);
  border-radius: 999px;
  bottom: 12px;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  left: 12px;
  position: absolute;
  width: 34px;
  z-index: 1;
}

.fh-home-media-item__play::before {
  border-bottom: 7px solid transparent;
  border-left: 11px solid #fff;
  border-top: 7px solid transparent;
  content: "";
  margin-left: 3px;
}

.fh-home-media-item__content {
  display: grid;
  gap: 8px;
  padding: 18px;
  place-content: center start;
}

.fh-home-media-item__content time {
  color: var(--fh-hot-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.fh-home-media-item__content strong {
  display: -webkit-box;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.08;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (min-width: 1101px) {
  .fh-home-media-item__content strong {
    font-size: 20px;
  }
}

.fh-home-partner-wall {
  margin-bottom: 60px;
  margin-top: 42px;
  padding-bottom: 10px;
  position: relative;
}

.fh-home-partner-wall::before {
  content: none;
}

.fh-home-partner-wall > * {
  position: relative;
  z-index: 1;
}

.fh-home-partner-wall .fh-home-section__head {
  margin-bottom: 18px;
}

.fh-home-partner-wall__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  position: relative;
}

.fh-home-partner-wall__grid::before {
  content: none;
}

.fh-home-partner-card {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 82px;
  padding: 0;
  position: relative;
  transition: transform 0.18s ease;
}

.fh-home-partner-card + .fh-home-partner-card {
  box-shadow: none;
}

.fh-home-partner-card::after {
  content: none;
}

.fh-home-partner-card::before {
  content: none;
}

.fh-home-partner-card:hover {
  transform: translateY(-2px);
}

.fh-home-partner-card:hover::after {
  opacity: 1;
  transform: translateX(34%);
}

.fh-home-partner-card:hover::before {
  opacity: 0.82;
  transform: scale(1.015);
}

.fh-home-partner-card a {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
}

.fh-home-partner-card img {
  display: block;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.3));
  max-height: 76px;
  max-width: min(180px, 100%);
  object-fit: contain;
  position: relative;
  transition: filter 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
  width: auto;
  z-index: 1;
}

.fh-home-partner-card:hover img {
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.3));
  opacity: 1;
  transform: scale(1.035);
}

.fh-home-categories {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.fh-home-category {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -18px 42px rgba(0, 0, 0, 0.22),
    0 18px 42px rgba(0, 0, 0, 0.24);
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(70px, 0.42fr) minmax(0, 1fr) 28px;
  isolation: isolate;
  min-height: 148px;
  overflow: hidden;
  padding: 22px 20px;
  position: relative;
  text-transform: uppercase;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.fh-home-category:hover {
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -20px 44px rgba(0, 0, 0, 0.24),
    0 24px 60px rgba(0, 0, 0, 0.32);
  transform: translateY(-2px);
}

.fh-home-category::before {
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.12) 0 13%, transparent 13% 100%),
    radial-gradient(circle at 76% 26%, rgba(255, 255, 255, 0.14), transparent 30%),
    radial-gradient(circle at 44% 78%, rgba(255, 255, 255, 0.08), transparent 34%);
  content: "";
  inset: 0;
  opacity: 0.82;
  position: absolute;
  z-index: -1;
}

.fh-home-category::after {
  border: 1px solid currentColor;
  border-radius: inherit;
  content: "";
  inset: 6px;
  opacity: 0.24;
  pointer-events: none;
  position: absolute;
}

.fh-home-category__figure {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(226, 246, 231, 0.58));
  display: block;
  height: 104px;
  justify-self: center;
  opacity: 0.84;
  position: relative;
  transform: translateX(-2px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  width: min(100%, 112px);
}

.fh-home-category:hover .fh-home-category__figure {
  opacity: 0.98;
  transform: translateX(2px) scale(1.04);
}

.fh-home-category__figure--male {
  background: url("assets/images/ferfi-szilu.png") center / contain no-repeat;
  clip-path: none;
  height: 118px;
}

.fh-home-category__figure--female {
  background: url("assets/images/noi-szilu.png") center / contain no-repeat;
  clip-path: none;
  height: 118px;
}

.fh-home-category__figure--youth {
  background: url("assets/images/utanpotlas-szilu.png") center / contain no-repeat;
  clip-path: none;
  height: 118px;
}

.fh-home-category__figure--mefob {
  background: url("assets/images/magyar-kupa-sziluett.png") center / contain no-repeat;
  clip-path: none;
  height: 118px;
}

.fh-home-category__figure--national {
  background: url("assets/images/valogatott-cimer.webp") center / contain no-repeat;
  clip-path: none;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.3));
  height: 104px;
  opacity: 0.96;
  width: min(100%, 108px);
}

.fh-home-category__figure::after {
  background: rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  bottom: 0;
  content: "";
  height: 16px;
  left: 52%;
  opacity: 0.64;
  position: absolute;
  transform: translateX(-50%);
  width: 16px;
}

.fh-home-category__figure--male::after {
  display: none;
}

.fh-home-category__figure--female::after {
  display: none;
}

.fh-home-category__figure--youth::after {
  display: none;
}

.fh-home-category__figure--mefob::after {
  display: none;
}

.fh-home-category__figure--national::after {
  display: none;
}

.fh-home-category__copy {
  min-width: 0;
}

.fh-home-category__title {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(25px, 1.95vw, 34px);
  font-weight: 900;
  line-height: 0.92;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.26);
  white-space: nowrap;
}

.fh-home-category--silver .fh-home-category__title {
  font-size: clamp(21px, 1.65vw, 30px);
}

.fh-home-category--red .fh-home-category__title {
  font-size: clamp(21px, 1.65vw, 30px);
}

.fh-home-category--national .fh-home-category__title {
  font-size: clamp(20px, 1.52vw, 28px);
}

.fh-home-category small {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: clamp(11px, 0.9vw, 16px);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-top: 9px;
}

.fh-home-category__arrow {
  border-right: 7px solid #fff;
  border-top: 7px solid #fff;
  display: block;
  height: 20px;
  opacity: 0.92;
  transform: rotate(45deg);
  transition: transform 0.18s ease;
  width: 20px;
}

.fh-home-category:hover .fh-home-category__arrow {
  transform: translateX(4px) rotate(45deg);
}

.fh-home-category--green {
  background:
    linear-gradient(122deg, rgba(13, 74, 35, 0.96), rgba(0, 75, 31, 0.88) 48%, rgba(2, 16, 10, 0.96));
  color: #fff;
}

.fh-home-category--lime {
  background:
    linear-gradient(122deg, rgba(97, 159, 67, 0.96), rgba(66, 135, 44, 0.9) 52%, rgba(16, 45, 16, 0.96));
  color: #fff;
}

.fh-home-category--silver {
  background:
    linear-gradient(122deg, rgba(143, 152, 163, 0.94), rgba(72, 81, 91, 0.9) 50%, rgba(18, 24, 31, 0.96));
  color: #fff;
}

.fh-home-category--red {
  background:
    linear-gradient(122deg, rgba(208, 28, 31, 0.94), rgba(130, 15, 18, 0.92) 50%, rgba(42, 6, 9, 0.96));
  color: #fff;
}

.fh-home-category--national {
  background:
    radial-gradient(circle at 23% 42%, rgba(202, 229, 194, 0.18), transparent 25%),
    linear-gradient(122deg, rgba(179, 26, 31, 0.94), rgba(88, 24, 26, 0.92) 48%, rgba(18, 45, 26, 0.96));
  color: #fff;
}

.fh-home-summary-layout {
  grid-template-columns: minmax(0, 3fr) minmax(280px, 2fr);
  margin-top: 56px;
}

.fh-home-summary-panel,
.fh-home-archive-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 430px;
  overflow: hidden;
  position: relative;
}

.fh-home-summary-panel {
  --fh-summary-gap: 16px;
  --fh-summary-visible: 2;
  --fh-summary-card: calc((100% - var(--fh-summary-gap)) / 2);
  --fh-summary-step: calc(var(--fh-summary-card) + var(--fh-summary-gap));
  background:
    radial-gradient(circle at 0% 0%, rgba(243, 24, 34, 0.18), transparent 30%),
    radial-gradient(circle at 72% 18%, rgba(101, 179, 46, 0.1), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 42%),
    rgba(8, 15, 22, 0.94);
  padding: 24px;
}

.fh-home-summary-panel::before {
  background: linear-gradient(90deg, var(--fh-hot-red), transparent 28%, rgba(101, 179, 46, 0.82));
  content: "";
  height: 2px;
  left: 24px;
  opacity: 0.9;
  position: absolute;
  right: 24px;
  top: 0;
}

.fh-home-archive-card {
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.12), transparent 32%),
    radial-gradient(circle at 20% 10%, rgba(243, 24, 34, 0.18), transparent 30%),
    radial-gradient(circle at 82% 88%, rgba(101, 179, 46, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 42%),
    rgba(8, 15, 22, 0.84);
}

.fh-home-archive-card::before {
  background: linear-gradient(90deg, rgba(101, 179, 46, 0.86), transparent 32%, var(--fh-hot-red));
  content: "";
  height: 2px;
  left: 24px;
  opacity: 0.85;
  position: absolute;
  right: 24px;
  top: 0;
}

.fh-home-archive-card::after {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  content: "";
  inset: 16px;
  pointer-events: none;
  position: absolute;
}

.fh-home-archive-card a {
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  justify-content: center;
  min-height: 430px;
  padding: 34px;
  position: relative;
  text-align: center;
  text-decoration: none;
  z-index: 1;
}

.fh-home-archive-card__crest {
  align-items: center;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.035) 58%, transparent 70%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  display: inline-flex;
  height: 190px;
  justify-content: center;
  position: relative;
  width: 190px;
}

.fh-home-archive-card__crest::after {
  border: 1px solid rgba(101, 179, 46, 0.42);
  border-radius: inherit;
  content: "";
  inset: 10px;
  position: absolute;
}

.fh-home-archive-card__crest img {
  display: block;
  height: 146px;
  object-fit: contain;
  position: relative;
  transition: transform 0.22s ease;
  width: 146px;
  z-index: 1;
}

.fh-home-archive-card__copy {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fh-home-archive-card__copy strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: min(30px, 7.4vw);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.fh-home-archive-card__copy span {
  align-items: center;
  background: var(--fh-hot-red);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(243, 24, 34, 0.22);
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  text-transform: uppercase;
  transition: background 0.18s ease, transform 0.18s ease;
}

.fh-home-archive-card a:hover .fh-home-archive-card__crest img {
  transform: scale(1.045);
}

.fh-home-archive-card a:hover .fh-home-archive-card__copy span {
  background: #fff;
  color: var(--fh-hot-red);
  transform: translateY(-2px);
}

.fh-home-summary-panel__head,
.fh-home-summary-panel__foot {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.fh-home-summary-panel__head h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(42px, 4.4vw, 68px);
  font-weight: 600;
  line-height: 0.92;
  margin: 0;
  text-transform: uppercase;
}

.fh-home-summary-panel__head span {
  color: rgba(255, 255, 255, 0.55);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-top: 12px;
  text-transform: uppercase;
}

.fh-home-summary-panel__controls {
  display: flex;
  gap: 8px;
}

.fh-home-summary-panel__controls button {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  cursor: pointer;
  height: 42px;
  position: relative;
  transition: background 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
  width: 42px;
}

.fh-home-summary-panel__controls button::before {
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  content: "";
  height: 12px;
  left: 13px;
  position: absolute;
  top: 13px;
  transform: rotate(45deg);
  width: 12px;
}

.fh-home-summary-panel__controls button:first-child::before {
  left: 16px;
  transform: rotate(-135deg);
}

.fh-home-summary-panel__controls button:hover {
  background: var(--fh-hot-red);
  transform: translateY(-1px);
}

.fh-home-summary-panel__controls button:disabled {
  cursor: default;
  opacity: 0.32;
  transform: none;
}

.fh-home-summary-carousel {
  margin-top: 24px;
  overflow: hidden;
}

.fh-home-summary-carousel__track {
  display: flex;
  gap: var(--fh-summary-gap);
  transition: transform 0.28s ease;
  will-change: transform;
}

.fh-home-summary-card {
  flex: 0 0 var(--fh-summary-card);
  min-width: 0;
}

.fh-home-summary-card a {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #fff;
  display: grid;
  min-height: 306px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.fh-home-summary-card a:hover {
  border-color: rgba(243, 24, 34, 0.54);
  transform: translateY(-2px);
}

.fh-home-summary-card__image {
  background: rgba(255, 255, 255, 0.06);
  display: block;
  overflow: hidden;
  position: relative;
}

.fh-home-summary-card__image::after {
  background: linear-gradient(180deg, transparent 42%, rgba(3, 7, 12, 0.9));
  content: "";
  inset: 0;
  position: absolute;
}

.fh-home-summary-card__image img {
  aspect-ratio: 16 / 10;
  display: block;
  height: auto;
  object-fit: cover;
  transition: transform 0.24s ease;
  width: 100%;
}

.fh-home-summary-card a:hover img {
  transform: scale(1.035);
}

.fh-home-summary-card__content {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.fh-home-summary-card__content time {
  color: var(--fh-hot-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.fh-home-summary-card__content strong {
  font-size: clamp(18px, 1.75vw, 24px);
  line-height: 1.05;
}

.fh-home-summary-panel__foot {
  margin-top: 20px;
}

.fh-home-summary-dots {
  display: flex;
  gap: 7px;
}

.fh-home-summary-dots button {
  background: rgba(255, 255, 255, 0.3);
  border: 0;
  border-radius: 999px;
  height: 8px;
  padding: 0;
  transition: background 0.18s ease, width 0.18s ease;
  width: 8px;
}

.fh-home-summary-dots button.is-active {
  background: var(--fh-hot-red);
  width: 24px;
}

.fh-home-summary-all {
  align-items: center;
  background: var(--fh-hot-red);
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  min-height: 42px;
  padding: 0 16px;
  text-decoration: none;
  text-transform: uppercase;
}

.fh-home-lower {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.32fr);
  margin-top: 24px;
}

.fh-home-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px;
}

.fh-home-match-list {
  display: grid;
  gap: 8px;
}

.fh-home-match-list a {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto;
  padding: 12px 0;
}

.fh-home-match-list strong {
  color: rgba(255, 255, 255, 0.58);
}

.fh-home-match-list time {
  color: var(--fh-hot-red);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.fh-home-video-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fh-home-compact-card {
  overflow: hidden;
}

.fh-home-compact-card a {
  display: grid;
}

.fh-home-compact-card img {
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  transition: transform 0.25s ease;
  width: 100%;
}

.fh-home-compact-card strong {
  padding: 12px;
}

@media (max-width: 1100px) {
  .fh-site-nav {
    gap: 3px;
  }

  .fh-home-hero__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .fh-home-hero-news {
    max-width: 520px;
    position: static;
    transform: none;
    width: 100%;
  }

  .fh-home-hero-news__list {
    display: grid;
    gap: 8px;
    min-height: 0;
  }

  .fh-home-hero-news__group {
    animation: none;
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr;
    opacity: 1;
    position: static;
    transform: none;
    visibility: visible;
  }

  .fh-home-hero-news__item {
    opacity: 1;
    position: static;
    transform: none;
    visibility: visible;
  }

  .fh-home-hero-news__item a {
    height: auto;
    min-height: 68px;
  }

  .fh-home-partners,
  .fh-home-score-strip,
  .fh-home-news-grid,
  .fh-home-categories,
  .fh-home-summary-layout,
  .fh-home-media__grid,
  .fh-home-partner-wall__grid,
  .fh-site-footer__inner,
	  .fh-home-lower,
	  .fh-home-stats-grid,
	  .fh-home-video-grid {
	    grid-template-columns: 1fr;
	  }

		  .fh-home-archive-card,
		  .fh-home-archive-card a {
		    min-height: 220px;
		  }

	  .fh-home-stats-tabs {
	    grid-template-columns: 1fr;
	    min-height: 0;
	  }

	  .fh-home-stats-tabs__nav {
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	  }

	  .fh-home-stats-tabs__nav label {
	    min-height: 56px;
	  }

	  .fh-home-partners div + div {
	    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 680px) {
  .fh-home-hero {
    min-height: auto;
    padding: 96px 0 52px;
  }

  .fh-home-hero--1 {
    background-image:
      linear-gradient(180deg, rgba(3, 7, 12, 0.72) 0%, rgba(3, 7, 12, 0.96) 58%, rgba(3, 7, 12, 1) 100%),
      url("assets/images/futsal-hero-20260617.png?v=20260617");
    background-position: 63% top;
  }

  .fh-home-hero--2 {
    background-image:
      linear-gradient(180deg, rgba(3, 7, 12, 0.72) 0%, rgba(3, 7, 12, 0.96) 58%, rgba(3, 7, 12, 1) 100%),
      url("assets/images/futsal-hero-20260617.png?v=20260617");
    background-position: 64% top;
  }

  .fh-home-hero__inner {
    gap: 28px;
    justify-content: flex-start;
    min-height: 0;
  }

  .fh-home-hero__copy {
    padding: 0;
  }

  .fh-home-partners {
    margin-top: 26px;
    margin-bottom: 18px;
  }

	  .fh-home-summary-panel {
	    --fh-summary-gap: 0px;
	    --fh-summary-visible: 1;
    --fh-summary-card: 100%;
    --fh-summary-step: 100%;
	    padding: 18px;
	  }

	  .fh-home-stats {
	    padding: 18px;
	  }

	  .fh-home-stats::before {
	    left: 18px;
	    right: 18px;
	  }

	  .fh-home-stats-tabs__nav {
	    grid-template-columns: 1fr;
	  }

  .fh-home-summary-panel::before {
    left: 18px;
    right: 18px;
  }

  .fh-home-summary-panel__head {
    align-items: flex-start;
    display: block;
  }

  .fh-home-summary-panel__head h2 {
    font-size: 42px;
  }

  .fh-home-summary-panel__controls {
    margin-top: 14px;
  }

  .fh-home-summary-card a {
    min-height: 286px;
  }

  .fh-home-media-card {
    min-height: 0;
    padding: 18px;
  }

  .fh-home-media-card::before {
    left: 18px;
    right: 18px;
  }

  .fh-home-media-card__head {
    align-items: flex-start;
    display: grid;
  }

  .fh-home-media-card__head h3 {
    font-size: 38px;
  }

  .fh-home-media-card__head > a {
    width: max-content;
  }

  .fh-home-media-item a {
    grid-template-columns: 1fr;
  }

  .fh-home-media-item__image {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .fh-home-media-item__image::after {
    background: linear-gradient(180deg, transparent 42%, rgba(3, 7, 12, 0.78));
  }

  .fh-home-partner-wall__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fh-home-partner-card {
    min-height: 106px;
  }

  .fh-home-partner-card + .fh-home-partner-card {
    box-shadow: none;
  }

  .fh-home-partner-card:nth-child(odd) {
    box-shadow: none;
  }

  .fh-home-partner-card:nth-child(n + 3) {
    box-shadow: none;
  }

  .fh-home-partner-card:nth-child(odd):nth-child(n + 3) {
    box-shadow: none;
  }

  .fh-site-footer {
    padding-top: 36px;
  }

  .fh-site-footer::before,
  .fh-site-footer::after {
    bottom: -120px;
    height: 280px;
    opacity: 0.34;
    width: 280px;
  }

  .fh-site-footer::before {
    left: -168px;
  }

  .fh-site-footer::after {
    right: -168px;
  }

  .fh-site-footer__inner {
    gap: 26px;
    padding: 24px;
  }

  .fh-site-footer__logo {
    max-width: 240px;
  }

  .fh-site-footer__brand p {
    font-size: 12px;
    max-width: 240px;
  }

  .fh-site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .fh-site-footer__bottom nav {
    justify-content: flex-start;
  }

  .fh-home-summary-panel__foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .fh-home-summary-all {
    justify-content: center;
    width: 100%;
  }

  .fh-home-score-card__teams,
  .fh-home-match-list a,
  .fh-home-match-row {
    grid-template-columns: 1fr;
  }

  .fh-home-match-carousel__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .fh-home-match-row time {
    text-align: left;
  }

  .fh-home-news-tabs__nav {
    width: 100%;
  }

  .fh-home-news-tabs__nav label {
    flex: 1 1 auto;
    justify-content: center;
  }
}

.fh-grid {
  display: grid;
  gap: 24px;
}

.fh-card {
  border: 1px solid var(--fh-border);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.fh-card__image {
  display: block;
  background: var(--fh-light);
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.fh-card__image--fallback {
  align-items: center;
  background:
    radial-gradient(circle at 26% 18%, rgba(243, 24, 34, 0.26), transparent 34%),
    radial-gradient(circle at 78% 78%, rgba(101, 179, 46, 0.22), transparent 40%),
    linear-gradient(135deg, #111a23, #071015);
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  text-decoration: none;
}

.fh-card__image--fallback span {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  display: inline-flex;
  font-size: 44px;
  font-weight: 900;
  height: 82px;
  justify-content: center;
  text-transform: uppercase;
  width: 82px;
}

.fh-card__body {
  padding: 20px;
}

.fh-card__eyebrow,
.fh-card__meta {
  margin: 0 0 8px;
  color: var(--fh-muted);
  font-size: 13px;
  font-weight: 700;
}

.fh-card__eyebrow {
  color: var(--fh-blue);
  text-transform: uppercase;
}

.fh-card__title {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
}

.fh-card__title a {
  color: var(--fh-dark);
  text-decoration: none;
}

.fh-card__excerpt {
  color: #374151;
}

.fh-archive-hero {
  background: var(--fh-navy);
  color: #fff;
  padding: 46px 0 42px;
}

.fh-archive-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.fh-archive-hero__eyebrow {
  margin: 0 0 12px;
  color: var(--fh-cyan);
  font-weight: 800;
  text-transform: uppercase;
}

.fh-archive-hero__description {
  max-width: 680px;
  margin-top: 16px;
  color: #dbeafe;
}

.post-type-archive-klub .fh-archive-hero {
  background:
    radial-gradient(circle at 10% 10%, rgba(243, 24, 34, 0.14), transparent 27%),
    radial-gradient(circle at 86% 12%, rgba(101, 179, 46, 0.13), transparent 31%),
    linear-gradient(180deg, rgba(6, 12, 18, 0.97), rgba(4, 8, 13, 1));
  padding-top: 108px;
  padding-bottom: 22px;
  position: relative;
  overflow: hidden;
}

.post-type-archive-klub .fh-archive-hero::before {
  background:
    linear-gradient(115deg, transparent 0 40%, rgba(255, 255, 255, 0.035) 40% 41%, transparent 41%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.06), transparent 38%);
  content: "";
  inset: 0;
  opacity: 0.72;
  pointer-events: none;
  position: absolute;
}

.post-type-archive-klub .fh-archive-hero .fh-container {
  position: relative;
  z-index: 1;
}

.post-type-archive-klub .fh-archive-hero__inner {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
}

.post-type-archive-klub .site-main {
  background:
    radial-gradient(circle at 4% 36%, rgba(243, 24, 34, 0.08), transparent 24%),
    radial-gradient(circle at 92% 38%, rgba(101, 179, 46, 0.09), transparent 27%),
    linear-gradient(180deg, rgba(4, 8, 13, 1), rgba(3, 7, 11, 1));
  color: #fff;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

.post-type-archive-klub .fh-container {
  width: min(1180px, calc(100% - 32px));
}

.post-type-archive-klub .fh-archive-hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(58px, 8vw, 118px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.86;
  text-transform: uppercase;
}

.post-type-archive-klub .fh-archive-hero h1::after {
  background: var(--fh-hot-red);
  content: "";
  display: block;
  height: 4px;
  margin-top: 18px;
  width: 74px;
}

.post-type-archive-klub .fh-archive-hero__description {
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
  margin-top: 16px;
}

.fh-club-search {
  display: grid;
  gap: 10px;
  justify-self: end;
  width: 100%;
}

.fh-club-search label {
  color: rgba(255, 255, 255, 0.56);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fh-club-search__field {
  align-items: center;
  background:
    radial-gradient(circle at 100% 0%, rgba(101, 179, 46, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  display: grid;
  gap: 12px;
  grid-template-columns: 22px minmax(0, 1fr);
  min-height: 58px;
  padding: 0 18px;
}

.fh-club-search__field svg {
  color: #65b32e;
  fill: currentColor;
  height: 22px;
  width: 22px;
}

.fh-club-search__field input {
  appearance: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 800;
  min-width: 0;
  outline: 0;
  width: 100%;
}

.fh-club-search__field input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.fh-club-search__field:focus-within {
  border-color: rgba(101, 179, 46, 0.72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24), 0 0 0 3px rgba(101, 179, 46, 0.12);
}

.fh-club-alpha {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.fh-club-alpha button {
  appearance: none;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  min-height: 30px;
  min-width: 30px;
  padding: 0 9px;
  text-transform: uppercase;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.fh-club-alpha button:first-child {
  min-width: 70px;
}

.fh-club-alpha button:hover,
.fh-club-alpha button:focus-visible,
.fh-club-alpha button.is-active {
  background: linear-gradient(135deg, rgba(243, 24, 34, 0.98), rgba(177, 12, 22, 0.92));
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  outline: 0;
  transform: translateY(-1px);
}

.fh-club-alpha button:disabled {
  cursor: default;
  opacity: 0.32;
  transform: none;
}

.fh-club-archive-layout {
  padding-top: 28px;
  padding-bottom: 82px;
}

.fh-club-archive-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fh-club-archive-empty {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  margin: 0;
  padding: 22px;
  text-align: center;
}

.fh-club-archive-card {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.075), transparent 31%),
    radial-gradient(circle at 100% 100%, rgba(101, 179, 46, 0.08), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.026)),
    rgba(9, 16, 24, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 22px 56px rgba(0, 0, 0, 0.26);
  display: block;
  min-height: 316px;
  overflow: hidden;
  padding: 20px;
  position: relative;
}

.fh-club-archive-card::before {
  background:
    linear-gradient(180deg, var(--fh-hot-red), rgba(243, 24, 34, 0) 44%),
    linear-gradient(0deg, rgba(101, 179, 46, 0.9), rgba(101, 179, 46, 0) 44%);
  content: "";
  inset: 0 auto 0 0;
  opacity: 0.8;
  position: absolute;
  width: 3px;
}

.fh-club-archive-card:hover {
  border-color: rgba(101, 179, 46, 0.38);
  transform: translateY(-2px);
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.fh-club-archive-card__crest {
  align-items: center;
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.11), transparent 54%),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  float: left;
  height: 76px;
  justify-content: center;
  margin: 0 16px 10px 0;
  padding: 12px;
  width: 76px;
}

.fh-club-archive-card__crest img {
  display: block;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.34));
  height: auto;
  max-height: 54px;
  max-width: 54px;
  object-fit: contain;
  width: 100%;
}

.fh-club-archive-card__crest span {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.fh-club-archive-card__body {
  display: block;
  gap: 14px;
  min-width: 0;
  padding: 0;
}

.fh-club-archive-card__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 27px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
  margin: 2px 0 26px;
  min-height: 72px;
  text-transform: uppercase;
}

.fh-club-archive-card__title a {
  color: #fff;
  text-decoration: none;
}

.fh-club-archive-card__meta {
  clear: both;
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fh-club-archive-card__meta li {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 9px;
  display: grid;
  gap: 10px;
  grid-template-columns: 28px minmax(0, 1fr);
  min-width: 0;
  padding: 10px;
}

.fh-club-archive-card__icon {
  align-items: center;
  background: rgba(101, 179, 46, 0.12);
  border: 1px solid rgba(101, 179, 46, 0.22);
  border-radius: 7px;
  color: #7bd347;
  display: flex;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.fh-club-archive-card__icon svg {
  fill: currentColor;
  height: 15px;
  width: 15px;
}

.fh-club-archive-card__meta strong {
  color: rgba(255, 255, 255, 0.48);
  display: block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.fh-club-archive-card__meta em,
.fh-club-archive-card__meta a {
  color: rgba(255, 255, 255, 0.84);
  display: block;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.3;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.fh-club-archive-card__link {
  align-items: center;
  color: #fff !important;
  display: inline-flex !important;
  font-size: 12px !important;
  gap: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fh-club-archive-card__link::after {
  color: #65b32e;
  content: "›";
  font-size: 18px;
  line-height: 1;
}

.fh-club-archive-card__meta a:hover {
  color: #fff;
}

.navigation.pagination {
  display: flex;
  justify-content: center;
  margin: 42px auto 0;
  width: 100%;
}

.navigation.pagination .nav-links {
  align-items: center;
  backdrop-filter: blur(20px) saturate(135%);
  background:
    radial-gradient(circle at 0% 0%, rgba(243, 24, 34, 0.14), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(101, 179, 46, 0.13), transparent 34%),
    rgba(9, 16, 24, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 54px rgba(0, 0, 0, 0.24);
  display: inline-flex;
  gap: 7px;
  padding: 8px;
}

.navigation.pagination .page-numbers {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  display: inline-flex;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.04em;
  min-height: 38px;
  min-width: 38px;
  padding: 0 13px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.navigation.pagination .page-numbers.current {
  background: linear-gradient(135deg, rgba(101, 179, 46, 0.98), rgba(54, 130, 29, 0.94));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 28px rgba(101, 179, 46, 0.24);
  color: #fff;
}

.navigation.pagination a.page-numbers:hover,
.navigation.pagination a.page-numbers:focus-visible {
  background: linear-gradient(135deg, rgba(243, 24, 34, 0.98), rgba(176, 8, 18, 0.9));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 28px rgba(243, 24, 34, 0.2);
  color: #fff;
  outline: 0;
  transform: translateY(-1px);
}

.navigation.pagination .page-numbers.prev,
.navigation.pagination .page-numbers.next {
  padding-inline: 18px;
}

.navigation.pagination .page-numbers.dots {
  color: rgba(255, 255, 255, 0.42);
  min-width: 24px;
  padding-inline: 4px;
}

@media (max-width: 1100px) {
  .fh-club-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fh-national-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .navigation.pagination {
    margin-top: 30px;
  }

  .navigation.pagination .nav-links {
    border-radius: 18px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
  }

  .navigation.pagination .page-numbers {
    font-size: 17px;
    min-height: 36px;
    min-width: 36px;
    padding: 0 12px;
  }

  .post-type-archive-klub .fh-archive-hero {
    padding-top: 92px;
  }

  .post-type-archive-klub .fh-archive-hero__inner {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .fh-club-search {
    justify-self: stretch;
  }

  .fh-club-archive-grid {
    grid-template-columns: 1fr;
  }

  .fh-club-archive-card {
    min-height: 0;
  }

  .fh-club-archive-card__body {
    padding: 0;
  }

  .fh-club-archive-card__title {
    font-size: 24px;
    min-height: 68px;
  }

  .fh-national-hub__hero {
    padding-top: 96px;
  }

  .fh-national-hub__hero-inner {
    grid-template-columns: 1fr;
  }

  .fh-national-hub__crest {
    height: 118px;
    justify-self: start;
    width: 118px;
  }

  .fh-national-tabs__nav {
    grid-template-columns: 1fr;
  }

  .fh-national-panel__head {
    align-items: start;
    flex-direction: column;
  }

  .fh-national-grid {
    grid-template-columns: 1fr;
  }
}

.fh-archive-layout {
  padding: 28px 0 56px;
}

.fh-section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.fh-section-nav a {
  border: 1px solid var(--fh-border);
  border-radius: 6px;
  padding: 9px 12px;
  background: #fff;
}

.fh-archive-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.fh-news-archive {
  background:
    radial-gradient(circle at 10% 12%, rgba(243, 24, 34, 0.16), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(101, 179, 46, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(6, 12, 18, 0.96), rgba(4, 8, 13, 1));
  color: #fff;
  overflow: hidden;
  position: relative;
}

.site-main.fh-news-archive {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

.fh-news-archive::before {
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.035) 38% 39%, transparent 39%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.06), transparent 36%);
  content: "";
  inset: 0;
  opacity: 0.7;
  pointer-events: none;
  position: absolute;
}

.fh-news-archive > * {
  position: relative;
  z-index: 1;
}

.fh-news-archive .fh-container {
  width: min(1180px, calc(100% - 32px));
}

.fh-news-archive-hero {
  padding: 108px 0 8px;
}

.fh-news-archive-hero__eyebrow {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.fh-news-archive-hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(58px, 8vw, 118px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.86;
  margin: 0;
  text-transform: uppercase;
}

.fh-news-archive-hero h1::after {
  background: var(--fh-hot-red);
  content: "";
  display: block;
  height: 4px;
  margin-top: 18px;
  width: 74px;
}

.fh-news-archive-hero p:not(.fh-news-archive-hero__eyebrow) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
  margin: 16px 0 0;
  max-width: 720px;
}

.fh-news-archive-shell {
  padding: 16px 0 76px;
}

.fh-news-archive-tabs {
  position: relative;
}

.fh-news-archive-tabs__input {
  height: 1px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 1px;
}

.fh-news-archive-tabs__control {
  align-items: center;
  backdrop-filter: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: grid;
  grid-template-columns: auto minmax(260px, 300px);
  gap: 18px;
  justify-self: end;
  margin: 0;
  max-width: none;
  padding: 0;
  position: relative;
  width: auto;
}

.fh-news-archive-tabs__control label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-transform: uppercase;
}

.fh-news-archive-tabs__control span {
  position: relative;
}

.fh-news-archive-tabs__control span::after {
  border-color: #fff transparent transparent;
  border-style: solid;
  border-width: 7px 6px 0;
  content: "";
  pointer-events: none;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.fh-news-archive-tabs__control select {
  appearance: none;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), transparent 32%),
    linear-gradient(135deg, rgba(101, 179, 46, 0.98), rgba(35, 122, 49, 0.95));
  border: 1px solid rgba(101, 179, 46, 0.95);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 15px 30px rgba(101, 179, 46, 0.2);
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1.15;
  min-height: 50px;
  padding: 0 46px 0 18px;
  text-transform: uppercase;
  width: 100%;
}

.fh-news-archive-tabs__control select:focus {
  outline: 2px solid rgba(101, 179, 46, 0.8);
  outline-offset: 3px;
}

.fh-news-archive-tabs__control select option {
  background: #101821;
  color: #fff;
}

.fh-news-archive-panel {
  display: none;
}

#fh-news-archive-tab-ferfi-bajnoksagok:checked ~ .fh-news-archive-tabs__panels .fh-news-archive-panel--ferfi-bajnoksagok,
#fh-news-archive-tab-noi-bajnoksagok:checked ~ .fh-news-archive-tabs__panels .fh-news-archive-panel--noi-bajnoksagok,
#fh-news-archive-tab-magyar-kupa:checked ~ .fh-news-archive-tabs__panels .fh-news-archive-panel--magyar-kupa,
#fh-news-archive-tab-ferfi-valogatott:checked ~ .fh-news-archive-tabs__panels .fh-news-archive-panel--ferfi-valogatott,
#fh-news-archive-tab-noi-valogatott:checked ~ .fh-news-archive-tabs__panels .fh-news-archive-panel--noi-valogatott,
#fh-news-archive-tab-utanpotlas-valogatott:checked ~ .fh-news-archive-tabs__panels .fh-news-archive-panel--utanpotlas-valogatott,
#fh-news-archive-tab-utanpotlas-bajnoksagok:checked ~ .fh-news-archive-tabs__panels .fh-news-archive-panel--utanpotlas-bajnoksagok,
#fh-news-archive-tab-nemzetkozi-hirek:checked ~ .fh-news-archive-tabs__panels .fh-news-archive-panel--nemzetkozi-hirek,
#fh-news-archive-tab-egyeb-hirek:checked ~ .fh-news-archive-tabs__panels .fh-news-archive-panel--egyeb-hirek,
#fh-news-archive-tab-archivum:checked ~ .fh-news-archive-tabs__panels .fh-news-archive-panel--archivum {
  display: block;
}

.fh-news-archive-panel__head {
  align-items: end;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 590px);
  margin-bottom: 18px;
}

.fh-news-archive-panel__head span {
  color: rgba(255, 255, 255, 0.52);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.fh-news-archive-panel__head h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(34px, 4.6vw, 70px);
  line-height: 0.9;
  margin: 0;
  text-transform: uppercase;
}

.fh-news-archive-panel__head h2::after {
  background: var(--fh-hot-red);
  content: "";
  display: block;
  height: 3px;
  margin-top: 10px;
  width: 66px;
}

.fh-news-archive-panel__more {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #fff;
  display: flex;
  font-size: 12px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.06em;
  margin: 22px auto 0;
  min-height: 42px;
  min-width: 180px;
  padding: 0 28px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  width: fit-content;
}

.fh-news-archive-panel__more:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(101, 179, 46, 0.8);
  transform: translateY(-1px);
}

.fh-news-archive-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fh-national-hub {
  background:
    radial-gradient(circle at 10% 10%, rgba(243, 24, 34, 0.18), transparent 30%),
    radial-gradient(circle at 88% 24%, rgba(101, 179, 46, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(6, 12, 18, 0.98), rgba(4, 8, 13, 1));
  color: #fff;
  overflow: hidden;
}

.site-main.fh-national-hub {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

.fh-national-hub__hero {
  padding: 112px 0 28px;
  position: relative;
}

.fh-national-hub__hero::before {
  background:
    linear-gradient(120deg, transparent 0 52%, rgba(243, 24, 34, 0.36) 52% 53%, transparent 53%),
    linear-gradient(120deg, transparent 0 57%, rgba(255, 255, 255, 0.22) 57% 58%, transparent 58%),
    linear-gradient(120deg, transparent 0 62%, rgba(101, 179, 46, 0.28) 62% 63%, transparent 63%);
  content: "";
  inset: 0;
  opacity: 0.72;
  pointer-events: none;
  position: absolute;
}

.fh-national-hub__hero-inner {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) 170px;
  position: relative;
  z-index: 1;
}

.fh-national-hub__eyebrow {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.fh-national-hub h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(62px, 8vw, 118px);
  font-weight: 900;
  line-height: 0.84;
  margin: 0;
  text-transform: uppercase;
}

.fh-national-hub h1::after {
  background: linear-gradient(90deg, var(--fh-hot-red), #fff, var(--fh-green));
  content: "";
  display: block;
  height: 5px;
  margin-top: 18px;
  transform: skewX(-18deg);
  width: 250px;
}

.fh-national-hub__crest {
  background: url("assets/images/valogatott-cimer.png") center / contain no-repeat;
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.3)) contrast(1.05) saturate(1.04);
  height: 170px;
  justify-self: end;
  opacity: 1;
  width: 170px;
}

.fh-national-hub__shell {
  padding: 18px 0 80px;
}

.fh-national-tabs {
  position: relative;
}

.fh-national-tabs__input {
  height: 1px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 1px;
}

.fh-national-tabs__nav {
  backdrop-filter: blur(18px) saturate(130%);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 24px;
  padding: 7px;
  width: min(820px, 100%);
}

.fh-national-tabs__nav label {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.66);
  cursor: pointer;
  display: flex;
  font-size: 12px;
  font-weight: 950;
  justify-content: center;
  letter-spacing: 0.06em;
  min-height: 44px;
  padding: 0 14px;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

#fh-national-tab-ferfi-a-valogatott:checked ~ .fh-national-tabs__nav label[for="fh-national-tab-ferfi-a-valogatott"],
#fh-national-tab-noi-a-valogatott:checked ~ .fh-national-tabs__nav label[for="fh-national-tab-noi-a-valogatott"],
#fh-national-tab-utanpotlas-valogatottak:checked ~ .fh-national-tabs__nav label[for="fh-national-tab-utanpotlas-valogatottak"] {
  background: linear-gradient(135deg, rgba(243, 24, 34, 0.98), rgba(176, 8, 18, 0.9));
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 34px rgba(243, 24, 34, 0.22);
  color: #fff;
}

.fh-national-panel {
  display: none;
}

#fh-national-tab-ferfi-a-valogatott:checked ~ .fh-national-tabs__panels .fh-national-panel--ferfi-a-valogatott,
#fh-national-tab-noi-a-valogatott:checked ~ .fh-national-tabs__panels .fh-national-panel--noi-a-valogatott,
#fh-national-tab-utanpotlas-valogatottak:checked ~ .fh-national-tabs__panels .fh-national-panel--utanpotlas-valogatottak {
  display: block;
}

.fh-national-panel__head {
  align-items: end;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.fh-national-panel__head span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.fh-national-panel__head h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(34px, 4.4vw, 68px);
  font-weight: 900;
  line-height: 0.9;
  margin: 8px 0 0;
  text-transform: uppercase;
}

.fh-national-panel__head a {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 950;
  min-height: 42px;
  padding: 0 18px;
  text-decoration: none;
  text-transform: uppercase;
}

.fh-national-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fh-national-grid .fh-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(10, 18, 26, 0.86);
}

.fh-national-grid .fh-card__title a,
.fh-national-grid .fh-card__title a:visited {
  color: #fff;
}

.fh-national-grid .fh-card__meta {
  color: rgba(255, 255, 255, 0.72);
}

.fh-national-grid .fh-card__excerpt {
  color: rgba(255, 255, 255, 0.66);
}

.fh-national-grid .fh-card__terms {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: -2px 0 12px;
}

.fh-national-grid .fh-card__terms a {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(243, 24, 34, 0.24), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  display: inline-flex;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  min-height: 25px;
  padding: 0 10px;
  text-decoration: none;
  text-transform: uppercase;
}

.fh-national-grid .fh-card__terms a:hover,
.fh-national-grid .fh-card__terms a:focus-visible {
  background: rgba(243, 24, 34, 0.86);
  color: #fff;
}

@media (max-width: 1100px) {
  .fh-national-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .fh-national-hub__hero {
    padding-top: 96px;
  }

  .fh-national-hub__hero-inner {
    grid-template-columns: 1fr;
  }

  .fh-national-hub__crest {
    height: 118px;
    justify-self: start;
    width: 118px;
  }

  .fh-national-tabs__nav {
    grid-template-columns: 1fr;
  }

  .fh-national-panel__head {
    align-items: start;
    flex-direction: column;
  }

  .fh-national-grid {
    grid-template-columns: 1fr;
  }
}

.fh-news-archive-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 34%),
    rgba(9, 16, 24, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.fh-news-archive-card:hover {
  border-color: rgba(101, 179, 46, 0.55);
  transform: translateY(-3px);
}

.fh-news-archive-card__image {
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 30% 0%, rgba(243, 24, 34, 0.22), transparent 34%),
    radial-gradient(circle at 80% 80%, rgba(101, 179, 46, 0.18), transparent 38%),
    #111a23;
  display: block;
  overflow: hidden;
  position: relative;
}

.fh-news-archive-card__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.26s ease;
  width: 100%;
}

.fh-news-archive-card:hover img {
  transform: scale(1.045);
}

.fh-news-archive-card__image::after {
  background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.78));
  content: "";
  inset: 0;
  position: absolute;
}

.fh-news-archive-card__image > span {
  display: block;
  height: 100%;
  width: 100%;
}

.fh-news-archive-card__image b {
  background: var(--fh-hot-red);
  bottom: 12px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  left: 12px;
  letter-spacing: 0.05em;
  max-width: calc(100% - 24px);
  overflow: hidden;
  padding: 6px 9px;
  position: absolute;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 1;
}

.fh-news-archive-card__body {
  padding: 15px;
}

.fh-news-archive-card__body time {
  color: var(--fh-hot-red);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.fh-news-archive-card__body h3 {
  font-size: 18px;
  line-height: 1.16;
  margin: 0;
}

.fh-news-archive-card__body h3 a {
  color: #fff;
  text-decoration: none;
}

.fh-news-archive-card__body p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  margin: 12px 0 0;
}

@media (max-width: 1100px) {
  .fh-news-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fh-news-archive-tabs__control {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .fh-news-archive .fh-container {
    width: calc(100% - 32px);
  }

  .fh-news-archive-hero {
    padding-top: 80px;
    padding-bottom: 8px;
  }

  .fh-news-archive-shell {
    padding-top: 16px;
    padding-bottom: 54px;
  }

  .fh-news-archive-tabs__control {
    grid-template-columns: 1fr;
    justify-self: stretch;
    margin: 0;
    max-width: none;
    width: 100%;
  }

  .fh-news-archive-panel__head {
    align-items: flex-start;
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
  }

  .fh-news-archive-grid {
    grid-template-columns: 1fr;
  }
}

.fh-muted {
  color: var(--fh-muted);
}

.fh-single-news {
  background:
    radial-gradient(circle at 0% 8%, rgba(243, 24, 34, 0.17), transparent 28%),
    radial-gradient(circle at 100% 22%, rgba(101, 179, 46, 0.13), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 24%),
    #050a0f;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.site-main.fh-single-news {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
}

.fh-single-news::before {
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(255, 255, 255, 0.035) 44% 45%, transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 26%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.fh-single-news .fh-container {
  max-width: 1180px;
  width: calc(100vw - 32px);
}

.fh-single-news__article {
  position: relative;
  z-index: 1;
}

.fh-single-news__hero {
  padding: 122px 0 36px;
}

.fh-single-news__hero-inner {
  display: grid;
  gap: 18px;
}

.fh-single-news__back {
  align-items: center;
  color: rgba(255, 255, 255, 0.62);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  margin-bottom: 10px;
  text-decoration: none;
  text-transform: uppercase;
}

.fh-single-news__back::before {
  background: var(--fh-hot-red);
  content: "";
  display: inline-block;
  height: 2px;
  margin-right: 10px;
  width: 34px;
}

.fh-single-news__meta-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.fh-single-news__pill {
  align-items: center;
  backdrop-filter: blur(18px) saturate(140%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  min-height: 34px;
  padding: 0 14px;
  text-decoration: none;
  text-transform: uppercase;
}

.fh-single-news__pill--category {
  background: linear-gradient(135deg, rgba(243, 24, 34, 0.98), rgba(176, 8, 18, 0.9));
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.fh-single-news__pill--date {
  border-color: rgba(101, 179, 46, 0.45);
}

.fh-single-news__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
  margin: 0;
  max-width: 760px;
  text-transform: uppercase;
}

.fh-single-news__title::after {
  background: linear-gradient(90deg, var(--fh-hot-red) 0 33%, #fff 33% 66%, var(--fh-green) 66%);
  content: "";
  display: block;
  height: 3px;
  margin-top: 14px;
  width: min(160px, 34vw);
}

.fh-single-news__lead {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.62;
  margin: 18px 0 0;
  max-width: 820px;
}

.fh-single-news__hero-image {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.14), transparent 38%),
    rgba(10, 17, 25, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 28px 80px rgba(0, 0, 0, 0.38);
  margin: 0 0 10px;
  overflow: hidden;
  position: relative;
}

.fh-single-news__hero-image::after {
  background:
    linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, 0.34)),
    linear-gradient(90deg, rgba(243, 24, 34, 0.68), #fff 48%, rgba(101, 179, 46, 0.72));
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
}

.fh-single-news__hero-image img {
  aspect-ratio: 16 / 9;
  display: block;
  height: auto;
  object-fit: contain !important;
  width: 100%;
}

.fh-single-news__layout {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) 340px;
  padding: 0 0 68px;
}

.fh-single-news__aside {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 104px;
}

.fh-single-news__info-card,
.fh-single-news__match-card {
  backdrop-filter: blur(20px) saturate(140%);
  background:
    radial-gradient(circle at 0% 0%, rgba(243, 24, 34, 0.16), transparent 32%),
    radial-gradient(circle at 100% 100%, rgba(101, 179, 46, 0.13), transparent 34%),
    rgba(13, 21, 30, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.26);
  padding: 22px;
}

.fh-single-news__info-card > span,
.fh-single-news__match-card > span,
.fh-single-news__section-head span {
  color: rgba(255, 255, 255, 0.55);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.fh-single-news__match-card {
  border-color: rgba(101, 179, 46, 0.18);
  overflow: hidden;
  position: relative;
}

.fh-single-news__match-card::before {
  background: linear-gradient(90deg, var(--fh-hot-red) 0 33%, #fff 33% 66%, var(--fh-green) 66%);
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fh-single-news__match-card h2 {
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 31px;
  font-weight: 900;
  line-height: 0.95;
  margin: -4px 0 18px;
  text-transform: uppercase;
}

.fh-single-news__bottom-share {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 34px;
  padding-top: 24px;
}

.fh-single-news__facebook-share {
  align-items: center;
  background: #1877f2;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.06em;
  min-height: 42px;
  padding: 0 14px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.fh-single-news__facebook-share:hover,
.fh-single-news__facebook-share:focus-visible {
  background: #0f66d8;
  color: #fff;
  outline: 0;
  transform: translateY(-1px);
}

.fh-single-news__facebook-share span {
  align-items: center;
  background: #fff;
  border-radius: 999px;
  color: #1877f2;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  height: 22px;
  justify-content: center;
  line-height: 1;
  width: 22px;
}

.fh-single-news__match-list {
  display: grid;
  gap: 12px;
}

.fh-single-news__match {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.052), transparent 42%),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 9px;
  color: #fff;
  display: grid;
  gap: 12px;
  padding: 14px;
  text-decoration: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.fh-single-news__match:hover,
.fh-single-news__match:focus-visible {
  border-color: rgba(101, 179, 46, 0.72);
  box-shadow: 0 16px 34px rgba(101, 179, 46, 0.12);
  outline: 0;
  transform: translateY(-2px);
}

.fh-single-news__match-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.fh-single-news__match-meta time,
.fh-single-news__match-meta em {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fh-single-news__match-meta time {
  color: var(--fh-hot-red);
}

.fh-single-news__match-row {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.fh-single-news__match-team {
  align-items: center;
  display: grid;
  gap: 8px;
  min-width: 0;
}

.fh-single-news__match-team img,
.fh-single-news__match-logo-fallback {
  align-items: center;
  display: flex;
  height: 38px;
  justify-content: center;
  max-width: 44px;
  object-fit: contain;
  width: 38px;
}

.fh-single-news__match-logo-fallback {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.fh-single-news__match-team strong {
  color: rgba(255, 255, 255, 0.9);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.035em;
  line-height: 1.15;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.fh-single-news__match-score {
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  min-width: 42px;
  text-align: center;
}

.fh-single-news__info-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.fh-single-news__info-card div {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 14px;
}

.fh-single-news__info-card dt {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fh-single-news__info-card dd {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  margin: 5px 0 0;
}

.fh-single-news__info-card dd a {
  color: #fff;
  display: inline-flex;
  text-decoration: none;
}

.fh-single-news__info-card dd a + a::before {
  color: var(--fh-hot-red);
  content: "/";
  margin: 0 8px;
}

.fh-single-news__all-link {
  align-items: center;
  background: linear-gradient(135deg, rgba(101, 179, 46, 0.96), rgba(55, 128, 24, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #fff;
  display: flex;
  font-size: 12px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.06em;
  margin-top: 20px;
  min-height: 42px;
  padding: 0 18px;
  text-decoration: none;
  text-transform: uppercase;
}

.fh-single-news__content {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 34%),
    rgba(9, 15, 22, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.78;
  padding: clamp(28px, 4vw, 54px);
}

.fh-single-news__content > *:first-child {
  margin-top: 0;
}

.fh-single-news__content > *:last-child {
  margin-bottom: 0;
}

.fh-single-news__content p {
  margin: 0 0 1.35em;
}

.fh-single-news__content strong {
  color: #fff;
  font-weight: 900;
}

.fh-single-news__content a {
  color: #fff;
  font-weight: 900;
  text-decoration-color: var(--fh-hot-red);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.fh-single-news__content h2,
.fh-single-news__content h3 {
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  line-height: 1;
  margin: 1.2em 0 0.45em;
  text-transform: uppercase;
}

.fh-single-news__content h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.fh-single-news__content h3 {
  font-size: clamp(28px, 3vw, 40px);
}

.fh-single-news__content blockquote {
  border-left: 4px solid var(--fh-hot-red);
  color: #fff;
  font-size: 1.12em;
  font-weight: 900;
  margin: 1.7em 0;
  padding: 8px 0 8px 22px;
}

.fh-single-news__content img {
  border-radius: 8px;
  display: block;
  height: auto;
  max-width: 100%;
}

.fh-single-news__content .fh-legacy-video-embed {
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(145deg, rgba(237, 28, 36, 0.14), transparent 38%),
    rgba(5, 9, 13, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  margin: 0 0 22px;
  overflow: hidden;
  width: 100%;
}

.fh-single-news__content .fh-legacy-video-embed iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.fh-single-news__related {
  padding: 0 0 86px;
}

.fh-single-news__section-head {
  margin-bottom: 22px;
}

.fh-single-news__section-head h2 {
  font-size: clamp(39px, 5vw, 69px);
  line-height: 0.9;
  margin: 0;
  text-transform: uppercase;
}

.fh-single-news__section-head h2::after {
  background: var(--fh-hot-red);
  content: "";
  display: block;
  height: 4px;
  margin-top: 14px;
  width: 78px;
}

.fh-single-news__related-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fh-single-news__related-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 35%),
    rgba(12, 20, 29, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  color: #fff;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.fh-single-news__related-card:hover {
  border-color: rgba(101, 179, 46, 0.65);
  transform: translateY(-3px);
}

.fh-single-news__related-image {
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.05);
  display: block;
  overflow: hidden;
}

.fh-single-news__related-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.fh-single-news__related-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.fh-single-news__related-body time {
  color: var(--fh-hot-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.fh-single-news__related-body strong {
  font-size: 22px;
  line-height: 1.1;
}

@media (max-width: 980px) {
  .fh-single-news__hero-inner,
  .fh-single-news__layout {
    grid-template-columns: 1fr;
  }

  .fh-single-news__aside {
    position: static;
  }

  .fh-single-news__info-card dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fh-single-news__all-link {
    width: fit-content;
  }

  .fh-single-news__related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .fh-single-news .fh-container {
    width: calc(100% - 32px);
  }

  .fh-single-news__hero {
    padding: 96px 0 34px;
  }

  .fh-single-news__title {
    font-size: 26px;
  }

  .fh-single-news__hero-inner {
    gap: 28px;
  }

  .fh-single-news__layout {
    gap: 24px;
    padding-bottom: 54px;
  }

  .fh-single-news__info-card dl {
    grid-template-columns: 1fr;
  }

  .fh-single-news__content {
    font-size: 16px;
    line-height: 1.72;
  }

  .fh-single-news__related {
    padding-bottom: 64px;
  }
}

.fh-profile__header,
.fh-gallery__header,
.fh-video__header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 0 24px;
}

.fh-profile__logo img,
.fh-gallery__cover img,
.fh-video__thumbnail img,
.fh-article__image img,
.fh-card__image img,
.fh-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
}

.fh-card__image img {
  height: 100%;
  object-fit: cover;
}

.type-klub.fh-card .fh-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 5 / 4;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(0, 107, 182, 0.08), rgba(24, 167, 224, 0.04)),
    #fff;
  border-bottom: 1px solid var(--fh-border);
}

.type-klub.fh-card .fh-card__image img {
  width: 100%;
  height: 100%;
  max-width: 190px;
  max-height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(7, 29, 51, 0.16));
  transition: transform 0.18s ease;
}

.type-klub.fh-card:hover .fh-card__image img {
  transform: translateY(-2px) scale(1.02);
}

.single-post .fh-article__image {
  overflow: visible;
}

.single-post .fh-article__image .wp-post-image {
  max-height: none;
  object-fit: contain;
}

.fh-profile__logo {
  width: 120px;
  flex: 0 0 120px;
}

.fh-profile__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 28px 0;
  padding: 0;
}

.fh-profile__meta div {
  border: 1px solid var(--fh-border);
  border-radius: 8px;
  padding: 14px 16px;
  background: #fff;
}

.fh-profile__meta dt {
  font-weight: 700;
  color: var(--fh-muted);
  font-size: 13px;
}

.fh-profile__meta dd {
  margin: 4px 0 0;
}

.fh-profile__staff {
  margin-top: 32px;
}

.fh-profile__staff ul {
  columns: 2;
  padding-left: 20px;
}

.fh-club-profile-page {
  background:
    radial-gradient(circle at 0% 10%, rgba(243, 24, 34, 0.18), transparent 30%),
    radial-gradient(circle at 100% 22%, rgba(101, 179, 46, 0.14), transparent 32%),
    linear-gradient(115deg, transparent 0 46%, rgba(255, 255, 255, 0.035) 46% 47%, transparent 47%),
    #050a0f;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.site-main.fh-club-profile-page {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
}

.fh-club-profile-page::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 24%),
    radial-gradient(circle at 52% 18%, rgba(255, 255, 255, 0.05), transparent 28%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.fh-club-profile-page .fh-container {
  width: min(1180px, calc(100% - 32px));
}

.fh-club-profile {
  padding: 0;
  position: relative;
  z-index: 1;
}

.fh-club-profile__hero {
  padding: 138px 0 46px;
}

.fh-club-profile__hero-inner {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
}

.fh-club-profile__back {
  align-items: center;
  color: rgba(255, 255, 255, 0.62);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  margin-bottom: 22px;
  text-decoration: none;
  text-transform: uppercase;
}

.fh-club-profile__back::before {
  background: var(--fh-hot-red);
  content: "";
  display: inline-block;
  height: 2px;
  margin-right: 10px;
  width: 34px;
}

.fh-club-profile__badges {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.fh-club-profile__badges span,
.fh-club-profile__badges a {
  align-items: center;
  backdrop-filter: blur(18px) saturate(140%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  min-height: 34px;
  padding: 0 14px;
  text-decoration: none;
  text-transform: uppercase;
}

.fh-club-profile__badges span {
  background: linear-gradient(135deg, rgba(243, 24, 34, 0.98), rgba(176, 8, 18, 0.9));
  color: #fff;
}

.fh-club-profile__title {
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(51px, 7.65vw, 113px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.86;
  margin: 0;
  text-transform: uppercase;
}

.fh-club-profile__title::after {
  background: linear-gradient(90deg, var(--fh-hot-red) 0 33%, #fff 33% 66%, var(--fh-green) 66%);
  content: "";
  display: block;
  height: 4px;
  margin-top: 22px;
  width: min(180px, 42vw);
}

.fh-club-profile__identity p {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 800;
  line-height: 1.52;
  margin: 24px 0 0;
  max-width: 760px;
}

.fh-club-profile__crest-card {
  align-items: center;
  aspect-ratio: 1;
  backdrop-filter: blur(24px) saturate(140%);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.16), transparent 36%),
    radial-gradient(circle at 15% 100%, rgba(243, 24, 34, 0.16), transparent 38%),
    radial-gradient(circle at 100% 100%, rgba(101, 179, 46, 0.14), transparent 38%),
    rgba(12, 20, 29, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 28px 80px rgba(0, 0, 0, 0.36);
  display: flex;
  justify-content: center;
  justify-self: end;
  max-width: 390px;
  padding: clamp(34px, 4vw, 64px);
  position: relative;
  width: 100%;
}

.fh-club-profile__crest-card::after {
  background: linear-gradient(90deg, rgba(243, 24, 34, 0.84), #fff 48%, rgba(101, 179, 46, 0.86));
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
}

.fh-club-profile__crest-card img {
  display: block;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.36));
  height: 100%;
  max-height: 250px;
  max-width: 250px;
  object-fit: contain;
  width: 100%;
}

.fh-club-profile__crest-card > span {
  color: rgba(255, 255, 255, 0.74);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 84px;
  font-weight: 900;
}

.fh-club-profile__body {
  display: grid;
  gap: 24px;
  padding: 8px 0 86px;
}

.fh-club-profile__content-card,
.fh-club-profile__staff {
  backdrop-filter: blur(22px) saturate(135%);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 34%),
    rgba(9, 16, 24, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
  padding: clamp(24px, 3vw, 38px);
}

.fh-club-profile__section-head {
  margin-bottom: 18px;
}

.fh-club-profile__section-head span {
  color: rgba(255, 255, 255, 0.55);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.fh-club-profile__section-head h2 {
  color: #fff;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 0.9;
  margin: 0;
  text-transform: uppercase;
}

.fh-club-profile__section-head h2::after {
  background: var(--fh-hot-red);
  content: "";
  display: block;
  height: 3px;
  margin-top: 12px;
  width: 64px;
}

.fh-club-profile__content {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  font-weight: 750;
  line-height: 1.72;
}

.fh-club-profile__data-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fh-club-profile__data-card {
  align-items: flex-start;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 36%),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 14px;
  min-height: 96px;
  padding: 16px;
}

.fh-club-profile__data-icon {
  align-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(243, 24, 34, 0.94), rgba(101, 179, 46, 0.72));
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
  display: inline-flex;
  flex: 0 0 42px;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.fh-club-profile__data-icon svg {
  fill: #fff;
  height: 22px;
  width: 22px;
}

.fh-club-profile__data-card small {
  color: rgba(255, 255, 255, 0.5);
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.fh-club-profile__data-card strong,
.fh-club-profile__data-card a {
  color: #fff;
  display: block;
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 900;
  line-height: 1.12;
  overflow-wrap: anywhere;
  text-decoration: none;
  text-transform: none;
}

.fh-club-profile__data-card a:hover {
  color: var(--fh-green);
}

.fh-club-profile__data-card em {
  color: rgba(255, 255, 255, 0.62);
  display: block;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.42;
  margin-top: 8px;
}

.fh-club-profile__content > *:first-child {
  margin-top: 0;
}

.fh-club-profile__content > *:last-child {
  margin-bottom: 0;
}

.fh-club-profile__content p {
  margin: 0 0 1.15em;
}

.fh-club-profile__content a {
  color: #fff;
  font-weight: 900;
  text-decoration-color: var(--fh-hot-red);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.fh-club-profile__meta {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
}

.fh-club-profile__meta-card {
  backdrop-filter: blur(22px) saturate(135%);
  background:
    radial-gradient(circle at 0% 0%, rgba(243, 24, 34, 0.13), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(101, 179, 46, 0.12), transparent 34%),
    rgba(11, 18, 27, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  min-height: 128px;
  padding: 18px;
}

.fh-club-profile__meta-card dt {
  align-items: center;
  color: rgba(255, 255, 255, 0.56);
  display: flex;
  font-size: 11px;
  font-weight: 900;
  gap: 10px;
  letter-spacing: 0.1em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.fh-club-profile__meta-icon {
  align-items: center;
  background: linear-gradient(135deg, rgba(243, 24, 34, 0.94), rgba(101, 179, 46, 0.7));
  border-radius: 8px;
  display: inline-flex;
  flex: 0 0 34px;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.fh-club-profile__meta-icon svg {
  fill: #fff;
  height: 20px;
  width: 20px;
}

.fh-club-profile__meta-card dd {
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
  margin: 0;
  overflow-wrap: anywhere;
}

.fh-club-profile__meta-card dd a {
  color: #fff;
  text-decoration: none;
}

.fh-club-profile__meta-card dd a:hover {
  color: var(--fh-green);
}

.fh-club-profile__staff ul {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.fh-club-profile__staff li {
  align-items: center;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  display: flex;
  gap: 12px;
  min-height: 58px;
  padding: 12px;
}

.fh-club-profile__staff li span {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: inline-flex;
  flex: 0 0 34px;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.fh-club-profile__staff li svg {
  fill: #fff;
  height: 20px;
  width: 20px;
}

.fh-club-profile__staff li strong {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .fh-club-profile__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fh-club-profile__staff ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .fh-club-profile-page .fh-container {
    width: calc(100% - 32px);
  }

  .fh-club-profile__hero {
    padding: 96px 0 34px;
  }

  .fh-club-profile__hero-inner {
    grid-template-columns: 1fr;
  }

  .fh-club-profile__crest-card {
    justify-self: start;
    max-width: 320px;
  }

  .fh-club-profile__title {
    font-size: clamp(46px, 13.4vw, 70px);
  }

  .fh-club-profile__meta,
  .fh-club-profile__staff ul,
  .fh-club-profile__data-grid {
    grid-template-columns: 1fr;
  }

  .fh-club-profile__data-card {
    min-height: 88px;
  }
}

.fh-article,
.fh-profile,
.fh-gallery,
.fh-video {
  padding: 32px 0 56px;
}

.fh-profile.fh-club-profile {
  padding: 0;
}

.fh-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.fh-gallery__item {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--fh-light);
}

.fh-gallery__item img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.fh-gallery__item:hover img {
  transform: scale(1.03);
}

.fh-content-archive:not(.fh-content-archive--klub) {
  background:
    radial-gradient(circle at 0% 12%, rgba(243, 24, 34, 0.16), transparent 30%),
    radial-gradient(circle at 100% 20%, rgba(101, 179, 46, 0.13), transparent 32%),
    linear-gradient(115deg, transparent 0 45%, rgba(255, 255, 255, 0.035) 45% 46%, transparent 46%),
    #050a0f;
  color: #fff;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
  overflow: hidden;
  width: 100% !important;
}

.fh-content-archive:not(.fh-content-archive--klub) .fh-container,
.fh-media-single .fh-container {
  width: min(1180px, calc(100% - 32px));
}

.fh-content-archive:not(.fh-content-archive--klub) .fh-archive-hero {
  background: transparent;
  padding: 116px 0 18px;
  position: relative;
}

.fh-content-archive:not(.fh-content-archive--klub) .fh-archive-hero h1 {
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(58px, 8vw, 118px);
  font-weight: 900;
  line-height: 0.86;
  text-transform: uppercase;
}

.fh-content-archive.fh-content-archive--search .fh-archive-hero h1 {
  font-size: clamp(48px, calc(8vw - 10px), 108px);
}

.fh-content-archive:not(.fh-content-archive--klub) .fh-archive-hero h1::after {
  background: var(--fh-hot-red);
  content: "";
  display: block;
  height: 4px;
  margin-top: 18px;
  width: 74px;
}

.fh-content-archive:not(.fh-content-archive--klub) .fh-archive-hero__eyebrow {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.fh-content-archive:not(.fh-content-archive--klub) .fh-archive-hero__description {
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
  max-width: 720px;
}

.fh-content-archive:not(.fh-content-archive--klub) .fh-archive-layout {
  padding: 18px 0 82px;
}

.fh-content-archive:not(.fh-content-archive--klub) .fh-section-nav {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  gap: 8px;
  padding: 8px;
  width: fit-content;
}

.fh-content-archive:not(.fh-content-archive--klub) .fh-section-nav a {
  background: transparent;
  border-color: transparent;
  color: rgba(255, 255, 255, 0.66);
}

.fh-content-archive:not(.fh-content-archive--klub) .fh-section-nav a:hover {
  background: rgba(101, 179, 46, 0.9);
  color: #fff;
}

.fh-content-archive:not(.fh-content-archive--klub) .fh-archive-grid {
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fh-content-archive:not(.fh-content-archive--klub) .fh-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 34%),
    rgba(9, 16, 24, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  color: #fff;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.fh-content-archive:not(.fh-content-archive--klub) .fh-card:hover {
  border-color: rgba(101, 179, 46, 0.55);
  transform: translateY(-3px);
}

.fh-content-archive:not(.fh-content-archive--klub) .fh-card__image {
  background:
    radial-gradient(circle at 30% 0%, rgba(243, 24, 34, 0.22), transparent 34%),
    radial-gradient(circle at 80% 80%, rgba(101, 179, 46, 0.18), transparent 38%),
    #111a23;
  position: relative;
}

.fh-content-archive:not(.fh-content-archive--klub) .fh-card__image::after {
  background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.62));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.fh-content-archive:not(.fh-content-archive--klub) .fh-card__eyebrow,
.fh-content-archive:not(.fh-content-archive--klub) .fh-card__meta {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fh-content-archive:not(.fh-content-archive--klub) .fh-card__eyebrow {
  color: var(--fh-hot-red);
}

.fh-content-archive:not(.fh-content-archive--klub) .fh-card__title {
  font-size: 22px;
  line-height: 1.05;
}

.fh-content-archive:not(.fh-content-archive--klub) .fh-card__title a {
  color: #fff;
}

.fh-content-archive:not(.fh-content-archive--klub) .fh-card__excerpt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 700;
}

.fh-media-single {
  background:
    radial-gradient(circle at 0% 12%, rgba(243, 24, 34, 0.16), transparent 30%),
    radial-gradient(circle at 100% 22%, rgba(101, 179, 46, 0.13), transparent 32%),
    linear-gradient(115deg, transparent 0 45%, rgba(255, 255, 255, 0.035) 45% 46%, transparent 46%),
    #050a0f;
  color: #fff;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
  min-height: 100vh;
  overflow: hidden;
  width: 100% !important;
}

.fh-media-single__article {
  padding: 124px 0 86px;
}

.fh-media-single__back {
  align-items: center;
  color: rgba(255, 255, 255, 0.62);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  margin-bottom: 22px;
  text-decoration: none;
  text-transform: uppercase;
}

.fh-media-single__back::before {
  background: var(--fh-hot-red);
  content: "";
  display: inline-block;
  height: 2px;
  margin-right: 10px;
  width: 34px;
}

.fh-media-single__header {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
  max-width: 960px;
}

.fh-media-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fh-media-single__meta span,
.fh-media-single__meta a {
  align-items: center;
  backdrop-filter: blur(18px) saturate(140%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  min-height: 34px;
  padding: 0 14px;
  text-decoration: none;
  text-transform: uppercase;
}

.fh-media-single__meta a,
.fh-media-single__meta span:nth-child(2) {
  background: linear-gradient(135deg, rgba(243, 24, 34, 0.98), rgba(176, 8, 18, 0.9));
  color: #fff;
}

.fh-media-single__title {
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 900;
  line-height: 0.9;
  margin: 0;
  max-width: 980px;
  text-transform: uppercase;
}

.fh-media-single__title::after,
.fh-media-single__section-head h2::after {
  background: linear-gradient(90deg, var(--fh-hot-red) 0 33%, #fff 33% 66%, var(--fh-green) 66%);
  content: "";
  display: block;
  height: 4px;
  margin-top: 18px;
  width: min(180px, 42vw);
}

.fh-gallery__cover,
.fh-video__thumbnail,
.fh-video__embed {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.14), transparent 38%),
    rgba(10, 17, 25, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  margin: 0 0 28px;
  overflow: hidden;
  position: relative;
}

.fh-gallery__cover img,
.fh-video__thumbnail img {
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.fh-video__embed {
  aspect-ratio: 16 / 9;
}

.fh-media-single__content {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 34%),
    rgba(9, 15, 22, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.72;
  margin-bottom: 34px;
  padding: clamp(22px, 3vw, 34px);
}

.fh-media-single__content:empty {
  display: none;
}

.fh-media-single__content > *:first-child {
  margin-top: 0;
}

.fh-media-single__content > *:last-child {
  margin-bottom: 0;
}

.fh-media-single__section-head {
  margin: 42px 0 20px;
}

.fh-media-single__section-head span {
  color: rgba(255, 255, 255, 0.55);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.fh-media-single__section-head h2 {
  color: #fff;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 0.9;
  margin: 0;
  text-transform: uppercase;
}

.fh-media-single .fh-gallery__grid {
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fh-media-single .fh-gallery__item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

@media (max-width: 1100px) {
  .fh-content-archive:not(.fh-content-archive--klub) .fh-archive-grid,
  .fh-media-single .fh-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .fh-content-archive:not(.fh-content-archive--klub) .fh-archive-hero {
    padding-top: 96px;
  }

  .fh-content-archive:not(.fh-content-archive--klub) .fh-section-nav {
    width: auto;
  }

  .fh-content-archive:not(.fh-content-archive--klub) .fh-archive-grid,
  .fh-media-single .fh-gallery__grid {
    grid-template-columns: 1fr;
  }

  .fh-media-single__article {
    padding-top: 96px;
    padding-bottom: 62px;
  }

  .fh-media-single__title {
    font-size: clamp(42px, 13vw, 64px);
  }
}

/* Bajnokságok MLSZ data page */
body.page-id-51576 {
  background: #050a0f;
}

body.page-id-51576 #content.site-main {
  background:
    radial-gradient(circle at 0% 10%, rgba(243, 24, 34, 0.18), transparent 30%),
    radial-gradient(circle at 100% 22%, rgba(101, 179, 46, 0.14), transparent 32%),
    linear-gradient(115deg, transparent 0 46%, rgba(255, 255, 255, 0.035) 46% 47%, transparent 47%),
    #050a0f !important;
  color: #fff !important;
  margin: 0 !important;
  max-width: none !important;
  overflow: hidden;
  padding: 0 !important;
  width: 100% !important;
}

body.page-id-51576 #content.site-main::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 22%),
    linear-gradient(90deg, rgba(243, 24, 34, 0.08), transparent 22%, transparent 78%, rgba(101, 179, 46, 0.08));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

body.page-id-51576 #content.site-main {
  position: relative;
}

body.page-id-51576 .page-header {
  display: none !important;
}

body.page-id-51576 .page-content {
  margin: 0 !important;
  position: relative;
  z-index: 1;
}

body.page-id-51576 .futsal-mlsz-league {
  box-sizing: border-box;
  color: #fff !important;
  margin: 0 auto !important;
  padding: 122px 0 86px !important;
  width: min(1180px, calc(100% - 32px));
}

body.page-id-51576 .futsal-mlsz-league__header {
  margin-bottom: 22px !important;
}

body.page-id-51576 .futsal-mlsz-league__eyebrow {
  display: none !important;
}

body.page-id-51576 .futsal-mlsz-league h1 {
  color: #fff !important;
  font-family: "Barlow Condensed", sans-serif !important;
  font-size: clamp(58px, 8vw, 118px) !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  line-height: 0.86 !important;
  margin: 0 !important;
  text-transform: uppercase !important;
}

body.page-id-51576 .futsal-mlsz-league h1::after {
  background: var(--fh-hot-red);
  content: "";
  display: block;
  height: 4px;
  margin-top: 18px;
  width: 74px;
}

body.page-id-51576 .futsal-mlsz-filters {
  backdrop-filter: blur(22px) saturate(140%);
  background:
    radial-gradient(circle at 0% 0%, rgba(243, 24, 34, 0.14), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(101, 179, 46, 0.13), transparent 34%),
    rgba(10, 17, 25, 0.78) !important;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.28);
  gap: 14px !important;
  margin: 0 0 24px !important;
  padding: 18px !important;
}

body.page-id-51576 .futsal-mlsz-filters label {
  gap: 8px !important;
  position: relative;
}

body.page-id-51576 .futsal-mlsz-filters label::after {
  border-color: #fff transparent transparent;
  border-style: solid;
  border-width: 7px 6px 0;
  bottom: 18px;
  content: "";
  pointer-events: none;
  position: absolute;
  right: 18px;
}

body.page-id-51576 .futsal-mlsz-filters span {
  color: rgba(255, 255, 255, 0.58) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}

body.page-id-51576 .futsal-mlsz-filters select {
  appearance: none !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 30%),
    rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.13) !important;
  border-radius: 8px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #fff !important;
  cursor: pointer;
  font-size: 15px !important;
  font-weight: 900 !important;
  min-height: 52px !important;
  padding: 0 46px 0 16px !important;
}

body.page-id-51576 .futsal-mlsz-filters select:focus {
  border-color: rgba(101, 179, 46, 0.82) !important;
  outline: 2px solid rgba(101, 179, 46, 0.38);
  outline-offset: 2px;
}

body.page-id-51576 .futsal-mlsz-filters option {
  background: #101821;
  color: #fff;
}

body.page-id-51576 .futsal-mlsz-grid {
  align-items: start;
  gap: 18px !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

body.page-id-51576 .futsal-mlsz-panel {
  backdrop-filter: blur(22px) saturate(135%);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 34%),
    rgba(9, 16, 24, 0.86) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 10px !important;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26) !important;
  color: #fff !important;
}

body.page-id-51576 .futsal-mlsz-panel h2 {
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff !important;
  font-family: "Barlow Condensed", sans-serif !important;
  font-size: 34px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  line-height: 0.95 !important;
  padding: 20px 22px 16px !important;
  text-transform: uppercase !important;
}

body.page-id-51576 .futsal-mlsz-panel h2::after {
  background: var(--fh-hot-red);
  content: "";
  display: block;
  height: 3px;
  margin-top: 10px;
  width: 58px;
}

body.page-id-51576 .futsal-mlsz-panel > div {
  padding: 18px !important;
}

body.page-id-51576 .futsal-mlsz-match {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px !important;
  color: #fff !important;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

body.page-id-51576 .futsal-mlsz-match:hover {
  border-color: rgba(101, 179, 46, 0.68) !important;
  transform: translateY(-2px);
}

body.page-id-51576 .futsal-mlsz-match__meta,
body.page-id-51576 .futsal-mlsz-match__date {
  color: rgba(255, 255, 255, 0.58) !important;
  font-weight: 900 !important;
}

body.page-id-51576 .futsal-mlsz-team-line span {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

body.page-id-51576 .futsal-mlsz-team-line img,
body.page-id-51576 .futsal-mlsz-team-list img {
  background: transparent;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.24));
}

body.page-id-51576 .futsal-mlsz-team-line strong {
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px !important;
  font-weight: 900;
}

body.page-id-51576 .futsal-mlsz-panel a {
  color: #fff !important;
  font-weight: 900 !important;
}

body.page-id-51576 .futsal-mlsz-table {
  color: #fff;
}

body.page-id-51576 .futsal-mlsz-table th,
body.page-id-51576 .futsal-mlsz-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09) !important;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
  padding: 10px 7px !important;
}

body.page-id-51576 .futsal-mlsz-table th {
  color: rgba(255, 255, 255, 0.52) !important;
  font-weight: 900 !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

body.page-id-51576 .futsal-mlsz-table strong {
  color: #fff;
  font-weight: 900;
}

body.page-id-51576 .futsal-mlsz-team-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09) !important;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  min-height: 44px;
}

body.page-id-51576 .futsal-mlsz-loading,
body.page-id-51576 .futsal-mlsz-empty,
body.page-id-51576 .futsal-mlsz-error {
  color: rgba(255, 255, 255, 0.68) !important;
  font-weight: 900;
}

@media (max-width: 1024px) {
  body.page-id-51576 .futsal-mlsz-league {
    padding-top: 108px !important;
  }

  body.page-id-51576 .futsal-mlsz-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  body.page-id-51576 .futsal-mlsz-league {
    padding: 96px 0 64px !important;
    width: calc(100% - 32px);
  }

  body.page-id-51576 .futsal-mlsz-filters {
    grid-template-columns: 1fr !important;
  }

  body.page-id-51576 .futsal-mlsz-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  body.page-id-51576 .futsal-mlsz-league h1 {
    font-size: clamp(58px, 17vw, 78px) !important;
  }

  body.page-id-51576 .futsal-mlsz-filters {
    padding: 14px !important;
  }

  body.page-id-51576 .futsal-mlsz-panel h2 {
    font-size: 30px !important;
  }
}

.fh-video__embed {
  position: relative;
  width: 100%;
  margin-bottom: 28px;
  aspect-ratio: 16 / 9;
  background: #000;
}

.fh-video__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 980px) {
  .admin-bar .fh-site-header {
    top: 46px;
  }

  .fh-site-header .fh-container {
    margin-left: 16px;
    margin-right: 16px;
    width: auto;
  }

  .fh-site-header__inner {
    gap: 8px;
    min-height: 58px;
    max-width: calc(100vw - 32px);
    padding: 0 10px 0 14px;
    position: relative;
    width: calc(100vw - 32px);
  }

  .fh-site-brand img {
    height: 34px;
  }

  .fh-site-nav {
    align-content: start;
    backdrop-filter: blur(28px) saturate(155%);
    background:
      radial-gradient(circle at 0 0, rgba(243, 24, 34, 0.22), transparent 34%),
      linear-gradient(155deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
      rgba(5, 10, 16, 0.9);
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: -24px 0 80px rgba(0, 0, 0, 0.46);
    display: grid;
    flex: 0 0 auto;
	    gap: 8px;
	    grid-auto-rows: max-content;
	    grid-template-columns: minmax(0, 1fr);
	    height: 100vh;
	    justify-content: stretch;
	    justify-items: stretch;
	    max-width: 360px;
    overflow-y: auto;
    padding: 18px;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(104%);
    transition: transform 0.24s ease;
    width: min(86vw, 360px);
    z-index: 100;
  }

  .admin-bar .fh-site-nav {
    padding-top: 54px;
  }

	  .fh-menu-toggle:checked ~ .fh-site-header .fh-site-nav {
	    transform: translateX(0);
	  }

	  .fh-menu-toggle:checked ~ .fh-site-header {
	    z-index: 120;
	  }

  .fh-menu-backdrop {
    background: rgba(0, 0, 0, 0.52);
    display: block;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity 0.2s ease;
    z-index: 90;
  }

  .fh-menu-toggle:checked ~ .fh-menu-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .fh-site-nav__mobile-head {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
  }

  .fh-site-nav__close {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: block;
    height: 40px;
    position: relative;
    width: 40px;
  }

  .fh-site-nav__close::before,
  .fh-site-nav__close::after {
    background: #fff;
    content: "";
    height: 2px;
    left: 11px;
    position: absolute;
    top: 19px;
    width: 18px;
  }

  .fh-site-nav__close::before {
    transform: rotate(45deg);
  }

  .fh-site-nav__close::after {
    transform: rotate(-45deg);
  }

  .fh-menu-button {
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 6px;
    box-sizing: border-box;
    display: grid;
    gap: 5px;
    height: 42px;
    justify-content: center;
    position: absolute;
    right: 10px;
    top: 8px;
    width: 46px;
  }

  .fh-menu-button span {
    background: #fff;
    border-radius: 999px;
    display: block;
    height: 2px;
    width: 19px;
  }

	  .fh-nav-link,
	  .fh-nav-dropdown > summary {
	    background: rgba(255, 255, 255, 0.08);
	    border-color: rgba(255, 255, 255, 0.12);
	    box-sizing: border-box;
	    justify-content: space-between;
	    min-height: 48px;
	    padding: 0 14px;
	    width: 100%;
	  }

	  .fh-site-nav > .fh-nav-link,
	  .fh-site-nav > .fh-nav-dropdown {
	    justify-self: stretch;
	    width: 100%;
	  }

	  .fh-nav-dropdown {
	    width: 100%;
	  }

	  .fh-nav-dropdown__panel {
	    background: rgba(255, 255, 255, 0.08);
	    border-color: rgba(255, 255, 255, 0.1);
	    box-sizing: border-box;
	    box-shadow: none;
	    margin-top: 7px;
	    min-width: 0;
    opacity: 1;
    padding: 7px;
    pointer-events: auto;
	    position: static;
	    transform: none;
	    width: 100%;
	  }

	  .fh-nav-dropdown__panel a {
	    align-items: center;
	    box-sizing: border-box;
	    display: flex;
	    min-height: 44px;
	    width: 100%;
	  }

  .fh-site-search {
    flex: 0 0 auto;
    margin-left: auto;
    order: 2;
    position: absolute;
    right: 64px;
    top: 8px;
  }

  .fh-site-socials--desktop {
    display: none;
  }

  .fh-site-socials--mobile {
    display: flex;
    gap: 8px;
    margin-top: 10px;
  }

  .fh-site-socials--mobile .fh-site-social {
    flex: 1;
    min-height: 48px;
    width: auto;
  }

  .fh-menu-button {
    order: 3;
  }

  .fh-site-search__trigger {
    height: 42px;
    width: 42px;
  }

  .fh-site-search__panel {
    position: fixed;
    right: 16px;
    top: 84px;
    width: calc(100vw - 32px);
    z-index: 110;
  }

  .admin-bar .fh-site-search__panel {
    top: 130px;
  }

  .fh-site-search__form {
    align-items: stretch;
    flex-direction: column;
  }

  .fh-site-search__form input,
  .fh-site-search__form button {
    width: 100%;
  }

  .fh-profile__header,
  .fh-gallery__header,
  .fh-video__header {
    display: block;
  }

  .fh-profile__logo {
    width: 96px;
    margin-bottom: 16px;
  }

  .fh-profile__staff ul {
    columns: 1;
  }
}

.fh-media-single .fh-video__embed {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.14), transparent 38%),
    rgba(5, 9, 13, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

.fh-media-single .fh-video__embed iframe {
  border: 0;
}

.fh-media-hub {
  background:
    radial-gradient(circle at 0% 11%, rgba(243, 24, 34, 0.17), transparent 30%),
    radial-gradient(circle at 100% 20%, rgba(101, 179, 46, 0.14), transparent 32%),
    linear-gradient(115deg, transparent 0 45%, rgba(255, 255, 255, 0.035) 45% 46%, transparent 46%),
    #050a0f;
  color: #fff;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
  min-height: 100vh;
  overflow: hidden;
  width: 100% !important;
}

.fh-media-hub .fh-container {
  width: min(1180px, calc(100% - 32px));
}

.fh-media-hub__hero {
  padding: 124px 0 24px;
}

.fh-media-hub__eyebrow,
.fh-media-hub__panel-head span {
  color: rgba(255, 255, 255, 0.55);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.fh-media-hub__hero h1 {
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(64px, 9vw, 128px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.84;
  margin: 0;
  text-transform: uppercase;
}

.fh-media-hub__hero h1::after,
.fh-media-hub__panel-head h2::after {
  background: linear-gradient(90deg, var(--fh-hot-red) 0 33%, #fff 33% 66%, var(--fh-green) 66%);
  content: "";
  display: block;
  height: 4px;
  margin-top: 18px;
  width: min(180px, 42vw);
}

.fh-media-hub__hero p:not(.fh-media-hub__eyebrow) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.55;
  margin: 24px 0 0;
  max-width: 720px;
}

.fh-media-hub__tabs {
  padding: 20px 0 86px;
}

.fh-media-hub__radio {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.fh-media-hub__nav {
  align-items: center;
  backdrop-filter: blur(22px) saturate(135%);
  background:
    radial-gradient(circle at 0% 0%, rgba(243, 24, 34, 0.12), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(101, 179, 46, 0.12), transparent 34%),
    rgba(9, 16, 24, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 24px;
  max-width: 520px;
  padding: 8px;
}

.fh-media-hub__nav label {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.66);
  cursor: pointer;
  display: flex;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.05em;
  min-height: 58px;
  padding: 0 18px;
  text-transform: uppercase;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.fh-media-hub__nav label:hover {
  color: #fff;
}

#fh-media-hub-gallery:checked ~ .fh-media-hub__nav label[for="fh-media-hub-gallery"],
#fh-media-hub-video:checked ~ .fh-media-hub__nav label[for="fh-media-hub-video"] {
  background: linear-gradient(135deg, rgba(243, 24, 34, 0.98), rgba(176, 8, 18, 0.9));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 34px rgba(243, 24, 34, 0.2);
  color: #fff;
}

.fh-media-hub__panel {
  display: none;
}

#fh-media-hub-gallery:checked ~ .fh-media-hub__panels .fh-media-hub__panel--gallery,
#fh-media-hub-video:checked ~ .fh-media-hub__panels .fh-media-hub__panel--video {
  display: block;
}

.fh-media-hub__panel-head {
  align-items: end;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 22px;
}

.fh-media-hub__panel-head h2 {
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 900;
  line-height: 0.86;
  margin: 0;
  text-transform: uppercase;
}

.fh-media-hub__panel-head a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  min-height: 44px;
  padding: 0 18px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.fh-media-hub__panel-head a:hover {
  background: rgba(101, 179, 46, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
}

.fh-media-hub__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fh-media-hub .fh-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 34%),
    rgba(9, 16, 24, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  color: #fff;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.fh-media-hub .fh-card:hover {
  border-color: rgba(101, 179, 46, 0.55);
  transform: translateY(-3px);
}

.fh-media-hub .fh-card__image {
  background:
    radial-gradient(circle at 30% 0%, rgba(243, 24, 34, 0.22), transparent 34%),
    radial-gradient(circle at 80% 80%, rgba(101, 179, 46, 0.18), transparent 38%),
    #111a23;
  position: relative;
}

.fh-media-hub .fh-card__image::after {
  background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.62));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.fh-media-hub .fh-card__eyebrow {
  color: var(--fh-hot-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fh-media-hub .fh-card__meta {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fh-media-hub .fh-card__title {
  font-size: 22px;
  line-height: 1.05;
}

.fh-media-hub .fh-card__title a {
  color: #fff;
}

.fh-media-hub .fh-card__excerpt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 700;
}

.fh-media-hub__empty {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 800;
}

.fh-contact-page {
  background:
    radial-gradient(circle at 0% 12%, rgba(243, 24, 34, 0.2), transparent 30%),
    radial-gradient(circle at 100% 22%, rgba(101, 179, 46, 0.16), transparent 34%),
    linear-gradient(115deg, transparent 0 46%, rgba(255, 255, 255, 0.04) 46% 47%, transparent 47%),
    #050a0f;
  color: #fff;
  min-height: 100vh;
  overflow: hidden;
  padding: 128px 0 96px;
}

.site-main.fh-contact-page,
.site-main.fh-info-page {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
}

.fh-contact-page .fh-container {
  width: min(1180px, calc(100% - 48px));
}

.fh-contact-page__inner {
  align-items: center;
  display: grid;
  gap: clamp(32px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.82fr);
  min-height: 62vh;
  position: relative;
}

.fh-contact-page__inner::before {
  background:
    linear-gradient(90deg, rgba(243, 24, 34, 0.28), transparent 32%),
    linear-gradient(270deg, rgba(101, 179, 46, 0.22), transparent 34%);
  border-radius: 999px;
  content: "";
  filter: blur(24px);
  height: 1px;
  left: 0;
  opacity: 0.8;
  position: absolute;
  right: 0;
  top: 50%;
}

.fh-contact-page__copy,
.fh-contact-card {
  position: relative;
  z-index: 1;
}

.fh-contact-page__eyebrow {
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.fh-contact-page h1 {
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(72px, 8vw, 112px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.86;
  margin: 0;
  max-width: 6.2ch;
  text-transform: uppercase;
}

.fh-contact-page__stripe {
  background: linear-gradient(90deg, var(--fh-hot-red) 0 34%, #fff 34% 66%, var(--fh-green) 66%);
  display: block;
  height: 5px;
  margin-top: 26px;
  width: min(240px, 50vw);
}

.fh-contact-card {
  align-items: center;
  backdrop-filter: blur(24px) saturate(135%);
  background:
    radial-gradient(circle at 0% 0%, rgba(243, 24, 34, 0.18), transparent 38%),
    radial-gradient(circle at 100% 100%, rgba(101, 179, 46, 0.18), transparent 42%),
    rgba(12, 21, 29, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 32px 82px rgba(0, 0, 0, 0.32);
  color: #fff;
  display: grid;
  gap: 22px;
  grid-template-columns: 72px minmax(0, 1fr);
  min-height: 172px;
  padding: clamp(26px, 4vw, 42px);
  text-decoration: none;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.fh-contact-card:hover {
  border-color: rgba(101, 179, 46, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 36px 90px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(101, 179, 46, 0.16);
  transform: translateY(-3px);
}

.fh-contact-card__icon {
  align-items: center;
  background: linear-gradient(135deg, rgba(243, 24, 34, 0.96), rgba(101, 179, 46, 0.82));
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(243, 24, 34, 0.18);
  display: inline-flex;
  height: 72px;
  justify-content: center;
  width: 72px;
}

.fh-contact-card__icon svg {
  fill: #fff;
  height: 34px;
  width: 34px;
}

.fh-contact-card__body {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.fh-contact-card__body span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fh-contact-card__body strong {
  color: #fff;
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 900;
  line-height: 1.08;
  overflow-wrap: normal;
  white-space: nowrap;
}

.fh-info-page {
  background:
    radial-gradient(circle at 0% 10%, rgba(243, 24, 34, 0.18), transparent 30%),
    radial-gradient(circle at 100% 18%, rgba(101, 179, 46, 0.14), transparent 34%),
    linear-gradient(115deg, transparent 0 45%, rgba(255, 255, 255, 0.035) 45% 46%, transparent 46%),
    #050a0f;
  color: #fff;
  min-height: 100vh;
  overflow: hidden;
  padding: 124px 0 96px;
}

.fh-info-page .fh-container {
  width: min(1180px, calc(100% - 32px));
}

.fh-info-page__hero {
  margin-bottom: clamp(28px, 5vw, 56px);
}

.fh-info-page__eyebrow {
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.fh-info-page__hero h1 {
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(64px, 9vw, 128px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.84;
  margin: 0;
  text-transform: uppercase;
}

.fh-info-page--tisztsegviselok .fh-info-page__hero h1 {
  font-size: 60px;
}

.fh-info-page__stripe {
  background: linear-gradient(90deg, var(--fh-hot-red) 0 34%, #fff 34% 66%, var(--fh-green) 66%);
  display: block;
  height: 5px;
  margin-top: 22px;
  width: min(220px, 48vw);
}

.fh-info-page__hero > p:not(.fh-info-page__eyebrow) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.55;
  margin: 24px 0 0;
  max-width: 760px;
}

.fh-info-page__body {
  display: grid;
  gap: 22px;
}

.fh-info-prose,
.fh-info-table-card,
.fh-info-official-card,
.fh-info-doc-group {
  backdrop-filter: blur(22px) saturate(130%);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), transparent 36%),
    rgba(9, 16, 24, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.fh-info-prose {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.72;
  padding: clamp(24px, 4vw, 40px);
}

.fh-info-prose p {
  margin: 0 0 18px;
}

.fh-info-prose p:last-child {
  margin-bottom: 0;
}

.fh-info-prose strong {
  color: #fff;
  font-weight: 900;
}

.fh-info-timeline {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.fh-info-timeline article {
  background:
    radial-gradient(circle at 0% 0%, rgba(243, 24, 34, 0.16), transparent 38%),
    radial-gradient(circle at 100% 100%, rgba(101, 179, 46, 0.13), transparent 40%),
    rgba(14, 24, 33, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  min-height: 172px;
  padding: 22px;
}

.fh-info-timeline span {
  color: var(--fh-hot-red);
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 0.9;
}

.fh-info-timeline h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  margin: 16px 0 10px;
  text-transform: uppercase;
}

.fh-info-timeline p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.42;
  margin: 0;
}

.fh-info-table-card {
  overflow: hidden;
}

.fh-info-table-card > h2,
.fh-info-doc-group > h2,
.fh-info-official-card > h2 {
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 0.92;
  margin: 0;
  padding: 28px 28px 22px;
  text-transform: uppercase;
}

.fh-info-page--tisztsegviselok .fh-info-official-card > h2 {
  font-size: clamp(27px, calc(4vw - 12px), 40px);
}

.fh-info-table-card > h2::after,
.fh-info-doc-group > h2::after,
.fh-info-official-card > h2::after {
  background: var(--fh-hot-red);
  content: "";
  display: block;
  height: 4px;
  margin-top: 16px;
  width: 78px;
}

.fh-info-table-wrap {
  overflow-x: auto;
  padding: 0 28px 28px;
}

.fh-info-table-card table {
  border-collapse: collapse;
  min-width: 720px;
  width: 100%;
}

.fh-info-table-card th,
.fh-info-table-card td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 850;
  padding: 13px 12px;
  text-align: left;
  vertical-align: middle;
}

.fh-info-table-card th {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.fh-info-table-card td:first-child,
.fh-info-table-card td:nth-child(3) {
  color: #fff;
}

.fh-info-officials {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fh-info-official-card > div {
  display: grid;
  gap: 12px;
  padding: 0 28px 28px;
}

.fh-info-official-card p {
  align-items: center;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 0;
  min-height: 66px;
  padding: 16px 18px;
}

.fh-info-official-card span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.fh-info-official-card strong {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  text-align: right;
}

.fh-info-docs {
  display: grid;
  gap: 22px;
}

.fh-info-doc-list {
  display: grid;
  gap: 10px;
  padding: 0 28px 28px;
}

.fh-info-doc {
  align-items: center;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #fff;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 62px;
  padding: 14px 16px;
  text-decoration: none;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.fh-info-doc:hover {
  border-color: rgba(101, 179, 46, 0.5);
  transform: translateX(3px);
}

.fh-info-doc span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.35;
}

.fh-info-doc strong {
  align-items: center;
  background: linear-gradient(135deg, rgba(101, 179, 46, 0.95), rgba(64, 132, 28, 0.94));
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.1em;
  min-height: 38px;
  padding: 0 16px;
  text-transform: uppercase;
}

.fh-home-summary-card a,
.fh-home-summary-card a:visited,
.fh-home-media-item a:visited,
.fh-single-news__related-card:visited,
.fh-content-archive:not(.fh-content-archive--klub) .fh-card__title a:visited,
.fh-media-hub .fh-card__title a:visited {
  color: #fff;
}

.fh-home-summary-card a:hover,
.fh-home-summary-card a:focus-visible {
  color: var(--fh-hot-red);
}

.fh-home-summary-card a:hover .fh-home-summary-card__content strong,
.fh-home-summary-card a:focus-visible .fh-home-summary-card__content strong,
.fh-home-media-item a:hover .fh-home-media-item__content strong,
.fh-home-media-item a:focus-visible .fh-home-media-item__content strong,
.fh-single-news__related-card:hover .fh-single-news__related-body strong,
.fh-single-news__related-card:focus-visible .fh-single-news__related-body strong,
.fh-news-archive-card__body h3 a:hover,
.fh-news-archive-card__body h3 a:focus-visible,
.fh-content-archive:not(.fh-content-archive--klub) .fh-card__title a:hover,
.fh-content-archive:not(.fh-content-archive--klub) .fh-card__title a:focus-visible,
.fh-media-hub .fh-card__title a:hover,
.fh-media-hub .fh-card__title a:focus-visible {
  color: var(--fh-hot-red) !important;
}

.fh-home-summary-card__content strong,
.fh-home-media-item__content strong,
.fh-single-news__related-body strong {
  color: currentColor;
  transition: color 0.18s ease;
}

@media (max-width: 1100px) {
  .fh-media-hub__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fh-contact-page__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .fh-info-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fh-info-officials {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .fh-media-hub .fh-container {
    width: calc(100% - 32px);
  }

  .fh-media-hub__hero {
    padding-top: 98px;
  }

  .fh-media-hub__nav {
    max-width: none;
  }

  .fh-media-hub__panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .fh-media-hub__grid {
    grid-template-columns: 1fr;
  }

  .fh-contact-page {
    padding: 108px 0 72px;
    overflow: hidden;
  }

  .fh-contact-page__inner {
    min-height: auto;
  }

  .fh-contact-page h1 {
    font-size: clamp(58px, 18vw, 82px);
    max-width: 100%;
  }

  .fh-contact-card {
    grid-template-columns: 56px minmax(0, 1fr);
    min-height: 0;
    padding: 22px;
  }

  .fh-contact-card__body strong {
    font-size: clamp(18px, 6.2vw, 26px);
    white-space: normal;
  }

  .fh-contact-card__icon {
    height: 56px;
    width: 56px;
  }

  .fh-contact-card__icon svg {
    height: 28px;
    width: 28px;
  }

  .fh-info-page {
    padding: 106px 0 72px;
  }

  .fh-info-page .fh-container {
    width: calc(100% - 32px);
  }

  .fh-info-timeline {
    grid-template-columns: 1fr;
  }

  .fh-info-table-card > h2,
  .fh-info-doc-group > h2,
  .fh-info-official-card > h2 {
    padding: 22px 20px 18px;
  }

  .fh-info-table-wrap,
  .fh-info-doc-list,
  .fh-info-official-card > div {
    padding: 0 20px 20px;
  }

  .fh-info-doc {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .fh-info-doc strong {
    width: fit-content;
  }

  .fh-info-official-card p {
    align-items: flex-start;
    flex-direction: column;
  }

  .fh-info-official-card strong {
    text-align: left;
  }
}

/* Keep top-level page titles consistent with the compact navigation scale. */
.fh-media-hub__hero h1,
.fh-news-archive-hero h1,
.fh-info-page__hero h1,
.fh-contact-page h1,
.post-type-archive-klub .fh-archive-hero h1,
body.page-id-51576 h1 {
  font-size: 65px !important;
  line-height: 1.12;
}

/* Section/category titles below the page hero. */
.fh-media-hub__panel-head h2,
.fh-news-archive-panel__head h2,
body.page-id-51576 .futsal-mlsz-panel h2 {
  font-size: 45px !important;
  line-height: 1;
}

/* Selected national-team news category page titles. */
body.term-noi-valogatott .fh-archive-hero h1,
body.term-utanpotlas-valogatott .fh-archive-hero h1,
body.term-ferfi-valogatott .fh-archive-hero h1 {
  font-size: 45px !important;
  line-height: 1.08;
}

/* Stronger override for the Bajnoksag page title. */
body.page-id-51576 .futsal-mlsz-league h1 {
  font-size: 65px !important;
  line-height: 1.12 !important;
}

.fh-home-footer-spacer {
  height: clamp(36px, 5vw, 72px);
}

.fh-single-news__related .fh-single-news__section-head h2 {
  font-size: 40px !important;
  line-height: 1;
}
