:root {
      --green-950: #071d16;
      --green-900: #0b2f22;
      --green-800: #0f4b34;
      --green-700: #08733f;
      --green-600: #009e55;
      --green-500: #18b86a;
      --gold-500: #ffd200;
      --gold-600: #efb900;
      --red-500: #ff3f3f;
      --ink: #111827;
      --muted: #6b7280;
      --line: rgba(15, 75, 52, .14);
      --paper: #ffffff;
      --soft: #f4f8f5;
      --shadow: 0 24px 70px rgba(4, 20, 14, .16);
      --radius-xl: 28px;
      --radius-lg: 20px;
      --radius-md: 14px;
      --max: 1520px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      font-family: "Segoe UI", Roboto, Helvetica, Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      padding-top: 122px;
      background:
        radial-gradient(circle at 12% 12%, rgba(24, 184, 106, .12), transparent 34%),
        linear-gradient(180deg, #f7fbf8 0%, #eef6f0 42%, #ffffff 100%);
      color: var(--ink);
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .page {
      width: 100%;
      min-height: 100vh;
    }

    .top-strip {
      background: var(--green-950);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .02em;
    }

    .top-strip-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 9px 28px;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: center;
    }

    .top-strip strong {
      color: var(--gold-500);
      font-weight: 800;
    }

    .top-message {
      display: inline-flex;
      align-items: center;
      gap: 2px;
      white-space: nowrap;
    }

    .top-message-ball {
      display: inline-block;
      flex: 0 0 auto;
      line-height: 1;
      transform-origin: 50% 82%;
    }

    .top-message-window,
    .top-message-track {
      display: inline-flex;
      align-items: center;
    }

    .top-message-track {
      gap: 2px;
    }

    .top-message-ball.bounce {
      animation: ballBounce .42s ease-out var(--ball-bounces, 5);
    }

    @keyframes ballBounce {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-8px) scale(1.05); }
      75% { transform: translateY(1px) scale(.98); }
    }

    .top-contact {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-weight: 700;
      transition: color .2s ease;
    }

    .top-contact-icon {
      width: 17px;
      height: 17px;
      flex: 0 0 auto;
      display: block;
      fill: currentColor;
    }

    .top-contact:hover {
      color: var(--gold-500);
    }

    .site-top {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 90;
      width: 100%;
    }

    .shell {
      width: min(100%, var(--max));
      margin: 0 auto;
      padding: 0 28px;
    }

    .header {
      position: relative;
      z-index: 80;
      background: rgba(255,255,255,.88);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--line);
    }

    .header-inner {
      height: 88px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 270px;
    }

    .brand-logo {
      width: 62px;
      height: 62px;
      object-fit: contain;
      filter: drop-shadow(0 10px 20px rgba(0,0,0,.12));
    }

    .brand-text {
      display: grid;
      line-height: 1;
    }

    .header .brand-text {
      font-family: Arial, Helvetica, sans-serif;
    }

    .brand-text .big {
      font-family: "Segoe UI", Roboto, Helvetica, Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      font-size: 25px;
      font-weight: 800;
      letter-spacing: -.02em;
      color: var(--green-950);
    }

    .brand-text .small {
      margin-top: 7px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--green-700);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      padding: 0;
      background: transparent;
      border: 0;
      border-radius: 0;
      box-shadow: none;
    }

    .nav a {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 56px;
      padding: 0 12px;
      color: var(--green-950);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .01em;
      transition: .22s ease;
      white-space: nowrap;
    }

    .nav a + a::before {
      content: "";
      position: absolute;
      left: 0;
      top: 14px;
      bottom: 14px;
      width: 1px;
      background: rgba(4, 36, 27, .12);
    }

    .nav a::after {
      content: "";
      position: absolute;
      left: 12px;
      right: 12px;
      bottom: 8px;
      height: 3px;
      border-radius: 999px;
      background: var(--green-700);
      opacity: 0;
      transform: scaleX(.35);
      transition: .22s ease;
    }

    .nav a:hover,
    .nav a.active {
      color: var(--green-700);
    }

    .nav a:hover::after,
    .nav a.active::after {
      opacity: 1;
      transform: scaleX(1);
    }

    .nav-icon {
      width: 18px;
      height: 18px;
      display: inline-flex;
      flex: 0 0 18px;
      align-items: center;
      justify-content: center;
    }

    .nav-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      transition: filter .22s ease;
    }

    .nav a:hover .nav-icon img,
    .nav a.active .nav-icon img {
      filter: brightness(0) saturate(100%) invert(29%) sepia(93%) saturate(913%) hue-rotate(119deg) brightness(89%) contrast(94%);
    }

    .nav a.nav-comet .nav-icon img {
      filter: brightness(0) saturate(100%);
    }

    .nav a.nav-comet:hover .nav-icon img,
    .nav a.nav-comet:focus-visible .nav-icon img {
      filter: brightness(0) saturate(100%) invert(29%) sepia(93%) saturate(913%) hue-rotate(119deg) brightness(89%) contrast(94%);
    }

    .nav a.nav-disabled {
      cursor: default;
    }

    .nav a.nav-disabled:hover {
      color: var(--green-950);
      background: transparent;
    }

    .nav a.nav-disabled:hover::after {
      opacity: 0;
      transform: scaleX(.35);
    }

    .nav a.nav-disabled:hover .nav-icon img {
      filter: none;
    }

    .mobile-menu {
      display: none;
      width: 46px;
      height: 46px;
      border: 0;
      border-radius: 14px;
      background: var(--green-800);
      color: #fff;
      font-size: 24px;
      cursor: pointer;
    }

    .floating-sponsor {
      position: fixed;
      right: 18px;
      bottom: 22px;
      z-index: 70;
      width: 82px;
      height: 82px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 9px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid rgba(128, 186, 28, .5);
      box-shadow:
        0 0 0 3px rgba(128, 186, 28, .1),
        0 0 22px rgba(128, 186, 28, .34),
        0 18px 42px rgba(0,0,0,.18);
      text-decoration: none;
      overflow: hidden;
      transition: transform .22s ease, box-shadow .22s ease;
    }

    .floating-sponsor::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      box-shadow: inset 0 0 0 1px rgba(255, 213, 0, .18);
    }

    .floating-sponsor:hover {
      animation: sponsorBounce .58s ease;
      box-shadow:
        0 0 0 4px rgba(128, 186, 28, .14),
        0 0 30px rgba(128, 186, 28, .42),
        0 20px 46px rgba(0,0,0,.2);
    }

    @keyframes sponsorBounce {
      0%, 100% {
        transform: translateY(0) scale(1);
      }
      35% {
        transform: translateY(-7px) scale(1.035);
      }
      65% {
        transform: translateY(2px) scale(.99);
      }
    }

    .floating-sponsor img {
      width: 64px;
      max-width: 100%;
      height: auto;
      display: block;
      position: relative;
      z-index: 1;
    }

    .hero {
      padding: 20px 0 14px;
    }

    .hero-stage {
      position: relative;
      height: 520px;
      border-radius: 34px;
      overflow: hidden;
      box-shadow: var(--shadow);
      background: var(--green-950);
      isolation: isolate;
    }

    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity .9s ease-in-out;
      pointer-events: none;
      display: grid;
      grid-template-columns: 1fr;
      align-items: center;
      padding: 0 76px;
      isolation: isolate;
      color: inherit;
      text-decoration: none;
    }

    .slide-image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: var(--slide-position, center);
      z-index: -3;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      width: min(100%, 860px);
      height: 100%;
      box-sizing: border-box;
      display: grid;
      grid-template-rows: 42px 96px 48px 44px;
      align-content: end;
      justify-items: start;
      row-gap: 18px;
      padding: 28px 30px 50px;
      border-left: 5px solid var(--gold-500);
      background: linear-gradient(90deg, rgba(7,29,22,.51), rgba(7,29,22,.27), transparent);
      border-radius: 0 26px 26px 0;
    }

    .hero-content::before {
      content: "";
      position: absolute;
      bottom: 0;
      bottom: 0;
      right: 100%;
      width: 86px;
      pointer-events: none;
      background: linear-gradient(90deg, rgba(7,29,22,.44), rgba(7,29,22,.51));
      z-index: -1;
    }

    .slide.active {
      opacity: 1;
      pointer-events: auto;
      z-index: 2;
    }

    .slide::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(7,29,22,.60), rgba(7,29,22,.40) 42%, rgba(7,29,22,.10) 78%),
        linear-gradient(0deg, rgba(7,29,22,.43), rgba(7,29,22,.05) 48%, rgba(7,29,22,.16));
      z-index: -2;
    }

    .slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
      background-size: 70px 70px;
      mask-image: linear-gradient(90deg, black, transparent 75%);
      z-index: -1;
    }

    .hero-kicker {
      height: 42px;
      width: fit-content;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 9px 14px;
      background: var(--gold-500);
      color: var(--green-950);
      border-radius: 999px;
      text-transform: uppercase;
      letter-spacing: .075em;
      font-size: 12px;
      font-weight: 800;
      box-shadow: 0 12px 30px rgba(255,210,0,.22);
    }

    .hero-title {
      height: 96px;
      margin-top: 0;
      max-width: 860px;
      font-size: clamp(30px, 2.85vw, 48px);
      line-height: 1.06;
      letter-spacing: 0;
      font-weight: 900;
      color: #fff;
      text-transform: uppercase;
      overflow: hidden;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 4;
    }

    .hero-title span {
      color: var(--gold-500);
    }

    .hero-copy {
      height: 48px;
      max-width: 720px;
      margin-top: 0;
      color: rgba(255,255,255,.82);
      font-size: 16px;
      line-height: 1.48;
      font-weight: 600;
      overflow: hidden;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 14px;
      height: 44px;
      margin-top: 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 44px;
      padding: 0 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .035em;
      cursor: pointer;
      transition: .22s ease;
    }

    .btn.primary {
      background: #FF3F3F;
      color: #fff;
      box-shadow: 0 18px 34px rgba(255,63,63,.28);
    }

    .btn.primary:hover {
      transform: translateY(-2px);
      background: #e93636;
    }

    .btn.ghost {
      background: rgba(255,255,255,.12);
      color: #fff;
      border-color: rgba(255,255,255,.22);
      backdrop-filter: blur(14px);
    }

    .hero-card {
      align-self: stretch;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 420px;
    }

    .promo-card {
      position: relative;
      width: min(100%, 500px);
      aspect-ratio: 4 / 5;
      border-radius: 32px;
      background:
        radial-gradient(circle at 70% 20%, rgba(255,210,0,.78), transparent 26%),
        linear-gradient(145deg, #ffffff, #dff4e8);
      overflow: hidden;
      box-shadow: 0 34px 80px rgba(0,0,0,.34);
      transform: rotate(2deg);
      border: 1px solid rgba(255,255,255,.5);
    }

    .promo-card .big-logo {
      position: absolute;
      top: 28px;
      right: 28px;
      width: 100px;
      height: 100px;
      object-fit: contain;
      filter: drop-shadow(0 12px 22px rgba(0,0,0,.18));
    }

    .footballer {
      position: absolute;
      left: -22px;
      bottom: -20px;
      width: 84%;
      height: 88%;
      background:
        radial-gradient(circle at 48% 14%, #222 0 6%, transparent 6.5%),
        linear-gradient(72deg, transparent 0 35%, #f7c800 35% 48%, #111 48% 55%, #1ba863 55% 68%, transparent 68%),
        radial-gradient(ellipse at 44% 38%, #f7c800 0 22%, transparent 23%),
        linear-gradient(110deg, transparent 0 43%, #111 43% 48%, transparent 48%);
      opacity: .96;
      filter: drop-shadow(0 32px 30px rgba(0,0,0,.28));
    }

    .promo-type {
      position: absolute;
      left: 32px;
      bottom: 32px;
      right: 32px;
      color: var(--green-950);
    }

    .promo-type .label {
      display: inline-flex;
      padding: 7px 10px;
      background: var(--red-500);
      color: #fff;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .promo-type h3 {
      margin-top: 12px;
      font-size: 46px;
      line-height: .96;
      letter-spacing: -.025em;
      text-transform: uppercase;
      font-weight: 900;
    }

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

    .hero-arrow {
      pointer-events: auto;
      width: 38px;
      height: 38px;
      border: 0;
      border-radius: 50%;
      background: rgba(255,255,255,.94);
      color: var(--green-950);
      font-size: 20px;
      cursor: pointer;
      box-shadow: 0 12px 30px rgba(0,0,0,.2);
    }

    .dots {
      position: absolute;
      left: 50%;
      bottom: 24px;
      transform: translateX(-50%);
      z-index: 9;
      display: flex;
      gap: 9px;
      padding: 7px;
      background: rgba(255,255,255,.14);
      border-radius: 999px;
      backdrop-filter: blur(16px);
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: 0;
      background: rgba(255,255,255,.4);
      cursor: pointer;
    }

    .dot.active {
      width: 32px;
      border-radius: 999px;
      background: var(--gold-500);
    }

    .section {
      padding: 28px 0;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 24px;
      margin-bottom: 14px;
    }

    .eyebrow {
      color: var(--green-700);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-weight: 800;
    }

    .section-title {
      margin-top: 0;
      font-size: 22px;
      line-height: 1;
      letter-spacing: 0;
      text-transform: uppercase;
      color: var(--green-950);
      font-weight: 900;
    }

    .section-title.green-title {
      color: #000;
    }

    .section-note {
      max-width: 560px;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.55;
      font-weight: 600;
    }

    .news-rail {
      position: relative;
    }

    .news-row {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 14px;
      overflow: visible;
      padding: 4px 2px 0;
    }

    .news-card {
      min-height: 292px;
      border-radius: 20px;
      overflow: hidden;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 18px 42px rgba(0,0,0,.08);
      transition: .25s ease;
    }

    .news-card:hover,
    .news-card.auto-active {
      transform: translateY(-6px) scale(1.012);
      box-shadow: 0 30px 66px rgba(0,0,0,.15);
    }

    .thumb {
      height: 126px;
      position: relative;
      overflow: hidden;
    }

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

    .news-body {
      padding: 14px;
    }

    .tag {
      display: inline-flex;
      padding: 6px 9px;
      border-radius: 999px;
      background: rgba(0,158,85,.1);
      color: var(--green-700);
      font-size: 10px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .news-body h3 {
      margin-top: 11px;
      font-size: 18px;
      line-height: 1.02;
      letter-spacing: -.04em;
      color: var(--green-950);
      font-weight: 900;
    }

    .news-body p {
      margin-top: 8px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
      font-weight: 600;
    }

    .content-grid {
      display: grid;
      grid-template-columns: 1.1fr 1.75fr 1.1fr;
      gap: 18px;
      align-items: stretch;
    }

    .panel {
      border-radius: 26px;
      background: rgba(255,255,255,.88);
      border: 1px solid var(--line);
      box-shadow: 0 16px 42px rgba(0,0,0,.08);
      overflow: hidden;
      min-height: 430px;
    }

    .panel-head {
      height: 40px;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: var(--green-800);
      color: #fff;
    }

    .panel-head h3 {
      font-size: 19px;
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: -.02em;
      font-weight: 900;
    }

    .panel-head span,
    .panel-head a {
      color: var(--gold-500);
      font-size: 13px;
      line-height: 1;
      font-weight: 900;
      text-transform: uppercase;
    }

    .panel-head a:hover {
      color: #fff;
    }

    .video-box {
      display: block;
      height: calc(100% - 40px);
      min-height: 372px;
      position: relative;
      background: var(--green-950);
      color: #fff;
      overflow: hidden;
      text-decoration: none;
    }

    .video-box.is-youtube-embed::after {
      display: none;
    }

    .video-box.is-youtube-embed iframe {
      position: absolute;
      inset: 0;
      z-index: 1;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .video-box img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .72;
      transition: transform .35s ease, opacity .35s ease;
    }

    .video-box::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(7,29,22,.12), rgba(7,29,22,.72)),
        linear-gradient(135deg, rgba(21,92,63,.56), transparent 52%, rgba(216,178,10,.45));
    }

    .video-box:hover img {
      transform: scale(1.04);
      opacity: .86;
    }

    .play {
      position: absolute;
      left: 50%;
      top: 50%;
      z-index: 2;
      width: 88px;
      height: 88px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(255,255,255,.94);
      color: var(--green-900);
      font-size: 34px;
      transform: translate(-50%, -50%);
      box-shadow: 0 24px 58px rgba(0,0,0,.3);
      transition: transform .25s ease;
    }

    .play::before {
      content: "";
      width: 0;
      height: 0;
      margin-left: 7px;
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-left: 22px solid var(--green-900);
    }

    .video-box:hover .play {
      transform: translate(-50%, -50%) scale(1.06);
    }

    .video-caption {
      position: absolute;
      left: 22px;
      right: 22px;
      bottom: 22px;
      z-index: 3;
      pointer-events: none;
      text-shadow: 0 4px 18px rgba(0,0,0,.8);
    }

    .video-caption strong {
      display: block;
      font-size: 26px;
      line-height: 1;
      letter-spacing: -.04em;
      font-weight: 900;
    }

    .video-caption small {
      display: block;
      margin-top: 7px;
      color: rgba(255,255,255,.78);
      font-size: 13px;
      font-weight: 800;
    }

    .doc-list,
    .podcast-list {
      padding: 14px;
      display: grid;
      gap: 12px;
    }

    .doc-card,
    .podcast-card {
      position: relative;
      min-height: 106px;
      border-radius: 18px;
      padding: 13px;
      overflow: hidden;
      background: #fff;
      border: 1px solid var(--line);
      cursor: pointer;
      color: inherit;
      text-decoration: none;
    }

    .doc-card {
      display: grid;
      grid-template-columns: 74px 1fr;
      gap: 12px;
      align-items: center;
    }

    .doc-mini {
      height: 82px;
      border-radius: 12px;
      border: 1px solid rgba(15,75,52,.16);
      background: #fff;
      position: relative;
      display: grid;
      place-items: center;
      overflow: hidden;
    }

    .doc-mini::after {
      content: none;
    }

    .doc-mini img {
      width: 58px;
      height: 68px;
      object-fit: contain;
      display: block;
    }

    .doc-card h4,
    .podcast-card h4 {
      font-size: 15px;
      line-height: 1.1;
      color: var(--green-950);
      font-weight: 800;
    }

    .doc-card p,
    .podcast-card p {
      margin-top: 6px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.35;
      font-weight: 650;
    }

    .hover-desc {
      position: absolute;
      inset: 0;
      padding: 16px;
      background: rgba(7,29,22,.94);
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      opacity: 0;
      transform: translateY(8px);
      transition: .2s ease;
    }

    .doc-card:hover .hover-desc,
    .podcast-card:hover .hover-desc {
      opacity: 1;
      transform: translateY(0);
    }

    .hover-desc strong {
      color: var(--gold-500);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .hover-desc span {
      margin-top: 7px;
      font-size: 14px;
      line-height: 1.35;
      font-weight: 800;
    }

    .poster {
      position: relative;
      min-height: 430px;
      padding: 0;
      display: grid;
      place-items: center;
      background: #170000;
      color: #fff;
      transition: .25s ease;
    }

    .poster-image {
      width: 100%;
      height: 100%;
      min-height: 430px;
      display: block;
      object-fit: contain;
      object-position: center;
      background: #170000;
    }

    .podcast-card {
      display: grid;
      grid-template-columns: 84px minmax(0, 1fr);
      gap: 18px;
      align-items: center;
      cursor: default;
    }

    .pod-cover {
      width: 84px;
      height: 84px;
      border-radius: 50%;
      border: 3px solid var(--green-700);
      object-fit: cover;
      display: block;
    }

    .pod-main {
      min-width: 0;
    }

    .podcast-card h4 {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      overflow-wrap: anywhere;
    }

    .podcast-card .pod-main > p {
      display: -webkit-box;
      overflow: hidden;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      overflow-wrap: anywhere;
    }

    .pod-audio {
      margin-top: 12px;
      display: grid;
      grid-template-columns: 28px minmax(0, 1fr) 36px 20px 0;
      gap: 8px;
      align-items: center;
      color: var(--green-950);
      font-size: 12px;
      font-weight: 750;
      min-width: 0;
      transition: grid-template-columns .2s ease;
    }

    .pod-audio:has(.pod-volume-control.is-open) {
      grid-template-columns: 28px minmax(42px, 1fr) 36px 20px 76px;
    }

    .pod-play,
    .pod-volume {
      border: 0;
      padding: 0;
      background: transparent;
      color: var(--green-700);
      cursor: pointer;
      display: grid;
      place-items: center;
    }

    .pod-play {
      width: 28px;
      height: 26px;
      position: relative;
      flex: 0 0 28px;
    }

    .pod-icon-play {
      width: 0;
      height: 0;
      border-top: 9px solid transparent;
      border-bottom: 9px solid transparent;
      border-left: 14px solid currentColor;
      transform: translateX(2px);
    }

    .pod-icon-pause {
      display: none;
      width: 11px;
      height: 13px;
      align-items: stretch;
      justify-content: space-between;
    }

    .pod-icon-pause span {
      width: 4px;
      border-radius: 1px;
      background: currentColor;
    }

    .pod-play.is-playing .pod-icon-play {
      display: none;
    }

    .pod-play.is-playing .pod-icon-pause {
      display: flex;
    }

    .pod-progress {
      width: 100%;
      accent-color: var(--green-700);
      cursor: pointer;
    }

    .pod-duration {
      text-align: right;
      min-width: 36px;
    }

    .pod-volume {
      width: 20px;
      height: 20px;
      overflow: hidden;
    }

    .pod-volume-control {
      display: contents;
    }

    .pod-volume svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
      display: block;
    }

    .pod-volume.is-muted .pod-volume-wave {
      display: none;
    }

    .pod-volume-slider {
      width: 0;
      min-width: 0;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
      transition: opacity .16s ease;
    }

    .pod-volume-control.is-open .pod-volume-slider {
      width: 76px;
      opacity: 1;
      pointer-events: auto;
    }

    .pod-volume-range {
      width: 76px;
      accent-color: var(--green-700);
      cursor: pointer;
    }

    .categories {
      display: grid;
      grid-template-columns: 1.55fr 1fr .78fr;
      gap: 18px;
      align-items: stretch;
    }

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

    .category-card {
      position: relative;
      min-height: 206px;
      border-radius: 26px;
      padding: 22px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78)),
        radial-gradient(circle at 80% 15%, rgba(255,210,0,.23), transparent 28%);
      border: 1px solid var(--line);
      box-shadow: 0 16px 42px rgba(0,0,0,.08);
      overflow: hidden;
      transition: .25s ease;
    }

    .category-card.has-photo {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      color: #fff;
    }

    .category-card:hover,
    .category-promo-card:hover,
    .poster:hover {
      transform: translateY(-5px);
      box-shadow: 0 26px 60px rgba(0,0,0,.13);
    }

    .category-photo {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 58%;
      z-index: 1;
    }

    .category-card.has-photo::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(7,29,22,.38), rgba(7,29,22,.60) 42%, rgba(7,29,22,.94));
      z-index: 2;
      pointer-events: none;
    }

    .category-card h3 {
      position: relative;
      z-index: 3;
      margin-top: 0;
      font-size: 27px;
      line-height: 1;
      letter-spacing: -.02em;
      color: var(--green-950);
      text-transform: uppercase;
      font-weight: 900;
    }

    .category-card.has-photo h3 {
      color: var(--gold-500);
      text-shadow: 0 3px 16px rgba(0,0,0,.72);
    }

    .category-card p {
      position: relative;
      z-index: 3;
      margin-top: 10px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
      font-weight: 650;
    }

    .category-card.has-photo p {
      color: rgba(255,255,255,.88);
      text-shadow: 0 3px 14px rgba(0,0,0,.75);
    }

    .category-promo-card {
      position: relative;
      min-height: 430px;
      padding: 0;
      display: grid;
      place-items: center;
      border-radius: 26px;
      background: var(--green-800);
      border: 1px solid rgba(255,255,255,.18);
      box-shadow: 0 16px 42px rgba(0,0,0,.08);
      overflow: hidden;
      color: inherit;
      text-decoration: none;
      cursor: pointer;
      transition: .25s ease;
    }

    .category-promo-card .promo-card-head {
      position: absolute;
      top: auto;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 2;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 24px;
      background: var(--green-800);
      color: #fff;
      font-weight: 900;
      text-transform: uppercase;
    }

    .category-promo-card .promo-card-head strong {
      font-size: 19px;
      line-height: 1;
    }

    .category-promo-card .promo-card-head span {
      color: var(--gold-500);
      font-size: 13px;
      line-height: 1;
    }

    .category-promo-card .poster-image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      min-height: 0;
      object-fit: cover;
      object-position: center top;
      padding: 0;
    }

    .sponsors {
      padding: 30px;
      border-radius: 30px;
      background: #f2f5f3;
      border: 1px solid var(--line);
      box-shadow: 0 18px 46px rgba(0,0,0,.08);
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px;
      align-items: center;
    }

    .sponsor-item {
      height: 108px;
      border-radius: 20px;
      background: #fff;
      border: 1px solid rgba(15,75,52,.12);
      display: grid;
      place-items: center;
      padding: 12px;
      overflow: hidden;
      position: relative;
      transition: .25s ease;
    }

    .sponsor-item:hover {
      transform: translateY(-6px) scale(1.012);
      box-shadow: 0 30px 66px rgba(0,0,0,.15);
    }

    .sponsor-item::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background:
        linear-gradient(115deg, transparent 0%, rgba(130,138,134,.08) 24%, rgba(130,138,134,.20) 50%, rgba(130,138,134,.08) 76%, transparent 100%);
      background-size: 230% 100%;
      box-shadow: inset 0 0 0 1px rgba(130,138,134,.08), inset 0 10px 24px rgba(130,138,134,.06);
      opacity: .9;
      pointer-events: none;
      animation: sponsorAura 8s ease-in-out infinite;
      z-index: 0;
    }

    .sponsor-item img {
      display: block;
      width: auto;
      height: auto;
      max-width: 88%;
      max-height: 66px;
      object-fit: contain;
      margin: auto;
      position: relative;
      z-index: 1;
    }

    @keyframes sponsorAura {
      0% { background-position: 120% 0; }
      12.5% { background-position: 120% 0; }
      50% { background-position: -20% 0; }
      62.5% { background-position: -20% 0; }
      100% { background-position: 120% 0; }
    }

    .sponsors .sponsor-item:first-child {
      background: #131C52;
    }

    .sponsors .sponsor-item:first-child::after {
      background:
        linear-gradient(115deg, transparent 0%, rgba(255,255,255,.06) 24%, rgba(255,255,255,.16) 50%, rgba(255,255,255,.06) 76%, transparent 100%);
      background-size: 230% 100%;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.10), inset 0 10px 24px rgba(255,255,255,.05);
      opacity: .7;
    }

    .sponsors .sponsor-item:first-child img {
      max-width: 82%;
      max-height: 62px;
    }

    .sponsors .sponsor-item:nth-child(2) img {
      max-width: 58%;
      max-height: 70px;
    }

    .sponsors .sponsor-item:nth-child(5) img {
      max-width: 62%;
      max-height: 70px;
    }

    .sponsors .sponsor-item:nth-child(6) img {
      max-width: 80%;
      max-height: 62px;
    }

    .footer {
      margin-top: 36px;
      position: relative;
      overflow: hidden;
      background: #00291e;
      color: #fff;
    }

    .footer::before {
      content: "";
      position: absolute;
      left: 145px;
      top: 36px;
      width: 405px;
      height: 405px;
      background: none;
      opacity: .2;
      pointer-events: none;
    }

    .footer-inner {
      position: relative;
      max-width: var(--max);
      margin: 0 auto;
      padding: 70px 36px 88px;
      display: grid;
      grid-template-columns: 2.05fr .78fr .78fr .86fr;
      gap: 36px;
      align-items: start;
    }

    .footer-brand {
      max-width: 610px;
    }

    .footer-brand .brand {
      align-items: center;
      gap: 26px;
      transition: transform .22s ease, filter .22s ease;
    }

    .footer-brand .brand:hover {
      transform: translateY(-3px);
      filter: drop-shadow(0 0 16px rgba(255, 213, 0, .2));
    }

    .footer-brand .brand-logo {
      width: 112px;
      height: 112px;
      flex: 0 0 112px;
    }

    .footer .brand-text .big {
      color: var(--gold-500);
      font-size: 54px;
      line-height: .9;
      text-shadow: 0 5px 12px rgba(255,255,255,.16);
    }

    .footer .brand-text .small {
      color: var(--gold-500);
      font-size: 19px;
      line-height: 1.18;
      max-width: 245px;
    }

    .footer-divider {
      width: 56px;
      height: 3px;
      margin: 32px 0 24px;
      background: var(--gold-500);
      box-shadow: 92px 0 0 rgba(255,255,255,.08);
    }

    .footer-address {
      position: relative;
      display: block;
      margin: 16px 0 0;
      padding-left: 30px;
      color: rgba(255,255,255,.82);
      line-height: 1.45;
      font-size: 17px;
      font-weight: 700;
      transition: color .2s ease, transform .2s ease;
    }

    .footer-address:hover {
      color: var(--gold-500);
      transform: translateX(4px);
    }

    .footer-address:focus-visible {
      color: var(--gold-500);
      border-radius: 2px;
      outline: 3px solid var(--gold-500);
      outline-offset: 4px;
    }

    .footer-address::before {
      content: "";
      position: absolute;
      left: 0;
      top: 3px;
      width: 17px;
      height: 17px;
      background: var(--gold-500);
      border-radius: 50% 50% 50% 0;
      transform: rotate(-45deg);
    }

    .footer-address::after {
      content: "";
      position: absolute;
      left: 6px;
      top: 9px;
      width: 5px;
      height: 5px;
      background: #00291e;
      border-radius: 50%;
    }

    .footer-col {
      align-self: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 255px;
      padding-left: 58px;
      border-left: 1px solid rgba(0,180,135,.45);
    }

    .footer h4 {
      position: relative;
      margin-bottom: 32px;
      color: var(--gold-500);
      text-transform: uppercase;
      font-size: 18px;
      letter-spacing: .12em;
      font-weight: 900;
    }

    .footer h4::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -13px;
      width: 40px;
      height: 3px;
      background: var(--gold-500);
    }

    .footer a {
      display: block;
      margin: 0 0 22px;
      color: rgba(255,255,255,.9);
      font-weight: 700;
      font-size: 17px;
    }

    .footer .brand {
      display: flex;
      margin: 0;
      padding: 0;
      color: inherit;
    }

    .footer-col a {
      position: relative;
      padding-left: 16px;
      transition: color .2s ease, transform .2s ease;
    }

    .footer a[aria-disabled="true"] {
      pointer-events: none;
    }

    .footer-col a::before {
      content: "›";
      position: absolute;
      left: 0;
      top: -1px;
      color: #00b86f;
      font-size: 23px;
      line-height: 1;
      transition: color .2s ease, transform .2s ease;
    }

    .footer-col a:hover {
      color: var(--gold-500);
      transform: translateX(4px);
    }

    .footer-col a:hover::before {
      color: var(--gold-500);
      transform: translateX(2px);
    }

    .socials {
      display: flex;
      gap: 14px;
      margin-top: 20px;
      padding-left: 30px;
    }

    .socials a {
      display: grid;
      place-items: center;
      width: 50px;
      height: 50px;
      margin: 0;
      border-radius: 50%;
      background: rgba(0,130,94,.2);
      border: 1px solid rgba(0,210,150,.55);
      color: #fff;
      font-weight: 900;
      transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    }

    .socials a:hover {
      background: var(--gold-500);
      border-color: var(--gold-500);
      transform: translateY(-4px);
      box-shadow: 0 14px 30px rgba(0,0,0,.22);
    }

    .socials img {
      width: 23px;
      height: 23px;
      display: block;
      object-fit: contain;
    }

    .modal {
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(7,29,22,.76);
      backdrop-filter: blur(12px);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .modal.open {
      display: flex;
    }

    .modal-card {
      width: min(960px, 100%);
      max-height: 86vh;
      border-radius: 28px;
      background: #fff;
      overflow: hidden;
      box-shadow: 0 32px 100px rgba(0,0,0,.35);
    }

    .modal-card.magazine-card {
      width: min(820px, calc(100vw - 72px));
      max-height: 94vh;
    }

    .modal-card.magazine-card .pdf-preview {
      height: min(78vh, 720px);
    }

    .modal-head {
      min-height: 64px;
      padding: 0 20px;
      background: var(--green-900);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .modal-head h3 {
      font-size: 18px;
      font-weight: 800;
    }

    .modal-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-left: auto;
    }

    .download-pdf {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: inline-grid;
      place-items: center;
      background: rgba(255,255,255,.12);
      color: #fff;
      text-decoration: none;
      transition: background .2s ease, transform .2s ease;
    }

    .download-pdf:hover {
      background: var(--red-500);
      transform: translateY(-1px);
    }

    .download-pdf svg {
      width: 20px;
      height: 20px;
      stroke-width: 2.4;
    }

    .close {
      border: 0;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(255,255,255,.12);
      color: #fff;
      font-size: 22px;
      cursor: pointer;
    }

    .pdf-preview {
      height: 70vh;
      background: #eef3ef;
      position: relative;
    }

    .pdf-frame {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
      background: #fff;
    }

    .magazine-view {
      height: 100%;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 22px 38px;
      background: radial-gradient(circle at center, #f8fbf8 0%, #dce8e0 100%);
      overflow: hidden;
    }

    .pdf-preview.magazine-mode .pdf-frame {
      display: none;
    }

    .pdf-preview.magazine-mode .magazine-view {
      display: flex;
    }

    .magazine-book {
      height: 100%;
      width: auto;
      max-width: 100%;
      aspect-ratio: 1584 / 1224;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0;
      perspective: 1400px;
      filter: drop-shadow(0 22px 34px rgba(0,0,0,.22));
    }

    .magazine-book.single-page {
      grid-template-columns: minmax(0, 1fr);
      aspect-ratio: 792 / 1224;
    }

    .magazine-page {
      position: relative;
      min-width: 0;
      height: 100%;
      aspect-ratio: 792 / 1224;
      margin: 0;
      background: #fff;
      overflow: hidden;
      transform-origin: center;
      transform-style: preserve-3d;
      backface-visibility: hidden;
      transition: transform .34s cubic-bezier(.2,.74,.28,1), opacity .34s ease, box-shadow .34s ease;
    }

    .magazine-page::after {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0;
      pointer-events: none;
      transition: opacity .34s ease;
    }

    .magazine-page:first-child {
      border-radius: 14px 0 0 14px;
      border-right: 1px solid rgba(0,0,0,.16);
      transform-origin: right center;
    }

    .magazine-page:last-child {
      border-radius: 0 14px 14px 0;
      transform-origin: left center;
    }

    .magazine-page img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      background: #fff;
    }

    .magazine-book.flip-next .magazine-page:last-child {
      transform: rotateY(-42deg) translateX(-10px) scaleX(.96);
      opacity: .9;
      box-shadow: -24px 0 34px rgba(0,0,0,.28);
    }

    .magazine-book.flip-next .magazine-page:last-child::after,
    .magazine-book.single-page.flip-next .magazine-page:first-child::after {
      opacity: 1;
      background: linear-gradient(90deg, rgba(0,0,0,.24), rgba(255,255,255,.34) 48%, rgba(0,0,0,.16));
    }

    .magazine-book.flip-prev .magazine-page:first-child {
      transform: rotateY(42deg) translateX(10px) scaleX(.96);
      opacity: .9;
      box-shadow: 24px 0 34px rgba(0,0,0,.28);
    }

    .magazine-book.flip-prev .magazine-page:first-child::after {
      opacity: 1;
      background: linear-gradient(270deg, rgba(0,0,0,.24), rgba(255,255,255,.34) 48%, rgba(0,0,0,.16));
    }

    .magazine-book.single-page.flip-next .magazine-page:first-child {
      transform: rotateY(-34deg) translateX(-8px) scaleX(.97);
      opacity: .9;
      box-shadow: -22px 0 32px rgba(0,0,0,.26);
    }

    .magazine-nav {
      position: absolute;
      top: 50%;
      z-index: 3;
      width: 38px;
      height: 38px;
      border: 0;
      border-radius: 50%;
      background: var(--green-900);
      color: #fff;
      font-size: 0;
      font-weight: 800;
      line-height: 1;
      display: grid;
      place-items: center;
      cursor: pointer;
      transform: translateY(-50%);
      box-shadow: 0 12px 30px rgba(0,0,0,.2);
      transition: background .2s ease, transform .2s ease;
    }

    .magazine-nav::before {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 9px;
      height: 9px;
      border-top: 3px solid currentColor;
      border-right: 3px solid currentColor;
      content: "";
    }

    .magazine-prev::before {
      transform: translate(-42%, -50%) rotate(-135deg);
    }

    .magazine-next::before {
      transform: translate(-58%, -50%) rotate(45deg);
    }

    .magazine-nav:hover {
      background: var(--green-800);
      transform: translateY(-50%) scale(1.04);
    }

    .magazine-nav:disabled {
      opacity: .35;
      cursor: default;
      pointer-events: none;
    }

    .magazine-prev {
      left: 10px;
    }

    .magazine-next {
      right: 10px;
    }

    .fake-pdf {
      width: min(620px, 100%);
      min-height: 820px;
      margin: 0 auto;
      padding: 54px;
      background: #fff;
      box-shadow: 0 18px 50px rgba(0,0,0,.16);
      color: #111827;
    }

    .fake-pdf h2 {
      text-align: center;
      color: var(--green-900);
      font-size: 24px;
      text-transform: uppercase;
      margin-bottom: 26px;
    }

    .fake-pdf p {
      margin-top: 14px;
      color: #374151;
      line-height: 1.65;
      font-size: 15px;
    }

    .fake-pdf .lines {
      margin-top: 34px;
      display: grid;
      gap: 11px;
    }

    .fake-pdf .line {
      height: 12px;
      border-radius: 999px;
      background: #e5e7eb;
    }

    @media (max-width: 1320px) {
      .floating-sponsor {
        display: none;
      }
      .nav a {
        min-height: 52px;
        padding: 0 9px;
        font-size: 11px;
      }
      .nav-icon {
        width: 16px;
        height: 16px;
        flex-basis: 16px;
      }
      .content-grid {
        grid-template-columns: 1.2fr 1fr;
      }
      .poster {
        min-height: 360px;
      }
    }

    @media (max-width: 980px) {
      .top-strip-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
      }
      .nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 78px;
        display: none;
        flex-direction: column;
        border-radius: 22px;
        align-items: stretch;
        padding: 10px;
        box-shadow: 0 18px 50px rgba(0,0,0,.18);
      }
      .nav a {
        min-height: 46px;
        padding: 0 14px;
        border-radius: 12px;
      }
      .nav a + a::before {
        display: none;
      }
      .nav a::after {
        left: 14px;
        right: auto;
        bottom: 6px;
        width: 42px;
      }
      .nav a:hover,
      .nav a.active {
        background: rgba(8, 115, 63, .08);
      }
      .nav.open {
        display: flex;
      }
      .mobile-menu {
        display: block;
      }
      .header-inner {
        height: 78px;
      }
      .brand {
        min-width: 0;
      }
      .slide {
        padding: 0 22px;
      }
      .hero-stage {
        height: 520px;
      }
      .hero-content {
        width: min(100%, 720px);
        height: 100%;
        grid-template-rows: 40px 86px 44px 42px;
        align-content: end;
        row-gap: 16px;
        padding: 22px 20px 40px;
        border-radius: 0 20px 20px 0;
      }
      .hero-kicker {
        height: 40px;
      }
      .hero-title {
        height: 86px;
        font-size: clamp(25px, 4.8vw, 34px);
        line-height: 1.08;
      }
      .hero-copy {
        height: 44px;
        font-size: 15px;
        line-height: 1.45;
      }
      .hero-actions {
        gap: 10px;
        height: 42px;
      }
      .content-grid,
      .categories,
      .sponsors,
      .footer-inner {
        grid-template-columns: 1fr 1fr;
      }
      .footer-brand {
        grid-column: 1 / -1;
      }
      .footer-col {
        min-height: auto;
        padding-left: 28px;
      }
      .news-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .shell {
        padding: 0 16px;
      }
      .brand-logo {
        width: 52px;
        height: 52px;
      }
      .brand-text .big {
        font-size: 24px;
      }
      .hero-stage {
        border-radius: 24px;
        height: 560px;
      }
      .slide {
        padding: 0 18px;
      }
      .hero-content {
        height: 100%;
        grid-template-rows: 36px 70px 42px 40px;
        align-content: end;
        row-gap: 15px;
        padding: 20px 18px 32px;
      }
      .hero-kicker {
        height: 36px;
        padding: 8px 12px;
        font-size: 11px;
      }
      .hero-title {
        height: 70px;
        margin-top: 0;
        font-size: 22px;
        line-height: 1.1;
      }
      .hero-copy {
        height: 42px;
        margin-top: 0;
        font-size: 14px;
      }
      .hero-actions {
        height: 40px;
      }
      .btn {
        min-height: 40px;
        padding: 0 15px;
        font-size: 12px;
      }
      .hero-controls {
        left: 14px;
        right: 14px;
      }
      .hero-arrow {
        width: 31px;
        height: 31px;
        font-size: 17px;
      }
      .news-row {
        grid-template-columns: 1fr;
      }
      .content-grid,
      .categories,
      .sponsors,
      .footer-inner,
      .news-row {
        grid-template-columns: 1fr;
      }
      .footer::before {
        display: none;
      }
      .footer-inner {
        display: block;
        padding: 30px 22px 32px;
      }
      .footer-brand .brand {
        justify-content: center;
        gap: 12px;
        transform: translateY(-14px);
      }
      .footer-brand .brand-logo {
        width: 124px;
        height: 124px;
        flex-basis: 124px;
      }
      .footer .brand-text .big {
        font-size: 36px;
      }
      .footer .brand-text .small,
      .footer-address,
      .footer a {
        font-size: 15px;
      }
      .footer-col {
        display: none;
      }
      .footer-brand {
        max-width: 100%;
      }
      .footer-address {
        width: min(100%, 350px);
        margin: 18px auto 0;
        padding-left: 26px;
        font-size: 14px;
        line-height: 1.42;
      }
      .footer .socials {
        justify-content: center;
        flex-wrap: nowrap;
        gap: 22px;
        padding-left: 0;
        margin-top: 24px;
      }
      .footer .socials a {
        width: 28px;
        height: 28px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
      }
      .footer .socials a:hover {
        background: transparent;
        border-color: transparent;
        box-shadow: none;
        transform: translateY(-2px);
      }
      .footer .socials img {
        width: 25px;
        height: 25px;
      }
      .section-head {
        display: block;
      }
      .section-note {
        margin-top: 12px;
      }
      .modal {
        padding: 10px;
      }
      .fake-pdf {
        padding: 28px;
        min-height: 650px;
      }
    }

    .news-card[role="link"] { cursor: pointer; }
    .category-grid > .category-card:nth-child(1) { --accent: #18b86a; }
    .category-grid > .category-card:nth-child(2) { --accent: #ff3f3f; }
    .category-grid > .category-card:nth-child(3) { --accent: #ffd200; }
    .category-grid > .category-card:nth-child(4) { --accent: #08733f; }
    .news-card[role="link"]:focus-visible,
    .brand:focus-visible,
    .nav a:focus-visible,
    .btn:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; }
    @media (max-width: 980px) {
      .nav {
        background: rgba(255, 255, 255, .98);
        max-height: calc(100vh - 150px);
        overflow-y: auto;
        border: 1px solid rgba(15, 75, 52, .12);
      }
      .news-page .brand-text .big,
      .article-page .brand-text .big { font-size: 21px; line-height: 1; }
    }

    /* Navegación y páginas institucionales de La Liga */
    .nav-dropdown {
      position: relative;
      display: flex;
      align-items: center;
    }

    .nav-dropdown::before,
    .nav-dropdown + a::before {
      content: "";
      position: absolute;
      left: 0;
      top: 14px;
      bottom: 14px;
      width: 1px;
      background: rgba(4, 36, 27, .12);
    }

    .nav-dropdown-toggle {
      position: absolute;
      right: 0;
      top: 50%;
      z-index: 2;
      width: 12px;
      height: 32px;
      border: 0;
      background: transparent;
      cursor: pointer;
    }

    .nav-dropdown-toggle::before {
      display: none;
    }

    .nav-submenu {
      position: absolute;
      left: 0;
      top: calc(100% + 8px);
      z-index: 120;
      width: 355px;
      padding: 6px 18px;
      overflow: hidden;
      border: 1px solid rgba(8, 115, 63, .55);
      border-radius: 0;
      background: rgba(255, 255, 255, .99);
      box-shadow: 0 24px 56px rgba(4, 36, 27, .18);
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px) scale(.9);
      transform-origin: top left;
      transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    }

    .nav-dropdown:hover .nav-submenu,
    .nav-dropdown:focus-within .nav-submenu,
    .nav-dropdown.is-open .nav-submenu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(.9);
    }

    .nav .nav-submenu a {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 46px;
      padding: 10px 38px 10px 12px;
      border-bottom: 1px solid rgba(4, 36, 27, .12);
      color: var(--green-950);
      font-size: 12px;
      font-weight: 800;
      line-height: 1.3;
      letter-spacing: .015em;
      text-transform: uppercase;
      white-space: normal;
      transition: color .2s ease, background .2s ease;
    }

    .nav .nav-submenu a:last-child {
      border-bottom: 0;
    }

    .nav .nav-submenu a::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: -18px;
      display: block;
      width: 8px;
      background: linear-gradient(90deg, var(--green-700) 0 50%, var(--gold-500) 50%);
      opacity: 0;
      transition: opacity .2s ease;
    }

    .nav .nav-submenu a::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 14px;
      bottom: auto;
      left: auto;
      display: block;
      width: 9px;
      height: 9px;
      border-radius: 0;
      border-top: 2px solid currentColor;
      border-right: 2px solid currentColor;
      background: transparent;
      opacity: 1;
      transform: translateY(-50%) rotate(45deg);
    }

    .nav .nav-submenu a:hover,
    .nav .nav-submenu a:focus-visible,
    .nav .nav-submenu a.active {
      color: var(--green-800);
      background: linear-gradient(90deg, rgba(8, 115, 63, .08), rgba(255, 255, 255, 0) 72%);
    }

    .nav .nav-submenu a:hover::before,
    .nav .nav-submenu a:focus-visible::before,
    .nav .nav-submenu a.active::before {
      opacity: 1;
    }

    .league-page {
      background:
        radial-gradient(circle at 12% 8%, rgba(24, 184, 106, .12), transparent 30%),
        linear-gradient(180deg, #f7fbf8 0%, #eef6f0 44%, #fff 100%);
    }

    .league-hero {
      position: relative;
      overflow: hidden;
      padding: 72px 0 66px;
      color: #fff;
      background:
        radial-gradient(circle at 82% 20%, rgba(255, 210, 0, .24), transparent 25%),
        linear-gradient(120deg, var(--green-950), var(--green-700));
    }

    .league-hero::after {
      content: "LSF";
      position: absolute;
      right: max(24px, calc((100vw - var(--max)) / 2 + 28px));
      top: 50%;
      color: rgba(255, 255, 255, .07);
      font-size: clamp(100px, 16vw, 230px);
      font-weight: 900;
      line-height: .7;
      transform: translateY(-50%);
      pointer-events: none;
    }

    .league-hero .shell {
      position: relative;
      z-index: 1;
    }

    .league-eyebrow,
    .league-card-kicker {
      display: inline-block;
      margin-bottom: 11px;
      color: var(--green-700);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .league-hero .league-eyebrow {
      color: var(--gold-500);
    }

    .league-hero h1 {
      max-width: 800px;
      font-size: clamp(38px, 5vw, 70px);
      line-height: .98;
      letter-spacing: -.045em;
    }

    .league-hero p {
      max-width: 680px;
      margin-top: 18px;
      color: rgba(255, 255, 255, .78);
      font-size: 17px;
      line-height: 1.65;
    }

    .league-content {
      width: min(1380px, calc(100% - 48px));
      margin: 0 auto;
      padding: 28px 0 90px;
    }

    .league-page-about .league-content {
      padding-top: 0;
      padding-bottom: 0;
    }

    .league-content h2 {
      color: var(--green-950);
      font-size: clamp(30px, 4vw, 50px);
      line-height: 1.05;
      letter-spacing: -.04em;
    }

    .league-content p {
      color: #52615c;
      line-height: 1.75;
    }

    .league-intro-card {
      display: grid;
      grid-template-columns: .65fr 1.35fr;
      gap: 50px;
      align-items: start;
      padding: 44px;
      border: 1px solid rgba(15, 75, 52, .13);
      border-radius: 28px;
      background: #fff;
      box-shadow: 0 22px 60px rgba(4, 36, 27, .08);
    }

    .league-intro-card p {
      font-size: 17px;
    }

    .league-vision {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 42px;
      align-items: center;
      margin: 28px 0 70px;
      padding: 38px 44px;
      border-radius: 28px;
      color: #fff;
      background: linear-gradient(130deg, var(--green-950), var(--green-800));
      box-shadow: 0 24px 64px rgba(4, 36, 27, .18);
    }

    .league-vision-mark {
      display: grid;
      min-height: 190px;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 22px;
      background:
        radial-gradient(circle, rgba(255, 210, 0, .2), transparent 64%),
        rgba(255, 255, 255, .06);
      color: var(--gold-500);
      font-size: 72px;
      font-weight: 900;
      letter-spacing: -.08em;
    }

    .league-vision h2 {
      color: #fff;
    }

    .league-vision p {
      margin-top: 16px;
      color: rgba(255, 255, 255, .76);
      font-size: 16px;
    }

    .league-heading {
      margin-bottom: 26px;
    }

    .league-heading-centered {
      max-width: 780px;
      margin: 0 auto 38px;
      text-align: center;
    }

    .league-heading-centered p {
      margin-top: 13px;
      font-size: 16px;
    }

    .league-value-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .league-value-grid article {
      min-height: 270px;
      padding: 28px;
      border: 1px solid rgba(15, 75, 52, .13);
      border-radius: 22px;
      background: #fff;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .league-value-grid article:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 45px rgba(4, 36, 27, .1);
    }

    .league-value-grid b {
      color: var(--gold-600);
      font-size: 13px;
      letter-spacing: .12em;
    }

    .league-value-grid h3 {
      margin: 25px 0 12px;
      color: var(--green-900);
      font-size: 23px;
    }

    .league-value-grid p {
      font-size: 14px;
    }

    .league-quality {
      display: grid;
      grid-template-columns: .7fr 1.3fr;
      gap: 54px;
      margin-top: 70px;
      padding: 46px;
      border-radius: 28px;
      background: #e7f2eb;
    }

    .league-quality ul {
      display: grid;
      gap: 12px;
      list-style: none;
    }

    .league-quality li {
      position: relative;
      padding: 14px 16px 14px 48px;
      border-radius: 13px;
      background: rgba(255, 255, 255, .8);
      color: #43514c;
      line-height: 1.45;
    }

    .league-quality li::before {
      content: "✓";
      position: absolute;
      left: 16px;
      top: 13px;
      color: var(--green-700);
      font-weight: 900;
    }

    .about-hero {
      position: relative;
      left: 50%;
      display: grid;
      grid-template-columns: 1fr;
      width: 100vw;
      min-height: clamp(500px, 41vw, 760px);
      margin-right: -50vw;
      margin-left: -50vw;
      overflow: hidden;
      color: #fff;
      background:
        linear-gradient(90deg, rgba(2, 42, 31, .24) 0%, rgba(2, 42, 31, .08) 48%, transparent 72%),
        url("../img/liga/institucional/fondo-quienes-somos.png") center center / cover no-repeat;
      box-shadow: none;
    }

    .about-hero::before {
      content: "";
      position: absolute;
      z-index: 1;
      top: -25%;
      left: 0;
      width: clamp(160px, 18vw, 320px);
      height: 150%;
      opacity: 0;
      background: linear-gradient(
        100deg,
        transparent 0%,
        rgba(255, 255, 255, .03) 24%,
        rgba(255, 255, 255, .2) 48%,
        rgba(255, 210, 0, .1) 58%,
        transparent 100%
      );
      filter: blur(2px);
      mix-blend-mode: screen;
      pointer-events: none;
      animation: about-hero-shine 15s ease-in-out infinite;
    }

    @keyframes about-hero-shine {
      0% {
        opacity: .8;
        transform: translateX(-35vw) skewX(-16deg);
      }
      4% {
        opacity: .8;
      }
      36% {
        opacity: .8;
        transform: translateX(140vw) skewX(-16deg);
      }
      40%,
      100% {
        opacity: 0;
        transform: translateX(140vw) skewX(-16deg);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .about-hero::before {
        animation: none;
        opacity: 0;
      }
    }

    .about-hero-copy {
      position: relative;
      z-index: 2;
      align-self: center;
      padding: 60px 0 60px clamp(32px, 6vw, 96px);
    }

    .about-kicker {
      display: inline-block;
      margin-bottom: 14px;
      color: var(--green-700);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .about-hero .about-kicker,
    .about-quality .about-kicker {
      color: var(--gold-500);
    }

    .about-hero .about-kicker {
      font-size: 15px;
    }

    .about-hero h1 {
      color: #fff;
      font-size: clamp(42px, 4.4vw, 68px);
      line-height: .98;
      letter-spacing: -.045em;
    }

    .about-hero h1 strong {
      display: inline-block;
      color: var(--gold-500);
      font-weight: 900;
    }

    .about-hero p {
      max-width: 610px;
      margin-top: 26px;
      color: rgba(255, 255, 255, .82);
      font-size: 15px;
      line-height: 1.72;
    }

    .about-hero-art {
      position: relative;
      z-index: 1;
      align-self: center;
      width: 100%;
      height: 100%;
      color: rgba(210, 229, 217, .44);
      transform: translateX(5%);
    }

    .about-guidance {
      position: relative;
      left: 50%;
      width: 100vw;
      margin: 0 -50vw;
      padding: 40px clamp(32px, 6vw, 96px) 54px;
      overflow: hidden;
      border-top: 1px solid rgba(15, 75, 52, .13);
      border-bottom: 1px solid rgba(15, 75, 52, .13);
      background: #fff;
      box-shadow: none;
    }

    .about-guidance::before,
    .about-guidance::after {
      content: "";
      position: absolute;
      width: 130px;
      height: 210px;
      border: 2px solid rgba(8, 115, 63, .12);
      border-radius: 50%;
      pointer-events: none;
    }

    .about-guidance::before {
      left: -100px;
      top: 25px;
    }

    .about-guidance::after {
      right: -104px;
      bottom: 85px;
    }

    .about-vision {
      position: relative;
      display: grid;
      grid-template-columns: 300px 210px minmax(0, 1fr);
      align-items: center;
      gap: 34px;
      padding-bottom: 68px;
    }

    .about-vision::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 24px;
      width: 46%;
      height: 2px;
      background: var(--green-700);
    }

    .about-vision::before {
      content: "";
      position: absolute;
      left: 46%;
      bottom: 20px;
      width: 0;
      height: 0;
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
      border-left: 12px solid var(--green-700);
    }

    .about-vision-year {
      padding-right: 34px;
      border-right: 2px solid rgba(8, 115, 63, .28);
      color: var(--gold-500);
      font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
      font-size: clamp(108px, 11vw, 160px);
      font-weight: 900;
      line-height: .78;
      letter-spacing: -.035em;
      transform: scaleX(.78);
      transform-origin: left center;
    }

    .about-vision-title h2 {
      font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
      font-size: clamp(42px, 4.4vw, 62px);
      font-weight: 800;
      letter-spacing: -.015em;
    }

    .about-vision > p {
      font-size: 13px;
      line-height: 1.62;
    }

    .about-values {
      position: relative;
      z-index: 1;
    }

    .about-section-heading {
      margin-bottom: 38px;
    }

    .about-section-heading h2 {
      font-size: clamp(30px, 3vw, 42px);
    }

    .about-value-grid {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 30px;
    }

    .about-value-grid::before {
      content: "";
      position: absolute;
      left: 6%;
      right: 6%;
      top: 24px;
      height: 2px;
      background: rgba(8, 115, 63, .48);
    }

    .about-value-grid article {
      position: relative;
      z-index: 0;
      display: grid;
      grid-template-columns: 48px minmax(0, 1fr);
      column-gap: 12px;
      padding-top: 68px;
    }

    .about-value-grid article::before {
      content: "";
      position: absolute;
      z-index: -1;
      inset: 55px -14px -18px;
      border: 1px solid transparent;
      border-radius: 20px;
      background: transparent;
      box-shadow: 0 0 0 rgba(4, 75, 52, 0);
      transition:
        background-color .28s ease,
        border-color .28s ease,
        box-shadow .28s ease,
        transform .28s ease;
    }

    .about-value-grid article:not(:last-child)::after {
      content: "»";
      position: absolute;
      right: -22px;
      top: 7px;
      z-index: 2;
      padding: 0 12px;
      background: #fff;
      color: var(--gold-600);
      font-size: 27px;
      font-weight: 950;
      line-height: 1;
    }

    .about-value-grid b {
      position: absolute;
      left: 50%;
      top: 0;
      z-index: 1;
      display: grid;
      width: 44px;
      height: 44px;
      place-items: center;
      border: 6px solid #fff;
      border-radius: 50%;
      background: var(--green-950);
      box-shadow: 0 0 0 2px rgba(8, 115, 63, .24);
      color: var(--gold-500);
      font-size: 12px;
      transform: translateX(-50%);
      transition:
        box-shadow .28s ease,
        transform .28s ease;
    }

    .about-value-grid b::before {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 20px;
      z-index: -1;
      width: 66px;
      height: 34px;
      border: 2px dotted rgba(8, 115, 63, .48);
      border-bottom: 0;
      border-radius: 42px 42px 0 0;
      transform: translateX(-50%);
    }

    .about-value-grid .about-value-icon {
      grid-row: 2;
      width: 48px;
      height: 48px;
      margin: 0;
      object-fit: contain;
      transition: transform .28s ease;
    }

    .about-value-grid h3 {
      grid-column: 2;
      grid-row: 2;
      align-self: center;
      margin: 0;
      color: var(--green-950);
      font-size: 18px;
      transition:
        color .28s ease,
        transform .28s ease;
    }

    .about-value-grid p {
      grid-column: 1 / -1;
      grid-row: 3;
      margin-top: 12px;
      font-size: 13px;
      line-height: 1.58;
      transition:
        color .28s ease,
        transform .28s ease;
    }

    @media (hover: hover) {
      .about-value-grid article:hover::before {
        border-color: rgba(8, 115, 63, .14);
        background-color: rgba(8, 115, 63, .055);
        box-shadow: 0 18px 34px rgba(4, 75, 52, .1);
        transform: translateY(-4px);
      }

      .about-value-grid article:hover b {
        box-shadow:
          0 0 0 2px rgba(8, 115, 63, .34),
          0 8px 18px rgba(4, 75, 52, .2);
        transform: translateX(-50%) scale(1.08);
      }

      .about-value-grid article:hover .about-value-icon {
        transform: translateY(-5px) scale(1.1);
      }

      .about-value-grid article:hover h3 {
        color: var(--green-700);
        transform: translateY(-3px);
      }

      .about-value-grid article:hover p {
        color: var(--green-950);
        transform: translateY(-2px);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .about-value-grid article::before,
      .about-value-grid b,
      .about-value-grid .about-value-icon,
      .about-value-grid h3,
      .about-value-grid p {
        transition: none;
      }
    }

    .about-quality {
      position: relative;
      left: 50%;
      display: grid;
      grid-template-columns: 310px minmax(0, 1fr);
      gap: 44px;
      width: 100vw;
      margin-right: -50vw;
      margin-left: -50vw;
      padding: 48px clamp(32px, 6vw, 96px);
      color: #fff;
      background:
        radial-gradient(circle at 95% 82%, rgba(16, 138, 79, .28), transparent 25%),
        linear-gradient(125deg, #032a20, #044b35);
      box-shadow: none;
    }

    .about-quality-heading {
      padding-right: 34px;
      border-right: 1px solid rgba(255, 255, 255, .25);
    }

    .about-quality h2 {
      color: #fff;
      font-size: clamp(38px, 4vw, 54px);
    }

    .about-quality ul {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      counter-reset: quality;
      list-style: none;
    }

    .about-quality li {
      position: relative;
      min-height: 88px;
      padding: 20px 24px 20px 72px;
      border-bottom: 1px solid rgba(255, 255, 255, .16);
      color: rgba(255, 255, 255, .82);
      font-size: 14px;
      line-height: 1.5;
      counter-increment: quality;
      transition:
        background-color .28s ease,
        box-shadow .28s ease,
        color .28s ease,
        transform .28s ease;
    }

    .about-quality li:nth-child(odd) {
      border-right: 1px solid rgba(255, 255, 255, .16);
    }

    .about-quality li::before {
      content: counter(quality, decimal-leading-zero);
      position: absolute;
      left: 16px;
      top: 20px;
      display: grid;
      width: 40px;
      height: 40px;
      place-items: center;
      background: var(--gold-500);
      color: var(--green-950);
      font-size: 12px;
      font-weight: 950;
      transition:
        background-color .28s ease,
        box-shadow .28s ease,
        transform .28s ease;
    }

    @media (hover: hover) {
      .about-quality li:hover {
        z-index: 1;
        color: #fff;
        background-color: rgba(255, 255, 255, .075);
        box-shadow: 0 14px 28px rgba(1, 28, 20, .2);
        transform: translateY(-3px);
      }

      .about-quality li:hover::before {
        background-color: #ffdd35;
        box-shadow: 0 8px 18px rgba(0, 0, 0, .2);
        transform: scale(1.08);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .about-quality li,
      .about-quality li::before {
        transition: none;
      }
    }

    .league-page-president .league-content {
      padding-top: 0;
      padding-bottom: 0;
    }

    .president-hero,
    .president-career {
      position: relative;
      left: 50%;
      width: 100vw;
      margin-right: -50vw;
      margin-left: -50vw;
    }

    .president-hero {
      display: grid;
      grid-template-columns: minmax(420px, 36%) minmax(0, 64%);
      min-height: clamp(500px, 34vw, 650px);
      overflow: hidden;
      background: var(--green-950);
    }

    .president-hero-photo {
      min-width: 0;
      overflow: hidden;
      background: #eef1ee;
    }

    .president-hero-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 57% center;
      transform: scale(1.12);
    }

    .president-hero-copy {
      position: relative;
      display: grid;
      align-items: end;
      overflow: hidden;
      padding: clamp(90px, 11vw, 190px) clamp(54px, 8vw, 140px) clamp(50px, 5vw, 84px);
      color: #fff;
      background:
        radial-gradient(circle at 84% 72%, rgba(10, 123, 70, .32), transparent 35%),
        linear-gradient(125deg, #033b2b, #00523a);
    }

    .president-shine {
      position: absolute;
      z-index: 1;
      top: -25%;
      left: 0;
      width: clamp(160px, 18vw, 320px);
      height: 150%;
      opacity: 0;
      background: linear-gradient(
        100deg,
        transparent 0%,
        rgba(255, 255, 255, .03) 24%,
        rgba(255, 255, 255, .2) 48%,
        rgba(255, 210, 0, .1) 58%,
        transparent 100%
      );
      filter: blur(2px);
      mix-blend-mode: screen;
      pointer-events: none;
      animation: about-hero-shine 15s ease-in-out infinite;
    }

    .president-hero-copy::before {
      content: "";
      position: absolute;
      z-index: 3;
      top: 0;
      bottom: 0;
      left: -7px;
      width: 14px;
      background: var(--gold-500);
      clip-path: polygon(70% 0, 100% 0, 30% 100%, 0 100%);
    }

    .president-hero-copy::after {
      content: "";
      position: absolute;
      right: -90px;
      bottom: -180px;
      width: 520px;
      height: 520px;
      border: 2px solid rgba(255, 255, 255, .08);
      border-radius: 50%;
      box-shadow:
        0 0 0 70px rgba(255, 210, 0, .07),
        0 0 0 140px rgba(255, 210, 0, .045);
    }

    .president-hero-copy > div {
      position: relative;
      z-index: 2;
      max-width: 760px;
    }

    .president-watermark {
      position: absolute;
      z-index: 1;
      top: 42px;
      left: 8%;
      color: transparent;
      font-size: clamp(84px, 10vw, 180px);
      font-weight: 950;
      line-height: .8;
      letter-spacing: -.055em;
      text-transform: uppercase;
      -webkit-text-stroke: 2px rgba(255, 255, 255, .11);
    }

    .president-kicker {
      display: block;
      margin-bottom: 14px;
      color: var(--gold-500);
      font-size: 13px;
      font-weight: 950;
      letter-spacing: .15em;
      text-transform: uppercase;
    }

    .president-hero h1 {
      color: #fff;
      font-size: clamp(46px, 5vw, 78px);
      line-height: .98;
      letter-spacing: -.045em;
    }

    .president-hero-copy strong {
      display: block;
      margin-top: 12px;
      color: var(--gold-500);
      font-size: 15px;
      font-weight: 950;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .president-hero-copy p {
      max-width: 730px;
      margin-top: 24px;
      color: rgba(255, 255, 255, .82);
      font-size: 16px;
      line-height: 1.72;
    }

    .president-career {
      padding: 34px clamp(54px, 6vw, 100px) 56px;
      background:
        radial-gradient(circle at 8% 12%, rgba(8, 115, 63, .07), transparent 25%),
        #fff;
    }

    .president-career header {
      margin-bottom: 24px;
    }

    .president-career header .president-kicker {
      margin-bottom: 8px;
      color: var(--green-700);
    }

    .president-career h2 {
      font-size: clamp(34px, 3.4vw, 52px);
    }

    .president-career-grid {
      position: relative;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 56px 90px;
      padding: 10px 0;
    }

    .president-career-axis {
      position: absolute;
      z-index: 0;
      inset: 0;
      pointer-events: none;
    }

    .president-career-axis::before,
    .president-career-axis::after {
      content: "";
      position: absolute;
      background: rgba(8, 115, 63, .68);
    }

    .president-career-axis::before {
      top: 50%;
      left: 4%;
      right: 4%;
      height: 2px;
    }

    .president-career-axis::after {
      top: 7%;
      bottom: 7%;
      left: 50%;
      width: 2px;
    }

    .president-career-axis i {
      position: absolute;
      z-index: 1;
      width: 14px;
      height: 14px;
      border: 2px solid var(--green-700);
      border-radius: 50%;
      background: #fff;
      transform: translate(-50%, -50%);
    }

    .president-career-axis i:nth-child(1) {
      top: 50%;
      left: 4%;
    }

    .president-career-axis i:nth-child(2) {
      top: 50%;
      left: 50%;
    }

    .president-career-axis i:nth-child(3) {
      top: 50%;
      left: 96%;
    }

    .president-career-axis i:nth-child(4) {
      top: 7%;
      left: 50%;
    }

    .president-career-axis i:nth-child(5) {
      top: 93%;
      left: 50%;
    }

    .president-career-grid article {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 50px 72px minmax(0, 1fr);
      gap: 18px;
      align-items: start;
      min-height: 150px;
      padding: 18px;
      background: #fff;
      transition:
        box-shadow .28s ease,
        transform .28s ease;
    }

    .president-career-grid b {
      display: grid;
      width: 48px;
      height: 48px;
      place-items: center;
      background: var(--gold-500);
      color: var(--green-950);
      font-size: 12px;
      font-weight: 950;
      transition: transform .28s ease;
    }

    .president-career-icon {
      width: var(--career-icon-size, 64px);
      height: var(--career-icon-size, 64px);
      justify-self: center;
      transition: transform .28s ease;
    }

    .president-career-icon--work {
      --career-icon-size: 69px;
    }

    .president-career-icon--teaching {
      --career-icon-size: 64px;
    }

    .president-career-icon--public {
      --career-icon-size: 67px;
    }

    .president-career-grid svg {
      fill: none;
      stroke: var(--green-700);
      stroke-width: 2.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .president-career-ball {
      --career-icon-size: 56px;
      display: block;
      background: var(--green-700);
      -webkit-mask: url("../img/liga/institucional/pelota.png") center / contain no-repeat;
      mask: url("../img/liga/institucional/pelota.png") center / contain no-repeat;
    }

    .president-career-grid h3 {
      margin: 2px 0 8px;
      color: var(--green-700);
      font-size: 14px;
      font-weight: 950;
      letter-spacing: .05em;
      text-transform: uppercase;
    }

    .president-career-grid p {
      font-size: 14px;
      line-height: 1.55;
    }

    @media (hover: hover) {
      .president-career-grid article:hover {
        z-index: 2;
        box-shadow: 0 18px 38px rgba(4, 75, 52, .12);
        transform: translateY(-5px);
      }

      .president-career-grid article:hover b {
        transform: scale(1.08);
      }

      .president-career-grid article:hover svg,
      .president-career-grid article:hover .president-career-ball {
        transform: translateY(-3px) scale(1.08);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .president-shine {
        animation: none;
        opacity: 0;
      }

      .president-career-grid article,
      .president-career-grid b,
      .president-career-grid svg,
      .president-career-ball {
        transition: none;
      }
    }

    .league-team-card span {
      display: block;
      margin-bottom: 6px;
      color: var(--gold-500);
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .league-page-team .league-content {
      padding-top: 32px;
      padding-bottom: 120px;
    }

    .league-page-team .league-heading-centered {
      margin-bottom: 42px;
    }

    .league-team-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 20px;
    }

    .league-team-card {
      grid-column: span 2;
      overflow: hidden;
      border: 1px solid rgba(15, 75, 52, .13);
      border-radius: 24px;
      background: #fff;
      box-shadow: 0 18px 45px rgba(4, 36, 27, .08);
      transition:
        border-color .3s ease,
        box-shadow .3s ease,
        transform .3s ease;
    }

    .league-team-card img {
      display: block;
      width: 100%;
      aspect-ratio: 4 / 4.3;
      object-fit: cover;
      object-position: center 18%;
      transition: transform .45s ease;
    }

    .league-team-card > div:not(.league-team-initials) {
      padding: 24px;
    }

    .league-team-card:not(.league-team-card-compact) > div {
      min-height: 122px;
    }

    .league-team-card h3 {
      color: var(--green-950);
      font-size: 21px;
      line-height: 1.2;
    }

    .league-team-card p {
      margin-top: 10px;
      font-size: 13px;
    }

    .league-team-card-compact {
      grid-column: span 3;
      display: grid;
      grid-template-columns: 140px 1fr;
      align-items: center;
      min-height: 180px;
    }

    .league-team-initials {
      display: grid;
      width: 100px;
      height: 100px;
      margin-left: 28px;
      place-items: center;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--green-950), var(--green-700));
      color: var(--gold-500);
      font-size: 32px;
      font-weight: 900;
      transition: transform .3s ease;
    }

    @media (hover: hover) {
      .league-team-card:hover {
        border-color: rgba(8, 115, 63, .28);
        box-shadow: 0 24px 55px rgba(4, 36, 27, .14);
        transform: translateY(-6px);
      }

      .league-team-card:hover img {
        transform: scale(1.035);
      }

      .league-team-card-compact:hover .league-team-initials {
        transform: scale(1.07);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .league-team-card,
      .league-team-card img,
      .league-team-initials {
        transition: none;
      }
    }

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

    .league-tournament-card {
      min-height: 360px;
      padding: 34px;
      border: 1px solid rgba(15, 75, 52, .13);
      border-radius: 24px;
      background: #fff;
      box-shadow: 0 18px 45px rgba(4, 36, 27, .08);
    }

    .league-tournament-image-placeholder {
      display: grid;
      width: 100%;
      min-height: 150px;
      aspect-ratio: 16 / 7;
      place-items: center;
      border: 2px dashed rgba(15, 75, 52, .24);
      border-radius: 16px;
      background:
        linear-gradient(135deg, rgba(8, 115, 63, .05), rgba(255, 210, 0, .08)),
        #f7faf8;
      color: #718078;
      text-align: center;
    }

    .league-tournament-image-placeholder span {
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .league-tournament-image {
      display: block;
      width: 100%;
      min-height: 150px;
      aspect-ratio: 1470 / 1070;
      border-radius: 16px;
      background: #f2f5f3;
      clip-path: inset(0 round 16px);
      object-fit: fill;
      object-position: center;
    }

    .league-tournament-card h3 {
      margin: 18px 0 28px;
      color: var(--green-950);
      font-size: 30px;
      line-height: 1.1;
    }

    .league-tournament-card div + div {
      margin-top: 18px;
      padding-top: 18px;
      border-top: 1px solid rgba(15, 75, 52, .12);
    }

    .league-tournament-card strong {
      color: var(--green-800);
      font-size: 13px;
      text-transform: uppercase;
    }

    .league-tournament-card p {
      margin-top: 7px;
      font-size: 14px;
    }

    .league-document-cta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      margin-top: 28px;
      padding: 34px 38px;
      border-radius: 22px;
      background: linear-gradient(120deg, #e5f1e9, #f7fbf8);
    }

    .league-document-cta h2 {
      font-size: clamp(25px, 3vw, 36px);
    }

    @media (max-width: 1180px) {
      .president-hero {
        grid-template-columns: minmax(0, 42%) minmax(0, 58%);
      }
      .president-hero-copy {
        padding-right: 48px;
        padding-left: 54px;
      }
      .president-career-grid {
        gap: 44px 46px;
      }
      .about-hero {
        grid-template-columns: 1fr;
      }
      .about-hero-copy {
        padding-left: 44px;
      }
      .about-guidance {
        padding: 38px;
      }
      .about-vision {
        grid-template-columns: 250px 180px 1fr;
        gap: 26px;
        padding-bottom: 54px;
      }
      .about-value-grid {
        gap: 24px;
      }
      .league-value-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .league-tournament-grid {
        grid-template-columns: 1fr 1fr;
      }
      .league-tournament-card:first-child {
        grid-row: span 2;
      }
    }

    @media (max-width: 980px) {
      .president-hero {
        grid-template-columns: 1fr;
        min-height: 0;
      }
      .president-hero-photo {
        height: 460px;
      }
      .president-hero-photo img {
        object-position: center 52%;
      }
      .president-hero-copy {
        min-height: 430px;
        padding: 110px 52px 56px;
      }
      .president-hero-copy::before {
        top: -4px;
        right: 0;
        bottom: auto;
        left: 0;
        width: 100%;
        height: 9px;
        clip-path: none;
      }
      .president-watermark {
        top: 44px;
        left: 48px;
      }
      .president-career {
        padding-right: 44px;
        padding-left: 44px;
      }
      .president-career-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }
      .president-career-axis {
        display: none;
      }
      .president-career-grid article {
        min-height: 0;
        border-bottom: 1px solid rgba(8, 115, 63, .14);
      }
      .nav-dropdown {
        display: grid;
        grid-template-columns: 1fr 40px;
        align-items: stretch;
      }
      .nav-dropdown > .nav-dropdown-link {
        padding-right: 14px;
      }
      .nav-dropdown-toggle {
        position: relative;
        right: auto;
        top: auto;
        width: 40px;
        height: 46px;
      }
      .nav-dropdown::before,
      .nav-dropdown + a::before {
        display: none;
      }
      .nav-submenu {
        position: static;
        grid-column: 1 / -1;
        display: none;
        width: auto;
        margin: 2px 4px 8px;
        padding: 5px 12px;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        transform-origin: initial;
        background: rgba(8, 115, 63, .06);
      }
      .nav-dropdown:hover .nav-submenu,
      .nav-dropdown:focus-within .nav-submenu {
        display: none;
      }
      .nav-dropdown.is-open .nav-submenu {
        display: block;
      }
      .nav .nav-submenu a {
        min-height: 40px;
        padding: 8px 34px 8px 11px;
        font-size: 11px;
      }
      .nav .nav-submenu a::before {
        left: -12px;
        width: 7px;
      }
      .nav .nav-submenu a::after {
        right: 13px;
        width: 7px;
        height: 7px;
      }
      .about-hero {
        grid-template-columns: 1fr;
      }
      .about-hero-copy {
        padding: 52px;
      }
      .about-hero-art {
        position: absolute;
        right: -80px;
        top: 0;
        width: 65%;
        opacity: .28;
      }
      .about-vision {
        grid-template-columns: 220px 1fr;
      }
      .about-vision > p {
        grid-column: 1 / -1;
        padding-top: 20px;
        border-top: 1px solid rgba(15, 75, 52, .12);
      }
      .about-value-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 40px;
      }
      .about-value-grid::before {
        display: none;
      }
      .about-value-grid article::after {
        display: none;
      }
      .about-value-grid article {
        padding-top: 0;
      }
      .about-value-grid b {
        position: relative;
        left: auto;
        display: inline-grid;
        margin-bottom: 22px;
        transform: none;
      }
      .about-quality {
        grid-template-columns: 1fr;
      }
      .about-quality-heading {
        padding-right: 0;
        padding-bottom: 28px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .22);
      }
      .league-hero {
        padding: 52px 0 58px;
      }
      .league-hero::after {
        right: -15px;
        font-size: 120px;
      }
      .league-content {
        padding: 28px 0 90px;
      }
      .league-intro-card,
      .league-quality,
      .league-president {
        grid-template-columns: 1fr;
      }
      .league-vision {
        grid-template-columns: 180px 1fr;
      }
      .league-president-photo {
        position: relative;
        top: auto;
        max-width: 650px;
        margin: 0 auto;
      }
      .league-team-card {
        grid-column: span 3;
      }
      .league-team-card-compact {
        grid-column: span 6;
      }
    }

    @media (max-width: 680px) {
      .president-hero-photo {
        height: 350px;
      }
      .president-hero-copy {
        min-height: 400px;
        padding: 96px 26px 42px;
      }
      .president-watermark {
        top: 36px;
        left: 24px;
        font-size: 66px;
      }
      .president-hero h1 {
        font-size: 43px;
      }
      .president-hero-copy p {
        font-size: 14px;
      }
      .president-career {
        padding: 30px 22px 42px;
      }
      .president-career-grid article {
        grid-template-columns: 42px 52px minmax(0, 1fr);
        gap: 12px;
        padding: 18px 0;
      }
      .president-career-grid b {
        width: 40px;
        height: 40px;
      }
      .president-career-icon {
        width: calc(var(--career-icon-size, 64px) * .75);
        height: calc(var(--career-icon-size, 64px) * .75);
      }
      .president-career-grid p {
        font-size: 13px;
      }
      .about-hero {
        min-height: 520px;
      }
      .about-hero-copy {
        align-self: end;
        padding: 34px 26px;
      }
      .about-hero h1 {
        font-size: 40px;
      }
      .about-hero p {
        font-size: 14px;
      }
      .about-hero-art {
        right: -130px;
        width: 125%;
        height: 72%;
        opacity: .2;
      }
      .about-guidance {
        padding: 28px 26px 34px;
      }
      .about-vision {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 34px;
      }
      .about-vision-year {
        padding: 0 0 20px;
        border-right: 0;
        border-bottom: 2px solid rgba(8, 115, 63, .2);
        font-size: 82px;
      }
      .about-vision > p {
        grid-column: auto;
        padding-top: 0;
        border-top: 0;
      }
      .about-values {
        padding: 0;
      }
      .about-value-grid {
        grid-template-columns: 1fr;
      }
      .about-value-grid article {
        display: grid;
        grid-template-columns: 52px 1fr;
        column-gap: 18px;
      }
      .about-value-grid b {
        grid-column: 1 / -1;
        margin-bottom: 18px;
      }
      .about-value-grid .about-value-icon {
        grid-row: 2 / 4;
      }
      .about-value-grid h3 {
        grid-column: 2;
        grid-row: 2;
      }
      .about-value-grid p {
        grid-column: 2;
        grid-row: 3;
        margin-top: 8px;
      }
      .about-quality {
        gap: 24px;
        padding: 32px 26px;
      }
      .about-quality ul {
        grid-template-columns: 1fr;
      }
      .about-quality li:nth-child(odd) {
        border-right: 0;
      }
      .league-hero {
        padding: 42px 0 55px;
      }
      .league-hero h1 {
        max-width: 300px;
        font-size: 39px;
      }
      .league-hero p {
        max-width: 330px;
        font-size: 14px;
      }
      .league-intro-card,
      .league-quality,
      .league-vision {
        gap: 24px;
        padding: 26px;
        border-radius: 22px;
      }
      .league-vision {
        grid-template-columns: 1fr;
        margin-bottom: 52px;
      }
      .league-vision-mark {
        min-height: 120px;
      }
      .league-value-grid,
      .league-tournament-grid {
        grid-template-columns: 1fr;
      }
      .league-tournament-card:first-child {
        grid-row: auto;
      }
      .league-value-grid article {
        min-height: 0;
      }
      .league-quality {
        margin-top: 52px;
      }
      .league-president {
        gap: 36px;
      }
      .league-president-photo img {
        aspect-ratio: 4 / 3.5;
      }
      .league-timeline article {
        padding: 22px 20px 22px 45px;
      }
      .league-team-grid {
        grid-template-columns: 1fr;
      }
      .league-team-card,
      .league-team-card-compact {
        grid-column: auto;
      }
      .league-team-card-compact {
        grid-template-columns: 100px 1fr;
      }
      .league-team-initials {
        width: 74px;
        height: 74px;
        margin-left: 18px;
        font-size: 24px;
      }
      .league-team-card > div:not(.league-team-initials) {
        padding: 20px;
      }
      .league-document-cta {
        align-items: flex-start;
        flex-direction: column;
        padding: 28px;
      }
    }

    /* Directorio de clubes */
    .clubs-page,
    .club-detail-page {
      background: #f4f8f5;
    }

    .clubs-hero,
    .club-detail-hero {
      position: relative;
      overflow: hidden;
      color: #fff;
      background:
        radial-gradient(circle at 82% 20%, rgba(255, 210, 0, .16), transparent 23%),
        linear-gradient(118deg, var(--green-950), #005139 62%, #003a2b);
      isolation: isolate;
    }

    .clubs-hero::after,
    .club-detail-hero::after {
      position: absolute;
      right: 6%;
      bottom: -46px;
      z-index: -1;
      color: transparent;
      content: "CLUBES";
      font-size: clamp(100px, 14vw, 190px);
      font-weight: 950;
      letter-spacing: -.08em;
      line-height: .8;
      -webkit-text-stroke: 1px rgba(255, 255, 255, .14);
      opacity: .8;
      pointer-events: none;
    }

    .clubs-hero,
    .club-detail-hero {
      background:
        radial-gradient(ellipse at 51% 50%, #006046 0%, #004c38 43%, #00382a 100%);
    }

    .clubs-hero::after,
    .club-detail-hero::after {
      right: 10%;
      top: 50%;
      bottom: auto;
      font-size: clamp(76px, 8vw, 116px);
      letter-spacing: -.055em;
      line-height: .8;
      opacity: .72;
      transform: translateY(-50%);
    }

    .clubs-hero-decor,
    .club-detail-hero-decor,
    .team-hero-decor {
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        radial-gradient(circle 92px at 3% -18%, transparent 70%, rgba(255, 255, 255, .15) 71% 72%, transparent 73%),
        radial-gradient(circle 112px at 96% 116%, transparent 70%, rgba(255, 210, 0, .86) 71% 72%, transparent 73%);
      pointer-events: none;
    }

    .clubs-hero-decor::before,
    .club-detail-hero-decor::before,
    .team-hero-decor::before {
      position: absolute;
      top: 0;
      right: 28px;
      width: 108px;
      height: 72px;
      background-image: radial-gradient(circle, rgba(255, 210, 0, .8) 1.4px, transparent 1.6px);
      background-size: 11px 11px;
      content: "";
      opacity: .8;
    }

    .clubs-hero-decor::after,
    .club-detail-hero-decor::after,
    .team-hero-decor::after {
      position: absolute;
      top: 0;
      right: 47px;
      width: 72px;
      height: 62px;
      background:
        linear-gradient(90deg, transparent 48%, rgba(255, 210, 0, .88) 48% 51%, transparent 51%),
        linear-gradient(0deg, transparent 65%, rgba(255, 210, 0, .88) 65% 68%, transparent 68%);
      content: "";
    }

    .club-detail-hero-inner {
      position: relative;
      z-index: 1;
      display: flex;
      width: 100%;
      margin: 0 auto;
      min-height: 198px;
      padding: 16px clamp(32px, 6vw, 96px) 20px;
      padding-left: clamp(96px, 7vw, 112px);
      align-items: center;
    }

    .clubs-hero-inner {
      position: relative;
      z-index: 1;
      width: 100%;
      margin: 0 auto;
      min-height: 126px;
      padding: 18px clamp(32px, 6vw, 96px) 16px;
    }

    .clubs-hero-inner > span,
    .club-detail-identity > div:last-child > span {
      color: var(--gold-500);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    .clubs-hero h1 {
      max-width: 760px;
      margin: 5px 0 5px;
      font-size: clamp(40px, 3.7vw, 52px);
      line-height: .95;
      letter-spacing: -.05em;
    }

    .clubs-hero p {
      max-width: 620px;
      color: rgba(255, 255, 255, .82);
      font-size: 14px;
      line-height: 1.45;
    }

    .clubs-directory {
      width: 100%;
      margin: 0 auto;
      padding: 18px clamp(32px, 6vw, 96px) 56px;
    }

    .clubs-directory-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      margin-bottom: 24px;
    }

    .clubs-directory-head > div > span {
      color: var(--green-700);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .clubs-directory-head h2 {
      margin-top: 3px;
      color: var(--green-950);
      font-size: clamp(27px, 2.5vw, 34px);
      letter-spacing: -.035em;
    }

    .clubs-search {
      width: min(100%, 390px);
    }

    .clubs-search > label {
      display: block;
      margin-bottom: 6px;
      color: var(--green-800);
      font-size: 12px;
      font-weight: 800;
    }

    .clubs-search > div {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 42px;
      overflow: hidden;
      border: 1px solid rgba(8, 115, 63, .2);
      border-radius: 6px;
      background: #fff;
      box-shadow: 0 10px 28px rgba(4, 36, 27, .06);
    }

    .clubs-search input {
      min-width: 0;
      height: 42px;
      padding: 0 15px;
      border: 0;
      outline: 0;
      background: transparent;
      color: var(--green-950);
      font: inherit;
    }

    .clubs-search input:focus {
      box-shadow: inset 0 0 0 2px var(--green-700);
    }

    .clubs-search button {
      display: grid;
      border: 0;
      background: var(--green-700);
      color: #fff;
      cursor: pointer;
      place-items: center;
    }

    .clubs-search button svg {
      width: 20px;
      fill: none;
      stroke: currentColor;
      stroke-linecap: round;
      stroke-width: 2;
    }

    .clubs-search > a {
      display: inline-block;
      margin-top: 7px;
      color: var(--green-700);
      font-size: 12px;
      font-weight: 800;
    }

    .clubs-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 22px;
    }

    .clubs-pagination {
      display: flex;
      margin-top: 30px;
      align-items: center;
      justify-content: center;
      gap: 12px;
      transition: opacity .18s ease;
    }

    .clubs-pagination.is-loading {
      opacity: .55;
      pointer-events: none;
    }

    .clubs-pagination-pages {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      flex-wrap: wrap;
    }

    .clubs-pagination a,
    .clubs-pagination-arrow {
      display: grid;
      width: 38px;
      height: 38px;
      border: 1px solid rgba(8, 115, 63, .25);
      border-radius: 50%;
      background: #fff;
      color: var(--green-800);
      font-size: 14px;
      font-weight: 900;
      line-height: 1;
      text-decoration: none;
      place-items: center;
      transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
    }

    .clubs-pagination a:hover,
    .clubs-pagination a:focus-visible,
    .clubs-pagination a.is-active {
      border-color: var(--green-700);
      background: var(--green-700);
      color: #fff;
    }

    .clubs-pagination a:focus-visible {
      outline: 3px solid var(--gold-500);
      outline-offset: 2px;
    }

    .clubs-pagination-arrow {
      font-size: 26px;
    }

    .clubs-pagination-arrow.is-disabled {
      cursor: default;
      opacity: .35;
    }

    .clubs-pagination-status {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip: rect(0 0 0 0);
      clip-path: inset(50%);
      white-space: nowrap;
    }

    .club-card {
      position: relative;
      display: grid;
      height: 368px;
      grid-template-rows: 218px 150px;
      overflow: hidden;
      border: 1px solid rgba(8, 115, 63, .14);
      border-radius: 2px;
      background: #fff;
      box-shadow: 0 14px 34px rgba(4, 36, 27, .06);
      transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    }

    .club-card::before {
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      z-index: 2;
      height: 4px;
      background: var(--gold-500);
      content: "";
    }

    .club-card-image {
      display: grid;
      min-height: 218px;
      max-height: 218px;
      padding: 22px;
      background:
        radial-gradient(circle at center, rgba(24, 184, 106, .08), transparent 60%),
        #f9fcfa;
      place-items: center;
    }

    .club-card-image img {
      width: 100%;
      height: 174px;
      object-fit: contain;
      transition: transform .25s ease;
    }

    .club-card-placeholder {
      display: grid;
      width: 116px;
      height: 116px;
      border-radius: 50%;
      background: var(--green-950);
      color: var(--gold-500);
      font-size: 28px;
      font-weight: 950;
      place-items: center;
    }

    .club-card-copy {
      display: flex;
      min-width: 0;
      padding: 18px 18px 17px;
      flex-direction: column;
      align-items: flex-start;
    }

    .club-card-copy small {
      color: var(--green-700);
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .club-card-copy strong {
      display: -webkit-box;
      margin: 7px 0 13px;
      overflow: hidden;
      color: var(--green-950);
      font-size: 17px;
      line-height: 1.2;
      letter-spacing: -.025em;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
    }

    .club-card-copy > span {
      display: inline-flex;
      margin-top: auto;
      align-items: center;
      gap: 7px;
      color: var(--green-700);
      font-size: 12px;
      font-weight: 850;
    }

    .club-card-copy > span b {
      transition: transform .22s ease;
    }

    .club-card:focus-visible {
      outline: 3px solid var(--gold-500);
      outline-offset: 3px;
    }

    @media (hover: hover) {
      .club-card:hover {
        border-color: rgba(8, 115, 63, .42);
        box-shadow: 0 20px 44px rgba(4, 36, 27, .12);
        transform: translateY(-5px);
      }
      .club-card:hover .club-card-image img {
        transform: scale(1.04);
      }
      .club-card:hover .club-card-copy > span b {
        transform: translateX(4px);
      }
    }

    .clubs-empty,
    .club-not-found {
      padding: 72px 24px;
      text-align: center;
    }

    .clubs-empty h2,
    .club-not-found h1 {
      color: var(--green-950);
      font-size: 34px;
    }

    .clubs-empty p,
    .club-not-found p {
      margin: 8px 0 20px;
      color: var(--muted);
    }

    .clubs-empty a,
    .club-not-found a {
      display: inline-flex;
      min-height: 44px;
      padding: 0 20px;
      border-radius: 999px;
      background: var(--green-700);
      color: #fff;
      font-weight: 800;
      align-items: center;
    }

    .club-detail-hero-inner {
      padding-top: 16px;
      padding-bottom: 20px;
    }

    .club-detail-back {
      position: fixed;
      right: 18px;
      bottom: 22px;
      z-index: 73;
      display: inline-flex;
      min-height: 44px;
      padding: 9px 16px;
      border: 1px solid rgba(255, 210, 0, .58);
      border-radius: 999px;
      background: var(--green-950);
      color: #fff;
      font-size: 13px;
      font-weight: 800;
      text-decoration: none;
      align-items: center;
      gap: 8px;
      box-shadow:
        0 0 0 3px rgba(255, 210, 0, .08),
        0 14px 34px rgba(0, 0, 0, .2);
      transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
    }

    .club-detail-back:hover {
      border-color: var(--gold-500);
      background: var(--gold-500);
      color: var(--green-950);
      box-shadow:
        0 0 0 4px rgba(255, 210, 0, .14),
        0 18px 38px rgba(0, 0, 0, .22);
      transform: translateY(-3px);
    }

    .club-detail-back:focus-visible {
      outline: 3px solid var(--gold-500);
      outline-offset: 3px;
    }

    .club-detail-page .floating-sponsor {
      bottom: 84px;
      z-index: 72;
    }

    .club-detail-identity {
      display: grid;
      width: 100%;
      grid-template-columns: 118px minmax(0, 1fr);
      align-items: center;
      gap: 24px;
    }

    .club-detail-logo {
      display: grid;
      width: 118px;
      height: 118px;
      overflow: hidden;
      padding: 10px;
      border: 1px solid rgba(255, 255, 255, .25);
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
      place-items: center;
    }

    .club-detail-logo img {
      width: 86%;
      height: 86%;
      object-fit: contain;
    }

    .club-detail-logo > span {
      color: var(--green-950);
      font-size: 38px;
      font-weight: 950;
    }

    .club-detail-identity h1 {
      max-width: 800px;
      margin: 5px 0 6px;
      font-size: clamp(34px, 3.7vw, 50px);
      line-height: .98;
      letter-spacing: -.05em;
    }

    .club-detail-identity p {
      color: rgba(255, 255, 255, .8);
      font-size: 14px;
    }

    .club-detail-content {
      width: min(1150px, calc(100% - 48px));
      margin: 0 auto;
      padding: 42px 0 56px;
    }

    .club-detail-sections-wrap {
      position: relative;
    }

    .club-detail-neighbors {
      position: absolute;
      inset: 0;
      opacity: 0;
      pointer-events: none;
      visibility: hidden;
      transition: opacity .32s ease, visibility 0s linear .32s;
    }

    .club-detail-neighbors.is-visible {
      opacity: 1;
      visibility: visible;
      transition-delay: 0s;
    }

    .club-detail-neighbor {
      position: absolute;
      top: 50%;
      z-index: 3;
      display: grid;
      width: 48px;
      height: 48px;
      border: 1px solid rgba(8, 115, 63, .24);
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 12px 30px rgba(4, 36, 27, .14);
      color: var(--green-700);
      pointer-events: auto;
      place-items: center;
      transform: translateY(-50%);
      transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
    }

    .club-detail-neighbor-prev {
      left: -70px;
    }

    .club-detail-neighbor-next {
      right: -70px;
    }

    .club-detail-neighbor svg {
      width: 25px;
      height: 25px;
      fill: none;
      stroke: currentColor;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-width: 2;
    }

    .club-detail-neighbor:hover {
      border-color: var(--green-700);
      background: var(--green-700);
      color: var(--gold-500);
      transform: translateY(-50%) scale(1.06);
    }

    .club-detail-neighbor:focus-visible {
      outline: 3px solid var(--gold-500);
      outline-offset: 3px;
    }

    .club-detail-sections {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .club-info-card {
      display: grid;
      grid-template-columns: 48px minmax(0, 1fr);
      align-content: start;
      gap: 16px;
      min-height: 150px;
      padding: 22px;
      border: 1px solid rgba(8, 115, 63, .15);
      background: #fff;
      box-shadow: 0 12px 32px rgba(4, 36, 27, .05);
      transition: border-color .22s ease;
    }

    .club-info-card-wide {
      grid-column: 1 / -1;
    }

    .club-info-icon {
      display: grid;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--green-700);
      color: #fff;
      place-items: center;
      transition: background .22s ease, color .22s ease, transform .22s ease;
    }

    .club-info-card:hover .club-info-icon {
      background: #0a8f4f;
      color: #fff;
      transform: none;
    }

    .club-info-icon svg {
      width: 23px;
      height: 23px;
      fill: none;
      stroke: currentColor;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-width: 1.7;
    }

    .club-info-card h2 {
      margin: 2px 0 9px;
      color: var(--green-700);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .club-info-card p {
      color: var(--green-950);
      font-size: 14px;
      line-height: 1.55;
      overflow-wrap: anywhere;
    }

    .club-info-card p + p {
      margin-top: 5px;
    }

    .club-info-link {
      color: inherit;
      text-decoration-color: rgba(8, 115, 63, .45);
      text-decoration-thickness: 1px;
      text-underline-offset: 3px;
    }

    .club-info-link:hover {
      color: var(--green-700);
      text-decoration-color: currentColor;
    }

    .club-info-link:focus-visible {
      border-radius: 2px;
      outline: 3px solid var(--gold-500);
      outline-offset: 3px;
    }

    .club-detail-links {
      margin-top: 18px;
      padding: 24px;
      border: 1px solid rgba(8, 115, 63, .16);
      background: linear-gradient(110deg, #fff, #f4faf6);
    }

    .club-detail-links h2 {
      margin-bottom: 14px;
      color: var(--green-950);
      font-size: 20px;
    }

    .club-detail-links > div {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .club-detail-links a {
      display: inline-flex;
      min-height: 40px;
      padding: 0 15px;
      border: 1px solid var(--green-700);
      border-radius: 999px;
      background: var(--green-700);
      color: #fff;
      font-size: 13px;
      font-weight: 850;
      align-items: center;
      gap: 7px;
      transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
    }

    .club-detail-links a img {
      width: 18px;
      height: 18px;
      flex: 0 0 18px;
      object-fit: contain;
    }

    .club-detail-links .club-link-arrow {
      color: var(--gold-500);
    }

    .club-detail-links a:hover {
      border-color: var(--gold-500);
      background: #0a8f4f;
      color: #fff;
      box-shadow: 0 8px 18px rgba(4, 36, 27, .17);
      transform: translateY(-2px);
    }

    .club-detail-links a:focus-visible {
      outline: 3px solid var(--gold-500);
      outline-offset: 3px;
    }

    .club-not-found > span {
      display: block;
      color: var(--gold-600);
      font-size: 70px;
      font-weight: 950;
      line-height: 1;
    }

    @media (max-width: 1050px) {
      .clubs-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 1300px) {
      .club-detail-neighbors {
        position: static;
        display: flex;
        margin-bottom: 16px;
        justify-content: space-between;
      }
      .club-detail-neighbor {
        position: static;
        transform: none;
      }
      .club-detail-neighbor:hover {
        transform: translateY(-2px);
      }
    }

    @media (max-width: 760px) {
      .clubs-hero::after,
      .club-detail-hero::after {
        right: -35px;
        font-size: 100px;
        opacity: .45;
      }
      .clubs-directory-head {
        align-items: stretch;
        flex-direction: column;
      }
      .clubs-search {
        width: 100%;
      }
      .clubs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
      }
      .club-detail-identity {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 18px;
      }
      .club-detail-logo {
        width: 96px;
        height: 96px;
      }
      .club-detail-sections {
        grid-template-columns: 1fr;
      }
      .club-info-card-wide {
        grid-column: auto;
      }
    }

    @media (max-width: 520px) {
      .clubs-hero-inner,
      .clubs-directory,
      .club-detail-content {
        width: calc(100% - 28px);
      }
      .clubs-hero-inner {
        min-height: 168px;
        width: 100%;
        padding: 30px 26px 26px;
      }
      .clubs-hero h1 {
        font-size: 42px;
      }
      .clubs-directory {
        width: 100%;
        padding: 30px 26px 42px;
      }
      .clubs-grid {
        grid-template-columns: 1fr;
      }
      .club-card {
        height: 368px;
        grid-template-rows: 218px 150px;
      }
      .club-detail-hero-inner {
        width: 100%;
        min-height: 178px;
        padding: 16px 26px 20px;
      }
      .club-detail-back {
        right: 14px;
        bottom: 16px;
        min-height: 42px;
        padding: 8px 14px;
        font-size: 12px;
      }
      .club-detail-identity {
        grid-template-columns: 84px minmax(0, 1fr);
        gap: 14px;
        text-align: left;
      }
      .club-detail-logo {
        width: 84px;
        height: 84px;
        margin: 0;
      }
      .club-detail-identity h1 {
        font-size: 30px;
      }
      .club-detail-content {
        padding: 28px 0 42px;
      }
      .club-info-card {
        grid-template-columns: 40px minmax(0, 1fr);
        padding: 18px;
      }
      .club-info-icon {
        width: 40px;
        height: 40px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .club-detail-neighbors {
        transition: none;
      }
    }

    @media (max-width: 640px) {
      .league-content {
        width: calc(100% - 24px);
        padding: 12px 0 60px;
      }
      .league-page-team .league-content {
        padding-top: 22px;
        padding-bottom: 70px;
      }
      .league-page-team .league-heading-centered {
        margin-bottom: 30px;
      }
    }

    /* Equipo de trabajo */
    .league-page-team {
      background: #fff;
    }

    .league-page-team .league-content {
      width: 100%;
      max-width: none;
      padding: 0 0 18px;
    }

    .team-hero {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      min-height: 126px;
      color: #fff;
      background: radial-gradient(ellipse at 51% 50%, #006046 0%, #004c38 43%, #00382a 100%);
    }

    .team-hero::before {
      display: none;
    }

    .team-hero::after {
      position: absolute;
      top: 50%;
      right: 10%;
      bottom: auto;
      z-index: -1;
      color: transparent;
      content: "EQUIPO";
      font-size: clamp(76px, 8vw, 116px);
      font-weight: 950;
      letter-spacing: -.055em;
      line-height: .8;
      transform: translateY(-50%);
      -webkit-text-stroke: 1px rgba(255, 255, 255, .14);
      opacity: .72;
    }

    .municipal-hero::after {
      content: "TORNEOS";
    }

    .team-hero-inner {
      position: relative;
      z-index: 1;
      width: 100%;
      min-height: 126px;
      margin: 0 auto;
      padding: 18px clamp(32px, 6vw, 96px) 16px;
    }

    .team-hero-inner::after,
    .team-hero-inner::before {
      display: none;
    }

    .team-hero .league-card-kicker {
      margin-bottom: 0;
      color: var(--gold-500);
      font-size: 12px;
      letter-spacing: .18em;
    }

    .team-hero h1 {
      max-width: 760px;
      margin: 5px 0;
      color: #fff;
      font-size: clamp(40px, 3.7vw, 52px);
      line-height: .95;
      letter-spacing: -.05em;
    }

    .team-hero p {
      max-width: 620px;
      color: rgba(255, 255, 255, .82);
      font-size: 14px;
      line-height: 1.45;
    }

    .league-page-team .league-team-grid {
      display: block;
      width: min(1150px, calc(100% - 48px));
      margin: 0 auto;
      padding: 16px 0 0;
    }

    .team-featured-grid {
      position: relative;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 64px;
      padding-bottom: 46px;
    }

    .team-featured-grid::after {
      position: absolute;
      right: 16.666%;
      bottom: 22px;
      left: 16.666%;
      height: 1px;
      background: rgba(8, 115, 63, .72);
      content: "";
    }

    .league-page-team .league-team-card {
      position: relative;
      grid-column: auto;
      overflow: visible;
      border: 1px solid rgba(8, 115, 63, .18);
      border-top: 4px solid var(--gold-500);
      border-radius: 0;
      background: #fff;
      box-shadow: 0 14px 32px rgba(4, 36, 27, .045);
    }

    .team-featured-grid .league-team-card::after {
      position: absolute;
      bottom: -25px;
      left: 50%;
      width: 1px;
      height: 24px;
      background: rgba(8, 115, 63, .72);
      content: "";
    }

    .team-featured-grid .league-team-card::before {
      position: absolute;
      bottom: -31px;
      left: calc(50% - 6px);
      z-index: 2;
      width: 12px;
      height: 12px;
      border: 2px solid rgba(8, 115, 63, .82);
      border-radius: 50%;
      background: #f5faf7;
      content: "";
    }

    .team-photo {
      overflow: hidden;
    }

    .league-page-team .league-team-card > .team-photo {
      min-height: 0;
      padding: 0;
    }

    .league-page-team .league-team-card .team-photo img {
      width: 100%;
      height: auto;
      aspect-ratio: 5 / 4;
      object-fit: cover;
      object-position: center 58%;
    }

    .league-page-team .league-team-card > div:not(.league-team-initials, .team-photo) {
      min-height: 102px;
      padding: 13px 16px 15px;
    }

    .league-page-team .league-team-card span {
      display: flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 7px;
      color: var(--green-700);
      font-size: 11px;
      letter-spacing: .04em;
    }

    .team-role-icon {
      flex: 0 0 auto;
      width: 19px;
      height: 19px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .league-page-team .league-team-card h3 {
      margin: 0;
      font-size: 20px;
      line-height: 1.15;
    }

    .league-page-team .league-team-card p {
      margin-top: 7px;
      font-size: 12px;
      line-height: 1.4;
    }

    .team-card-number {
      position: absolute;
      top: -4px;
      left: -2px;
      z-index: 3;
      display: grid;
      width: 13.5px;
      height: 10.8px;
      place-items: center;
      background: var(--gold-500);
      color: var(--green-950);
      font-size: 22px;
      font-weight: 950;
      line-height: 1;
      transition: background-color .28s ease;
    }

    .team-support-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 390px));
      justify-content: center;
      gap: 72px;
      padding-top: 3px;
    }

    .league-page-team .league-team-card-compact {
      display: grid;
      grid-template-columns: 118px minmax(0, 1fr);
      align-items: center;
      min-height: 92px;
      border-top: 1px solid rgba(8, 115, 63, .18);
    }

    .league-page-team .league-team-card-compact .team-card-number {
      top: -1px;
      left: -2px;
      width: 10.8px;
      height: 10.8px;
      font-size: 17px;
    }

    .league-page-team .league-team-initials {
      position: relative;
      width: 80px;
      height: 80px;
      margin: 0 0 0 37px;
      border: 5px solid #f5faf7;
      outline: 1px solid rgba(8, 115, 63, .35);
      background: var(--green-950);
      font-size: 29px;
    }

    .league-page-team .league-team-initials::after {
      position: absolute;
      inset: -10px;
      border: 1px dotted rgba(8, 115, 63, .55);
      border-radius: 50%;
      content: "";
    }

    .league-page-team .league-team-card-compact > div:not(.league-team-initials) {
      min-height: 0;
      padding: 10px 14px 10px 24px;
    }

    .league-page-team .league-team-card-compact span {
      margin-bottom: 4px;
    }

    .league-page-team .league-team-card-compact p {
      margin-top: 4px;
    }

    .league-page-team .league-team-card-compact h3 {
      font-size: 16px;
      letter-spacing: -.025em;
    }

    .league-page-team .footer {
      margin-top: 0;
    }

    @media (hover: hover) {
      .league-page-team .league-team-card:hover {
        border-color: rgba(8, 115, 63, .38);
        box-shadow: 0 20px 42px rgba(4, 36, 27, .11);
        transform: translateY(-4px);
      }

      .league-page-team .league-team-card:hover .team-card-number {
        background-color: rgba(8, 115, 63, .38);
      }
    }

    @media (max-width: 980px) {
      .team-hero::after {
        right: 10%;
        opacity: .72;
      }
      .team-featured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
        padding-bottom: 30px;
      }
      .team-featured-grid::after,
      .team-featured-grid .league-team-card::before,
      .team-featured-grid .league-team-card::after {
        display: none;
      }
      .team-support-grid {
        gap: 28px;
      }
      .league-page-team .league-team-card,
      .league-page-team .league-team-card-compact {
        grid-column: auto;
      }
    }

    @media (max-width: 680px) {
      .team-hero {
        min-height: 168px;
      }
      .team-hero-inner {
        width: 100%;
        min-height: 168px;
        padding: 30px 26px 26px;
      }
      .team-hero h1 {
        font-size: 42px;
      }
      .team-hero::after {
        top: 50%;
        right: -35px;
        font-size: 100px;
        opacity: .45;
      }
      .league-page-team .league-team-grid {
        width: calc(100% - 28px);
        padding-top: 14px;
      }
      .team-featured-grid,
      .team-support-grid {
        grid-template-columns: 1fr;
        gap: 22px;
      }
      .team-featured-grid {
        padding-bottom: 22px;
      }
      .league-page-team .league-team-card-compact {
        grid-template-columns: 96px minmax(0, 1fr);
      }
      .league-page-team .league-team-initials {
        width: 68px;
        height: 68px;
        margin-left: 20px;
        font-size: 24px;
      }
      .league-page-team .league-team-card-compact .team-card-number {
        left: -1px;
      }
      .league-page-team .league-team-card h3 {
        font-size: 18px;
      }
    }

/* ==========================================================================
   Portada editorial 2026
   Rediseño exclusivo del inicio, alineado con las páginas interiores.
   ========================================================================== */

.liga-home {
  background: #fff;
}

.liga-home main {
  overflow: hidden;
}

.liga-home .doc-list-empty {
  margin: auto;
  padding: 34px 18px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.liga-home .hero {
  padding: 20px 0 12px;
}

.liga-home .hero .shell {
  width: 100%;
  max-width: none;
  padding: 0;
}

.liga-home .hero-stage {
  height: 536px;
  border-radius: 0;
  box-shadow: none;
}

.liga-home .slide {
  padding: 0 80px;
}

.liga-home .slide::before {
  background:
    linear-gradient(90deg, rgba(0, 47, 34, .92) 0%, rgba(0, 47, 34, .78) 31%, rgba(0, 47, 34, .25) 64%, rgba(0, 47, 34, .04) 100%),
    linear-gradient(0deg, rgba(0, 35, 25, .38), transparent 58%);
}

.liga-home .slide::after {
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(90deg, #000, rgba(0,0,0,.62) 33%, transparent 70%);
}

.liga-home .hero-content {
  width: min(100%, 760px);
  grid-template-rows: 36px auto auto 46px;
  align-content: center;
  row-gap: 16px;
  padding: 44px 30px 44px 34px;
  border-left: 3px solid var(--gold-500);
  border-radius: 0;
  background: transparent;
}

.liga-home .hero-content::before {
  width: 80px;
  height: 100%;
  background: rgba(0, 51, 37, .65);
}

.liga-home .hero-kicker {
  height: 36px;
  padding: 8px 13px;
  border-radius: 0;
  box-shadow: none;
  font-size: 11px;
  letter-spacing: .07em;
}

.liga-home .hero-title {
  height: auto;
  max-width: 720px;
  font-size: clamp(38px, 3.25vw, 54px);
  line-height: .99;
  letter-spacing: -.025em;
  -webkit-line-clamp: 3;
}

.liga-home .hero-copy {
  height: auto;
  max-width: 650px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.liga-home .hero-actions {
  height: 46px;
}

.liga-home .hero .btn {
  min-height: 46px;
  padding: 0 24px;
  border-radius: 0;
  box-shadow: none;
  font-size: 12px;
}

.liga-home .hero-controls {
  left: 22px;
  right: 22px;
}

.liga-home .hero-arrow {
  width: 40px;
  height: 40px;
  font-size: 23px;
  box-shadow: 0 7px 20px rgba(0,0,0,.2);
}

.liga-home .dots {
  bottom: 14px;
  gap: 6px;
  padding: 6px 9px;
  background: rgba(0,47,34,.76);
  border: 1px solid rgba(255,255,255,.45);
}

.liga-home .dot {
  width: 13px;
  height: 7px;
  border-radius: 8px;
}

.liga-home .dot.active {
  width: 25px;
}

.liga-home .section {
  padding: 24px 0;
}

.liga-home .section-head {
  margin-bottom: 20px;
}

.liga-home .section-title {
  position: relative;
  padding: 0 0 9px 16px;
  color: var(--green-800);
  font-size: 25px;
  line-height: .9;
}

.liga-home .section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  bottom: 5px;
  width: 1px;
  background: rgba(15,75,52,.35);
}

.liga-home .section-title::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: 0;
  width: 48px;
  height: 4px;
  background: var(--green-700);
}

.liga-home #noticias .section-title span {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .1em;
  color: var(--green-700);
}

.liga-home .news-row {
  counter-reset: home-news;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 24px;
  padding: 0;
}

.liga-home .news-card {
  counter-increment: home-news;
  position: relative;
  min-height: 224px;
  display: grid;
  grid-template-columns: 48% 52%;
  border: 0;
  border-top: 2px solid var(--green-700);
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  background: #fff;
}

.liga-home .news-card::before {
  content: counter(home-news, decimal-leading-zero);
  position: absolute;
  top: -2px;
  left: 0;
  z-index: 3;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--gold-500);
  color: var(--green-950);
  font-size: 21px;
  line-height: 1;
  font-weight: 900;
}

.liga-home .news-card::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 0;
  bottom: -18px;
  width: 1px;
  background: var(--green-700);
  opacity: .8;
}

.liga-home .news-card:nth-child(3n)::after {
  right: auto;
  left: -13px;
}

.liga-home .news-card:nth-child(n+4)::after {
  top: -18px;
  bottom: 0;
}

.liga-home .news-card .thumb {
  height: 224px;
}

.liga-home .news-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 18px 20px 20px;
}

.liga-home .news-card:nth-child(even) .thumb {
  order: 2;
}

.liga-home .news-card:nth-child(even) .news-body {
  order: 1;
}

@media (min-width: 1181px) {
  .liga-home .news-card:nth-child(even) .news-body {
    justify-content: flex-start;
    padding-top: 18px;
  }

  .liga-home .news-card:nth-child(even) .tag {
    margin-left: 52px;
  }

  .liga-home .news-card:nth-child(even) .news-body h3 {
    margin-top: 20px;
  }
}

.liga-home .news-card:hover,
.liga-home .news-card.auto-active {
  transform: translateY(-3px);
  box-shadow: none;
}

.liga-home .tag {
  padding: 0;
  border-radius: 0;
  background: transparent;
  font-size: 10px;
}

.liga-home .news-body h3 {
  margin-top: 14px;
  font-size: 21px;
  line-height: 1.12;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
  min-height: calc(1.12em * 3);
}

.liga-home .news-body p {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.42;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
  min-height: calc(1.42em * 4);
}

.liga-home #multimedia {
  margin-top: 6px;
  padding: 32px 0;
  background:
    radial-gradient(circle at 40% 120%, rgba(0,130,80,.24), transparent 42%),
    #00392b;
}

.liga-home #multimedia .section-head {
  display: none;
}

.liga-home .content-grid {
  counter-reset: home-media;
  grid-template-columns: 1.08fr 1.45fr 1.08fr;
  gap: 18px;
}

.liga-home #multimedia .panel {
  counter-increment: home-media;
  min-height: 390px;
  border: 1px solid rgba(22,184,106,.42);
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.liga-home #multimedia .panel-head {
  position: relative;
  height: 46px;
  padding: 0 18px 0 56px;
  border-bottom: 1px solid rgba(22,184,106,.42);
  background: transparent;
}

.liga-home #multimedia .panel-head::before {
  content: counter(home-media, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 45px;
  display: grid;
  place-items: center;
  background: var(--gold-500);
  color: var(--green-950);
  font-size: 19px;
  font-weight: 900;
}

.liga-home #multimedia .panel-head h3 {
  color: var(--gold-500);
  font-size: 18px;
}

.liga-home #multimedia .panel-head a {
  color: #fff;
  font-size: 10px;
}

.liga-home #multimedia .doc-list,
.liga-home #multimedia .podcast-list {
  padding: 12px 18px;
  gap: 0;
}

.liga-home #multimedia .doc-card,
.liga-home #multimedia .podcast-card {
  min-height: 102px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.22);
  border-radius: 0;
  background: transparent;
  color: #fff;
}

