/*
Theme Name: Fantasantini
*/

:root {
  --fs-bg: #f3f8f2;
  --fs-surface: #ffffff;
  --fs-surface-2: #ecf5ea;
  --fs-primary: #17863c;
  --fs-primary-dark: #0f5a29;
  --fs-primary-soft: #d9f0de;
  --fs-black: #101410;
  --fs-gold: #d4af37;
  --fs-silver: #bfc3c9;
  --fs-bronze: #cd7f32;
  --fs-white: #ffffff;
  --fs-text: #1f2a1f;
  --fs-text-soft: #55645a;
  --fs-border: rgba(16, 20, 16, 0.08);
  --fs-shadow: 0 12px 32px rgba(16, 20, 16, 0.08);
  --fs-radius: 18px;
  --fs-radius-sm: 12px;
  --fs-max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--fs-text);
  background: var(--fs-bg);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--fs-primary-dark); text-decoration: none; }
a:hover { color: var(--fs-primary); }

.screen-reader-text {
  position: absolute;
  left: -9999px;
}

.container {
  width: min(calc(100% - 2rem), var(--fs-max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--fs-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.site-branding a {
  color: var(--fs-black);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--fs-border);
  border-radius: 10px;
  background: var(--fs-surface);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.menu-toggle:hover {
  background: var(--fs-surface-2);
}

.menu-toggle__line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--fs-black);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle.is-open .menu-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .menu-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0.3rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.site-nav li { position: relative; }
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--fs-black);
}
.login-link:hover {
    background: #111;
    color: #101410 !important;
}
.site-nav .current-menu-item > a,
.site-nav a:hover {
  background: var(--fs-primary-soft);
  color: var(--fs-primary-dark);
}

.fs-section {
  padding: 3rem 0;
}

.fs-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.fs-pagination {
    margin-top: 20px;
    margin-left: 5px;
}

.fs-page-header .entry-title {
    margin: 0;
}

.fs-page-header__button {
    white-space: nowrap;
    min-width: 200px;
    text-align: center;
}

.fs-page-header__button:disabled {
    opacity: .55;
    cursor: not-allowed;
    pointer-events: none;
}

.fs-page-header__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .7rem 1.4rem;
    border-radius: 10px;
    border: 1px solid #2faa32;
    background: #2faa32;
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    line-height: 1;
    cursor: pointer;
    transition: all .2s ease;
    white-space: nowrap;
}

/* Hover */
.fs-page-header__button:hover:not(:disabled) {
    background: #27962c;
    border-color: #27962c;
    transform: translateY(-1px);
}

/* Active */
.fs-page-header__button:active:not(:disabled) {
    transform: translateY(0);
}

/* Disabled */
.fs-page-header__button:disabled {
    background: #d1d5d1;
    border-color: #c4cbc4;
    color: #6b726b;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.fs-partners {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 24px;
}

.fs-section--partners a {
    color: inherit;
    text-decoration: none;
}

.fs-partner {
    text-align: center;
}

.fs-partner__image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    margin-bottom: 12px;
}

.fs-partner__image img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.fs-partner__title {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.3;
}

.fs-hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, #1d8e45 0%, #0f5a29 35%, #101410 100%);
  color: #fff;
}
.fs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--fs-hero-image, none);
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  transform: scale(1.08);
  opacity: 0.25;
}
.fs-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.16), transparent 35%),
              linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.25));
}
.fs-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.fs-kicker {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.fs-hero h1,
.entry-title {
  margin: 0 0 0.8rem;
  line-height: 1.05;
  font-size: clamp(2.2rem, 5vw, 2.8rem);
}
.fs-hero p {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.9);
}

