﻿@import url("fonts.css");

:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --text: #1a2744;
  --text-muted: #5a6b85;
  --accent: #0f766e;
  --accent-hover: #0d5c56;
  --accent-soft: #ccfbf1;
  --border: #d9e3f0;
  --success: #198754;
  --footer-bg: #0f1729;
  --footer-text: #c8d4e8;
  --shadow: 0 8px 24px rgba(15, 39, 68, 0.08);
  --radius: 12px;
  --header-h: 72px;
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  padding-bottom: env(safe-area-inset-bottom);
}

body.cookie-banner-visible-k9xm {
  padding-bottom: calc(5.5rem + env(safe-area-inset-bottom));
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.skip-link-k9xm {
  position: absolute;
  left: -9999px;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #fff;
}

.skip-link-k9xm:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.container-k9xm {
  width: min(1160px, 100% - 2rem);
  margin-inline: auto;
}

/* Header */
.site-header-k9xm {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.header-inner-k9xm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* width: 100%; */
}

.logo-k9xm {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  text-decoration: none;
}

.logo-k9xm:hover {
  text-decoration: none;
  color: var(--accent);
}

.logo-img-k9xm {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-desktop-k9xm {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-desktop-k9xm a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
}

.nav-desktop-k9xm a:hover,
.nav-desktop-k9xm a[aria-current="page"] {
  color: var(--accent);
}

.btn-menu-k9xm {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  padding: 0;
}

.btn-menu-k9xm svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 900px) {
  .nav-desktop-k9xm {
    display: none;
  }

  .btn-menu-k9xm {
    display: flex;
  }
}

/* Mobile drawer */
.nav-overlay-k9xm {
  position: fixed;
  inset: 0;
  background: rgba(15, 39, 68, 0.45);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition),
    visibility var(--transition);
  z-index: 200;
}

.nav-overlay-k9xm.is-open-k9xm {
  opacity: 1;
  visibility: visible;
}

.nav-drawer-k9xm {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--surface);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.25rem;
}

.nav-drawer-k9xm.is-open-k9xm {
  transform: translateX(0);
}

.drawer-head-k9xm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.drawer-close-k9xm {
  width: 44px;
  height: 44px;
  border: none;
  background: var(--bg);
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text);
}

.nav-drawer-k9xm nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-drawer-k9xm a {
  padding: 0.85rem 0.75rem;
  border-radius: 8px;
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
}

.nav-drawer-k9xm a:hover,
.nav-drawer-k9xm a[aria-current="page"] {
  background: var(--accent-soft);
  color: var(--accent);
}

/* Hero */
.hero-k9xm {
  position: relative;
  min-height: min(70vh, 520px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(105deg, #ecfdf8 0%, #f0fdfa 40%, #e6fffa 100%);
}

.hero-bg-k9xm {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.hero-bg-k9xm::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0.6;
}

.hero-inner-k9xm {
  position: relative;
  z-index: 1;
  padding: 3rem 0 4rem;
}

.hero-k9xm h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  margin: 0 0 1rem;
  max-width: 18ch;
  line-height: 1.15;
}

.hero-k9xm p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 42ch;
  margin: 0 0 1.75rem;
}

.btn-k9xm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    transform 0.15s ease,
    box-shadow var(--transition);
}

.btn-primary-k9xm {
  background: var(--accent);
  color: #fff;
}

.btn-primary-k9xm:hover:not(:disabled) {
  background: var(--accent-hover);
}