.liga-home #multimedia .doc-card {
  grid-template-columns: 66px 1fr;
}

.liga-home #multimedia .doc-mini {
  height: 66px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 8px;
}

.liga-home #multimedia .doc-mini img {
  width: 46px;
  height: 54px;
}

.liga-home #multimedia .doc-card h4,
.liga-home #multimedia .podcast-card h4 {
  color: #fff;
}

.liga-home #multimedia .doc-card p,
.liga-home #multimedia .podcast-card p {
  color: rgba(255,255,255,.72);
}

.liga-home #multimedia .video-box {
  height: calc(100% - 46px);
  min-height: 343px;
}

.liga-home #multimedia .video-caption strong {
  font-size: 22px;
}

.liga-home #multimedia .play {
  width: 72px;
  height: 72px;
}

.liga-home #multimedia .podcast-card {
  grid-template-columns: 72px minmax(0,1fr);
  gap: 12px;
  transition: background .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.liga-home #multimedia .podcast-card:hover,
.liga-home #multimedia .podcast-card:focus-within {
  border-color: rgba(255, 213, 0, .72);
  background: linear-gradient(90deg, rgba(255, 213, 0, .11), rgba(255, 255, 255, .025) 72%);
  box-shadow: inset 4px 0 0 var(--gold-500);
  transform: translateX(4px);
}