.fs-grid {
  display: grid;
  gap: 1.25rem;
}
.fs-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.fs-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fs-card {
  background: var(--fs-surface);
  border: 1px solid var(--fs-border);
  border-radius: var(--fs-radius);
  box-shadow: var(--fs-shadow);
  padding: 1.3rem;
}
.fs-card--accent {
  background: linear-gradient(180deg, #ffffff 0%, #f3fbf4 100%);
}

.fs-card__title,
.fs-section-title {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  color: var(--fs-black);
}
.fs-card__subtitle {
    margin-top: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
    color: #6b7280; 
}
.fs-card__note {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.5;
    color: #92400e; 
    background: #fff7ed;
    border-left: 3px solid #f97316;
    padding: 10px;
    border-radius: 4px;
}
.fs-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.fs-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: var(--fs-primary-soft);
  color: var(--fs-primary-dark);
  font-size: 0.87rem;
  font-weight: 700;
}
.fs-badge--dark {
  background: var(--fs-black);
  color: #fff;
}
.fs-badge--muted {
  background: #edf1ee;
  color: var(--fs-text-soft);
}

.fs-ranking {
  display: grid;
  gap: 0.8rem;
}
.fs-ranking__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  background: var(--fs-surface);
  border: 1px solid var(--fs-border);
  border-radius: var(--fs-radius-sm);
  padding: 1rem;
}
.fs-ranking__notice {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 12px;
  font-style: italic;
}
.fs-ranking__position {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
}
.fs-ranking__position.first {
  background: var(--fs-gold);
}
.fs-ranking__position.second {
  background: var(--fs-silver);
}
.fs-ranking__position.third {
  background: var(--fs-bronze);
}
.fs-ranking__position.others {
  background: var(--fs-black);
}
.fs-ranking__points {
  font-weight: 800;
  color: var(--fs-primary-dark);
  white-space: nowrap;
}
.fs-ranking__name {
  font-weight: 700;
  color: var(--fs-black);
}
.fs-ranking__item--prestart {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid #e7ece8;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.fs-ranking__avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: #dcefe2;
    color: #1f5130;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}
.fs-ranking__sub {
  font-size: 0.92rem;
  color: var(--fs-text-soft);
}
.fs-ranking__footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
}

.fs-ranking__more {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f5130;
    text-decoration: none;
    transition: all 0.2s ease;
}

.fs-ranking__more:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.fs-list {
  display: grid;
  gap: 1rem;
}

.fs-entity {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fs-entity__title {
  margin: 0;
  font-size: 1.2rem;
}

.fs-entity__excerpt,
.fs-text-muted {
  color: var(--fs-text-soft);
}

.fs-two-col {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 1.5rem;
}

.fs-stack {
  display: grid;
  gap: 1rem;
}

.entry-content,
.term-description {
  color: var(--fs-text);
}

.fs-table-like {
  display: grid;
  gap: 0.75rem;
}
.fs-table-like__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border: 1px solid var(--fs-border);
  border-radius: 14px;
  background: #fff;
}

.fs-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--fs-border);
  background: #fff;
  margin-top: 3rem;
}
.fs-footer p {
  margin: 0;
  color: var(--fs-text-soft);
}

.fs-empty {
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px dashed var(--fs-border);
  border-radius: 14px;
  color: var(--fs-text-soft);
}

.pagination,
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--fs-border);
  padding: 0.5rem 0.8rem;
  margin-bottom: 10px;
}
.page-numbers.current {
  background: var(--fs-black);
  color: #fff;
  border-color: var(--fs-black);
}
.user-area {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.user-area__inner {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
}

.user-area__name {
    font-weight: 700;
    color: #0f2a1c;
}

.user-area__team,
.user-area__logout,
.login-link {
    display: inline-flex;
    align-items: center;
    padding: .55rem .9rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}

.user-area__team {
    background: #0f5c3a;
    color: #fff;
}

.user-area__logout,
.login-link {
    background: #111;
    color: #fff !important;
}
.fs-team-summary__title {
    margin-bottom: 1rem;
}

.fs-team-summary__stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.fs-selected-list {
    margin-top: 1rem;
}

.fs-selected-list__empty {
    margin: 0;
    opacity: .8;
}

.fs-selected-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.fs-selected-pill {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: .9rem 1rem;
    border-radius: 999px;
    background: #dfe5df;
    border: 1px solid #cfd8cf;
}

.fs-selected-pill__credit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .45rem .7rem;
    border-radius: 999px;
    background: #0f1720;
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    line-height: 1;
}

