/* ============================================================
   PEEKR · officiell, redaktionell design
   Ljust innehåll, mörkblå header/sidfot, hårlinjer istället
   för boxar, en enda återhållsam accentfärg.
   ============================================================ */

:root {
  --navy:      #0e1b2c;   /* header & sidfot */
  --navy-deep: #0a1421;   /* toppstrip */
  --ink:       #16202b;   /* rubriker, primär text */
  --body:      #333d49;   /* brödtext */
  --muted:     #66707c;   /* sekundär text */
  --faint:     #98a0aa;   /* metadata */
  --line:      #e4e7ea;   /* hårlinjer */
  --line-dark: #16202b;   /* tunga linjer (tabellhuvud) */
  --bg:        #ffffff;
  --bg-gray:   #f5f6f7;   /* alternerande band */
  --accent:    #0b5cad;   /* länkar & detaljer */
  --font: 'Inter', -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container { max-width: 1440px; margin: 0 auto; padding: 0 32px; }
.ta-l { text-align: left; }

/* Etikett i kapitäler — används genomgående */
.label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
}

/* Textlänk med pil */
.more {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}
.more:hover { text-decoration: underline; color: var(--accent); }

/* ============ Header ============ */
.header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 36px;
  height: 68px;
}

.logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo__flag { display: block; }
.logo__word { display: flex; flex-direction: column; line-height: 1.25; }
.logo__name {
  font-weight: 800;
  font-size: 16.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
.logo__season {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.nav { display: flex; height: 100%; margin-left: auto; }
.nav__link {
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 3px solid transparent;
  transition: color .15s;
}
.nav__link:hover { color: #fff; }
.nav__link.is-active { color: #fff; border-bottom-color: #fff; }

/* ============ Steam-inloggning ============ */
.auth-area { display: flex; align-items: center; flex-shrink: 0; }

/* ============ Språkväxlare ============ */
.lang-switch {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}
.lang-switch button {
  font-family: var(--font);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  padding: 6px 10px;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.lang-switch button + button { border-left: 1px solid rgba(255, 255, 255, 0.18); }
.lang-switch button:hover { color: #fff; }
.lang-switch button.is-active { background: rgba(255, 255, 255, 0.14); color: #fff; }

.steam-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #3c3b39;
  border: 1px solid #2a2926;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 6px 14px 6px 10px;
  border-radius: 3px;
  transition: background .15s, box-shadow .15s;
}
.steam-btn:hover {
  background: #48473f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 0 0 1px #66c0f4;
}
.steam-btn svg { flex-shrink: 0; }
.steam-btn__text { display: flex; flex-direction: column; line-height: 1.25; }
.steam-btn__pre {
  font-size: 10px;
  font-weight: 500;
  color: #b8b6b4;
  letter-spacing: 0.01em;
}
.steam-btn__brand {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.03em;
}

.user-badge { position: relative; }
.user-badge__trigger {
  display: flex;
  align-items: center;
  gap: 9px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px 4px 4px;
  border-radius: 4px;
  font-family: var(--font);
}
.user-badge__trigger:hover { background: rgba(255, 255, 255, 0.08); }
.user-badge__avatar {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: #2a3f5a;
  object-fit: cover;
  flex-shrink: 0;
}
.user-badge__name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.user-badge__menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  min-width: 190px;
  overflow: hidden;
  z-index: 50;
}
.user-badge.is-open .user-badge__menu { display: block; }
.user-badge__menu-head {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.user-badge__menu a {
  display: block;
  padding: 11px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}
.user-badge__menu a:hover { background: var(--bg-gray); color: var(--ink); }

.steamlogin-notice {
  background: #fdecec;
  border: 1px solid #f3b7b7;
  color: #7a1f1f;
  font-size: 13px;
  padding: 10px 0;
  text-align: center;
}
.steamlogin-notice .container { display: flex; justify-content: center; gap: 10px; align-items: center; }
.steamlogin-notice button {
  background: none;
  border: none;
  color: #7a1f1f;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  font-family: var(--font);
  font-size: 13px;
}

/* ============ Vyer & sektioner ============ */
main { min-height: 60vh; }
.view { display: none; }
.view.is-visible { display: block; }

.section { padding: 44px 0; }
.band { background: var(--bg-gray); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.section-head h2 {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.section-head .label { display: block; margin-bottom: 6px; }

.page-head { padding: 44px 0 10px; }
.page-head h1 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.page-head p { color: var(--muted); margin: 10px 0 8px; max-width: 640px; font-size: 14.5px; }

/* ============ Rankningsband (hem) ============ */
.band-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: start;
  padding: 46px 0;
}
.band-intro h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 8px;
}
.band-intro p { font-size: 14px; color: var(--muted); margin: 12px 0 16px; }

.ranklist { list-style: none; }
.rankrow {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.rankrow:first-child { padding-top: 0; }
.rankrow:last-child { border-bottom: none; }
.rankrow:hover .rankrow__nick { color: var(--accent); }
.rankrow__pos {
  font-size: 22px;
  font-weight: 700;
  color: var(--faint);
  min-width: 30px;
  font-variant-numeric: tabular-nums;
  text-align: center;
}
.rankrow__nick { font-size: 16px; font-weight: 700; color: var(--ink); line-height: 1.3; transition: color .15s; }
.rankrow__sub { font-size: 12.5px; color: var(--muted); }
.rankrow__rating {
  margin-left: auto;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.rankrow__rating span { display: block; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--faint); text-align: right; }

/* ============ Spelarfoton ============ */
.p-ava {
  position: relative;
  flex-shrink: 0;
  background: #e8ebee;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  vertical-align: middle;
  border-radius: 3px;
}
.p-ava i {
  font-style: normal;
  font-weight: 700;
  font-size: 0.8em;
  color: var(--faint);
  letter-spacing: 0.02em;
}
.p-ava img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

/* ============ Tabeller ============ */
.tablewrap { overflow-x: auto; }

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.data-table thead th {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-align: center;
  padding: 0 14px 9px;
  border-bottom: 2px solid var(--line-dark);
  white-space: nowrap;
}
.data-table thead th.ta-l { text-align: left; }
.data-table thead th:first-child { padding-left: 0; }
.data-table thead th:last-child { padding-right: 0; }
.data-table tbody td {
  padding: 13px 14px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  color: var(--body);
  font-variant-numeric: tabular-nums;
}
.data-table tbody td:first-child { padding-left: 0; }
.data-table tbody td:last-child { padding-right: 0; }
.data-table tbody td.ta-l { text-align: left; }
.data-table tbody tr { transition: background .12s; }
.data-table tbody tr:hover { background: var(--bg-gray); }
.band .data-table tbody tr:hover { background: #eceef0; }

.data-table .strong { font-weight: 700; color: var(--ink); }
.data-table .dim { color: var(--faint); font-size: 13px; }
.data-table .score { font-weight: 700; color: var(--ink); white-space: nowrap; }
.data-table .player { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink); }
.data-table .player small { display: block; font-weight: 400; font-size: 12.5px; color: var(--muted); line-height: 1.35; }


/* ============ Flikar (filter) ============ */
.tabs {
  display: flex;
  gap: 26px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tabs button {
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 8px 0 10px;
  margin-bottom: -1px;
  cursor: pointer;
  white-space: nowrap;
  transition: color .15s;
}
.tabs button:hover { color: var(--ink); }
.tabs button.is-active { color: var(--ink); border-bottom-color: var(--ink); }

/* ============ Nyhetslistor ============ */
.newsgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 40px;
}
.newscard {
  display: block;
  padding: 18px 0 20px;
  border-top: 1px solid var(--line);
}
.newsgrid .newscard:nth-child(-n+3) { border-top: none; }
.newscard:hover .newscard__title { color: var(--accent); }
.newscard__tag { color: var(--accent); }
.newscard__title {
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 8px;
  transition: color .15s;
}
.newscard__excerpt {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.newscard__meta { font-size: 11.5px; color: var(--faint); margin-top: 10px; }

/* Nyheter helsida */
.newslist { max-width: 720px; }
.newsitem {
  display: block;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.newsitem:first-child { padding-top: 10px; }
.newsitem:hover .newsitem__title { color: var(--accent); }
.newsitem__tag { color: var(--accent); }
.newsitem__title {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 8px;
  transition: color .15s;
}
.newsitem__excerpt { font-size: 14.5px; color: var(--body); margin-top: 8px; max-width: 640px; }
.newsitem__meta { font-size: 12px; color: var(--faint); margin-top: 10px; }

/* ============ I fokus ============ */
.focuslist { }
.focusitem {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.focusitem:last-child { border-bottom: none; }
.focusitem .p-ava { width: 44px; height: 44px; }
.focusitem__nick { font-size: 15px; font-weight: 700; color: var(--ink); }
.focusitem__nick span { font-weight: 500; color: var(--muted); font-size: 13px; }
.focusitem__fact { font-size: 13.5px; color: var(--muted); margin-top: 2px; max-width: 560px; }

/* ============ Katalog ============ */
.dirteam { padding: 22px 0 6px; border-top: 1px solid var(--line); }
.dirteam:first-child { border-top: none; padding-top: 4px; }
.dirteam__head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 6px; }
.dirteam__name { font-size: 15px; font-weight: 800; letter-spacing: -0.01em; color: var(--ink); }
.dirteam__city { font-size: 12px; color: var(--faint); }
.dirteam__players {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0 28px;
}
.dirplayer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}
.dirplayer .p-ava { width: 34px; height: 34px; }
.dirplayer:hover .dirplayer__nick { color: var(--accent); }
.dirplayer__nick { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.25; transition: color .15s; }
.dirplayer__info { font-size: 11.5px; color: var(--faint); }

/* ============ Textblock (Om oss m.m.) ============ */
.prose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 56px;
  padding-bottom: 20px;
}
.prose-block { padding: 22px 0; border-top: 1px solid var(--line); }
.prose-block h3 { font-size: 16px; font-weight: 800; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 8px; }
.prose-block p { font-size: 14px; color: var(--body); }

.dateline { display: flex; gap: 18px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.dateline:last-child { border-bottom: none; }
.dateline__date { min-width: 130px; font-weight: 600; color: var(--ink); font-size: 13px; font-variant-numeric: tabular-nums; }

.footnote { font-size: 12.5px; color: var(--faint); margin-top: 14px; max-width: 640px; }

.empty-note { padding: 30px 0; color: var(--faint); font-size: 14px; }

/* ============ Sök ============ */
.search {
  display: block;
  width: 100%;
  max-width: 460px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  background: none;
  border: none;
  border-bottom: 2px solid var(--line-dark);
  padding: 8px 0 10px;
  margin: 6px 0 26px;
  outline: none;
}
.search::placeholder { color: var(--faint); }

/* ============ Profilsida ============ */
.profile-back { padding: 28px 0 0; }

.profile-head {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 26px 0 30px;
  border-bottom: 1px solid var(--line);
}
.profile-head .p-ava { border-radius: 4px; }
.profile-head .p-ava i { font-size: 34px; }
.profile-head__nick {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
  margin-top: 6px;
}
.profile-head__sub { font-size: 15px; color: var(--muted); margin-top: 6px; }

.social-links { display: flex; gap: 8px; margin-top: 12px; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: var(--bg-gray);
  color: var(--muted);
  transition: background .15s, color .15s;
}
.social-link:hover { background: var(--ink); color: #fff; }
.social-link svg { width: 15px; height: 15px; }
.profile-head__rank {
  margin-left: auto;
  text-align: right;
}
.profile-head__rank strong {
  display: block;
  font-size: 34px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.profile-head__rank span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--faint);
}

.profile-bio {
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  max-width: 680px;
  padding: 26px 0 4px;
}

/* Fakta */
.facts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 48px;
  max-width: 860px;
  border-top: 2px solid var(--line-dark);
}
.fact {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.fact__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--faint);
}
.fact__value { font-size: 15px; font-weight: 600; color: var(--ink); margin-top: 2px; }
.fact__value.is-missing { color: var(--faint); font-weight: 400; font-style: italic; }

/* Statistikblock */
.statgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 620px;
  border-top: 2px solid var(--line-dark);
  border-bottom: 1px solid var(--line);
}
.stat { padding: 18px 0 16px; }
.stat strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.stat span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--faint);
}

/* Crosshairkod */
.crosshair-code {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 620px;
  padding: 14px 16px;
  margin-top: 14px;
  background: var(--bg-gray);
  border-radius: 4px;
}
.crosshair-code__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--faint);
  flex-shrink: 0;
}
.crosshair-code code {
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.01em;
  overflow-x: auto;
}

/* Utrustning */
.gearlist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  max-width: 620px;
  margin-top: 18px;
}
.gearlist__item {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}