.liga-home #multimedia .pod-cover {
  width: 66px;
  height: 66px;
  border: 2px solid #fff;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.liga-home #multimedia .podcast-card:hover .pod-cover,
.liga-home #multimedia .podcast-card:focus-within .pod-cover {
  border-color: var(--gold-500);
  box-shadow: 0 7px 18px rgba(0, 0, 0, .22);
  transform: scale(1.04);
}

.liga-home #multimedia .pod-audio {
  color: #fff;
}

.liga-home #multimedia .pod-play,
.liga-home #multimedia .pod-volume {
  color: #fff;
  transition: color .2s ease, transform .2s ease;
}

.liga-home #multimedia .podcast-card:hover .pod-play,
.liga-home #multimedia .podcast-card:focus-within .pod-play {
  color: var(--gold-500);
  transform: scale(1.12);
}

.liga-home #multimedia .pod-progress,
.liga-home #multimedia .pod-volume-range {
  accent-color: var(--gold-500);
}

@media (prefers-reduced-motion: reduce) {
  .liga-home #multimedia .podcast-card,
  .liga-home #multimedia .pod-cover,
  .liga-home #multimedia .pod-play {
    transition: none;
  }

  .liga-home #multimedia .podcast-card:hover,
  .liga-home #multimedia .podcast-card:focus-within,
  .liga-home #multimedia .podcast-card:hover .pod-cover,
  .liga-home #multimedia .podcast-card:focus-within .pod-cover,
  .liga-home #multimedia .podcast-card:hover .pod-play,
  .liga-home #multimedia .podcast-card:focus-within .pod-play {
    transform: none;
  }
}

