/* =========================
   MOTOGP CALENDAR – CLEAN
========================= */

/* WordPress p tag fix (sadece bu sayfa) */
.motocal-grid > p {
  display: contents !important;
  margin: 0 !important;
  padding: 0 !important;
}
/* Wrapper */
.motocal-wrapper {
  max-width: 1200px;
    margin: 40px auto;
    background: #fff;
    padding: 40px;
    border-radius: 16px; /* istersen */
}

/* Filter */
.motocal-filter {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.motocal-filter button {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid #b11217;
  background: #fff;
  color: #b11217;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
}

.motocal-filter button.active,
.motocal-filter button:hover {
  background: #b11217;
  color: #fff;
}

/* Grid */
.motocal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

/* Card */
.motocal-card {
  background: #fff;
  border: 1.5px solid #ddd;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.motocal-card:hover {
  transform: translateY(-4px);
  border-color: #b11217;
  box-shadow: 0 14px 34px rgba(177,18,23,.18);
}

/* Image */
.motocal-img {
  position: relative;
  height: 210px;
  background-size: cover;
  background-position: center;
}

.motocal-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.08),
    rgba(0,0,0,.28)
  );
}

/* Content */
.motocal-content {
  padding: 20px 18px 18px;
}

/* Title */
.motocal-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.motocal-flag {
  width: 26px;
  height: 18px;
  border-radius: 3px;
}

.gp-name {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
}

/* Badge */
.motocal-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.motocal-upcoming {
  background: #b11217;
  color: #fff;
}

.motocal-past {
  background: #9e9e9e;
  color: #fff;
}

/* Date & Track */
.motocal-date {
  margin: 10px 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: #b11217;
}

.motocal-track {
  font-size: 14px;
  color: #222;
}

