/*
Theme Name: Kadence Child FSGT93
Theme URI: https://www.fsgt93.fr/
Description: Theme enfant FSGT93 base sur Kadence.
Author: FSGT93
Version: 0.1.0
Template: kadence
Text Domain: kadence-child-fsgt93
*/

:root {
  --fsgt93-ink: #1f1b1a;
  --fsgt93-brand-red: #980b0b;
  --fsgt93-brand-red-deep: #730808;
  --fsgt93-brand-yellow: #ffad00;
  --fsgt93-brand-orange: #e86f00;
  --fsgt93-brand-cream: #fff7e9;
  --fsgt93-line: #f0c978;
  --fsgt93-line-soft: #f8e8c6;
  --fsgt93-paper: #fffaf0;
  --fsgt93-panel: #ffffff;
  --fsgt93-nav: #ffffff;
  --fsgt93-shadow-1: 0 16px 40px rgba(122, 62, 2, 0.08);
  --fsgt93-shadow-2: 0 8px 22px rgba(151, 11, 11, 0.12);
  --fsgt93-space-1: 8px;
  --fsgt93-space-2: 12px;
  --fsgt93-space-3: 16px;
  --fsgt93-space-4: 24px;
  --fsgt93-space-5: 32px;
  --fsgt93-space-6: 48px;
  --fsgt93-radius: 14px;
}

body {
  font-family: 'Source Sans 3', 'Trebuchet MS', sans-serif;
  color: var(--fsgt93-ink);
  background:
    radial-gradient(circle at 9% 6%, rgba(255, 173, 0, 0.15) 0%, transparent 30%),
    radial-gradient(circle at 91% 10%, rgba(152, 11, 11, 0.11) 0%, transparent 34%),
    radial-gradient(circle at 80% 86%, rgba(232, 111, 0, 0.09) 0%, transparent 28%),
    var(--fsgt93-paper);
}

/* We keep only the left sidebar navigation in templates. */
#masthead,
.site-header,
.mobile-header-wrap,
.mobile-navigation,
.site-top-header-wrap {
  display: none !important;
}

#inner-wrap {
  padding-top: 0 !important;
}

.site-main {
  color: var(--fsgt93-ink);
}

.site-main a {
  color: var(--fsgt93-brand-red);
  text-underline-offset: 3px;
}

.site-main a:hover,
.site-main a:focus {
  color: var(--fsgt93-brand-red-deep);
}

.fsgt93-shell {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: var(--fsgt93-space-4);
  padding: var(--fsgt93-space-4);
}

.fsgt93-sidebar {
  border: 1px solid #edc782;
  border-radius: 22px;
  background:
    linear-gradient(180deg, #fffcf3 0%, #fff7e6 100%);
  box-shadow:
    0 20px 44px rgba(116, 66, 10, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  padding: var(--fsgt93-space-3);
  align-self: start;
  position: sticky;
  top: 24px;
  overflow: hidden;
}

.fsgt93-sidebar::before {
  content: "";
  display: block;
  width: 233px;
  height: 105px;
  max-width: 100%;
  margin: 4px auto 18px;
  background: url("./assets/logo-fsgt93.png") center/contain no-repeat;
}

.fsgt93-sidebar .menu,
.fsgt93-sidebar .page_item {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fsgt93-sidebar .menu li,
.fsgt93-sidebar .page_item {
  margin-bottom: 8px;
}

.fsgt93-sidebar a {
  display: block;
  text-decoration: none;
  color: #801414;
  background: #fff;
  border: 1px solid #f5dec0;
  border-radius: 12px;
  padding: 11px 12px;
  font: 600 1.03rem/1.1 'Fira Sans Extra Condensed', sans-serif;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.fsgt93-sidebar a:hover,
.fsgt93-sidebar a:focus {
  transform: translateX(3px);
  box-shadow: 0 12px 18px rgba(144, 24, 12, 0.12);
  background: #fff1d6;
}

.fsgt93-sidebar a:focus-visible,
.fsgt93-sidebar .fsgt93-sidebar-toggle:focus-visible {
  outline: 3px solid rgba(232, 111, 0, 0.45);
  outline-offset: 2px;
}

.fsgt93-sidebar .current-menu-item > a,
.fsgt93-sidebar .current_page_item > a,
.fsgt93-sidebar .current-menu-ancestor > a,
.fsgt93-sidebar .current_page_ancestor > a {
  color: #fff;
  background: linear-gradient(135deg, #9b1414 0%, #c01c1c 100%);
  border-color: transparent;
  box-shadow: var(--fsgt93-shadow-2);
}

.fsgt93-sidebar .menu-item-has-children,
.fsgt93-sidebar .page_item_has_children {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
  gap: 8px;
  align-items: start;
}

.fsgt93-sidebar .menu-item-has-children > a,
.fsgt93-sidebar .page_item_has_children > a {
  margin: 0;
}

.fsgt93-sidebar .fsgt93-sidebar-toggle {
  border: 1px solid #f2d3a8;
  background: #fff8e9;
  color: var(--fsgt93-brand-red);
  border-radius: 12px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.fsgt93-sidebar .fsgt93-sidebar-toggle::before,
.fsgt93-sidebar .fsgt93-sidebar-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform-origin: center;
}

.fsgt93-sidebar .fsgt93-sidebar-toggle::before {
  transform: translate(-70%, -50%) rotate(45deg);
}

.fsgt93-sidebar .fsgt93-sidebar-toggle::after {
  transform: translate(-30%, -50%) rotate(-45deg);
}

.fsgt93-sidebar .menu-item-has-children.is-open > .fsgt93-sidebar-toggle,
.fsgt93-sidebar .page_item_has_children.is-open > .fsgt93-sidebar-toggle {
  background: #fff2db;
  box-shadow: 0 8px 14px rgba(144, 24, 12, 0.14);
}

.fsgt93-sidebar .menu-item-has-children.is-open > .fsgt93-sidebar-toggle::before,
.fsgt93-sidebar .page_item_has_children.is-open > .fsgt93-sidebar-toggle::before {
  transform: translate(-70%, -50%) rotate(-45deg);
}

.fsgt93-sidebar .menu-item-has-children.is-open > .fsgt93-sidebar-toggle::after,
.fsgt93-sidebar .page_item_has_children.is-open > .fsgt93-sidebar-toggle::after {
  transform: translate(-30%, -50%) rotate(45deg);
}

.fsgt93-sidebar.is-enhanced .sub-menu,
.fsgt93-sidebar.is-enhanced .children {
  grid-column: 1 / -1;
  list-style: none;
  margin: 0;
  padding: 2px 0 0 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition:
    max-height 280ms ease,
    opacity 180ms ease,
    transform 180ms ease,
    visibility 0s linear 280ms;
}

.fsgt93-sidebar.is-enhanced .menu-item-has-children.is-open > .sub-menu,
.fsgt93-sidebar.is-enhanced .page_item_has_children.is-open > .children {
  max-height: 520px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    max-height 340ms ease,
    opacity 200ms ease,
    transform 200ms ease;
}

.fsgt93-sidebar .sub-menu li {
  margin-bottom: 6px;
}

.fsgt93-sidebar .sub-menu a {
  padding: 9px 11px;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  background: #fffdf8;
}

.fsgt93-main {
  display: grid;
  gap: var(--fsgt93-space-4);
}

.fsgt93-card {
  border: 1px solid var(--fsgt93-line);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #fffaf1 100%);
  box-shadow: var(--fsgt93-shadow-1);
  padding: var(--fsgt93-space-4);
  animation: fsgt93FadeIn 340ms ease;
}

.fsgt93-card h1,
.fsgt93-card h2,
.fsgt93-card h3 {
  margin-top: 0;
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  color: var(--fsgt93-brand-red);
  letter-spacing: 0.01em;
}

.fsgt93-card h1 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
}

.fsgt93-card h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.fsgt93-card h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
}

.fsgt93-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--fsgt93-space-3);
}

.fsgt93-col-12 { grid-column: span 12; }
.fsgt93-col-8 { grid-column: span 8; }
.fsgt93-col-7 { grid-column: span 7; }
.fsgt93-col-6 { grid-column: span 6; }
.fsgt93-col-5 { grid-column: span 5; }
.fsgt93-col-4 { grid-column: span 4; }

.fsgt93-box {
  border: 1px dashed var(--fsgt93-brand-orange);
  border-radius: var(--fsgt93-radius);
  background: #fff;
  padding: var(--fsgt93-space-3);
}

.fsgt93-list,
.fsgt93-list-card {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fsgt93-list li {
  padding: 9px 0;
  border-bottom: 1px solid var(--fsgt93-line-soft);
}

.fsgt93-list-card li {
  border: 1px solid var(--fsgt93-line-soft);
  border-radius: 12px;
  padding: var(--fsgt93-space-3);
  margin-bottom: var(--fsgt93-space-2);
  background: #fff;
  box-shadow: 0 6px 16px rgba(122, 62, 2, 0.06);
}

.fsgt93-meta {
  font-size: 0.88rem;
  color: #6f6058;
}

.fsgt93-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--fsgt93-space-3);
}