.liga-home #destacado {
  padding-top: 34px;
}

.liga-home .categories {
  grid-template-columns: 1.42fr .9fr .82fr;
  gap: 10px;
}

.liga-home .category-grid {
  gap: 8px;
}

.liga-home .category-card,
.liga-home .category-promo-card,
.liga-home .poster {
  border-radius: 0;
  box-shadow: none;
}

.liga-home .category-card {
  min-height: 220px;
  padding: 20px;
}

.liga-home .category-card h3 {
  font-size: 24px;
}

.liga-home .category-card p {
  font-size: 13px;
}

.liga-home .category-card:hover,
.liga-home .category-promo-card:hover,
.liga-home .poster:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.liga-home .category-promo-card,
.liga-home .poster,
.liga-home .poster-image {
  min-height: 448px;
}

.liga-home .event-slider {
  position: relative;
  min-width: 0;
  height: 448px;
  min-height: 448px;
  overflow: hidden;
  background: #071d16;
}

.liga-home .event-slider-stage,
.liga-home .event-slide,
.liga-home .event-slide img {
  width: 100%;
  height: 100%;
  min-height: 0;
}

.liga-home .event-slider-stage {
  position: relative;
}

.liga-home .event-slide {
  position: absolute;
  inset: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  opacity: 0;
  pointer-events: none;
  transition: opacity .9s ease-in-out;
}