/* Times */
.motocal-times {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.motocal-times span {
  font-size: 12px;
  font-weight: 600;
  background: #f4f4f4;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background .2s ease, color .2s ease;
}

.motocal-card:hover .motocal-times span {
  background: #b11217;
  color: #fff;
}

.motocal-card.past .motocal-times span {
  background: #e0e0e0;
  color: #777;
}

/* 🔥 DATA-DATE SİYAH ALANI ZORLA KAPAT */
.motocal-card::before,
.motocal-card::after,
.motocal-img::before,
.motocal-img::after {
  content: none !important;
  display: none !important;
}

/* =========================
   WORLDSBK – FİLTRE BUTONLARI
========================= */

/* Normal durum */
.wsbk-theme .motocal-filter button {
  background: #ffffff;
  color: #0a58ca;
  border: 2px solid #0a58ca;
  font-weight: 700;
  transition: all .2s ease;
}

/* Hover */
.wsbk-theme .motocal-filter button:hover {
  background: #0a58ca;
  color: #ffffff;
}

/* Aktif buton */
.wsbk-theme .motocal-filter button.active {
  background: #0a58ca;
  color: #ffffff;
}
/* =========================
   WORLDSBK – FILTER BUTTONS
========================= */

.wsbk-theme .motocal-filter button {
  background: #ffffff;
  color: #0a58ca;
  border: 2px solid #0a58ca;
  font-weight: 700;
  transition: background .2s ease, color .2s ease;
}

.wsbk-theme .motocal-filter button:hover {
  background: #0a58ca !important;
  color: #ffffff !important;
}

.wsbk-theme .motocal-filter button.active {
  background: #0a58ca;
  color: #ffffff;
}
/* =========================
   WORLDSBK – FINAL HOVER BLUE
========================= */

/* Kart normal (MotoGP gibi) */
.wsbk-theme .motocal-card {
  border: 1.5px solid #ddd;
  box-shadow: none;
  transform: none;
}

/* 🖱️ SADECE HOVER MAVİ */
.wsbk-theme .motocal-card:hover {
  border-color: #0a58ca;
  box-shadow: 0 14px 34px rgba(10, 88, 202, 0.25);
  transform: translateY(-4px);
}

/* Saat kutuları normal */
.wsbk-theme .motocal-times span {
  background: #e7efff;
  color: #0a58ca;
  font-weight: 700;
}

/* Hover olunca saatler koyu mavi */
.wsbk-theme .motocal-card:hover .motocal-times span {
  background: #0a58ca;
  color: #ffffff;
}

/* Eski overlay / pseudo element varsa öldür */
.wsbk-theme .motocal-card::before,
.wsbk-theme .motocal-card::after {
  content: none !important;
}
/* =========================
   MOTOGP – SÜRÜCÜLER GRID
========================= */

.motogp-drivers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Tablet */
@media (max-width: 1024px) {
  .motogp-drivers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobil */
@media (max-width: 640px) {
  .motogp-drivers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Kart */
.motogp-driver-card {
  position: relative;
}

/* Numara Badge */
.motogp-driver-card .driver-number {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #b11217;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  padding: 6px 12px;
  border-radius: 10px;
  line-height: 1;
  z-index: 2;
}

/* Hover – sadece çerçeve */
.motogp-driver-card:hover {
  border-color: #b11217;
}
.motocal-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #fff;
}

.motogp-drivers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
/* =========================
   MOTOGP PUAN DURUMU – PRO
========================= */

/* === TABLO BAŞLIĞI === */
.standings-header {
    display: grid;
    grid-template-columns: 60px 2fr 2fr 100px;
    align-items: center;

    padding: 14px 18px;
    margin-bottom: 8px;

    background: #f7f7f7;
    border-radius: 8px;

    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
}

/* === SATIRLAR === */
.standings-row {
    display: grid;
    grid-template-columns: 60px 2fr 2fr 100px;
    align-items: center;

    padding: 14px 18px;
    border-bottom: 1px solid #ececec;

    font-size: 14px;
    transition: background .2s ease, border-left .2s ease;
}

/* === HOVER === */
.standings-row:hover {
    background: #fff6f6;
    border-left: 3px solid #b11217;
}

/* === SIRA === */
.standings-row .rank {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    text-align: center;
}

/* === SÜRÜCÜ === */
.standings-row .driver {
    display: flex;
    align-items: center;
    gap: 8px;

    font-weight: 600;
    color: #111;
}

.standings-row .driver img {
    width: 20px;
    height: auto;
}

.standings-row .driver strong {
    font-weight: 700;
}

.standings-row .driver em {
    font-style: normal;
    font-size: 12px;
    color: #777;
    margin-left: 4px;
}

/* === TAKIM === */
.standings-row .team {
    font-size: 13px;
    font-weight: 500;
    color: #444;
}

/* === PUAN === */
.standings-row .points {
    text-align: right;
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

/* === PUAN YOKSA === */
.standings-row .points:empty {
    color: #aaa;
}

/* === 1. SIRA (ÇOK HAFİF VURGU) === */
.standings-row:first-of-type {
    border-left: 3px solid #b11217;
    background: #fffafa;
}

.standings-row:first-of-type .rank {
    font-weight: 800;
}

.standings-row:first-of-type .points {
    font-weight: 800;
}

/* === MOBİL === */
@media (max-width: 768px) {

    .standings-header {
        display: none;
    }

    .standings-row {
        grid-template-columns: 40px 1fr;
        row-gap: 6px;
    }

    .standings-row .team,
    .standings-row .points {
        grid-column: 2;
        text-align: left;
    }

    .standings-row .points {
        font-size: 14px;
    }
}

/* =========================
   MOTOGP PUAN DURUMU – TOP 3 (SON)
========================= */

/* ORTAK */
.standings-row.rank-1,
.standings-row.rank-2,
.standings-row.rank-3 {
    border-left-width: 4px;
}

/* 🥇 1. SIRA – AÇIK KIRMIZI */
.standings-row.rank-1 {
    background: linear-gradient(
        90deg,
        rgba(177,18,23,0.08),
        rgba(255,255,255,0)
    );
    border-left-color: #b11217;
}

.standings-row.rank-1 .rank {
    color: #b11217;
    font-weight: 800;
}

.standings-row.rank-1 .points {
    font-weight: 800;
}

/* 🥈 2. SIRA – AÇIK TURUNCU */
.standings-row.rank-2 {
    background: linear-gradient(
        90deg,
        rgba(255,140,0,0.10),
        rgba(255,255,255,0)
    );
    border-left-color: #ff8c00;
}

.standings-row.rank-2 .rank {
    color: #ff8c00;
    font-weight: 700;
}

/* 🥉 3. SIRA – AÇIK SARI / LIME */
.standings-row.rank-3 {
    background: linear-gradient(
        90deg,
        rgba(180,210,60,0.12),
        rgba(255,255,255,0)
    );
    border-left-color: #b4d23c;
}

.standings-row.rank-3 .rank {
    color: #7a8f1f;
    font-weight: 700;
}

.leader-badge {
    margin-left: 6px;
    font-size: 14px;
    line-height: 1;
}
/* =========================
   PUAN TABLOSU HİZALAMA FIX
========================= */

.motogp-standings .standings-header,
.motogp-standings .standings-row {
    display: grid;
    grid-template-columns: 
        40px        /* sıra */
        1.8fr       /* sürücü */
        1.4fr       /* takım */
        70px;       /* puan */
    align-items: center;
}

.motogp-standings .standings-header span,
.motogp-standings .standings-row span {
    display: flex;
    align-items: center;
}

/* sürücü alanı */
.motogp-standings .driver {
    gap: 8px;
    white-space: nowrap;
    overflow: hidden;
}

.motogp-standings .driver-name {
    display: flex;
    gap: 6px;
    align-items: center;
}

/* puan kolonu SABİT */
.motogp-standings .points {
    justify-content: flex-end;
    font-weight: 700;
}

/* başlık hizası */
.motogp-standings .standings-header span:last-child {
    justify-content: flex-end;
}
/* =========================
   STANDINGS – PREMIUM POLISH
========================= */

/* Header iyice sade */
.motogp-standings .standings-header {
    background: transparent;
    padding: 0 10px 6px;
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: .5px;
    color: #999;
}

/* Satırlar = soft kart */
.motogp-standings .standings-row {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 14px;
    padding: 14px 16px;

    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 4px 12px rgba(0,0,0,.04);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

/* Hover – premium yükselme */
.motogp-standings .standings-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(0,0,0,.12);
    border-color: rgba(177,18,23,.25);
}

/* Sıra badge */
.motogp-standings .standings-row .rank {
    width: 36px;
    height: 36px;
    border-radius: 999px;

    background: #f2f2f2;
    color: #333;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    font-weight: 800;
}

/* Sürücü alanı biraz nefes alsın */
.motogp-standings .driver {
    gap: 10px;
}

.motogp-standings .driver-name strong {
    font-weight: 700;
}

.motogp-standings .driver-name em {
    font-size: 12px;
    color: #888;
}

/* Takım soft */
.motogp-standings .team {
    font-size: 13px;
    color: #555;
}

/* Puan güçlü */
.motogp-standings .points {
    font-size: 17px;
    font-weight: 800;
    color: #111;
}

/* =========================
   TOP 3 – SADE PRESTIJ
========================= */

.motogp-standings .standings-row.rank-1 {
    border-color: rgba(177,18,23,.35);
}

.motogp-standings .standings-row.rank-1 .rank {
    background: #b11217;
    color: #fff;
}

.motogp-standings .standings-row.rank-2 .rank {
    background: #ececec;
}

.motogp-standings .standings-row.rank-3 .rank {
    background: #ececec;
}

/* =========================
   MOBIL – TAM CARD STACK
========================= */

@media (max-width: 768px) {

    .motogp-standings .standings-header {
        display: none;
    }

    .motogp-standings .standings-row {
        grid-template-columns: 1fr;
        row-gap: 8px;
    }

    .motogp-standings .rank {
        margin-bottom: 4px;
    }

    .motogp-standings .points {
        justify-content: flex-start;
    }
}
/* LEADER – GRAPHITE */
.motogp-standings .standings-row.rank-1 {
    background: linear-gradient(
        90deg,
        rgba(20,20,20,.08),
        rgba(250,250,250,0)
    );
    border-color: rgba(0,0,0,.25);
}

.motogp-standings .standings-row.rank-1 .rank {
    background: #111;
    color: #fff;
}

/* =========================
   RANK BADGE – SHADOW RESET
========================= */

/* TÜM RANK BADGE'LER */
.motogp-standings .standings-row .rank {
    box-shadow: none !important;   /* 🔥 eski kırmızıyı öldür */
}

/* LEADER için NÖTR, PREMIUM SHADOW */
.motogp-standings .standings-row.rank-1 .rank {
    box-shadow: 0 6px 16px rgba(0,0,0,.25); /* siyah / graphite */
}
/* =========================
   PRO COLOR ACCENTS
========================= */

/* Kartların soluna ince accent line */
.motogp-standings .standings-row {
    position: relative;
    overflow: hidden;
}

.motogp-standings .standings-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14%;
    bottom: 14%;
    width: 3px;
    border-radius: 3px;
    background: rgba(0,0,0,.08);
}

/* Leader için farklı accent */
.motogp-standings .standings-row.rank-1::before {
    background: linear-gradient(
        to bottom,
        #111,
        #555
    );
}

/* Hover’da accent belirginleşsin */
.motogp-standings .standings-row:hover::before {
    background: linear-gradient(
        to bottom,
        #b11217,
        #ff6b6b
    );
}

/* Driver ismi hover’da renk alsın */
.motogp-standings .standings-row:hover .driver-name strong {
    color: #b11217;
}

/* Rank badge hover’da micro glow */
.motogp-standings .standings-row:hover .rank {
    box-shadow: 0 8px 20px rgba(177,18,23,.35);
}
/* =========================
   ULTRA PREMIUM STANDINGS
========================= */

/* Kart zeminini cam gibi yap */
.motogp-standings .standings-row {
    background: linear-gradient(
        180deg,
        #ffffff,
        #f7f7f7
    );
    border: 1px solid rgba(0,0,0,.05);
    box-shadow:
        0 6px 18px rgba(0,0,0,.06),
        inset 0 1px 0 rgba(255,255,255,.7);
}

/* Hover = derinlik (glow yok) */
.motogp-standings .standings-row:hover {
    transform: translateY(-3px);
    box-shadow:
        0 18px 40px rgba(0,0,0,.14),
        inset 0 1px 0 rgba(255,255,255,.9);
}

/* Sol accent çizgi → hairline */
.motogp-standings .standings-row::before {
    width: 2px;
    opacity: .35;
}

/* Leader = carbon panel hissi */
.motogp-standings .standings-row.rank-1 {
    background: linear-gradient(
        180deg,
        #fdfdfd,
        #f1f1f1
    );
    border-color: rgba(0,0,0,.18);
}

/* Rank badge = metal */
.motogp-standings .standings-row .rank {
    background: linear-gradient(
        180deg,
        #f5f5f5,
        #dcdcdc
    );
    color: #111;
    font-weight: 900;
    letter-spacing: .3px;
}

/* Leader badge = brushed steel */
.motogp-standings .standings-row.rank-1 .rank {
    background: linear-gradient(
        180deg,
        #222,
        #111
    );
    color: #fff;
}

/* Driver adı biraz daha editorial */
.motogp-standings .driver-name strong {
    letter-spacing: .2px;
}

/* Puan = net odak */
.motogp-standings .points {
    font-feature-settings: "tnum";
}
/* =========================
   TOP 3 – FINAL COLORS
========================= */

/* 🥇 1. sıra – KIRMIZI (AYNEN) */
.motogp-standings .standings-row.rank-1 .rank {
    background: #b11217;
    color: #ffffff;
}

/* 🥈 2. sıra – PREMIUM MOR */
.motogp-standings .standings-row.rank-2 .rank {
    background: #6f3cc3;   /* koyu, elit mor */
    color: #ffffff;
}

/* 🥉 3. sıra – DERİN TURUNCU */
.motogp-standings .standings-row.rank-3 .rank {
    background: #c76a1f;   /* burnt orange */
    color: #ffffff;
}
/* =========================
   FLAG / RANK SEPARATION
========================= */

/* Driver alanını net ayır */
.motogp-standings .driver {
    display: flex;
    align-items: center;
    gap: 12px; /* rank'ten nefes */
}

/* Bayrak biraz geri çekilsin */
.motogp-standings .driver img {
    margin-left: 10px;
}

/* Rank badge ile driver arasına boşluk */
.motogp-standings .rank {
    margin-right: 10px;
}

/* Mobilde de düzenli kalsın */
@media (max-width: 768px) {
    .motogp-standings .driver {
        gap: 10px;
    }
}

/* =========================
   RANK ↔ DRIVER DIVIDER
========================= */

/* Rank badge ile driver arasına hairline divider */
.motogp-standings .standings-row {
    position: relative;
}

.motogp-standings .rank {
    position: relative;
    margin-right: 14px; /* divider için alan */
}

.motogp-standings .rank::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 22px;
    background: rgba(0,0,0,.15); /* ince, premium */
}

/* =========================
   FLAG – OVAL CLIP
========================= */


/* Bayrak + isim arası biraz nefes */
.motogp-standings .driver {
    gap: 10px;
}

/* Mobilde divider biraz kısalsın */
@media (max-width: 768px) {
    .motogp-standings .rank::after {
        height: 18px;
    }
}
/* =========================
   LEADER BADGE – TEXT
========================= */

.motogp-standings .standings-row.rank-1 .driver-name::after {
    content: "LEADER";
    margin-left: 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .6px;

    padding: 4px 8px;
    border-radius: 999px;

    background: rgba(0,0,0,.85);
    color: #fff;
}
/* Driver adı – editorial */
.gp-name {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: .3px;
}

/* Takım adı – sessiz premium */
.motocal-track {
  font-size: 13px;
  color: #666;
  font-weight: 500;
}
.motocal-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,.35) 100%
  );
}
.motogp-driver-card .driver-number {
  background: linear-gradient(180deg, #c4161c, #8f0d11);
  box-shadow: 0 6px 18px rgba(177,18,23,.45);
  letter-spacing: .5px;
}
.motogp-driver-card:hover .gp-name {
  color: #b11217;
}

.motogp-driver-card:hover .motocal-track {
  color: #111;
}
.motogp-drivers-grid {
  gap: 32px;
}
.motocal-content::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0,0,0,.08),
    transparent
  );
  margin-bottom: 14px;
}
.motogp-driver-card:hover .gp-name {
  color: #b11217;
}
.motogp-driver-card .motocal-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 45%,
    rgba(0,0,0,.35) 100%
  );
}
.motogp-driver-card .driver-number {
  background: linear-gradient(
    180deg,
    #c4161c 0%,
    #a01015 50%,
    #7d0b0e 100%
  );
  box-shadow:
    0 6px 18px rgba(177,18,23,.45),
    inset 0 1px 0 rgba(255,255,255,.35);
  letter-spacing: .5px;
}
.motogp-driver-card .motocal-content::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0,0,0,.10),
    transparent
  );
  margin-top: -20px;   /* 🔥 ÇİZGİYİ YUKARI ÇEKER */
  margin-bottom: 14px;
}
/* Desktop – daha ferah */
@media (min-width: 1025px) {
  .motogp-drivers-grid {
    gap: 36px;
  }
}
/* Kart genel geçişi daha yumuşak */
.motogp-driver-card {
  transition:
    transform .35s cubic-bezier(.22,.61,.36,1),
    box-shadow .35s ease,
    border-color .35s ease;
}