.btn-primary-k9xm:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.btn-secondary-k9xm {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary-k9xm:hover {
  background: var(--bg);
}

.btn-lg-k9xm {
  padding: 1rem 1.75rem;
  font-size: 1rem;
  width: 100%;
}

/* Section titles */
.section-k9xm {
  padding: 3.5rem 0;
}

.section-title-k9xm {
  font-size: 1.65rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.section-lead-k9xm {
  color: var(--text-muted);
  margin: 0 0 2rem;
  max-width: 60ch;
}

/* Benefits */
.benefits-grid-k9xm {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

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

.benefit-card-k9xm {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.benefit-icon-k9xm {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.benefit-card-k9xm h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.benefit-card-k9xm p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Play zone */
.play-zone-k9xm {
  background: linear-gradient(180deg, var(--bg) 0%, #eef3f9 100%);
}

.play-layout-k9xm {
  display: grid;
  grid-template-columns: 1fr min(360px, 100%);
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 992px) {
  .play-layout-k9xm {
    grid-template-columns: 1fr;
  }
}

.budget-bar-k9xm {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.budget-bar-k9xm strong {
  color: var(--accent);
  font-size: 1.1rem;
}

.players-grid-wrap-k9xm {
  position: relative;
}

.players-grid-k9xm {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

@media (max-width: 1100px) {
  .players-grid-k9xm {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .players-grid-k9xm {
    grid-template-columns: repeat(2, 1fr);
  }
}

.player-card-k9xm {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  min-height: 268px;
  box-shadow: 0 2px 12px rgba(15, 39, 68, 0.06);
  transition:
    box-shadow var(--transition),
    transform 0.2s ease;
}

.player-card-body-k9xm {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 0;
}

.player-card-k9xm.is-hidden-mobile-k9xm {
  display: none;
}

@media (min-width: 567px) {
  .player-card-k9xm.is-hidden-mobile-k9xm {
    display: flex;
  }
}

.player-card-k9xm:hover {
  box-shadow: var(--shadow);
}

.player-photo-k9xm {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-soft);
  margin-bottom: 0.65rem;
  transform: scaleX(-1);
}

.player-pos-k9xm {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.player-name-k9xm {
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0 0 0.2rem;
  line-height: 1.25;
}

.player-team-k9xm {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.player-price-k9xm {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0;
}

.btn-add-k9xm {
  margin-top: auto;
  width: 100%;
  padding: 0.45rem 0.75rem;
  font-size: 0.8rem;
  border-radius: 8px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition:
    background var(--transition),
    opacity var(--transition);
}

.btn-add-k9xm:hover:not(:disabled) {
  background: var(--accent-hover);
}

.btn-add-k9xm.is-remove-k9xm {
  background: #6c757d;
}

.btn-add-k9xm:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.show-all-wrap-k9xm {
  display: none;
  margin-top: 1rem;
  text-align: center;
}

@media (max-width: 566px) {
  .show-all-wrap-k9xm.is-visible-k9xm {
    display: block;
  }
}

/* Team panel */
.team-panel-k9xm {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  max-height: min(80vh, 720px);
  display: flex;
  flex-direction: column;
}

.team-head-k9xm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.btn-clear-k9xm {
  font-size: 0.8rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  color: var(--text-muted);
}

.btn-clear-k9xm:hover {
  border-color: #dc3545;
  color: #dc3545;
}

.team-empty-k9xm {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 1.5rem 0.5rem;
}

.team-list-k9xm {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  flex: 1;
  min-height: 120px;
}

.team-item-k9xm {
  display: grid;
  grid-template-columns: 44px 1fr 32px;
  gap: 0.65rem;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  animation: teamIn 0.35s ease;
}

@keyframes teamIn {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.team-item-k9xm:last-child {
  border-bottom: none;
}

.team-item-k9xm img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.team-item-info-k9xm {
  min-width: 0;
}

.team-item-name-k9xm {
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  word-break: break-word;
}

.team-item-meta-k9xm {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.btn-remove-player-k9xm {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--bg);
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--text-muted);
  font-family: inherit;
}

.btn-remove-player-k9xm:hover {
  background: #fde8e8;
  color: #c92a2a;
}

.team-actions-k9xm {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Predictions */
.predictions-grid-k9xm {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .predictions-grid-k9xm {
    grid-template-columns: 1fr;
  }
}

.pred-card-k9xm {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.pred-img-k9xm {
  aspect-ratio: 16 / 9;
  background: #e8f5f3;
  overflow: hidden;
}

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

.pred-body-k9xm {
  padding: 1.25rem;
}

.pred-teams-k9xm {
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 0.75rem;
}

.pred-label-k9xm {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.pred-text-k9xm {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Newsletter */
.newsletter-block-k9xm {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  max-width: 560px;
  margin-inline: auto;
}

.newsletter-block-k9xm form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.form-row-k9xm {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-row-k9xm label {
  font-size: 0.85rem;
  font-weight: 600;
}

.form-row-k9xm input,
.form-row-k9xm textarea {
  font-family: inherit;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
}

.form-row-k9xm input:focus,
.form-row-k9xm textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px var(--accent-soft);
}

/* Footer */
.site-footer-k9xm {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 3rem 0 2rem;
  margin-top: 2rem;
}

.site-footer-k9xm a {
  color: #a8c4f0;
}

.site-footer-k9xm a:hover {
  color: #fff;
}

.footer-grid-k9xm {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.footer-brand-k9xm {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-nav-k9xm {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav-k9xm li {
  margin-bottom: 0.5rem;
}

.footer-legal-k9xm {
  font-size: 0.85rem;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  color: #8fa3c4;
}

/* Cookie banner */
.cookie-banner-k9xm {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(15, 39, 68, 0.12);
  padding: 1rem 1.25rem;
  transform: translateY(100%);
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
  opacity: 0;
  pointer-events: none;
}

.cookie-banner-k9xm.is-visible-k9xm {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-inner-k9xm {
  width: min(1160px, 100%);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-text-k9xm {
  flex: 1;
  min-width: min(100%, 280px);
  font-size: 0.9rem;
  color: var(--text);
  margin: 0;
}

.cookie-actions-k9xm {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Modals */
.modal-overlay-k9xm {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 41, 0.55);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition),
    visibility var(--transition);
}

.modal-overlay-k9xm.is-open-k9xm {
  opacity: 1;
  visibility: visible;
}

.modal-k9xm {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  transform: scale(0.95);
  transition: transform var(--transition);
}

.modal-overlay-k9xm.is-open-k9xm .modal-k9xm {
  transform: scale(1);
}

.modal-k9xm h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

.modal-k9xm p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.modal-k9xm .btn-k9xm {
  width: 100%;
}

/* Legal pages */
.legal-page-k9xm {
  padding: 2rem 0 4rem;
}

.legal-page-k9xm h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.legal-page-k9xm h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
}

.legal-page-k9xm p,
.legal-page-k9xm li {
  color: var(--text-muted);
}

.legal-page-k9xm ul {
  padding-left: 1.25rem;
}

.map-embed-k9xm {
  width: 100%;
  height: min(420px, 60vh);
  border: 0;
  border-radius: var(--radius);
  margin: 1.5rem 0;
  box-shadow: var(--shadow);
}

/* News page */
.article-list-k9xm {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.article-card-k9xm {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.article-card-k9xm h2 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.article-meta-k9xm {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.article-card-k9xm p {
  margin: 0;
  color: var(--text-muted);
}

/* Cinta de datos / bloque socios */
.ribbon-k9xm {
  background: var(--surface);
  border-block: 1px solid var(--border);
  padding: 2.25rem 0;
  box-shadow: 0 4px 20px rgba(15, 39, 68, 0.04);
}

.section-k9xm-boletin .section-title-k9xm,
.section-k9xm-boletin .section-lead-k9xm {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.ribbon-inner-k9xm {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

@media (max-width: 640px) {
  .ribbon-inner-k9xm {
    grid-template-columns: 1fr;
  }
}

.stat-k9xm-num {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 0.25rem;
}

.stat-k9xm-label {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.visually-hidden-k9xm {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.team-head-k9xm h2 {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 700;
}

.cta-socios-k9xm {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.card-compare {
  max-width: 200px;
  display: block;
  width: 100%;
}

.cta-socios-card-k9xm {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  max-width: 720px;
  margin-inline: auto;
}

.cta-socios-card-k9xm p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

/* Bloques de datos en portada */
.index-data-k9xm {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}

.index-data-k9xm h3 {
  font-size: 1.05rem;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.index-data-k9xm p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.mini-table-k9xm {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin: 0;
}

.mini-table-k9xm th,
.mini-table-k9xm td {
  border: 1px solid var(--border);
  padding: 0.45rem 0.55rem;
  text-align: left;
}

.mini-table-k9xm th {
  background: var(--bg);
  font-weight: 600;
}

.compare-two-k9xm {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem 1rem;
  align-items: start;
  margin-top: 0.75rem;
}

@media (max-width: 640px) {
  .compare-two-k9xm {
    grid-template-columns: 1fr;
  }
}

.compare-vs-k9xm {
  font-weight: 700;
  color: var(--accent);
  align-self: center;
  padding: 0.25rem;
}

.news-chips-k9xm {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.news-chip-k9xm {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
}