.liga-home .event-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.liga-home .event-slide img {
  display: block;
  object-fit: fill;
}

.liga-home .event-slide-description {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 12px 14px;
  background: rgba(0, 0, 0, .68);
  color: #fff;
  font-size: .82rem;
  line-height: 1.4;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity .2s ease, transform .2s ease;
}

.liga-home .event-slide:hover .event-slide-description,
.liga-home .event-slide:focus-visible .event-slide-description {
  opacity: 1;
  transform: translateY(0);
}

.liga-home .event-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  opacity: 1;
  box-shadow: none;
  transform: translateY(-50%);
  transition: background .2s ease, opacity .2s ease;
}

.liga-home .event-slider-arrow:hover,
.liga-home .event-slider-arrow:focus-visible {
  background: transparent;
  opacity: 1;
}

.liga-home .event-slider-arrow:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
}

.liga-home .event-slider-prev {
  left: 0;
}

.liga-home .event-slider-next {
  right: 0;
}

.event-image-modal-card {
  width: min(560px, calc(100vw - 32px));
  max-height: 94vh;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 32px 100px rgba(0, 0, 0, .35);
}

.event-image-modal-content {
  position: relative;
  display: grid;
  place-items: center;
  height: min(780px, calc(94vh - 64px));
  padding: 12px;
  overflow: hidden;
  background: #101714;
}