.fs-selected-pill__remove {
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fs-selected-pill__remove:hover {
    opacity: .9;
}

.fs-team-filters__grid {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 1rem;
}

.fs-team-filters__field label {
    display: block;
    margin-bottom: .5rem;
}

.fs-filter-input,
.fs-filter-select {
    width: 100%;
    padding: .85rem 1rem;
    border: 1px solid #cfd8d2;
    border-radius: 14px;
    background: #fff;
    font-size: 1rem;
}

.fs-select-card {
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.fs-select-card:hover {
    transform: translateY(-2px);
}

.fs-select-card input:checked + .fs-entity__title,
.fs-select-card input:checked ~ .fs-entity__title {
    color: #0b5a36;
}

.fs-select-card.is-selected {
    outline: 2px solid #2faa32;
    outline-offset: -2px;
}

.user-area__inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* PROFILO */
.user-area__profile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 6px;
}

/* AVATAR */
.user-area__avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--fs-primary-soft);
  color: var(--fs-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

/* NOME */
.user-area__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fs-text-soft);
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* BOTTONI */
.user-area__team,
.user-area__logout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.15s ease;
}

/* CTA principale */
.user-area__team {
  background: var(--fs-primary);
  color: #fff;
}

/* logout */
.user-area__logout {
  background: #0f0f0f;
  color: #fff;
}

/* hover */
.user-area__team:hover,
.user-area__logout:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

/* ===== FOOTER SOCIAL ===== */

.fs-footer-social-block {
  text-align: center;
  margin-bottom: 10px;
}

.fs-footer-follow {
  font-size: 16px;
  color: var(--fs-text-soft);
  margin-bottom: 8px;
}

.fs-footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.fs-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--fs-black);
  transition: all 0.2s ease;
}

.fs-footer-social a:hover {
  background: var(--fs-primary);
  transform: translateY(-2px);
}

.fs-icon {
  width: 18px;
  height: 18px;
  fill: var(--fs-primary);
  transition: fill 0.2s ease;
}

.fs-footer-social a:hover .fs-icon {
  fill: #ffffff;
}

.fs-footer-copy {
  text-align: center;
  font-size: 16px;
  color: var(--fs-text-soft);
}

.fs-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fs-field {
    flex: 1;
}

.fs-error {
    border: 1px solid #e6a1a1;
    background-color: #fdf2f2;
    color: #9b2c2c;
    border-left: 4px solid #c53030;
    border-radius: 12px;
    padding: 1rem 1.25rem;
}
.fs-table-like__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--fs-border);
  transition: all 0.2s ease;
  position: relative;
}


.fs-table-like__row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 4px;
  border-radius: 4px;
}


.fs-table-like__row.is-bonus::before {
  background: #2ecc71;
}

.fs-table-like__row.is-bonus .fs-ranking__points {
  color: #2ecc71;
}


.fs-table-like__row.is-malus::before {
  background: #e74c3c;
}

.fs-table-like__row.is-malus .fs-ranking__points {
  color: #e74c3c;
}


.fs-table-like__row:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.fs-ranking__sub {
  font-size: 13px;
  color: var(--fs-text-soft);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.fs-date {
  font-weight: 500;
  color: #6b7a6f; /* leggermente più visibile */
}

.fs-date::before {
  content: "•";
  margin: 0 4px;
  color: rgba(0,0,0,0.2);
}

.fs-team-summary {
    padding: clamp(20px, 3vw, 32px);
}

.fs-team-summary__head {
    margin-bottom: 24px;
}

.fs-team-summary__title {
    margin: 0 0 16px;
    font-size: clamp(2rem, 5vw, 3.8rem);
    line-height: 0.95;
    word-break: break-word;
}

.fs-team-summary__mayor {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.4;
    margin-top: 20px;
}

.fs-team-summary__label {
    font-weight: 700;
}

.fs-team-summary__mayor-link {
    font-weight: 800;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease, opacity 0.2s ease;
}

.fs-team-summary__mayor-link:hover,
.fs-team-summary__mayor-link:focus {
    border-bottom-color: currentColor;
    opacity: 0.9;
}

.fs-team-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.fs-team-stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 140px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.fs-team-stat__label {
    margin-bottom: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.7;
}

.fs-team-stat__value {
    font-size: clamp(2.2rem, 6vw, 3.6rem);
    line-height: 1;
    font-weight: 800;
}

.fs-input {
    width: 100%;
    max-width: 420px;
    padding: .8rem 1rem;
    border-radius: 12px;
    border: 1px solid #ccd5cf;
    font-size: 14px;
    box-sizing: border-box;
}

@media (min-width: 768px) {

   .fs-partners {
        grid-template-columns: repeat(3, 1fr);
    }

  #primary-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .fs-row {
      flex-direction: row;
      align-items: flex-start;
  }

  .fs-footer .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px; /* puoi ridurre a 12px se vuoi più compatto */
  }

  .fs-footer-social-block {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    text-align: left;
  }

  .fs-footer-follow {
    margin-bottom: 0 !important;
    margin-right: 10px !important;
  }

  .fs-footer-social {
    justify-content: flex-start;
  }

  .fs-footer-copy {
    text-align: left;
    margin-left: 10px;
  }
}

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

    .fs-team-summary__stats {
        flex-direction: column;
        gap: .75rem;
    }
}