/* ============ Sidfot ============ */
.footer { background: var(--navy); margin-top: 64px; color: rgba(255, 255, 255, 0.65); }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 46px 24px;
}
.footer__col--brand p { font-size: 13px; margin-top: 14px; max-width: 300px; color: rgba(255, 255, 255, 0.5); }
.footer__col h3 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
}
.footer__col a { display: block; font-size: 13.5px; color: rgba(255, 255, 255, 0.72); padding: 3.5px 0; }
.footer__col a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 16px 0;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.38);
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}

/* ============ Responsivt ============ */
@media (max-width: 1024px) {
  .band-grid { grid-template-columns: 1fr; gap: 24px; padding: 36px 0; }
  .newsgrid { grid-template-columns: 1fr 1fr; }
  .dirteam__players { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) and (min-width: 761px) {
  .facts { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .container { padding: 0 18px; }
  .section { padding: 28px 0; }
  .page-head { padding: 26px 0 8px; }
  .band-grid { padding: 30px 0; gap: 20px; }

  /* Header i två rader: logga + språk + inloggning överst,
     navigering på egen scrollbar rad under. */
  .header__inner {
    flex-wrap: wrap;
    height: auto;
    padding: 12px 18px 0;
    gap: 10px 14px;
  }
  .logo__word .logo__season { display: none; }
  .lang-switch { margin-left: auto; }
  .lang-switch button { padding: 5px 9px; font-size: 11px; }
  .steam-btn__text { display: none; }
  .steam-btn { padding: 7px; }
  .user-badge__name { display: none; }
  .nav {
    order: 10;
    flex: 1 1 100%;
    margin-left: 0;
    height: 42px;
    overflow-x: auto;
    scrollbar-width: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .nav::-webkit-scrollbar { display: none; }
  .nav__link { padding: 0 12px; font-size: 13px; white-space: nowrap; }
  .nav__link:first-child { padding-left: 0; }

  .profile-head { flex-wrap: wrap; gap: 18px; }
  .profile-head .p-ava { width: 92px !important; height: 92px !important; }
  .profile-head__nick { font-size: 30px; }
  .profile-head__rank { margin-left: 0; text-align: left; width: 100%; }
  .profile-bio { font-size: 15px; }
  .facts { grid-template-columns: 1fr; }
  .statgrid { grid-template-columns: repeat(2, 1fr); }
  .gearlist { grid-template-columns: 1fr; }
  .crosshair-code { flex-wrap: wrap; }
  .crosshair-code code { font-size: 12px; }
  .social-links { flex-wrap: wrap; }

  .page-head h1 { font-size: 27px; }
  .band-intro h2, .section-head h2 { font-size: 19px; }
  .section-head { flex-wrap: wrap; gap: 8px; }
  .rankrow { gap: 12px; }
  .rankrow__pos { min-width: 22px; font-size: 18px; }
  .rankrow__nick { font-size: 15px; }
  .rankrow__sub { font-size: 12px; }

  .newsgrid { grid-template-columns: 1fr; gap: 0; }
  .newsgrid .newscard:nth-child(-n+3) { border-top: 1px solid var(--line); }
  .newsgrid .newscard:first-child { border-top: none; }
  .prose-grid { grid-template-columns: 1fr; gap: 0; }
  .dirteam__players { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; padding: 32px 18px; }
  .footer__col--brand { grid-column: 1 / -1; }
  .footer__bottom .container { flex-direction: column; gap: 4px; }

  .data-table { font-size: 13px; }
  .data-table thead th, .data-table tbody td { padding-left: 8px; padding-right: 8px; }
  .data-table .player { gap: 8px; }
  .data-table .player .p-ava { width: 32px !important; height: 32px !important; }
  .hide-mobile { display: none; }
}