.event-image-modal-content img {
  position: absolute;
  inset: 12px;
  display: block;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: contain;
}

.event-image-modal-description {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 3;
  margin: 0;
  padding: 12px 16px;
  background: rgba(0, 0, 0, .68);
  color: #fff;
  font-size: .88rem;
  line-height: 1.45;
  text-align: left;
}

.event-image-modal-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 41, 30, .62);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s ease;
}

.event-image-modal-arrow:hover,
.event-image-modal-arrow:focus-visible {
  background: var(--green-700);
}

.event-image-modal-arrow:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
}

.event-image-modal-prev {
  left: 18px;
}

.event-image-modal-next {
  right: 18px;
}

.liga-home .category-promo-card .promo-card-head {
  height: 42px;
}

.liga-home #aliados {
  padding-top: 20px;
  padding-bottom: 34px;
}

.liga-home .sponsors {
  padding: 12px 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #fff;
  gap: 0;
}

.liga-home .sponsor-item,
.liga-home .sponsors .sponsor-item:first-child {
  height: 82px;
  padding: 10px 18px;
  border: 0;
  border-right: 1px solid rgba(15,75,52,.22);
  border-radius: 0;
  background: #fff;
}

.liga-home .sponsor-item:last-child {
  border-right: 0;
}

.liga-home .sponsor-item::after {
  display: none;
}

