/* =====================================================================
   NXTbets — Athlete Profile · Light V2
   Self-contained styles. Tokens from /colors_and_type.css.
   Prefix: .v2-
   ===================================================================== */

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: #ffffff;
  --v2-card: #eff8ff;
  --v2-border: #a2ccf5;
}

.v2-shell {
  width: 1440px;
  margin: 0 auto;
  background: #ffffff;

  /* Accent remap: orange → action blue (scoped to this page) */
  --brand-orange: #0db5ff; /* fills: rules, edges, chips */
  --brand-orange-deep: #0496d6; /* text: eyebrows, podium pos — deeper for legibility */
  --orange-50: #eaf8ff; /* pale chip background */
  --orange-200: #b6e6ff; /* pale chip border */
}

.v2-main {
  max-width: 1280px;
  margin: 32px auto;
  padding: 28px 80px 80px;
  border-radius: 10px;
  background: white;
}

/* ============== NAV ============== */
.v2-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 80px;
  background: var(--brand-navy);
}
.v2-nav__logo {
  height: 40px;
}
.v2-nav__links {
  display: flex;
  gap: 28px;
  flex: 1;
  margin-left: 12px;
}
.v2-nav__link {
  background: transparent;
  border: 0;
  font: var(--t-ui);
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  padding: 8px 2px;
  position: relative;
}
.v2-nav__link:hover {
  color: var(--brand-blue);
}
.v2-nav__link.is-active {
  color: var(--brand-blue);
  font-weight: 600;
}
.v2-nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -17px;
  height: 3px;
  background: var(--brand-blue);
}
.v2-nav .v2-btn--primary {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
}
.v2-nav .v2-btn--primary:hover {
  filter: brightness(1.08);
}
.v2-nav .v2-btn--ghost {
  color: #fff;
}
.v2-nav .v2-btn--ghost:hover {
  color: var(--brand-blue);
}

/* ============== BUTTONS ============== */
.v2-btn {
  font: var(--t-ui);
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  padding: 9px 18px;
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    filter 120ms ease,
    background 120ms ease,
    border-color 120ms ease;
}
.v2-btn--primary {
  background: var(--brand-navy);
  color: var(--white);
  border-color: var(--brand-navy);
}
.v2-btn--primary:hover {
  filter: brightness(1.15);
}
.v2-btn--outline {
  background: var(--white);
  color: var(--brand-navy);
  border-color: var(--brand-navy);
}
.v2-btn--outline:hover {
  background: var(--blue-100);
}
.v2-btn--ghost {
  background: transparent;
  color: var(--ink);
}
.v2-btn--ghost:hover {
  color: var(--brand-blue);
}
.v2-btn--lg {
  padding: 14px 22px;
  font-size: 16px;
}

/* ============== CRUMBS ============== */
.v2-crumbs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: var(--t-tag);
  font-weight: 500;
  color: var(--ink-muted);
  padding-bottom: 18px;
  border-bottom: 1px solid #e7ebf2;
  margin-bottom: 28px;
}
.v2-crumbs a {
  color: var(--ink);
  cursor: pointer;
  font-weight: 600;
}
.v2-crumbs a:hover {
  color: var(--brand-blue);
}

/* ============== HERO ============== */
.v2-hero {
  display: grid;
  grid-template-columns: 34% 66%;
  gap: 28px;
  margin-bottom: 28px;
}
.v2-hero__photo {
  position: relative;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(0, 20, 45, 0) 40%, rgba(0, 20, 45, 0.6) 100%),
    linear-gradient(135deg, #dde7f5 0%, #c5d6ee 100%);
  min-height: 380px;
  overflow: hidden;
  border: 1px solid #e0e6f0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 20px;
}
.v2-hero__number {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 100px;
  line-height: 0.85;
  color: var(--brand-navy);
  opacity: 0.08;
  letter-spacing: -0.04em;
}
.v2-hero__photo-slot {
  font: var(--t-tag);
  color: var(--brand-navy);
  opacity: 0.55;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.v2-hero__info {
  display: flex;
  flex-direction: column;
  padding-top: 4px;
}
.v2-hero__name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--brand-navy);
  margin-top: 12px;
}
.v2-hero__bio {
  font: var(--t-body);
  font-size: 16px;
  color: var(--ink-soft);
  margin-top: 18px;
  text-wrap: pretty;
}
.v2-hero__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 24px;
  margin-top: auto;
  padding-top: 20px;
  font: var(--t-tag);
  font-size: 13px;
  color: var(--ink-soft);
}
.v2-hero__meta b {
  color: var(--brand-navy);
  font-weight: 600;
  margin-right: 6px;
}