.fsgt93-featured-grid article {
  border: 1px solid var(--fsgt93-line-soft);
  border-radius: 14px;
  padding: var(--fsgt93-space-3);
  background: linear-gradient(180deg, #fff 0%, #fff4dd 100%);
  box-shadow: 0 8px 20px rgba(152, 11, 11, 0.08);
}

.fsgt93-cta-link {
  display: inline-block;
  text-decoration: none;
  border: 2px solid var(--fsgt93-brand-red);
  border-radius: 999px;
  padding: 10px 16px;
  font: 700 1.02rem/1 'Fira Sans Extra Condensed', sans-serif;
  letter-spacing: 0.03em;
  color: #fff !important;
  background: linear-gradient(135deg, var(--fsgt93-brand-red) 0%, #bb1414 100%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.fsgt93-cta-link:hover,
.fsgt93-cta-link:focus {
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: var(--fsgt93-shadow-2);
}

.fsgt93-pagination {
  margin-top: var(--fsgt93-space-3);
}

.fsgt93-home {
  display: grid;
  gap: var(--fsgt93-space-5);
}

.fsgt93-home-hero {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: var(--fsgt93-space-3);
  border: 1px solid #dfb873;
  border-radius: 18px;
  padding: clamp(18px, 2.2vw, 28px);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 199, 97, 0.24) 0%, transparent 38%),
    radial-gradient(circle at 95% 0%, rgba(152, 11, 11, 0.12) 0%, transparent 44%),
    linear-gradient(160deg, #fffdf5 0%, #fff1d9 45%, #ffe9cb 100%);
}

.fsgt93-home-kicker {
  margin: 0 0 8px;
  font: 700 0.84rem/1 'Fira Sans Extra Condensed', sans-serif;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #87310d;
}

.fsgt93-home-lead {
  margin: 0;
  max-width: 64ch;
  font-size: clamp(1.03rem, 1.35vw, 1.16rem);
}

.fsgt93-home-actions {
  margin: var(--fsgt93-space-3) 0 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.fsgt93-outline-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.fsgt93-home-hero-side {
  border: 1px solid #f0d5a8;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  padding: var(--fsgt93-space-3);
}

.fsgt93-home-hero-side h2 {
  margin: 0 0 var(--fsgt93-space-2);
  font-size: 1.28rem;
}

.fsgt93-home-hero-side ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.fsgt93-home-hero-side li {
  display: grid;
  gap: 2px;
}

.fsgt93-home-hero-side strong {
  font: 700 1.36rem/1 'Fira Sans Extra Condensed', sans-serif;
  color: #8f1010;
}

.fsgt93-home-hero-side span {
  font-size: 0.93rem;
  color: #5c4f46;
}

.fsgt93-home-section {
  display: grid;
  gap: var(--fsgt93-space-3);
}

.fsgt93-home-section + .fsgt93-home-section {
  border-top: 1px solid var(--fsgt93-line-soft);
  padding-top: var(--fsgt93-space-4);
}

.fsgt93-section-head {
  display: flex;
  gap: var(--fsgt93-space-2);
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
}

.fsgt93-section-head a {
  font-weight: 700;
  text-decoration-thickness: 2px;
  color: #781212;
}

.fsgt93-featured-slider {
  display: grid;
  gap: var(--fsgt93-space-2);
}

.fsgt93-featured-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--fsgt93-space-3);
}

.fsgt93-featured-slide {
  display: grid;
  grid-template-columns: minmax(160px, 240px) minmax(0, 1fr);
  gap: var(--fsgt93-space-3);
  border: 1px solid var(--fsgt93-line-soft);
  border-radius: 14px;
  padding: var(--fsgt93-space-3);
  background: linear-gradient(165deg, #fffef9 0%, #fff3db 100%);
  box-shadow: 0 8px 20px rgba(152, 11, 11, 0.08);
}

.fsgt93-featured-thumb {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  min-height: 150px;
}

.fsgt93-featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fsgt93-featured-content {
  display: grid;
  align-content: start;
  gap: 10px;
}

.fsgt93-featured-content p {
  margin: 0;
}

.fsgt93-featured-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: var(--fsgt93-space-2);
}

.fsgt93-featured-slider.is-enhanced .fsgt93-featured-track {
  grid-template-columns: 1fr;
}

.fsgt93-featured-slider.is-enhanced .fsgt93-featured-controls {
  display: flex;
}

.fsgt93-slider-btn,
.fsgt93-outline-btn {
  border: 1px solid var(--fsgt93-brand-red);
  color: var(--fsgt93-brand-red);
  background: #fff;
  border-radius: 999px;
  padding: 9px 14px;
  font: 700 0.98rem/1 'Fira Sans Extra Condensed', sans-serif;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.fsgt93-slider-btn:hover,
.fsgt93-slider-btn:focus,
.fsgt93-outline-btn:hover,
.fsgt93-outline-btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(151, 11, 11, 0.12);
  background: #fff5e6;
}

.fsgt93-slider-pagination {
  font: 700 1rem/1 'Fira Sans Extra Condensed', sans-serif;
  color: var(--fsgt93-brand-red);
  min-width: 72px;
  text-align: center;
}

.fsgt93-badge {
  display: inline-block;
  margin: 0;
  width: fit-content;
  border-radius: 999px;
  padding: 4px 10px;
  background: linear-gradient(135deg, #ffeec9 0%, #ffde95 100%);
  color: #7a2800;
  font: 700 0.82rem/1 'Fira Sans Extra Condensed', sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.fsgt93-cta-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--fsgt93-space-3);
}

.fsgt93-cta-main,
.fsgt93-kpi-card {
  border: 1px solid var(--fsgt93-line);
  border-radius: var(--fsgt93-radius);
  background: linear-gradient(180deg, #fff 0%, #fff3dc 100%);
  padding: var(--fsgt93-space-4);
}

.fsgt93-cta-main p {
  margin-top: 0;
}

.fsgt93-kpi-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--fsgt93-space-3);
}