/* Hover – çok hafif yükselme */
.motogp-driver-card:hover {
  transform: translateY(-6px);
}

/* İçerik alanı – gecikmeli gelsin */
.motogp-driver-card .motocal-content {
  transition: transform .35s ease, opacity .35s ease;
}

.motogp-driver-card:hover .motocal-content {
  transform: translateY(-2px);
}

/* Numara – mikro pop */
.motogp-driver-card .driver-number {
  transition: transform .25s ease;
}

.motogp-driver-card:hover .driver-number {
  transform: scale(1.05);
}
/* Title alanı – daha net hizalama */
.motocal-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Bayrak – oval / soft */
.motocal-flag {
  width: 24px;
  height: 16px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0,0,0,.15);
}

/* İsim biraz daha editorial */
.gp-name {
  position: relative;
  top: 1px;
  letter-spacing: .4px;
}
/* Ultra premium kart yüzeyi */
.motogp-driver-card {
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f6f6f6 100%
  );
  border: 1px solid rgba(0,0,0,.06);
  box-shadow:
    0 10px 30px rgba(0,0,0,.08),
    inset 0 1px 0 rgba(255,255,255,.8);
}

/* Hover – derinlik ama glow yok */
.motogp-driver-card:hover {
  box-shadow:
    0 20px 48px rgba(0,0,0,.16),
    inset 0 1px 0 rgba(255,255,255,.9);
}
@media (max-width: 768px) {

    .motogp-standings .standings-row {
        grid-template-columns: 1fr;
        row-gap: 8px;
    }

    .motogp-standings .gap,
    .motogp-standings .points {
        justify-content: flex-start;
    }
}