.liga-home .sponsor-item:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.liga-home .sponsors .sponsor-item:first-child img,
.liga-home .sponsors .sponsor-item:nth-child(2) img,
.liga-home .sponsors .sponsor-item:nth-child(5) img,
.liga-home .sponsors .sponsor-item:nth-child(6) img,
.liga-home .sponsor-item img {
  max-width: 90%;
  max-height: 60px;
}

.liga-home .footer {
  margin-top: 0;
}

@media (max-width: 1180px) {
  .liga-home .hero-stage {
    height: 491px;
  }

  .liga-home .slide {
    padding: 0 58px;
  }

  .liga-home .hero-title {
    font-size: clamp(34px, 4vw, 46px);
  }

  .liga-home .news-card {
    min-height: 250px;
    grid-template-columns: 1fr;
  }

  .liga-home .news-card .thumb {
    height: 150px;
  }

  .liga-home .news-card:nth-child(even) .thumb,
  .liga-home .news-card:nth-child(even) .news-body {
    order: initial;
  }

  .liga-home .content-grid {
    grid-template-columns: 1fr 1.25fr;
  }

  .liga-home #multimedia .panel:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  body:not(.cms-page):not(.cms-article-editor-page) {
    padding-top: 136px;
  }

  .site-top {
    display: grid;
    grid-template-rows: 22px 78px 36px;
  }

  .site-top .header {
    grid-row: 2;
    border-bottom: 0;
    background: #fff;
    /* Evita que backdrop-filter convierta el menú fixed en relativo al header. */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-top .top-strip {
    display: contents;
  }

  .site-top .top-strip-inner {
    display: contents;
  }

  .site-top .top-message {
    grid-row: 1;
    display: inline-flex;
    align-items: center;
    width: 100%;
    padding: 0 16px;
    overflow: visible;
    background: var(--green-950);
    color: #fff;
    font-size: 10px;
    text-overflow: clip;
  }

  .site-top .top-message > strong,
  .site-top .top-message-ball {
    flex: 0 0 auto;
  }

  .site-top .top-message > strong {
    position: relative;
    z-index: 1;
  }

  .site-top .top-message-window {
    position: relative;
    min-width: 0;
    height: 1.3em;
    flex: 1 1 auto;
    overflow: visible;
    clip-path: inset(-10px 0 -10px 0);
  }

  .site-top .top-message-track {
    position: absolute;
    top: 50%;
    left: 0;
    width: max-content;
    translate: 0 -50%;
    white-space: nowrap;
    will-change: transform;
  }

  .site-top #topMessageText {
    display: block;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .site-top .top-contact {
    grid-row: 3;
    width: 100%;
    min-height: 36px;
    padding: 0 16px;
    align-items: center;
    justify-content: flex-start;
    background: var(--green-950);
    color: #fff;
    font-size: 11px;
    letter-spacing: .02em;
  }

  .site-top .header-inner {
    height: 78px;
  }

  .site-top .brand {
    gap: 10px;
  }

  .site-top .brand-logo {
    width: 46px;
    height: 46px;
  }

  .site-top .header .brand-text .big {
    font-size: 16px;
    line-height: 1.05;
  }

  .site-top .header .brand-text .small {
    margin-top: 4px;
    font-size: 9px;
    line-height: 1.08;
  }

  .site-top .mobile-menu {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    padding: 0;
    border-radius: 7px;
    font-size: 24px;
    line-height: 1;
  }

  .liga-home .hero {
    padding: 0;
  }

  .liga-home .hero-stage {
    --mobile-hero-image-height: clamp(202px, 56.25vw, 260px);
    height: calc(var(--mobile-hero-image-height) + 284px);
    border-radius: 0;
    background: #002f22;
  }

  .liga-home .slide {
    padding: 0;
  }

  .liga-home .slide-image {
    inset: 0 0 auto;
    height: var(--mobile-hero-image-height);
    object-fit: cover;
  }

  .liga-home .slide::before {
    inset: 0 0 auto;
    height: var(--mobile-hero-image-height);
    background:
      linear-gradient(0deg, rgba(0,39,28,.28), transparent 54%),
      linear-gradient(90deg, rgba(0,39,28,.18), transparent 42%);
  }

  .liga-home .slide::after {
    inset: 0 0 auto;
    height: var(--mobile-hero-image-height);
    mask-image: linear-gradient(90deg, #000, rgba(0,0,0,.35) 38%, transparent 82%);
  }

  .liga-home .hero-content {
    position: absolute;
    inset: var(--mobile-hero-image-height) 0 0;
    width: 100%;
    height: auto;
    grid-template-rows: 29px minmax(0, auto) minmax(0, auto) 38px;
    align-content: center;
    row-gap: 8px;
    padding: 17px 22px 18px;
    border-left: 0;
    background:
      radial-gradient(circle at 88% 10%, rgba(0, 143, 86, .34), transparent 42%),
      linear-gradient(145deg, #00613f 0%, #004331 48%, #00271e 100%);
  }

  .liga-home .hero-content::before {
    display: none;
  }

  .liga-home .hero-kicker {
    height: 29px;
    padding: 6px 10px;
    font-size: 10px;
  }

  .liga-home .hero-title {
    max-width: 100%;
    font-size: clamp(22px, 6.6vw, 28px);
    line-height: 1.04;
    -webkit-line-clamp: 3;
  }

  .liga-home .hero-copy {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.35;
    -webkit-line-clamp: 3;
  }

  .liga-home .hero-actions,
  .liga-home .hero .btn {
    height: 38px;
    min-height: 38px;
  }

  .liga-home .hero-controls {
    left: 10px;
    right: 10px;
    top: calc(var(--mobile-hero-image-height) / 2);
  }

  .liga-home .dots {
    top: calc(var(--mobile-hero-image-height) - 18px);
    bottom: auto;
    transform: translate(-50%, 35%);
  }

  .liga-home .news-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .liga-home .news-card {
    min-height: 0;
    grid-template-columns: 1fr;
    overflow: hidden;
    border: 1px solid rgba(15,75,52,.18);
    border-top: 2px solid var(--green-700);
  }

  .liga-home .news-card .thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .liga-home .news-card:nth-child(even) .thumb,
  .liga-home .news-card:nth-child(even) .news-body {
    order: initial;
  }

  .liga-home .news-card:nth-child(even) .news-body {
    justify-content: flex-start;
    padding-top: 16px;
  }

  .liga-home .news-card:nth-child(even) .tag {
    margin-left: 0;
  }

  .liga-home .news-card:nth-child(even) .news-body h3 {
    margin-top: 10px;
  }

  .liga-home .news-card::after {
    display: none;
  }

  .liga-home .news-body {
    min-height: 128px;
    padding: 16px 18px 18px;
  }

  .liga-home .news-body h3 {
    margin-top: 10px;
    font-size: 19px;
    -webkit-line-clamp: 3;
    min-height: calc(1.12em * 3);
  }

  .liga-home .news-body p {
    margin-top: 8px;
    font-size: 12px;
    -webkit-line-clamp: 4;
    min-height: calc(1.42em * 4);
  }

  .liga-home .section-title {
    font-size: 22px;
    line-height: 1;
  }

  .liga-home #multimedia .panel {
    min-height: 0;
  }

  .liga-home #multimedia .video-box {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .liga-home #multimedia .doc-list:has(.doc-list-empty) {
    min-height: 120px;
  }

  .liga-home .content-grid,
  .liga-home .categories {
    grid-template-columns: 1fr;
  }

  .liga-home #multimedia .panel:last-child {
    grid-column: auto;
  }

  .liga-home .category-grid {
    grid-template-columns: 1fr;
  }

  .liga-home .category-card {
    min-height: 180px;
    padding: 18px;
  }

  .liga-home .category-card h3 {
    font-size: 22px;
  }

  .liga-home .category-card p {
    max-width: 82%;
    font-size: 12px;
  }

  .liga-home .category-promo-card,
  .liga-home .poster,
  .liga-home .poster-image {
    min-height: 420px;
  }

  .liga-home .event-slider,
  .liga-home .event-slider-stage {
    height: 420px;
    min-height: 420px;
  }

  .liga-home .event-slide,
  .liga-home .event-slide img {
    min-height: 0;
  }

  .liga-home .sponsors {
    grid-template-columns: repeat(2, 1fr);
  }

  .liga-home .sponsor-item {
    border-bottom: 1px solid rgba(15,75,52,.18);
  }

}