.fsgt93-kpi-list li {
  display: grid;
  gap: 2px;
}

.fsgt93-kpi-list strong {
  font: 700 clamp(1.6rem, 3vw, 2.1rem)/1 'Fira Sans Extra Condensed', sans-serif;
  color: var(--fsgt93-brand-red);
}

.fsgt93-kpi-list span {
  font-size: 0.95rem;
}

.fsgt93-sports-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fsgt93-sports-list li a {
  display: block;
  border: 1px solid var(--fsgt93-line-soft);
  border-radius: 999px;
  background: #fff;
  padding: 9px 12px;
  text-decoration: none;
  font-weight: 600;
}

.fsgt93-sports-list li a:hover,
.fsgt93-sports-list li a:focus {
  background: #fff4dd;
}

.fsgt93-sports-logo-list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.fsgt93-sports-logo-list li {
  margin: 0;
}

.fsgt93-sports-logo-list a {
  display: grid;
  place-items: center;
  min-height: 72px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, #fffdfa 0%, #fff5e7 100%);
  padding: 4px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.fsgt93-sports-logo-list a:hover,
.fsgt93-sports-logo-list a:focus {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(96, 34, 14, 0.12);
  background: linear-gradient(180deg, #fff 0%, #ffefda 100%);
}

.fsgt93-sport-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background:
    conic-gradient(from 222deg, #a30f2a 0deg 86deg, #f2b305 86deg 360deg);
  box-shadow: 0 6px 12px rgba(117, 47, 11, 0.14);
}

.fsgt93-sport-icon svg {
  width: 30px;
  height: 30px;
  display: block;
  fill: none;
  stroke: #fff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fsgt93-actions-row {
  margin: 0;
  display: flex;
  gap: var(--fsgt93-space-2);
  align-items: center;
  flex-wrap: wrap;
}

.fsgt93-actions-row a {
  font-weight: 700;
}

.fsgt93-section-calendar .fsgt93-section-head {
  align-items: baseline;
  gap: 10px;
}

.fsgt93-calendar-month-label {
  margin: 0;
  font: 700 0.92rem/1 'Fira Sans Extra Condensed', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8f2b1c;
}

.fsgt93-calendar-widget {
  border: 1px solid #efcca2;
  border-radius: 14px;
  background: linear-gradient(180deg, #fffdfa 0%, #fff4e1 100%);
  padding: 12px;
}

.fsgt93-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 8px;
}

.fsgt93-calendar-weekdays span {
  text-align: center;
  font: 700 0.8rem/1 'Fira Sans Extra Condensed', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #7d3123;
}

.fsgt93-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.fsgt93-calendar-cell {
  min-height: 118px;
  border: 1px solid #efcfac;
  border-radius: 12px;
  background: #fff;
  padding: 8px;
  display: grid;
  align-content: flex-start;
  gap: 7px;
}

.fsgt93-calendar-cell.is-empty {
  border-style: dashed;
  background: rgba(255, 250, 241, 0.65);
}

.fsgt93-calendar-cell.is-today {
  border-color: #b32d1c;
  box-shadow: inset 0 0 0 1px rgba(179, 45, 28, 0.22);
}

.fsgt93-calendar-day {
  margin: 0;
  font: 700 0.92rem/1 'Fira Sans Extra Condensed', sans-serif;
  color: #6f221a;
}

.fsgt93-calendar-events {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.fsgt93-calendar-events li {
  margin: 0;
}

.fsgt93-calendar-events a {
  display: grid;
  gap: 2px;
  text-decoration: none;
  border: 1px solid #f2d7b8;
  border-radius: 8px;
  padding: 5px 6px;
  background: #fff7ea;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.fsgt93-calendar-events a.is-type-formation {
  border-color: #9bc5f8;
  background: linear-gradient(180deg, #f5faff 0%, #ebf4ff 100%);
}

.fsgt93-calendar-events a.is-type-competition {
  border-color: #f5c98e;
  background: linear-gradient(180deg, #fff8ef 0%, #ffefd8 100%);
}

.fsgt93-calendar-events a.is-type-commission {
  border-color: #c9b3ef;
  background: linear-gradient(180deg, #faf7ff 0%, #f2ecff 100%);
}

.fsgt93-calendar-events a.is-type-event {
  border-color: #efb1a8;
  background: linear-gradient(180deg, #fff7f5 0%, #ffefec 100%);
}

.fsgt93-calendar-events a:hover,
.fsgt93-calendar-events a:focus {
  border-color: #deaa76;
  background: #fff1dc;
  transform: translateY(-1px);
}

.fsgt93-calendar-event-type {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 2px 7px;
  font: 700 0.68rem/1 'Fira Sans Extra Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #7b2a1d;
  background: #ffe0d5;
}

.fsgt93-calendar-event-type.is-type-formation {
  color: #1f4f8a;
  background: #dceeff;
}

.fsgt93-calendar-event-type.is-type-competition {
  color: #8a4200;
  background: #ffe1b6;
}

.fsgt93-calendar-event-type.is-type-commission {
  color: #4d3276;
  background: #e7dcff;
}

.fsgt93-calendar-event-type.is-type-event {
  color: #892f23;
  background: #ffd9d2;
}

.fsgt93-calendar-event-title {
  font-size: 0.78rem;
  line-height: 1.25;
  color: #3b2119;
}

.fsgt93-calendar-event-time {
  font: 700 0.73rem/1 'Fira Sans Extra Condensed', sans-serif;
  color: #7c3627;
}

.fsgt93-calendar-more {
  font: 700 0.75rem/1 'Fira Sans Extra Condensed', sans-serif;
  color: #8f2b1c;
}

.fsgt93-agenda-list,
.fsgt93-news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--fsgt93-space-2);
}

.fsgt93-agenda-list li,
.fsgt93-news-list li {
  margin: 0;
}

.fsgt93-partners-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--fsgt93-space-2);
}

.fsgt93-partners-list li {
  margin: 0;
}

.fsgt93-partners-list a {
  display: grid;
  place-items: center;
  min-height: 84px;
  border: 1px solid var(--fsgt93-line-soft);
  border-radius: 12px;
  background: #fff;
  padding: 8px;
}

.fsgt93-partners-list img {
  max-width: 100%;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.fsgt93-map-wrap {
  border: 1px solid var(--fsgt93-line);
  border-radius: 14px;
  padding: var(--fsgt93-space-2);
  background: linear-gradient(180deg, #fff8ea 0%, #fff 100%);
}

.fsgt93-map-controls {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--fsgt93-space-2);
  margin-bottom: var(--fsgt93-space-2);
}

.fsgt93-map-controls label {
  display: grid;
  gap: 4px;
  font-size: 0.88rem;
}

.fsgt93-map-controls select,
.fsgt93-map-controls input {
  width: 100%;
  border: 1px solid var(--fsgt93-line-soft);
  border-radius: 10px;
  padding: 8px 10px;
  background: #fff;
}

#fsgt93-map {
  width: 100%;
  min-height: 460px;
  border-radius: 10px;
  overflow: hidden;
}

.fsgt93-footer {
  margin-top: var(--fsgt93-space-4);
  background:
    linear-gradient(180deg, #ffb31a 0%, #f6a600 35%, #eb9800 100%);
  color: #ffffff;
  border-top: 4px solid var(--fsgt93-brand-red);
}

.fsgt93-footer a {
  color: #ffffff;
}

.fsgt93-footer a:hover,
.fsgt93-footer a:focus {
  color: var(--fsgt93-brand-red);
}

.fsgt93-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--fsgt93-space-4);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--fsgt93-space-4);
}

.fsgt93-footer-col h2 {
  margin: 0 0 var(--fsgt93-space-2);
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  font-size: 1.5rem;
  color: #ffffff;
}

.fsgt93-footer-partners,
.fsgt93-footer-social,
.fsgt93-footer-legal-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fsgt93-footer-partners li,
.fsgt93-footer-social li,
.fsgt93-footer-legal-menu li {
  margin: 0 0 6px;
}

.fsgt93-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  padding: var(--fsgt93-space-3) var(--fsgt93-space-4);
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: var(--fsgt93-space-2);
  align-items: center;
  justify-content: space-between;
}