/* =========================
   PUAN DURUMU – FINAL GRID
========================= */

/* =========================
   MOTOGP STANDINGS – FINAL
========================= */

.motogp-standings {
    width: 100%;
}

/* === ORTAK GRID (HEADER + ROW) === */
.motogp-standings .standings-header,
.motogp-standings .standings-row {
    display: grid;
    grid-template-columns:
        40px        /* SIRA */
        2fr         /* SÜRÜCÜ */
        1.5fr       /* TAKIM */
        80px        /* GAP */
        80px;       /* PUAN */
    align-items: center;
    box-sizing: border-box;
    padding: 14px 16px;
}

/* ================= HEADER ================= */

.motogp-standings .standings-header {
    padding-top: 0;
    padding-bottom: 10px;
    margin-bottom: 12px;
    background: transparent;
}

.motogp-standings .standings-header span {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: #999;
    display: flex;
    align-items: center;
}

.motogp-standings .standings-header .gap,
.motogp-standings .standings-header .points {
    justify-content: flex-end;
}

/* ================= ROW ================= */

.motogp-standings .standings-row {
    background: linear-gradient(180deg, #ffffff, #f7f7f7);
    border-radius: 16px;
    margin-bottom: 14px;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.motogp-standings .standings-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0,0,0,.14);
    border-color: rgba(0,0,0,.15);
}