/* hero chips — larger, more legible */
.v2-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.v2-hero__chips > span {
  font-size: 14px !important;
  font-weight: 600;
  padding: 9px 15px !important;
  border-radius: 999px !important;
  gap: 8px !important;
}
.v2-hero__chips .v2-flag {
  width: 20px;
  height: 14px;
}

/* hero facts — labelled data row (replaces chips) */
.v2-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  margin-top: 12px;
  padding: 20px 0 4px;
  border-top: 1px solid var(--v2-border);
}
.v2-fact {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.v2-fact__k {
  font: var(--t-tag);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}
.v2-fact__v {
  font: var(--t-h2);
  font-size: 17px;
  font-weight: 600;
  color: var(--brand-navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.v2-hero__facts .v2-flag {
  width: 22px;
  height: 15px;
}

/* tiny Dutch flag */
.v2-flag {
  display: inline-block;
  width: 16px;
  height: 11px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.v2-flag--ned {
  background: linear-gradient(
    to bottom,
    #ae1c28 0%,
    #ae1c28 33.33%,
    #ffffff 33.33%,
    #ffffff 66.66%,
    #21468b 66.66%,
    #21468b 100%
  );
}

/* ============== KPI STRIP ============== */
.v2-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.v2-kpi {
  background: var(--v2-card);
  border: 1px solid var(--v2-border);
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: 0 1px 2px rgba(0, 20, 45, 0.04);
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  overflow: hidden;
}

.v2-kpi__label {
  font: var(--t-tag);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}
.v2-kpi__value {
  font: var(--t-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--brand-navy);
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.v2-kpi__sub {
  font: var(--t-tag);
  color: var(--ink-soft);
  font-weight: 500;
}
.v2-kpi__trend {
  font: var(--t-meta);
  font-size: 11px;
  color: var(--ink-muted);
  margin-top: 4px;
}

/* ============== BLOCK ============== */
.v2-block {
  margin-bottom: 36px;
}

.v2-block__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 8px;
}

/* ============== FORM STRIP ============== */
.v2-form {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.v2-form__chip {
  background: var(--v2-card);
  border: 1px solid var(--v2-border);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.v2-form__pos {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 28px;
  color: var(--brand-navy);
  line-height: 1;
}
.v2-form__chip.is-win .v2-form__pos {
  color: var(--success);
}
.v2-form__chip.is-win {
  background: rgba(3, 154, 15, 0.05);
  border-color: rgba(3, 154, 15, 0.2);
}
.v2-form__chip.is-podium .v2-form__pos {
  color: var(--brand-orange-deep);
}
.v2-form__chip.is-podium {
  background: var(--orange-50);
  border-color: var(--orange-200);
}
.v2-form__chip.is-off .v2-form__pos {
  color: var(--ink-muted);
}

.v2-form__race {
  font: var(--t-card);
  font-size: 15px;
  color: var(--brand-navy);
  font-weight: 600;
  margin-top: 2px;
}
.v2-form__note {
  font: var(--t-meta);
  font-size: 11px;
  color: var(--ink-muted);
}

/* inline pos chip (history) */
.v2-form__pos.is-win,
.v2-form__pos.is-podium {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1;
}
.v2-form__pos.is-win {
  background: var(--success);
  color: #fff;
}
.v2-form__pos.is-podium {
  background: var(--brand-orange-deep);
  color: #fff;
}

/* ============== TWO COL ============== */
.v2-two-col {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
  align-items: start;
}
.v2-two-col--even {
  grid-template-columns: 1fr 1fr;
}

/* full-width single row (e.g. Betting Review) */
.v2-fullrow {
  margin-bottom: 36px;
}

/* stacked stat tables (left side of the stats+offers row) */
.v2-stats-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.v2-stats-stack .v2-block {
  margin-bottom: 0;
}
.v2-col-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.v2-col-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Two stat tables sitting side-by-side under the Betting Review */
.v2-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.v2-stats-row .v2-block {
  margin-bottom: 0;
}
.v2-stats-row--full {
  margin-bottom: 36px;
}

/* ============== NEXT RACE CARD ============== */
.v2-next {
  background: linear-gradient(180deg, var(--brand-navy) 0%, #0a1e3d 100%);
  color: var(--white);
  border-radius: 14px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.v2-next::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(13, 181, 255, 0.18) 0%,
    rgba(13, 181, 255, 0) 60%
  );
  pointer-events: none;
}
.v2-next__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.v2-next__head .v2-eyebrow,
.v2-next__head > div:first-child {
  color: var(--brand-orange) !important;
}
.v2-next__odds {
  background: var(--brand-orange);
  color: var(--brand-navy);
  font: var(--t-tag);
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  letter-spacing: 0.04em;
}
.v2-next__odds b {
  font-size: 14px;
}
.v2-next__title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 38px;
  margin-top: 18px;
  line-height: 1.05;
}
.v2-next__sub {
  font: var(--t-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 6px;
}
.v2-next__date {
  font: var(--t-h2);
  font-size: 18px;
  font-weight: 500;
  margin-top: 16px;
  color: var(--brand-blue);
}
.v2-next__count {
  display: flex;
  gap: 36px;
  margin-top: 22px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.v2-next__count > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.v2-next__count b {
  font: var(--t-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.v2-next__count span {
  font: var(--t-tag);
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.v2-next__cta {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.v2-next__cta .v2-btn--primary {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: var(--brand-navy);
}
.v2-next__cta .v2-btn--primary:hover {
  filter: brightness(1.05);
}
.v2-next__cta .v2-btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.v2-next__cta .v2-btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
}

/* ============== REVIEW ============== */
.v2-review {
  /* Keep the Betting Review card on brand orange (overrides the page remap) */
  --brand-orange: #ff864a;
  --brand-orange-deep: #ff631a;
  background: var(--v2-card);
  border: 1px solid var(--v2-border);
  border-radius: 14px;
  padding: 28px 32px;
  position: relative;
  box-shadow: 0 1px 2px rgba(0, 20, 45, 0.04);
}
.v2-review__title {
  font: var(--t-h1);
  font-size: 28px;
  font-weight: 700;
  color: var(--brand-navy);
  margin-top: 14px;
}
.v2-review__title span {
  font-weight: 400;
  color: var(--ink-soft);
  font-size: 22px;
}
.v2-rule {
  height: 3px;
  border: 0;
  background: var(--brand-orange);
  margin: 14px 0 18px;
  width: 48px;
}
.v2-review__lead {
  font: var(--t-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--brand-navy);
  line-height: 1.5;
}
.v2-review__body {
  font: var(--t-body);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-top: 14px;
  text-wrap: pretty;
}
.v2-review__signals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid #e7ebf2;
}
.v2-review__signals > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.v2-review__signals span {
  font: var(--t-tag);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.v2-review__signals b {
  font: var(--t-h2);
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-navy);
}
.v2-link {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue-link);
  font: var(--t-ui);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.v2-link:hover {
  color: var(--brand-blue);
}

/* PRO badge */
.v2-pro {
  width: 56px;
  height: 34px;
  background: url("../img/pro-badge.png") center/contain no-repeat;
}
.v2-pro--sm {
  width: 44px;
  height: 27px;
}
.v2-pro--review {
  position: absolute;
  top: 0;
  right: 0;
  width: 92px;
  height: 56px;
  background-color: #00142d;
  padding: 8px;
  border-top-right-radius: 14px;
  border-bottom-left-radius: 12px;
}

/* ============== TABLE (career) ============== */
.v2-table {
  background: var(--v2-card);
  border: 1px solid var(--v2-border);
  border-radius: 12px;
  overflow: hidden;
}
.v2-table__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid #f1f4f8;
  font: var(--t-body);
  font-size: 15px;
}
.v2-table__row:last-child {
  border-bottom: 0;
}
.v2-table__k {
  color: var(--ink-soft);
  font-weight: 500;
}
.v2-table__v {
  color: var(--brand-navy);
  font-weight: 700;
  font-size: 18px;
}

/* ============== HISTORY ============== */
.v2-history {
  background: var(--v2-card);
  border: 1px solid var(--v2-border);
  border-radius: 12px;
  overflow: hidden;
}
.v2-history__row {
  display: grid;
  grid-template-columns: 56px 56px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid #f1f4f8;
}
.v2-history__row:last-child {
  border-bottom: 0;
}
.v2-history__year {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18px;
  color: var(--brand-navy);
}
.v2-history__note {
  font: var(--t-tag);
  color: var(--ink-soft);
  font-size: 13px;
}

/* ============== NEWS ============== */
.v2-news {
  margin-top: 8px;
}
.v2-news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.v2-card {
  background: var(--v2-card);
  border: 1px solid var(--v2-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
  text-decoration: none;
  color: inherit;
}
.v2-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 20, 45, 0.1);
  border-color: var(--blue-300);
}
.v2-card__thumb {
  aspect-ratio: 16/9;
  background:
    linear-gradient(135deg, rgba(0, 20, 45, 0.55), rgba(0, 20, 45, 0.15)),
    url("../img/parallax-f1.jpg") center/cover;
  position: relative;
}
.v2-card__thumb .v2-pro {
  position: absolute;
  top: 10px;
  right: 10px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}
.v2-card__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.v2-card__title {
  font: var(--t-card);
  font-size: 17px;
  color: var(--brand-navy);
  line-height: 1.35;
  text-wrap: pretty;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.v2-card__meta {
  font: var(--t-meta);
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: auto;
}

/* ============== SPORTSBOOK OFFERS ============== */
.v2-offers-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.v2-offers-head {
  margin-bottom: 4px;
}
.v2-offers-title {
  font: var(--t-h1);
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.v2-offers-sub {
  font: var(--t-tag);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
}
.v2-offers-sub svg {
  color: var(--blue-link);
}

.v2-offers {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v2-offer {
  background: var(--v2-card);
  border: 1px solid var(--v2-border);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}
.v2-offer:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 20, 45, 0.1);
  border-color: #cbd3e0;
}
.v2-offer__logo {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  user-select: none;
}
.v2-offer__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.v2-offer__name {
  font: var(--t-card);
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.2;
}
.v2-offer__copy {
  font: var(--t-meta);
  font-size: 11px;
  color: var(--ink-soft);
  line-height: 1.4;
  text-wrap: pretty;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.v2-offer__cta {
  border-radius: 999px;
  padding: 9px 16px;
  font: var(--t-ui);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
  transition: filter 120ms ease;
}
.v2-offer:hover .v2-offer__cta {
  filter: brightness(1.08);
}

.v2-offers-foot {
  font: var(--t-meta);
  font-size: 10px;
  color: var(--ink-muted);
  text-align: center;
  margin-top: 4px;
  line-height: 1.5;
}

/* ============== SOCIALS ============== */
.v2-socials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.v2-social {
  background: var(--v2-card);
  border: 1px solid var(--v2-border);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
  position: relative;
}
.v2-social:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 20, 45, 0.08);
  border-color: var(--brand);
}
.v2-social__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.v2-social__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.v2-social__handle {
  font: var(--t-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-navy);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.v2-social__count {
  font: var(--t-tag);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-muted);
}
.v2-social__cta {
  font: var(--t-tag);
  font-size: 12px;
  font-weight: 600;
  color: var(--brand);
  opacity: 0;
  transform: translateX(-4px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}
.v2-social:hover .v2-social__cta {
  opacity: 1;
  transform: translateX(0);
}

/* ============== VIDEOS ============== */
.v2-videos {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.v2-videos__rail {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.v2-video {
  background: var(--v2-card);
  border: 1px solid var(--v2-border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}
.v2-video:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 20, 45, 0.1);
  border-color: var(--blue-300);
}

.v2-video__thumb {
  background:
    linear-gradient(135deg, rgba(0, 20, 45, 0.55), rgba(0, 20, 45, 0.15)),
    url("../img/parallax-f1.jpg") center/cover;
  position: relative;
  flex-shrink: 0;
}
.v2-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition:
    transform 160ms ease,
    background 160ms ease;
}
.v2-video:hover .v2-video__play {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.08);
}
.v2-video__duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 20, 45, 0.85);
  color: #fff;
  font: var(--t-tag);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}
.v2-video__thumb .v2-pro {
  position: absolute;
  top: 10px;
  left: 10px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}
.v2-video__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.v2-video__title {
  font: var(--t-card);
  font-size: 16px;
  color: var(--brand-navy);
  line-height: 1.35;
  text-wrap: pretty;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.v2-video__meta {
  font: var(--t-meta);
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: auto;
}

/* Featured (large) video — stacked thumb-over-body */
.v2-video--lg {
  flex-direction: column;
}
.v2-video--lg .v2-video__thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.v2-video--lg .v2-video__body {
  padding: 20px 22px 22px;
  gap: 10px;
}
.v2-video--lg .v2-video__title {
  font-size: 20px;
  -webkit-line-clamp: 3;
}

/* Small (rail) video — thumb on left, body on right */
.v2-video--sm {
  flex-direction: row;
  min-height: 100px;
}
.v2-video--sm .v2-video__thumb {
  width: 170px;
  aspect-ratio: 16 / 9;
}
.v2-video--sm .v2-video__play {
  width: 38px;
  height: 38px;
}

/* ============== FOOTER ============== */
.v2-footer {
  background: var(--brand-navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 56px 80px 28px;
  margin-top: 60px;
}
.v2-footer__cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.v2-footer img {
  filter: brightness(0) invert(1);
}
.v2-footer p {
  font: var(--t-body);
  font-size: 13px;
  line-height: 1.5;
  margin-top: 14px;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.65);
}
.v2-footer h4 {
  font: var(--t-tag);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-orange);
  margin-bottom: 14px;
}
.v2-footer__cols a {
  display: block;
  font: var(--t-ui);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 5px 0;
  cursor: pointer;
}
.v2-footer__cols a:hover {
  color: var(--brand-blue);
}
.v2-footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font: var(--t-tag);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
}
.v2-footer__legal img {
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