.fsgt93-footer-legal-menu {
  display: flex;
  gap: var(--fsgt93-space-2);
}

.fsgt93-footer-legal-menu li {
  margin: 0;
}

.fsgt93-copyright {
  margin: 0;
}

@keyframes fsgt93FadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .fsgt93-shell {
    grid-template-columns: 1fr;
  }

  .fsgt93-sidebar {
    position: static;
  }

  .fsgt93-home-hero {
    grid-template-columns: 1fr;
  }

  .fsgt93-calendar-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .fsgt93-agenda-list,
  .fsgt93-news-list {
    grid-template-columns: 1fr 1fr;
  }

  .fsgt93-partners-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .fsgt93-grid {
    grid-template-columns: 1fr;
  }

  .fsgt93-col-12,
  .fsgt93-col-8,
  .fsgt93-col-7,
  .fsgt93-col-6,
  .fsgt93-col-5,
  .fsgt93-col-4 {
    grid-column: span 1;
  }

  .fsgt93-featured-grid {
    grid-template-columns: 1fr;
  }

  .fsgt93-featured-track {
    grid-template-columns: 1fr;
  }

  .fsgt93-featured-slide {
    grid-template-columns: 1fr;
  }

  .fsgt93-home-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .fsgt93-home-actions > a,
  .fsgt93-home-actions > button {
    width: 100%;
    justify-content: center;
  }

  .fsgt93-calendar-weekdays {
    display: none;
  }

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

  .fsgt93-calendar-cell {
    min-height: 106px;
  }

  .fsgt93-cta-grid {
    grid-template-columns: 1fr;
  }

  .fsgt93-agenda-list,
  .fsgt93-news-list {
    grid-template-columns: 1fr;
  }

  .fsgt93-partners-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fsgt93-map-controls {
    grid-template-columns: 1fr;
  }

  .fsgt93-footer-inner {
    grid-template-columns: 1fr;
  }

  .fsgt93-footer-legal-menu {
    flex-direction: column;
    gap: 6px;
  }
}

/* Neo-editorial sport v2 overrides */
:root {
  --fsgt93-neo-bg: #fff8ee;
  --fsgt93-neo-panel: #fffdf8;
  --fsgt93-neo-red-900: #5a0f14;
  --fsgt93-neo-red-700: #8f1720;
  --fsgt93-neo-orange-500: #ff8f18;
  --fsgt93-neo-ink: #2a1816;
  --fsgt93-neo-line: #f1d4aa;
  --fsgt93-neo-shadow: 0 22px 40px rgba(99, 40, 18, 0.13);
}

body {
  color: var(--fsgt93-neo-ink);
  background:
    radial-gradient(circle at 2% 16%, rgba(255, 143, 24, 0.2) 0%, transparent 29%),
    radial-gradient(circle at 95% 9%, rgba(143, 23, 32, 0.18) 0%, transparent 34%),
    linear-gradient(180deg, #fff9f0 0%, #fff3e2 46%, #fff8ee 100%);
}

.fsgt93-shell {
  max-width: 1420px;
  margin: 0 auto;
  grid-template-columns: 312px minmax(0, 1fr);
  gap: clamp(18px, 2.2vw, 34px);
}

.fsgt93-sidebar {
  border: 1px solid #7a1319;
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 171, 47, 0.25) 0%, transparent 44%),
    linear-gradient(165deg, #5a0f14 0%, #74131d 64%, #8d1a24 100%);
  box-shadow: 0 28px 36px rgba(67, 5, 13, 0.3);
  padding: clamp(14px, 2vw, 20px);
}

.fsgt93-sidebar::before {
  margin-bottom: 20px;
  filter: saturate(0) brightness(3);
}

.fsgt93-sidebar a {
  border-color: rgba(255, 194, 120, 0.44);
  color: #fff7ea;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 179, 67, 0.09));
  backdrop-filter: blur(3px);
}

.fsgt93-sidebar a:hover,
.fsgt93-sidebar a:focus {
  color: #fff;
  background: linear-gradient(145deg, rgba(255, 208, 143, 0.22), rgba(255, 145, 36, 0.28));
  box-shadow: 0 14px 20px rgba(45, 0, 5, 0.34);
  transform: translateX(2px) translateY(-1px);
}

.fsgt93-sidebar .current-menu-item > a,
.fsgt93-sidebar .current_page_item > a,
.fsgt93-sidebar .current-menu-ancestor > a,
.fsgt93-sidebar .current_page_ancestor > a {
  color: #2b0f0f;
  border-color: transparent;
  background: linear-gradient(125deg, #ffd08c 0%, #ff9f2b 54%, #ff8416 100%);
  box-shadow: 0 14px 22px rgba(36, 0, 0, 0.34);
}

.fsgt93-sidebar .fsgt93-sidebar-toggle {
  border: 1px solid rgba(255, 215, 149, 0.42);
  background: linear-gradient(150deg, rgba(255, 184, 89, 0.28), rgba(255, 255, 255, 0.09));
  color: #fff8ef;
}

.fsgt93-sidebar .menu-item-has-children.is-open > .fsgt93-sidebar-toggle,
.fsgt93-sidebar .page_item_has_children.is-open > .fsgt93-sidebar-toggle {
  background: linear-gradient(135deg, #ffbe66 0%, #ff8d15 100%);
  color: #4f110f;
}

.fsgt93-sidebar .sub-menu a {
  font-size: 0.93rem;
  letter-spacing: 0.02em;
  border-color: rgba(255, 199, 129, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.fsgt93-card {
  border-color: #efcf9f;
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 175, 83, 0.12) 0%, transparent 35%),
    linear-gradient(180deg, #fffeff 0%, #fff8ed 100%);
  box-shadow: var(--fsgt93-neo-shadow);
}

.fsgt93-card h1,
.fsgt93-card h2,
.fsgt93-card h3 {
  color: var(--fsgt93-neo-red-900);
  letter-spacing: 0.012em;
}

.fsgt93-home {
  gap: clamp(24px, 3.4vw, 48px);
}

.fsgt93-home-hero {
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 1fr);
  border: 1px solid #f2ba70;
  border-radius: 20px;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 173, 71, 0.28) 0%, transparent 36%),
    radial-gradient(circle at 98% -6%, rgba(143, 23, 32, 0.2) 0%, transparent 40%),
    linear-gradient(140deg, #fffdf6 0%, #fff2df 42%, #ffe7c3 100%);
  position: relative;
  overflow: hidden;
}

.fsgt93-home-hero::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -50px;
  bottom: -50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 23, 32, 0.2) 0%, rgba(143, 23, 32, 0) 68%);
  pointer-events: none;
}