@media (prefers-reduced-motion: reduce) {
  .liga-home .event-slide {
    transition: none;
  }

  .liga-home .event-slide-description {
    transition: none;
  }
}

/* Franja compartida de aliados en páginas interiores */
.site-sponsors-strip {
  padding: 30px 0 34px;
  background: #fff;
}

.site-sponsors-strip .section-head {
  margin-bottom: 20px;
}

.site-sponsors-strip .section-title {
  position: relative;
  margin: 0;
  padding: 0 0 9px 16px;
  color: var(--green-800);
  font-size: 25px;
  line-height: .95;
  letter-spacing: 0;
}

.site-sponsors-strip .section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  bottom: 5px;
  width: 1px;
  background: rgba(15,75,52,.35);
}

.site-sponsors-strip .section-title::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: 0;
  width: 48px;
  height: 4px;
  background: var(--gold-500);
}

.site-sponsors-strip .sponsors {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  padding: 12px 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #fff;
}

.site-sponsors-strip .sponsor-item,
.site-sponsors-strip .sponsors .sponsor-item:first-child {
  height: 82px;
  padding: 10px 18px;
  border: 0;
  border-right: 1px solid rgba(15,75,52,.22);
  border-radius: 0;
  background: #fff;
}

.site-sponsors-strip .sponsor-item:last-child {
  border-right: 0;
}

.site-sponsors-strip .sponsor-item::after {
  display: none;
}

.site-sponsors-strip .sponsor-item:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.site-sponsors-strip .sponsors .sponsor-item:first-child img,
.site-sponsors-strip .sponsors .sponsor-item:nth-child(2) img,
.site-sponsors-strip .sponsors .sponsor-item:nth-child(5) img,
.site-sponsors-strip .sponsors .sponsor-item:nth-child(6) img,
.site-sponsors-strip .sponsor-item img {
  max-width: 90%;
  max-height: 60px;
}

.site-sponsors-strip + .footer {
  margin-top: 0;
}

@media (max-width: 760px) {
  .site-sponsors-strip {
    padding: 26px 0 30px;
  }

  .site-sponsors-strip .section-title {
    font-size: 22px;
  }

  .site-sponsors-strip .sponsors {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-sponsors-strip .sponsor-item {
    border-bottom: 1px solid rgba(15,75,52,.18);
  }
}

@media (min-width: 981px) and (max-width: 1500px) {
  .header-inner {
    gap: 18px;
  }

  .nav a {
    gap: 5px;
    padding-right: 7px;
    padding-left: 7px;
    font-size: 10.5px;
  }

  .nav a::after {
    right: 7px;
    left: 7px;
  }

  .nav-icon {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }
}

/* Contenidos administrables de portada */
.liga-home .sponsors,.site-sponsors-strip .sponsors{grid-template-columns:repeat(var(--sponsor-columns,6),minmax(0,1fr))}
.liga-home .sponsor-item img,.site-sponsors-strip .sponsor-item img{width:auto;height:auto;max-width:90%;max-height:60px;object-fit:contain}
.liga-home .event-slider,.liga-home .event-slider-stage{aspect-ratio:1146/1600;height:auto;min-height:0}
.liga-home .event-slide img{object-fit:cover;background:#071d16}
.liga-home .event-slider:has(.event-slide:only-child) .event-slider-arrow{display:none}
.floating-sponsor{display:flex!important;right:clamp(8px,1.4vw,18px);bottom:clamp(10px,2vw,22px);width:clamp(58px,6vw,82px);height:clamp(58px,6vw,82px);max-width:calc(100vw - 16px);max-height:calc(100vh - 20px)}
.floating-sponsor img{width:auto;max-width:100%;max-height:100%;object-fit:contain}
@media(max-width:980px){.liga-home .sponsors,.site-sponsors-strip .sponsors{grid-template-columns:repeat(auto-fit,minmax(150px,1fr))}}
@media(max-width:600px){.liga-home .sponsors,.site-sponsors-strip .sponsors{grid-template-columns:repeat(2,minmax(0,1fr))}.floating-sponsor{right:8px;bottom:10px;width:58px;height:58px;padding:6px}}

/* Torneos municipales */
.league-page-municipal {
  background: #fff;
}

.league-page-municipal .league-content {
  --municipal-inline: clamp(32px, 6vw, 96px);
  width: 100%;
  max-width: none;
  padding: 14px var(--municipal-inline) 28px;
}

.league-page-municipal .league-tournament-grid {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 48px;
}

.league-page-municipal .league-tournament-grid::before {
  position: absolute;
  top: 17px;
  right: 0;
  left: 0;
  height: 12px;
  background:
    radial-gradient(circle at left center, #fff 0 4px, var(--gold-500) 4.5px 6px, transparent 6.5px),
    radial-gradient(circle at right center, #fff 0 4px, var(--gold-500) 4.5px 6px, transparent 6.5px),
    linear-gradient(var(--gold-500), var(--gold-500)) center / 100% 1px no-repeat;
  content: "";
}

.league-page-municipal .league-tournament-card {
  position: relative;
  min-height: 430px;
  padding: 10px 12px 18px;
  border: 1px solid rgba(0, 90, 66, .72);
  border-top: 1px solid var(--green-700);
  border-radius: 6px;
  background: #fff;
  box-shadow: none;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.league-page-municipal .league-tournament-card:hover {
  border-color: var(--green-700);
  box-shadow: 0 14px 30px rgba(0, 70, 51, .14);
  transform: translateY(-5px);
}

.league-page-municipal .league-tournament-marker {
  position: absolute;
  top: -51px;
  left: 50%;
  display: grid;
  width: 66px;
  height: 40px;
  background: #fff;
  place-items: center;
  transform: translateX(-50%);
}

.league-page-municipal .league-tournament-marker i {
  display: block;
  width: 36px;
  height: 36px;
  background: var(--green-700);
  -webkit-mask: url("../img/liga/institucional/pelota.png") center / contain no-repeat;
  mask: url("../img/liga/institucional/pelota.png") center / contain no-repeat;
  transition: background-color .25s ease, transform .25s ease;
}

.league-page-municipal .league-tournament-card:hover .league-tournament-marker i {
  background: var(--gold-500);
  transform: rotate(12deg) scale(1.08);
}

.league-page-municipal .league-tournament-image {
  min-height: 0;
  border-radius: 2px;
  clip-path: inset(0 round 2px);
  transition: filter .3s ease, transform .35s ease;
}

.league-page-municipal .league-tournament-card:hover .league-tournament-image {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.025);
}

.league-page-municipal .league-tournament-card h3 {
  margin: 12px 4px 14px;
  font-size: clamp(25px, 2.2vw, 31px);
  letter-spacing: -.035em;
  transition: color .25s ease;
}

.league-page-municipal .league-tournament-card:hover h3 {
  color: var(--green-700);
}

.league-page-municipal .league-tournament-card > div {
  margin: 0 4px;
}

.league-page-municipal .league-tournament-card div + div {
  margin-top: 9px;
  padding-top: 9px;
  border-top: 1px solid rgba(0, 90, 66, .72);
}

.league-page-municipal .league-tournament-card strong {
  font-size: 12px;
  letter-spacing: .055em;
}

.league-page-municipal .league-tournament-card p {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.45;
}

.league-page-municipal .league-document-cta {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 78px;
  margin-top: 18px;
  padding: 14px 26px;
  align-items: center;
  gap: 22px;
  color: #fff;
}

.league-page-municipal .league-document-cta::before {
  position: absolute;
  top: 0;
  right: calc(-1 * var(--municipal-inline));
  bottom: 0;
  left: calc(-1 * var(--municipal-inline));
  background:
    linear-gradient(90deg, rgba(0, 77, 57, .96), rgba(0, 54, 41, .98));
  content: "";
}

.league-page-municipal .league-document-cta::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 58%, rgba(255, 255, 255, .08) 58% 58.15%, transparent 58.15%),
    linear-gradient(0deg, transparent 68%, rgba(255, 255, 255, .07) 68% 69%, transparent 69%);
  content: "";
  pointer-events: none;
}

.league-page-municipal .league-document-number,
.league-page-municipal .league-document-copy,
.league-page-municipal .league-document-cta .btn {
  position: relative;
  z-index: 1;
}

.league-page-municipal .league-document-number {
  display: grid;
  min-width: 58px;
  min-height: 46px;
  padding-right: 22px;
  border-right: 2px solid var(--gold-500);
  place-items: center;
}

.league-page-municipal .league-document-diamond {
  display: block;
  width: 22px;
  height: 22px;
  background: var(--gold-500);
  transform: rotate(45deg);
}

.league-page-municipal .league-document-copy .league-card-kicker {
  margin-bottom: 2px;
  color: var(--gold-500);
  font-size: 11px;
}

.league-page-municipal .league-document-cta h2 {
  color: #fff;
  font-size: clamp(20px, 2.1vw, 27px);
  letter-spacing: -.025em;
}

.league-page-municipal .league-document-cta .btn.primary {
  min-width: 190px;
  min-height: 42px;
  border: 2px solid var(--gold-500);
  border-radius: 7px;
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.league-page-municipal .league-document-cta .btn.primary:hover {
  background: var(--gold-500);
  color: var(--green-950);
}

.league-page-municipal .league-document-cta .btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (prefers-reduced-motion: reduce) {
  .league-page-municipal .league-tournament-card,
  .league-page-municipal .league-tournament-marker i,
  .league-page-municipal .league-tournament-image,
  .league-page-municipal .league-tournament-card h3 {
    transition: none;
  }

  .league-page-municipal .league-tournament-card:hover,
  .league-page-municipal .league-tournament-card:hover .league-tournament-marker i,
  .league-page-municipal .league-tournament-card:hover .league-tournament-image {
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-top .nav {
    left: 0;
    right: 0;
    top: 114px;
    padding: 0;
    border: 0;
    border-top: 1px solid rgba(15, 75, 52, .14);
    border-bottom: 3px solid var(--green-700);
    border-radius: 0;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 16px 32px rgba(0, 39, 28, .16);
  }

  .site-top .nav > a,
  .site-top .nav-dropdown,
  .site-top .nav-dropdown > .nav-dropdown-link {
    border-radius: 0;
  }

  .site-top .nav > a,
  .site-top .nav-dropdown {
    min-height: 52px;
    border-bottom: 1px solid rgba(15, 75, 52, .12);
  }

  .site-top .nav > a,
  .site-top .nav-dropdown > .nav-dropdown-link {
    padding-right: 20px;
    padding-left: 20px;
  }

  .site-top .nav > a:hover,
  .site-top .nav > a.active,
  .site-top .nav-dropdown > .nav-dropdown-link:hover,
  .site-top .nav-dropdown > .nav-dropdown-link.active {
    background: linear-gradient(90deg, rgba(8, 115, 63, .12), rgba(8, 115, 63, .03));
  }

  .site-top .nav a::after {
    left: 20px;
    bottom: 0;
    width: 48px;
    border-radius: 0;
  }

  .site-top .nav-dropdown-toggle {
    height: 52px;
    border-left: 1px solid rgba(15, 75, 52, .12);
    border-radius: 0;
  }

  .site-top .nav-submenu {
    margin: 0;
    padding: 0 20px;
    border-radius: 0;
    background: #f1f7f3;
  }

  .site-top .nav .nav-submenu a {
    border-radius: 0;
  }

  .league-page-municipal .league-content {
    --municipal-inline: 26px;
    padding: 52px 26px 28px;
  }

  .league-page-municipal .league-tournament-grid {
    grid-template-columns: 1fr;
    gap: 54px;
    padding-top: 42px;
  }

  .league-page-municipal .league-tournament-grid::before {
    display: none;
  }

  .league-page-municipal .league-tournament-card:first-child {
    grid-row: auto;
  }

  .league-page-municipal .league-tournament-marker {
    top: -42px;
  }

  .league-page-municipal .league-document-cta {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .league-page-municipal .league-document-cta .btn.primary {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .site-top .nav {
    position: fixed;
    top: 136px;
    bottom: auto;
    z-index: 95;
    padding-top: 41px;
    max-height: calc(100dvh - 136px);
    background: #fff;
  }
}

@media (max-width: 520px) {
  .league-page-municipal .league-content {
    padding-right: 26px;
    padding-left: 26px;
  }

  .league-page-municipal .league-tournament-card {
    min-height: 0;
    padding: 9px 10px 16px;
  }

  .league-page-municipal .league-document-cta {
    padding: 18px;
    gap: 14px;
  }

  .league-page-municipal .league-document-number {
    padding-right: 14px;
  }
}