@media (max-width: 960px) {
  .fs-grid--3,
  .fs-grid--2,
  .fs-two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .fs-team-summary__title {
        margin-bottom: 14px;
    }

    .fs-team-stats {
        grid-template-columns: 1fr;
    }

    .fs-team-stat {
        min-height: auto;
        padding: 18px;
    }

    .fs-team-stat__value {
        font-size: clamp(2rem, 10vw, 3rem);
    }

.fs-partners {
        grid-template-columns: 1fr;
    }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: relative;
  }

  .site-nav nav {
    position: absolute;
    right: 0;
    top: calc(100% + 0.75rem);
    min-width: 240px;
    background: #fff;
    border: 1px solid var(--fs-border);
    border-radius: 18px;
    box-shadow: var(--fs-shadow);
    padding: 0.7rem;
    display: none;
  }

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

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a {
    width: 100%;
    justify-content: flex-start;
    border-radius: 12px;
  }

  .fs-section {
    padding: 2.3rem 0;
  }

  .fs-hero {
    padding: 4rem 0 3rem;
  }

  .fs-ranking__item,
  .fs-table-like__row {
    grid-template-columns: auto 1fr;
  }

  .fs-ranking__points,
  .fs-table-like__row > :last-child {
    grid-column: 3;
  }
}
.fs-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    background:
        linear-gradient(115deg, rgba(23, 92, 45, 0.92) 0%, rgba(7, 40, 22, 0.94) 100%),
        var(--fs-hero-image) center/cover no-repeat;
}

.fs-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08), transparent 35%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05), transparent 30%);
    pointer-events: none;
}

.fs-hero .container {
    position: relative;
    z-index: 1;
}

.fs-hero__inner {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: center;
}

.fs-hero__content {
    max-width: 760px;
    padding: 28px 32px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.fs-kicker {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.fs-hero__content h1 {
    margin: 0 0 20px;
    color: #fff;
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.fs-hero__content p {
    margin: 0;
    color: rgba(255,255,255,0.92);
    line-height: 1.5;
}

.fs-hero__logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fs-hero__logo {
    width: min(100%, 280px);
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.30);
    transform: rotate(-3deg);
    background: rgba(255,255,255,0.04);
}

@media (max-width: 900px) {
    .fs-hero {
        padding: 48px 0;
    }

    .fs-hero__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .fs-hero__content {
        padding: 24px;
    }

    .fs-hero__content h1 {
        max-width: none;
    }

    .fs-hero__logo {
        width: 220px;
        transform: none;
    }
}
.fs-footer-legal {
    font-size: 0.85rem;
    opacity: 0.8;
}

.fs-footer-legal a {
    color: inherit;
    text-decoration: underline;
}

.fs-footer-legal a:hover {
    opacity: 1;
}
.cmplz-manage-consent {
  display: none !important;
}
.wppb-edit-user .default_field_email {
  pointer-events: none;
  background-color: #eee;
  color: #666;
  cursor: not-allowed;
}