.fsgt93-home-kicker {
  color: var(--fsgt93-neo-red-700);
  font-size: 0.88rem;
}

.fsgt93-home h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.55rem);
  line-height: 0.94;
  margin: 0 0 12px;
  text-wrap: balance;
}

.fsgt93-home-lead {
  max-width: 52ch;
  font-size: clamp(1.04rem, 1.35vw, 1.21rem);
  line-height: 1.46;
}

.fsgt93-home-hero-side {
  border: 1px solid rgba(255, 175, 83, 0.42);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.fsgt93-home-hero-side strong {
  font-size: 1.62rem;
}

.fsgt93-home-section {
  border: 1px solid #f3dcc0;
  border-radius: 16px;
  padding: clamp(14px, 1.8vw, 22px);
  background: var(--fsgt93-neo-panel);
  box-shadow: 0 10px 20px rgba(112, 62, 21, 0.06);
}

.fsgt93-home-section + .fsgt93-home-section {
  border-top: 1px solid #f3dcc0;
  padding-top: clamp(14px, 1.8vw, 22px);
}

.fsgt93-section-head h2 {
  margin: 0;
}

.fsgt93-section-head a {
  color: var(--fsgt93-neo-red-700);
}

.fsgt93-section-featured,
.fsgt93-section-affiliation {
  transform: translateX(0);
}

.fsgt93-featured-slide {
  border-color: #f3cca0;
  border-radius: 16px;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  box-shadow: 0 18px 22px rgba(128, 29, 12, 0.12);
}

.fsgt93-featured-thumb {
  min-height: 190px;
}

.fsgt93-featured-content h3 {
  font-size: clamp(1.3rem, 1.85vw, 1.6rem);
}

.fsgt93-featured-content p {
  line-height: 1.42;
}

.fsgt93-badge {
  background: linear-gradient(120deg, #ffd08f 0%, #ffaf4d 100%);
  color: #63201b;
}

.fsgt93-slider-btn,
.fsgt93-outline-btn,
.fsgt93-cta-link {
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.fsgt93-cta-grid {
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  align-items: stretch;
}

.fsgt93-cta-main,
.fsgt93-kpi-card {
  border: 1px solid #f2ca97;
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.fsgt93-kpi-list strong {
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  line-height: 0.9;
}

.fsgt93-sports-list li a {
  border-color: #efcca2;
  background: linear-gradient(145deg, #fff 0%, #fff2dd 100%);
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.fsgt93-sports-list li a:hover,
.fsgt93-sports-list li a:focus {
  box-shadow: 0 12px 16px rgba(138, 41, 17, 0.12);
  transform: translateY(-1px);
}

.fsgt93-sports-logo-list a {
  background: linear-gradient(180deg, #fffdfa 0%, #fff5e7 100%);
}

.fsgt93-section-affiliation .fsgt93-cta-main {
  border: 1px solid #f1c78f;
  border-radius: 18px;
  padding: clamp(16px, 2vw, 24px);
  background:
    radial-gradient(circle at 92% 2%, rgba(255, 179, 77, 0.18) 0%, rgba(255, 179, 77, 0) 36%),
    linear-gradient(180deg, #fffdf8 0%, #fff6e8 100%);
}

.fsgt93-section-affiliation .fsgt93-cta-main h2 {
  margin-bottom: 8px;
}

.fsgt93-section-affiliation .fsgt93-cta-main p {
  margin-top: 0;
  margin-bottom: 14px;
}

.fsgt93-actions-row a {
  color: var(--fsgt93-neo-red-700);
}

.fsgt93-agenda-list,
.fsgt93-news-list {
  gap: 14px;
}

.fsgt93-agenda-list li,
.fsgt93-news-list li {
  border: 1px solid #efcca2;
  border-radius: 14px;
  background: linear-gradient(160deg, #fff 0%, #fff8ea 100%);
  box-shadow: 0 10px 16px rgba(120, 53, 20, 0.08);
}

.fsgt93-agenda-list h3,
.fsgt93-news-list h3 {
  margin: 6px 0 8px;
}

.fsgt93-news-list li {
  padding: 0;
  overflow: hidden;
}

.fsgt93-news-thumb {
  display: block;
  aspect-ratio: 16 / 9;
  background: #f7e4cc;
}

.fsgt93-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fsgt93-news-thumb-fallback {
  display: block;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 158, 36, 0.42) 0%, transparent 34%),
    linear-gradient(125deg, #7e141a 0%, #ac2f27 56%, #cf5e2c 100%);
}

.fsgt93-news-content {
  padding: 12px 14px 14px;
}

.fsgt93-partners-list a {
  border-color: transparent;
  border-radius: 14px;
  background: linear-gradient(160deg, #fff 0%, #fff9ef 100%);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.fsgt93-partners-list a:hover,
.fsgt93-partners-list a:focus {
  transform: translateY(-2px);
  box-shadow: 0 14px 18px rgba(117, 45, 14, 0.12);
}

.fsgt93-partners-list img {
  filter: grayscale(0.12) contrast(1.02);
}

/* Partners section: sober, logos-first */
.fsgt93-section-partners {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(114, 73, 40, 0.16);
}

.fsgt93-section-partners .fsgt93-partners-list {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.fsgt93-section-partners .fsgt93-partners-list a {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.fsgt93-section-partners .fsgt93-partners-list a:hover,
.fsgt93-section-partners .fsgt93-partners-list a:focus {
  transform: none;
  box-shadow: none;
  background: transparent;
}

.fsgt93-section-partners .fsgt93-partners-list img {
  max-height: 40px;
  filter: none;
  opacity: 0.96;
}

.fsgt93-footer-partners {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.fsgt93-footer-partners li {
  margin: 0;
}

.fsgt93-footer-partners a {
  display: grid;
  place-items: center;
  min-height: 56px;
}

.fsgt93-footer-partners img {
  max-width: 100%;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.85);
}

.fsgt93-featured-hero-wrap {
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.fsgt93-featured-hero-wrap .fsgt93-section-head {
  margin-bottom: 4px;
  padding: 0 2px;
}

.fsgt93-featured-hero-wrap .fsgt93-section-head h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
}

.fsgt93-featured-hero {
  position: relative;
}

.fsgt93-featured-hero .fsgt93-featured-track {
  display: block;
}

.fsgt93-featured-hero .fsgt93-featured-hero-slide:not(:first-child) {
  display: none;
}

.fsgt93-featured-hero.is-enhanced .fsgt93-featured-hero-slide {
  display: none !important;
}

.fsgt93-featured-hero.is-enhanced .fsgt93-featured-hero-slide.is-active {
  display: block !important;
}

.fsgt93-featured-hero .fsgt93-featured-hero-slide {
  position: relative;
  min-height: clamp(360px, 54vw, 560px);
  border: 1px solid #d7a25e;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(140deg, #561014 0%, #892129 58%, #b4372f 100%);
  box-shadow: 0 32px 36px rgba(86, 19, 15, 0.25);
  padding: 0;
  display: block;
}

.fsgt93-featured-hero .fsgt93-featured-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(27, 7, 9, 0.76) 0%, rgba(27, 7, 9, 0.2) 50%, rgba(27, 7, 9, 0.02) 100%),
    linear-gradient(120deg, rgba(255, 141, 24, 0.36) 0%, rgba(255, 141, 24, 0) 46%);
}

.fsgt93-featured-hero .fsgt93-featured-thumb {
  position: absolute;
  inset: 0;
  border-radius: 0;
  min-height: auto;
}

.fsgt93-featured-hero .fsgt93-featured-thumb img {
  height: 100%;
  filter: saturate(1.08) contrast(1.04);
}

.fsgt93-featured-fallback {
  display: block;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 10%, rgba(255, 144, 28, 0.52) 0%, transparent 35%), linear-gradient(130deg, #6b1218 0%, #8f2028 54%, #b4372f 100%);
}

.fsgt93-featured-hero .fsgt93-featured-content {
  position: absolute;
  left: clamp(18px, 3.2vw, 42px);
  right: clamp(18px, 3.2vw, 42px);
  bottom: clamp(8px, 1.8vw, 18px);
  z-index: 2;
  max-width: min(760px, 92%);
  color: #fff8ef;
  gap: 8px;
}

.fsgt93-featured-hero .fsgt93-featured-content h3 {
  margin: 0;
  font-size: clamp(1.24rem, 2.55vw, 2.08rem);
  line-height: 0.95;
}

.fsgt93-featured-hero .fsgt93-featured-content h3 a {
  color: #fff;
  text-decoration: none;
}

.fsgt93-featured-hero .fsgt93-featured-content h3 a:hover,
.fsgt93-featured-hero .fsgt93-featured-content h3 a:focus {
  color: #fff2d9;
}

.fsgt93-featured-hero .fsgt93-featured-content p {
  margin: 0;
  max-width: 52ch;
  font-size: clamp(0.88rem, 1.08vw, 0.99rem);
  line-height: 1.35;
}

.fsgt93-featured-hero .fsgt93-meta {
  color: rgba(255, 246, 232, 0.92);
}

.fsgt93-featured-hero .fsgt93-badge {
  background: linear-gradient(125deg, #ffd490 0%, #ff9d23 100%);
  color: #59201a;
}

.fsgt93-featured-cta-row {
  margin-top: 4px;
}

.fsgt93-featured-hero .fsgt93-featured-cta-row .fsgt93-cta-link {
  padding: 7px 12px;
  font-size: 0.9rem;
  border-width: 1px;
}

.fsgt93-featured-hero .fsgt93-featured-controls {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: none;
  justify-content: space-between;
  pointer-events: none;
}

.fsgt93-featured-hero.is-enhanced .fsgt93-featured-controls {
  display: flex;
}

.fsgt93-featured-hero .fsgt93-slider-btn {
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  border-color: rgba(255, 206, 145, 0.86);
  color: #fff;
  background: rgba(40, 12, 15, 0.58);
  font-size: 1.9rem;
  line-height: 1;
  display: grid;
  place-items: center;
  pointer-events: auto;
}

.fsgt93-featured-hero .fsgt93-slider-btn:hover,
.fsgt93-featured-hero .fsgt93-slider-btn:focus {
  background: rgba(255, 157, 35, 0.92);
  color: #4b1310;
}

.fsgt93-featured-hero .fsgt93-slider-pagination {
  color: #ffeacd;
}

@media (max-width: 1100px) {
  .fsgt93-shell {
    grid-template-columns: 1fr;
  }

  .fsgt93-sidebar {
    position: static;
  }

  .fsgt93-home-hero {
    grid-template-columns: 1fr;
  }

  .fsgt93-featured-hero .fsgt93-featured-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .fsgt93-shell {
    padding: var(--fsgt93-space-3);
  }

  .fsgt93-home-section {
    padding: 14px;
  }

  .fsgt93-featured-slide {
    grid-template-columns: 1fr;
  }

  .fsgt93-featured-hero .fsgt93-featured-hero-slide {
    min-height: 430px;
    border-radius: 18px;
  }

  .fsgt93-featured-hero .fsgt93-featured-content {
    left: 14px;
    right: 14px;
    bottom: 8px;
    gap: 7px;
    padding-bottom: 48px;
  }

  .fsgt93-featured-hero .fsgt93-featured-content h3 {
    font-size: clamp(1.18rem, 6.4vw, 1.55rem);
  }

  .fsgt93-featured-hero .fsgt93-featured-content p {
    font-size: 0.88rem;
  }

  .fsgt93-featured-hero .fsgt93-featured-controls {
    left: 8px;
    right: 8px;
    top: 50%;
    justify-content: space-between;
  }

  .fsgt93-featured-thumb {
    min-height: 150px;
  }

  .fsgt93-home-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .fsgt93-home-actions > a,
  .fsgt93-home-actions > button {
    width: 100%;
    justify-content: center;
  }

  .fsgt93-sports-logo-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fsgt93-section-partners .fsgt93-partners-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fsgt93-footer-partners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .fsgt93-sports-logo-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}

/* Sport archive - map proposal (neo-editorial premium) */
.post-type-archive-sport .fsgt93-map-wrap--sport {
  border-color: #ebc58f;
  border-radius: 20px;
  padding: clamp(14px, 2vw, 20px);
  background:
    radial-gradient(circle at 3% 0, rgba(255, 168, 52, 0.2) 0%, rgba(255, 168, 52, 0) 36%),
    radial-gradient(circle at 100% -12%, rgba(143, 23, 32, 0.16) 0%, rgba(143, 23, 32, 0) 40%),
    linear-gradient(170deg, #fffdf7 0%, #fff2dc 100%);
  box-shadow: 0 18px 34px rgba(104, 48, 18, 0.1);
}

.post-type-archive-sport .fsgt93-map-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 1fr);
  gap: 14px;
  margin-bottom: 12px;
}

.post-type-archive-sport .fsgt93-map-kicker {
  margin: 0 0 8px;
  font: 700 0.83rem/1 'Fira Sans Extra Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8f1f1a;
}

.post-type-archive-sport .fsgt93-map-hero h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.06;
}

.post-type-archive-sport .fsgt93-map-hero p {
  margin: 8px 0 0;
}

.post-type-archive-sport .fsgt93-map-stats {
  border: 1px solid #efcca0;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #fff8ec 100%);
  padding: 10px;
  display: grid;
  gap: 7px;
}

.post-type-archive-sport .fsgt93-map-stats p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font: 700 0.9rem/1.1 'Fira Sans Extra Condensed', sans-serif;
}

.post-type-archive-sport .fsgt93-map-stats span {
  font-size: 1.2rem;
  color: #88161c;
}

.post-type-archive-sport .fsgt93-map-controls--sport {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

.post-type-archive-sport .fsgt93-map-controls--sport label {
  gap: 6px;
  font: 700 0.84rem/1 'Fira Sans Extra Condensed', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #78251c;
}

.post-type-archive-sport .fsgt93-map-controls--sport select,
.post-type-archive-sport .fsgt93-map-controls--sport input {
  min-height: 44px;
  border-color: #ecc699;
  border-radius: 12px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.post-type-archive-sport .fsgt93-map-controls--sport select:focus,
.post-type-archive-sport .fsgt93-map-controls--sport input:focus {
  border-color: #d57f36;
  outline: 3px solid rgba(213, 127, 54, 0.2);
  outline-offset: 1px;
}

.post-type-archive-sport .fsgt93-map-legend {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.post-type-archive-sport .fsgt93-map-legend li {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 700 0.85rem/1 'Fira Sans Extra Condensed', sans-serif;
  letter-spacing: 0.02em;
}

.post-type-archive-sport .fsgt93-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  display: inline-block;
}

.post-type-archive-sport .fsgt93-dot--club {
  background: #9e131d;
}

.post-type-archive-sport .fsgt93-dot--zone {
  background: #f0b73e;
}

.post-type-archive-sport #fsgt93-map {
  min-height: 540px;
  border-radius: 14px;
  border: 1px solid #efcfa8;
  background:
    radial-gradient(circle at 14% 10%, rgba(248, 207, 131, 0.28) 0%, transparent 36%),
    linear-gradient(180deg, #fff7e8 0%, #ffefd7 100%);
}

.post-type-archive-sport #fsgt93-map .leaflet-tile-pane {
  filter: sepia(0.22) saturate(1.05) hue-rotate(-8deg) brightness(1.03);
}

.post-type-archive-sport .fsgt93-map-footer {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.post-type-archive-sport .fsgt93-map-footer .fsgt93-meta {
  margin: 0;
}

.post-type-archive-sport .fsgt93-leaflet-club-marker {
  width: 20px;
  height: 20px;
}

.post-type-archive-sport .fsgt93-leaflet-club-marker span {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 2px solid #fff;
  background:
    radial-gradient(circle at 34% 30%, #ffcf75 0 30%, transparent 32%),
    linear-gradient(155deg, #b11123 0%, #8a0e1a 100%);
  box-shadow: 0 6px 12px rgba(114, 25, 15, 0.26);
}

.post-type-archive-sport .leaflet-popup.fsgt93-map-popup .leaflet-popup-content-wrapper {
  border-radius: 12px;
  border: 1px solid #efcca2;
  box-shadow: 0 16px 20px rgba(85, 34, 20, 0.18);
}

.post-type-archive-sport .leaflet-popup.fsgt93-map-popup .leaflet-popup-content {
  margin: 12px 14px;
  font-size: 0.9rem;
  line-height: 1.35;
}

.post-type-archive-sport .leaflet-popup.fsgt93-map-popup strong {
  display: block;
  margin-bottom: 5px;
  color: #5f1216;
  font: 700 1rem/1.1 'Fira Sans Extra Condensed', sans-serif;
}

.leaflet-container .fsgt93-city-label {
  white-space: nowrap;
}

.leaflet-container .fsgt93-city-label span {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #5e1d16;
  font: 700 11px/1 'Fira Sans Extra Condensed', sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
  box-shadow: 0 2px 6px rgba(81, 31, 13, 0.12);
}

.fsgt93-popup-accessibility {
  margin-top: 5px;
}

.fsgt93-popup-badge,
.fsgt93-badge-accessibility {
  display: inline-block;
  border-radius: 999px;
  padding: 3px 8px;
  font: 700 0.76rem/1 'Fira Sans Extra Condensed', sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.fsgt93-popup-badge.is-yes,
.fsgt93-badge-accessibility.is-yes {
  background: #e1f6e5;
  color: #186c2f;
  border: 1px solid #95cf9f;
}

.fsgt93-popup-badge.is-no,
.fsgt93-badge-accessibility.is-no {
  background: #fff2d9;
  color: #7a3a16;
  border: 1px solid #efcc97;
}

.fsgt93-club-accessibility {
  margin: 8px 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .post-type-archive-sport .fsgt93-map-hero {
    grid-template-columns: 1fr;
  }

  .post-type-archive-sport .fsgt93-map-controls--sport {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .post-type-archive-sport .fsgt93-map-controls--sport {
    grid-template-columns: 1fr;
  }

  .post-type-archive-sport #fsgt93-map {
    min-height: 420px;
  }
}

/* v3 navigation: sticky top header (menu left / logo center / inscription right) */
#primary.fsgt93-shell {
  display: block;
  padding: 16px 24px 24px;
}

.fsgt93-site-header {
  position: sticky;
  top: 10px;
  z-index: 80;
  margin: 0 auto 22px;
  border: 1px solid #ebcb9a;
  border-radius: 16px;
  background: rgba(255, 250, 241, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 30px rgba(116, 46, 19, 0.1);
}

.fsgt93-site-header-inner {
  min-height: 74px;
  padding: 10px 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.fsgt93-header-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.fsgt93-header-menu > li {
  margin: 0;
  position: relative;
}

.fsgt93-header-menu > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  color: #691711;
  font: 700 0.98rem/1 'Fira Sans Extra Condensed', sans-serif;
  letter-spacing: 0.01em;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.fsgt93-header-menu > li > a:hover,
.fsgt93-header-menu > li > a:focus {
  background: #fff2dd;
  border-color: #f1cf9f;
}

.fsgt93-header-menu > li.current-menu-item > a,
.fsgt93-header-menu > li.current-menu-ancestor > a {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #9b1414 0%, #c01c1c 100%);
}

.fsgt93-header-nav .sub-menu,
.fsgt93-header-nav .children {
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  min-width: 230px;
  list-style: none;
  margin: 0;
  padding: 8px;
  border: 1px solid #efcea3;
  border-radius: 12px;
  background: #fffaf0;
  box-shadow: 0 16px 24px rgba(104, 38, 16, 0.14);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
}

.fsgt93-header-nav .sub-menu li,
.fsgt93-header-nav .children li {
  margin: 0;
}

.fsgt93-header-nav .sub-menu a,
.fsgt93-header-nav .children a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: #7b2519;
  font: 600 0.94rem/1.2 'Source Sans 3', sans-serif;
}

.fsgt93-header-nav .sub-menu a:hover,
.fsgt93-header-nav .sub-menu a:focus,
.fsgt93-header-nav .children a:hover,
.fsgt93-header-nav .children a:focus {
  background: #fff0d8;
}

.fsgt93-header-nav .menu-item-has-children:hover > .sub-menu,
.fsgt93-header-nav .menu-item-has-children.is-open > .sub-menu,
.fsgt93-header-nav .page_item_has_children:hover > .children,
.fsgt93-header-nav .page_item_has_children.is-open > .children {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.fsgt93-header-nav .fsgt93-sidebar-toggle {
  display: none;
}

.fsgt93-site-logo {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  text-decoration: none;
}

.fsgt93-site-logo img {
  display: block;
  width: auto;
  height: 54px;
  max-width: 210px;
}

.fsgt93-site-header-cta {
  justify-self: end;
}

.fsgt93-header-inscription {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 16px;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid #8f1416;
  color: #fff !important;
  background: linear-gradient(135deg, #9b1414 0%, #c11f1f 100%);
  font: 700 1rem/1 'Fira Sans Extra Condensed', sans-serif;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 16px rgba(116, 28, 15, 0.2);
}

.fsgt93-header-inscription:hover,
.fsgt93-header-inscription:focus {
  color: #fff !important;
  transform: translateY(-1px);
}

@media (max-width: 1100px) {
  #primary.fsgt93-shell {
    padding: 12px 16px 20px;
  }

  .fsgt93-site-header-inner {
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: center;
  }

  .fsgt93-site-header-cta {
    justify-self: center;
  }

  .fsgt93-header-menu {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .fsgt93-site-header {
    top: 0;
    border-radius: 12px;
  }

  .fsgt93-site-logo img {
    height: 46px;
  }

  .fsgt93-header-menu {
    gap: 5px;
  }

  .fsgt93-header-menu > li > a {
    min-height: 34px;
    padding: 6px 9px;
    font-size: 0.9rem;
  }

  .fsgt93-header-nav .menu-item-has-children,
  .fsgt93-header-nav .page_item_has_children {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 6px;
    align-items: start;
  }

  .fsgt93-header-nav .fsgt93-sidebar-toggle {
    display: block;
    border: 1px solid #f2d3a8;
    background: #fff8e9;
    color: var(--fsgt93-brand-red);
    border-radius: 10px;
    width: 34px;
    height: 34px;
    cursor: pointer;
    position: relative;
  }

  .fsgt93-header-nav .fsgt93-sidebar-toggle::before,
  .fsgt93-header-nav .fsgt93-sidebar-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transform-origin: center;
  }

  .fsgt93-header-nav .fsgt93-sidebar-toggle::before {
    transform: translate(-70%, -50%) rotate(45deg);
  }

  .fsgt93-header-nav .fsgt93-sidebar-toggle::after {
    transform: translate(-30%, -50%) rotate(-45deg);
  }

  .fsgt93-header-nav .menu-item-has-children.is-open > .fsgt93-sidebar-toggle::before,
  .fsgt93-header-nav .page_item_has_children.is-open > .fsgt93-sidebar-toggle::before {
    transform: translate(-70%, -50%) rotate(-45deg);
  }

  .fsgt93-header-nav .menu-item-has-children.is-open > .fsgt93-sidebar-toggle::after,
  .fsgt93-header-nav .page_item_has_children.is-open > .fsgt93-sidebar-toggle::after {
    transform: translate(-30%, -50%) rotate(45deg);
  }

  .fsgt93-header-nav .sub-menu,
  .fsgt93-header-nav .children {
    position: static;
    min-width: 0;
    width: 100%;
    grid-column: 1 / -1;
    box-shadow: none;
    margin-top: 2px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition:
      max-height 280ms ease,
      opacity 180ms ease,
      transform 180ms ease,
      visibility 0s linear 280ms;
  }

  .fsgt93-header-nav.is-enhanced .menu-item-has-children.is-open > .sub-menu,
  .fsgt93-header-nav.is-enhanced .page_item_has_children.is-open > .children {
    max-height: 520px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition:
      max-height 320ms ease,
      opacity 180ms ease,
      transform 180ms ease;
  }
}

/* Header menu toggle behavior (menu button top-left + unfolding panel) */
.fsgt93-site-header-inner {
  grid-template-columns: 1fr auto 1fr;
}

.fsgt93-header-menu-toggle {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #efcea3;
  background: #fff6e7;
  color: #671710;
  font: 700 1rem/1 'Fira Sans Extra Condensed', sans-serif;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.fsgt93-header-menu-toggle:hover,
.fsgt93-header-menu-toggle:focus {
  background: #fff0dc;
  border-color: #e4b87e;
  color: #c01c1c;
}

.fsgt93-header-nav {
  border-top: 1px solid #efd4b1;
  padding: 10px 12px 12px;
}

.fsgt93-header-nav[hidden] {
  display: none !important;
}

.fsgt93-site-header.is-menu-open .fsgt93-header-nav {
  display: block;
}

.fsgt93-header-nav .fsgt93-header-menu {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}

.fsgt93-header-nav .fsgt93-header-menu > li {
  position: relative;
  padding: 0;
  border-radius: 10px;
}

.fsgt93-header-nav .fsgt93-header-menu > li > a {
  width: 100%;
  border-radius: 10px;
  justify-content: flex-start;
  min-height: 40px;
  padding: 10px 12px;
}

.fsgt93-header-nav .fsgt93-sidebar-toggle {
  display: block;
  position: absolute;
  right: 6px;
  top: 6px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid #f0d8b9;
  background: #fff8ec;
  color: #7c2216;
}

.fsgt93-header-nav .fsgt93-sidebar-toggle::before,
.fsgt93-header-nav .fsgt93-sidebar-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform-origin: center;
}

.fsgt93-header-nav .fsgt93-sidebar-toggle::before {
  transform: translate(-70%, -50%) rotate(45deg);
}

.fsgt93-header-nav .fsgt93-sidebar-toggle::after {
  transform: translate(-30%, -50%) rotate(-45deg);
}

.fsgt93-header-nav .menu-item-has-children.is-open > .fsgt93-sidebar-toggle::before,
.fsgt93-header-nav .page_item_has_children.is-open > .fsgt93-sidebar-toggle::before {
  transform: translate(-70%, -50%) rotate(-45deg);
}

.fsgt93-header-nav .menu-item-has-children.is-open > .fsgt93-sidebar-toggle::after,
.fsgt93-header-nav .page_item_has_children.is-open > .fsgt93-sidebar-toggle::after {
  transform: translate(-30%, -50%) rotate(45deg);
}

.fsgt93-header-nav .sub-menu,
.fsgt93-header-nav .children {
  position: static;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0 0 10px 10px;
  box-shadow: none;
  background: transparent;
  opacity: 1;
  visibility: visible;
  transform: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease;
}

.fsgt93-header-nav.is-enhanced .menu-item-has-children.is-open > .sub-menu,
.fsgt93-header-nav.is-enhanced .page_item_has_children.is-open > .children {
  max-height: 520px;
}

.fsgt93-header-nav .sub-menu li,
.fsgt93-header-nav .children li {
  margin: 0 0 6px;
}

.fsgt93-header-nav .sub-menu a,
.fsgt93-header-nav .children a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  background: #fffdf8;
  border: 1px solid #efdfc8;
  color: #5f261f;
  font: 600 0.91rem/1.25 'Source Sans 3', sans-serif;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.fsgt93-header-nav .sub-menu a:hover,
.fsgt93-header-nav .sub-menu a:focus,
.fsgt93-header-nav .children a:hover,
.fsgt93-header-nav .children a:focus {
  transform: translateX(1px);
  border-color: #e4ceb0;
  background: #fff7ea;
  box-shadow: 0 3px 8px rgba(116, 47, 18, 0.06);
}

.fsgt93-header-nav .sub-menu .current-menu-item > a,
.fsgt93-header-nav .children .current-menu-item > a {
  background: #fff1df;
  border-color: #d7b98f;
  color: #5a1c16;
  font-weight: 700;
}

@media (max-width: 760px) {
  .fsgt93-site-header-inner {
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
  }

  .fsgt93-site-header-cta {
    justify-self: end;
  }

  .fsgt93-header-inscription {
    min-height: 36px;
    padding: 6px 10px;
    font-size: 0.9rem;
  }
}