/* === SIRA === */
.motogp-standings .rank {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #eee;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === SÜRÜCÜ === */
.motogp-standings .driver {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    overflow: hidden;
}

.motogp-standings .driver img {
    width: 20px;
    height: auto;
}

.motogp-standings .driver-name {
    display: flex;
    align-items: center;
    gap: 6px;
}

.motogp-standings .driver-name strong {
    font-weight: 700;
}

.motogp-standings .driver-name em {
    font-style: normal;
    font-size: 12px;
    color: #777;
}

/* === TAKIM === */
.motogp-standings .team {
    font-size: 13px;
    color: #555;
}

/* === GAP === */
.motogp-standings .gap {
	padding-left: 8px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: #444;
    display: flex;
}

/* === PUAN === */
.motogp-standings .points {
	padding-right: 8px;
    justify-content: flex-end;
    font-size: 16px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    display: flex;
}

/* ================= TOP 3 ================= */

.motogp-standings .standings-row.rank-1 .rank {
    background: #b11217;
    color: #fff;
}

.motogp-standings .standings-row.rank-2 .rank {
    background: #6f3cc3;
    color: #fff;
}

.motogp-standings .standings-row.rank-3 .rank {
    background: #c76a1f;
    color: #fff;
}

/* ================= LEADER BADGE ================= */

.motogp-standings .standings-row.rank-1 .driver-name::after {
    content: "LEADER";
    margin-left: 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .6px;
    padding: 4px 8px;
    border-radius: 999px;
    background: #111;
    color: #fff;
}

/* ================= MOBIL ================= */

@media (max-width: 768px) {

  .motogp-standings .standings-header {
    display: none;
  }

  .motogp-standings .gap {
    display: none !important;
  }

  .motogp-standings .standings-row {
    grid-template-columns: 32px 1fr auto;
    row-gap: 4px;
    padding: 12px 14px;
  }

  .motogp-standings .rank {
    width: auto;
    height: auto;
    background: none;
    font-size: 14px;
    font-weight: 700;
  }

  .motogp-standings .driver {
    grid-column: 2;
  }

  .motogp-standings .team {
    grid-column: 2;
    font-size: 12px;
    color: #777;
    margin-top: 2px;
  }

  .motogp-standings .points {
    grid-column: 3;
    font-size: 16px;
    font-weight: 800;
    justify-content: flex-end;
  }
}
@media (max-width: 768px) {

  /* 🏆 LİDER – HAFİF RENK VURGUSU */
  .motogp-standings .standings-row.rank-1 {
    background: linear-gradient(
      90deg,
      rgba(177,18,23,0.08),
      rgba(255,255,255,0)
    );
    border-left: 3px solid #b11217;
  }

  /* Lider sürücü adı biraz daha güçlü */
  .motogp-standings .standings-row.rank-1 .driver-name strong {
    color: #b11217;
  }
}

