/* BikerBreed Paddock 3.1.0 — complete frontend system */
:root {
  --bbp-black: #07090c;
  --bbp-carbon: #0a0e13;
  --bbp-graphite: #111820;
  --bbp-panel: #161f29;
  --bbp-paper: #f2efe8;
  --bbp-white: #fff;
  --bbp-racing-white: #f4f2ed;
  --bbp-ink: #11161c;
  --bbp-red: #ff3b24;
  --bbp-red-hover: #e92f1b;
  --bbp-yellow: #f2d400;
  --bbp-muted-light: #a5adb7;
  --bbp-muted-dark: #68727d;
  --bbp-border-dark: #29323d;
  --bbp-border-light: #d8d3cb;
  --bbp-soft-light: #e8e4dd;
  --bbp-success: #2bb673;
  --bbp-error: #d92d20;
  --bbp-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --bbp-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bbp-container: 1280px;
  --bbp-reading: 780px;
  --bbp-gutter: clamp(20px, 3vw, 40px);
  --bbp-section-space: clamp(68px, 7vw, 96px);
  --bbp-shadow: 0 24px 60px rgba(0, 0, 0, .18);
  --bbp-transition: 180ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bbp-paper);
  color: var(--bbp-ink);
  font-family: var(--bbp-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.is-overlay-open { overflow: hidden; }
img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
a, button, input, textarea, select { transition: color var(--bbp-transition), background-color var(--bbp-transition), border-color var(--bbp-transition), opacity var(--bbp-transition), transform var(--bbp-transition); }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 3px solid var(--bbp-yellow); outline-offset: 3px; }
::selection { background: var(--bbp-red); color: var(--bbp-white); }

.screen-reader-text, .bbp-skip-link {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.bbp-skip-link:focus {
  position: fixed !important;
  z-index: 100000;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  margin: 0;
  clip: auto;
  background: var(--bbp-yellow);
  color: var(--bbp-black);
  font-weight: 800;
}

.bbp-container { width: min(var(--bbp-container), calc(100% - (var(--bbp-gutter) * 2))); margin-inline: auto; }
.bbp-reading-width { width: min(var(--bbp-reading), 100%); margin-inline: auto; }
.bbp-main { display: block; min-height: 50vh; }

/* Typography */
h1, h2, h3, h4, h5, h6 { margin: 0; color: inherit; font-family: var(--bbp-display); font-weight: 800; line-height: .98; letter-spacing: -.025em; text-wrap: balance; }
p { margin: 0 0 1.25em; }
.bbp-kicker, .bbp-eyebrow {
  margin: 0;
  color: var(--bbp-red);
  font-family: var(--bbp-body);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .085em;
  line-height: 1.3;
  text-transform: uppercase;
}
.bbp-eyebrow { display: flex; align-items: center; gap: 12px; color: var(--bbp-racing-white); }
.bbp-eyebrow > span, .bbp-eyebrow > i { display: block; width: 34px; height: 4px; flex: 0 0 auto; background: var(--bbp-red); }
.bbp-post-meta { display: flex; flex-wrap: wrap; gap: 9px 18px; color: var(--bbp-muted-light); font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.bbp-post-meta span + span::before { content: "•"; margin-right: 18px; color: currentColor; }

/* Buttons */
.bbp-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 20px;
  border: 1px solid var(--bbp-red);
  border-radius: 0;
  background: var(--bbp-red);
  color: var(--bbp-white);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .045em;
  line-height: 1;
  text-transform: uppercase;
}
.bbp-button svg, .bbp-section-heading__link svg, .bbp-next-race__link svg, .bbp-race-event-card__arrow svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.bbp-button:hover { border-color: var(--bbp-red-hover); background: var(--bbp-red-hover); color: var(--bbp-white); transform: translateY(-1px); }
.bbp-button--ghost { border-color: rgba(255,255,255,.44); background: rgba(7,9,12,.2); backdrop-filter: blur(6px); }
.bbp-button--ghost:hover { border-color: var(--bbp-white); background: var(--bbp-white); color: var(--bbp-black); }
.bbp-button--dark-outline { border-color: var(--bbp-border-dark); background: transparent; color: var(--bbp-ink); }
.bbp-button--dark-outline:hover { background: var(--bbp-ink); color: var(--bbp-white); }

/* Utility bar */
.bbp-utility { height: 34px; overflow: hidden; border-bottom: 1px solid #1e252d; background: #05070a; color: var(--bbp-muted-light); }
.bbp-utility__inner { display: grid; height: 34px; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 28px; }
.bbp-live { display: flex; align-items: center; gap: 9px; color: var(--bbp-racing-white); font-size: .68rem; font-weight: 800; letter-spacing: .065em; text-transform: uppercase; white-space: nowrap; }
.bbp-live i { width: 8px; height: 8px; border-radius: 50%; background: var(--bbp-red); box-shadow: 0 0 0 4px rgba(255,59,36,.12); }
.bbp-utility__ticker { min-width: 0; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.bbp-utility__track { display: flex; width: max-content; animation: bbp-ticker 34s linear infinite; }
.bbp-utility__track span { display: flex; align-items: center; color: #9da5ae; font-size: .64rem; letter-spacing: .035em; white-space: nowrap; }
.bbp-utility__track span::after { content: "•"; margin: 0 30px; color: #49515a; }
.bbp-utility:hover .bbp-utility__track { animation-play-state: paused; }
.bbp-utility__newsletter { color: var(--bbp-racing-white); font-size: .66rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.bbp-utility__newsletter:hover { color: var(--bbp-red); }
@keyframes bbp-ticker { to { transform: translateX(-50%); } }

/* Header */
.bbp-site-header { position: relative; z-index: 1000; height: 82px; margin: 0; border-bottom: 1px solid #232a32; background: rgba(8,11,15,.98); color: var(--bbp-white); }
.has-sticky-header .bbp-site-header { position: sticky; top: 0; }
.admin-bar.has-sticky-header .bbp-site-header { top: 32px; }
.bbp-site-header__inner { display: grid; height: 82px; grid-template-columns: 228px minmax(0,1fr) auto; align-items: center; gap: 30px; }
.bbp-brand { display: block; width: 215px; line-height: 0; }
.bbp-brand img { width: 100%; max-height: 56px; object-fit: contain; object-position: left center; }
.bbp-desktop-nav { justify-self: center; min-width: 0; }
.bbp-primary-menu, .bbp-mobile-primary-menu, .bbp-footer ul { margin: 0; padding: 0; list-style: none; }
.bbp-primary-menu { display: flex; align-items: center; gap: clamp(17px, 1.55vw, 28px); }
.bbp-primary-menu li { position: relative; }
.bbp-primary-menu a { display: flex; height: 82px; align-items: center; color: #d9dee3; font-size: .68rem; font-weight: 800; letter-spacing: .035em; text-transform: uppercase; white-space: nowrap; }
.bbp-primary-menu a::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 4px; background: var(--bbp-red); transform: scaleX(0); transform-origin: left; transition: transform var(--bbp-transition); }
.bbp-primary-menu a:hover, .bbp-primary-menu .is-current a, .bbp-primary-menu .current-menu-item > a { color: var(--bbp-white); }
.bbp-primary-menu a:hover::after, .bbp-primary-menu .is-current a::after, .bbp-primary-menu .current-menu-item > a::after { transform: scaleX(1); }
.bbp-header-actions { display: flex; align-items: center; gap: 12px; }
.bbp-race-link { display: inline-grid; min-width: 132px; height: 44px; place-items: center; border: 1px solid #5d6670; color: var(--bbp-white); font-size: .68rem; font-weight: 800; letter-spacing: .045em; text-transform: uppercase; }
.bbp-race-link:hover { border-color: var(--bbp-red); background: var(--bbp-red); }
.bbp-header-icon { display: grid; width: 44px; height: 44px; padding: 0; place-items: center; border: 1px solid #39414a; border-radius: 0; background: transparent; color: var(--bbp-white); }
.bbp-header-icon:hover { border-color: var(--bbp-red); background: var(--bbp-red); }
.bbp-header-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.bbp-menu-toggle { display: none; }

/* Mobile menu */
.bbp-mobile-menu { position: fixed; z-index: 3000; inset: 0; visibility: hidden; background: rgba(0,0,0,.72); opacity: 0; transition: opacity var(--bbp-transition), visibility var(--bbp-transition); }
.bbp-mobile-menu.is-open { visibility: visible; opacity: 1; }
.bbp-mobile-menu__panel { position: absolute; top: 0; right: 0; width: min(430px, 92vw); height: 100%; overflow-y: auto; padding: 22px 26px 32px; background: var(--bbp-carbon); color: var(--bbp-white); transform: translateX(100%); transition: transform 260ms ease; }
.bbp-mobile-menu.is-open .bbp-mobile-menu__panel { transform: translateX(0); }
.bbp-mobile-menu__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 24px; border-bottom: 1px solid var(--bbp-border-dark); }
.bbp-mobile-menu__head a { width: 190px; }
.bbp-mobile-primary-menu { padding: 20px 0 28px; }
.bbp-mobile-primary-menu li { border-bottom: 1px solid var(--bbp-border-dark); }
.bbp-mobile-primary-menu a { display: flex; min-height: 56px; align-items: center; justify-content: space-between; color: var(--bbp-white); font-family: var(--bbp-display); font-size: 1.45rem; font-weight: 700; text-transform: uppercase; }
.bbp-mobile-primary-menu a::after { content: "→"; color: var(--bbp-red); font-family: var(--bbp-body); font-size: .95rem; }
.bbp-mobile-menu__race { width: 100%; }
.bbp-mobile-menu__social { display: flex; flex-wrap: wrap; gap: 14px; padding-top: 28px; color: var(--bbp-muted-light); font-size: .72rem; font-weight: 700; text-transform: uppercase; }

/* Search overlay */
.bbp-search-overlay { position: fixed; z-index: 4000; inset: 0; display: grid; visibility: hidden; place-items: center; padding: 24px; background: rgba(5,7,10,.94); opacity: 0; transition: opacity var(--bbp-transition), visibility var(--bbp-transition); }
.bbp-search-overlay.is-open { visibility: visible; opacity: 1; }
.bbp-search-overlay__panel { position: relative; width: min(880px, 100%); padding: clamp(38px, 7vw, 78px); border: 1px solid var(--bbp-border-dark); background: var(--bbp-carbon); color: var(--bbp-white); box-shadow: var(--bbp-shadow); }
.bbp-search-overlay__panel h2 { max-width: 700px; margin: 22px 0 34px; font-size: clamp(2.4rem, 5vw, 4.8rem); }
.bbp-search-overlay__close { position: absolute; top: 20px; right: 20px; }
.bbp-search-form { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 12px; }
.bbp-search-form__field { min-width: 0; height: 54px; padding: 0 18px; border: 1px solid #4b5560; border-radius: 0; background: var(--bbp-panel); color: var(--bbp-white); }
.bbp-search-form__field::placeholder { color: #87919b; }

/* Hero */
.bbp-hero { position: relative; min-height: 650px; margin: 0; overflow: hidden; background: var(--bbp-black); color: var(--bbp-white); }
.bbp-hero__media, .bbp-hero__overlay { position: absolute; inset: 0; }
.bbp-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.bbp-hero__overlay { background: linear-gradient(90deg, rgba(3,5,8,.96) 0%, rgba(3,5,8,.78) 31%, rgba(3,5,8,.26) 63%, rgba(3,5,8,.45) 100%), linear-gradient(0deg, rgba(4,6,9,.75) 0%, transparent 46%); }
.bbp-hero__layout { position: relative; z-index: 2; display: grid; min-height: 650px; grid-template-columns: minmax(0, 680px) 350px; align-items: center; justify-content: space-between; gap: 60px; padding-block: 70px; }
.bbp-hero__content { max-width: 680px; }
.bbp-hero__title { max-width: 680px; margin: 23px 0 22px; color: var(--bbp-racing-white); font-size: clamp(4rem, 5.6vw, 5.45rem); line-height: .88; text-transform: uppercase; }
.bbp-hero__title.is-title-xl { font-size: clamp(3.35rem, 4.7vw, 4.65rem); }
.bbp-hero__title.is-title-xxl { font-size: clamp(2.85rem, 4vw, 4rem); line-height: .9; }
.bbp-hero__excerpt { max-width: 550px; margin-bottom: 28px; color: #d0d6dc; font-size: 1.02rem; line-height: 1.65; }
.bbp-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.bbp-next-race { align-self: end; width: 350px; padding: 22px; border: 1px solid #48515b; background: rgba(7,10,14,.92); box-shadow: 0 26px 70px rgba(0,0,0,.3); backdrop-filter: blur(12px); }
.bbp-next-race__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; color: var(--bbp-muted-light); font-size: .66rem; font-weight: 800; letter-spacing: .065em; text-transform: uppercase; }
.bbp-next-race__top strong { color: var(--bbp-yellow); }
.bbp-next-race h2 { margin-bottom: 7px; font-size: 2.3rem; text-transform: uppercase; }
.bbp-next-race p { margin: 0; color: var(--bbp-muted-light); font-size: .76rem; }
.bbp-next-race__date { margin-top: 4px !important; color: var(--bbp-white) !important; font-weight: 700; }
.bbp-countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 24px 0; }
.bbp-countdown div { padding: 13px 5px 10px; border: 1px solid var(--bbp-border-dark); background: #121920; text-align: center; }
.bbp-countdown strong { display: block; font-family: var(--bbp-display); font-size: 1.4rem; line-height: 1; }
.bbp-countdown span { display: block; margin-top: 8px; color: var(--bbp-muted-light); font-size: .52rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.bbp-next-race__link { display: flex; align-items: center; justify-content: space-between; padding-top: 17px; border-top: 1px solid var(--bbp-border-dark); font-size: .67rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.bbp-next-race__link:hover { color: var(--bbp-red); }

/* Breaking */
.bbp-breaking { min-height: 54px; overflow: hidden; background: var(--bbp-red); color: var(--bbp-white); }
.bbp-breaking__inner { display: grid; min-height: 54px; grid-template-columns: 130px minmax(0,1fr); align-items: stretch; }
.bbp-breaking__label { display: flex; align-items: center; padding-inline: 20px; background: #e72d19; font-size: .68rem; letter-spacing: .065em; text-transform: uppercase; }
.bbp-breaking__stories { display: flex; min-width: 0; overflow-x: auto; scrollbar-width: none; }
.bbp-breaking__stories::-webkit-scrollbar { display: none; }
.bbp-breaking__stories a { display: flex; min-width: max-content; align-items: center; gap: 24px; padding: 0 22px; border-right: 1px solid rgba(255,255,255,.28); font-size: .67rem; font-weight: 700; letter-spacing: .01em; white-space: nowrap; }
.bbp-breaking__stories a:hover { background: rgba(0,0,0,.12); }
.bbp-breaking__stories span { font-size: 1.3rem; }

/* Shared sections */
.bbp-section { padding-block: var(--bbp-section-space); }
.bbp-section--paper { background: var(--bbp-paper); color: var(--bbp-ink); }
.bbp-section--dark { background: var(--bbp-carbon); color: var(--bbp-white); }
.bbp-section-heading { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.bbp-section-heading__title-wrap { display: flex; align-items: center; gap: 16px; }
.bbp-section-heading__title { font-size: clamp(2.25rem, 3.7vw, 3.25rem); text-transform: uppercase; }
.bbp-section-heading__rule { width: 48px; height: 5px; background: var(--bbp-red); }
.bbp-section-heading--dark .bbp-section-heading__rule { background: var(--bbp-yellow); }
.bbp-section-heading__link { display: inline-flex; align-items: center; gap: 9px; font-size: .66rem; font-weight: 800; letter-spacing: .055em; text-transform: uppercase; white-space: nowrap; }
.bbp-section-heading__link:hover { color: var(--bbp-red); }
.bbp-section-heading--dark .bbp-section-heading__link:hover { color: var(--bbp-yellow); }

/* Latest stories */
.bbp-latest__grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, .98fr); gap: 24px; }
.bbp-lead-story { position: relative; min-height: 650px; overflow: hidden; background: var(--bbp-black); color: var(--bbp-white); }
.bbp-lead-story__media, .bbp-lead-story__overlay { position: absolute; inset: 0; }
.bbp-lead-story__media img { width: 100%; height: 100%; object-fit: cover; }
.bbp-lead-story__overlay { background: linear-gradient(0deg, rgba(4,6,9,.95) 0%, rgba(4,6,9,.34) 48%, transparent 75%); pointer-events: none; }
.bbp-lead-story__content { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 36px; }
.bbp-lead-story__content h3 { max-width: 620px; margin: 13px 0 18px; font-size: clamp(2.15rem, 3.3vw, 3.35rem); text-transform: uppercase; }
.bbp-lead-story__content h3 a:hover { color: var(--bbp-red); }
.bbp-latest__secondary { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.bbp-story-card { min-width: 0; overflow: hidden; border: 1px solid var(--bbp-border-light); background: var(--bbp-white); }
.bbp-story-card__media { display: block; overflow: hidden; background: #d8d6d0; aspect-ratio: 16 / 9; }
.bbp-story-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 420ms ease; }
.bbp-story-card:hover .bbp-story-card__media img { transform: scale(1.035); }
.bbp-story-card__body { padding: 18px 18px 17px; }
.bbp-story-card__title { margin: 9px 0 16px; font-size: 1.35rem; line-height: 1.02; text-transform: uppercase; }
.bbp-story-card__title a:hover { color: var(--bbp-red); }
.bbp-story-card .bbp-post-meta { color: var(--bbp-muted-dark); font-size: .56rem; }
.bbp-story-card__excerpt { color: var(--bbp-muted-dark); font-size: .83rem; line-height: 1.55; }

/* Race centre */
.bbp-race-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.bbp-data-card { min-height: 395px; padding: 23px; border: 1px solid var(--bbp-border-dark); background: var(--bbp-graphite); }
.bbp-data-card > header { display: flex; align-items: center; justify-content: space-between; gap: 15px; color: var(--bbp-muted-light); font-size: .62rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.bbp-data-card > header strong { color: var(--bbp-yellow); text-align: right; }
.bbp-track-outline { display: grid; height: 150px; place-items: center; padding: 16px; }
.bbp-track-outline img { width: 82%; max-height: 118px; filter: brightness(0) saturate(100%) invert(79%) sepia(98%) saturate(1105%) hue-rotate(3deg) brightness(104%) contrast(101%); }
.bbp-data-card h3 { margin-top: 8px; font-size: 2rem; text-transform: uppercase; }
.bbp-data-card > p { color: var(--bbp-muted-light); font-size: .75rem; }
.bbp-race-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 25px; padding-top: 18px; border-top: 1px solid var(--bbp-border-dark); }
.bbp-race-stats span, .bbp-route-card__stats span { display: block; color: #79838d; font-size: .52rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.bbp-race-stats strong, .bbp-route-card__stats strong { display: block; margin-top: 6px; color: var(--bbp-white); font-size: .68rem; text-transform: uppercase; }
.bbp-standing-table { margin-top: 23px; }
.bbp-standing-table > div { display: grid; min-height: 54px; grid-template-columns: 32px minmax(0,1.4fr) minmax(0,.8fr) 42px; align-items: center; gap: 8px; border-top: 1px solid var(--bbp-border-dark); }
.bbp-standing-table b { color: var(--bbp-yellow); font-family: var(--bbp-display); font-size: 1.45rem; }
.bbp-standing-table strong { overflow: hidden; font-size: .71rem; text-overflow: ellipsis; white-space: nowrap; }
.bbp-standing-table span { overflow: hidden; color: var(--bbp-muted-light); font-size: .57rem; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.bbp-standing-table em { font-size: .72rem; font-style: normal; font-weight: 800; text-align: right; }
.bbp-podium { display: flex; min-height: 305px; align-items: flex-end; justify-content: center; gap: 10px; padding-top: 35px; }
.bbp-podium__place { display: flex; width: 31%; min-height: 155px; flex-direction: column; align-items: center; justify-content: flex-start; padding: 20px 8px; border: 1px solid var(--bbp-border-dark); background: #171f28; text-align: center; }
.bbp-podium__place--1 { min-height: 225px; order: 2; }
.bbp-podium__place--2 { min-height: 185px; order: 1; }
.bbp-podium__place--3 { order: 3; }
.bbp-podium__place b { color: var(--bbp-yellow); font-family: var(--bbp-display); font-size: 2.3rem; line-height: 1; }
.bbp-podium__place strong { margin-top: 18px; font-size: .67rem; text-transform: uppercase; }
.bbp-podium__place span { margin-top: 6px; color: var(--bbp-muted-light); font-size: .54rem; text-transform: uppercase; }
.bbp-data-empty { margin: 40px 0 0; color: var(--bbp-muted-light); font-size: .78rem; line-height: 1.6; }

/* Feature story */
.bbp-feature-story { display: grid; min-height: 590px; grid-template-columns: minmax(0, 1.12fr) minmax(440px, .88fr); background: #10151b; color: var(--bbp-white); }
.bbp-feature-story__media { min-height: 590px; overflow: hidden; }
.bbp-feature-story__media img { width: 100%; height: 100%; object-fit: cover; }
.bbp-feature-story__content { position: relative; display: flex; min-width: 0; flex-direction: column; align-items: flex-start; justify-content: center; overflow: hidden; padding: clamp(50px, 6vw, 90px); }
.bbp-feature-story__issue { position: absolute; top: 15px; right: 20px; color: rgba(255,255,255,.065); font-family: var(--bbp-display); font-size: clamp(9rem, 17vw, 15rem); font-weight: 800; line-height: 1; }
.bbp-feature-story__content h2 { position: relative; max-width: 590px; margin: 24px 0 22px; font-size: clamp(3.1rem, 5vw, 5.15rem); text-transform: uppercase; }
.bbp-feature-story__content > p:not(.bbp-eyebrow) { position: relative; max-width: 560px; color: #b9c1c8; }
.bbp-feature-story__author { position: relative; display: flex; align-items: center; gap: 14px; margin: 10px 0 28px; }
.bbp-feature-story__author img { width: 54px; height: 54px; border: 2px solid var(--bbp-white); border-radius: 50%; object-fit: cover; }
.bbp-feature-story__author strong, .bbp-feature-story__author span { display: block; }
.bbp-feature-story__author strong { font-size: .78rem; text-transform: uppercase; }
.bbp-feature-story__author span { color: var(--bbp-muted-light); font-size: .61rem; text-transform: uppercase; }

/* Garage */
.bbp-filter-tabs { display: flex; flex-wrap: wrap; gap: 24px; margin: -12px 0 28px; color: var(--bbp-muted-dark); font-size: .61rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.bbp-filter-tabs span { padding-bottom: 8px; border-bottom: 3px solid transparent; }
.bbp-filter-tabs .is-active { border-color: var(--bbp-red); color: var(--bbp-ink); }
.bbp-garage__grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.bbp-story-card--garage .bbp-story-card__media { aspect-ratio: 1 / .88; }
.bbp-story-card--garage .bbp-story-card__body { min-height: 195px; }

/* Routes */
.bbp-routes { position: relative; min-height: 690px; overflow: hidden; background: #0b171c; color: var(--bbp-white); }
.bbp-routes__background { position: absolute; inset: 0; background-image: linear-gradient(180deg, rgba(5,12,17,.28), rgba(5,12,17,.76)), url('../images/travel.webp'); background-position: center; background-size: cover; }
.bbp-routes__inner { position: relative; z-index: 1; display: flex; min-height: 690px; flex-direction: column; padding-block: 76px 58px; }
.bbp-routes__intro { max-width: 600px; margin: -20px 0 0; color: #c3cbd2; }
.bbp-routes__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; margin-top: auto; }
.bbp-route-card { position: relative; min-height: 235px; padding: 23px; overflow: hidden; border: 1px solid #4a555f; background: rgba(7,12,17,.88); backdrop-filter: blur(8px); }
.bbp-route-card__link { position: absolute; z-index: 2; inset: 0; }
.bbp-route-card:hover { border-color: var(--bbp-red); transform: translateY(-3px); }
.bbp-route-card__top { display: flex; align-items: center; justify-content: space-between; color: var(--bbp-muted-light); font-size: .58rem; letter-spacing: .05em; text-transform: uppercase; }
.bbp-route-card__top i { width: 8px; height: 8px; border-radius: 50%; background: var(--bbp-red); }
.bbp-route-card h3 { max-width: 310px; margin-top: 28px; font-size: 1.8rem; text-transform: uppercase; }
.bbp-route-card__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 42px; padding-top: 17px; border-top: 1px solid var(--bbp-border-dark); }

/* Video Paddock */
.bbp-videos__grid { display: grid; grid-template-columns: minmax(0,1.6fr) minmax(330px,.8fr); gap: 24px; }
.bbp-video-feature { position: relative; min-height: 510px; overflow: hidden; background: var(--bbp-black); color: var(--bbp-white); }
.bbp-video-feature__media, .bbp-video-feature__shade { position: absolute; inset: 0; }
.bbp-video-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.bbp-video-feature__shade { background: linear-gradient(0deg, rgba(4,6,9,.95), rgba(4,6,9,.12) 65%); pointer-events: none; }
.bbp-play { position: absolute; z-index: 3; top: 50%; left: 50%; display: grid; width: 70px; height: 70px; place-items: center; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; background: var(--bbp-red); color: var(--bbp-white); transform: translate(-50%,-50%); }
.bbp-play svg { width: 28px; height: 28px; fill: currentColor; stroke: currentColor; }
.bbp-video-feature:hover .bbp-play { transform: translate(-50%,-50%) scale(1.08); }
.bbp-video-feature__content { position: absolute; z-index: 4; right: 0; bottom: 0; left: 0; padding: 30px; pointer-events: none; }
.bbp-video-feature__content h3 { max-width: 620px; margin: 10px 0 7px; font-size: clamp(2rem,3.4vw,3.3rem); text-transform: uppercase; }
.bbp-video-feature__content h3 a { pointer-events: auto; }
.bbp-video-feature__content > span { color: var(--bbp-muted-light); font-size: .68rem; text-transform: uppercase; }
.bbp-video-list { display: grid; grid-template-rows: repeat(3,1fr); gap: 14px; }
.bbp-video-row { display: grid; min-height: 0; grid-template-columns: 42% minmax(0,1fr); border: 1px solid var(--bbp-border-light); background: var(--bbp-white); }
.bbp-video-row__media { position: relative; min-height: 0; overflow: hidden; }
.bbp-video-row__media img { width: 100%; height: 100%; object-fit: cover; }
.bbp-play--small { top: auto; right: 12px; bottom: 12px; left: auto; width: 34px; height: 34px; transform: none; }
.bbp-play--small svg { width: 14px; height: 14px; }
.bbp-video-row > div { display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: 14px 16px; }
.bbp-video-row h3 { margin: 8px 0 10px; font-size: 1.16rem; text-transform: uppercase; }
.bbp-video-row h3 a:hover { color: var(--bbp-red); }
.bbp-video-row > div > span { color: var(--bbp-muted-dark); font-size: .6rem; text-transform: uppercase; }

/* Newsletter */
.bbp-newsletter { position: relative; margin: 0; padding: 64px 0; overflow: hidden; border-bottom: 1px solid var(--bbp-border-dark); background: var(--bbp-graphite) url('../images/diagonal-pattern.svg') repeat; color: var(--bbp-white); }
.bbp-newsletter::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,24,32,.25), rgba(17,24,32,.96)); }
.bbp-newsletter__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(300px,.8fr) minmax(560px,1.2fr); align-items: center; gap: clamp(45px,7vw,100px); }
.bbp-newsletter h2 { margin: 18px 0 10px; font-size: clamp(2.5rem,4.4vw,4.35rem); text-transform: uppercase; }
.bbp-newsletter__grid > div:first-child > p:last-child { color: var(--bbp-muted-light); }
.bbp-newsletter-form, .bbp-newsletter__form > form { display: grid; grid-template-columns: .75fr 1fr auto; gap: 10px; align-items: start; }
.bbp-newsletter-form input[type="text"], .bbp-newsletter-form input[type="email"], .bbp-newsletter__form > form > input { width: 100%; height: 50px; padding: 0 15px; border: 1px solid #3c4650; border-radius: 0; background: #171e26; color: var(--bbp-white); }
.bbp-newsletter-form button, .bbp-newsletter__form > form > button { min-width: 148px; height: 50px; padding: 0 20px; border: 0; border-radius: 0; background: var(--bbp-red); color: var(--bbp-white); font-size: .68rem; font-weight: 800; letter-spacing: .045em; text-transform: uppercase; }
.bbp-newsletter-form button:hover { background: var(--bbp-red-hover); }
.bbp-honeypot { position: absolute !important; left: -9999px !important; }
.bbp-newsletter__fine, .bbp-newsletter__message, .bbp-newsletter__form > form > p { grid-column: 1 / -1; margin: 5px 0 0; color: #84909b; font-size: .57rem; line-height: 1.5; }
.bbp-newsletter__fine { display: flex; align-items: flex-start; gap: 8px; }
.bbp-newsletter__fine input { margin-top: 3px; accent-color: var(--bbp-red); }
.bbp-newsletter__message.is-success { color: var(--bbp-success); }
.bbp-newsletter__message.is-error { color: #ff8a7c; }

/* Footer */
.bbp-footer { position: relative; background: var(--bbp-black); color: var(--bbp-muted-light); }
.bbp-footer__stripe { height: 6px; background: linear-gradient(90deg, var(--bbp-red) 0 14%, var(--bbp-yellow) 14% 18%, var(--bbp-red) 18% 23%, transparent 23%); }
.bbp-footer__grid { display: grid; grid-template-columns: minmax(235px,1.2fr) repeat(3,minmax(120px,.65fr)) minmax(230px,1fr); gap: clamp(30px,4vw,64px); padding-block: 70px 58px; }
.bbp-footer__brand img { width: 220px; }
.bbp-footer__brand > p { max-width: 310px; margin: 22px 0; color: #7f8993; font-size: .79rem; line-height: 1.7; }
.bbp-footer h2 { margin-bottom: 23px; color: var(--bbp-white); font-family: var(--bbp-body); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.bbp-footer li { margin-bottom: 10px; font-size: .73rem; }
.bbp-footer a:hover { color: var(--bbp-red); }
.bbp-footer__socials { display: flex; gap: 8px; }
.bbp-footer__socials a { display: grid; width: 32px; height: 32px; place-items: center; border: 1px solid var(--bbp-border-dark); color: var(--bbp-white); font-size: .58rem; font-weight: 800; }
.bbp-footer__recent article { padding: 0 0 15px; margin-bottom: 15px; border-bottom: 1px solid #20262d; }
.bbp-footer__recent article a { display: block; color: var(--bbp-white); font-family: var(--bbp-display); font-size: .9rem; font-weight: 700; line-height: 1.15; text-transform: uppercase; }
.bbp-footer__recent article span { display: block; margin-top: 8px; color: #68717a; font-size: .56rem; text-transform: uppercase; }
.bbp-footer__bottom { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid #21272e; color: #616b75; font-size: .6rem; text-transform: uppercase; }
.bbp-footer__bottom ul { display: flex; gap: 20px; }

/* Archive and page headers */
.bbp-breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; color: rgba(255,255,255,.58); font-size: .62rem; font-weight: 700; text-transform: uppercase; }
.bbp-breadcrumbs a:hover { color: var(--bbp-red); }
.bbp-archive-hero, .bbp-page-hero, .bbp-author-hero { padding: clamp(70px,9vw,130px) 0; background: radial-gradient(circle at 85% 0, rgba(255,59,36,.15), transparent 30%), var(--bbp-carbon); color: var(--bbp-white); }
.bbp-archive-hero h1, .bbp-page-hero h1, .bbp-author-hero h1 { max-width: 980px; margin: 20px 0; font-size: clamp(3.5rem,7vw,7rem); text-transform: uppercase; }
.bbp-archive-hero > .bbp-container > p:last-child, .bbp-page-hero > .bbp-container > p:last-child, .bbp-archive-hero__description { max-width: 690px; color: var(--bbp-muted-light); }
.bbp-archive-hero__search { max-width: 760px; margin-top: 35px; }
.bbp-author-hero__grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; }
.bbp-author-hero img { border: 5px solid var(--bbp-panel); border-radius: 50%; }
.bbp-archive-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.bbp-archive-card { display: flex; min-width: 0; flex-direction: column; border: 1px solid var(--bbp-border-light); background: var(--bbp-white); }
.bbp-archive-card__media { overflow: hidden; aspect-ratio: 16/10; }
.bbp-archive-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 420ms ease; }
.bbp-archive-card:hover img { transform: scale(1.035); }
.bbp-archive-card__content { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.bbp-archive-card__title { margin: 10px 0 15px; font-size: 1.7rem; text-transform: uppercase; }
.bbp-archive-card__title a:hover { color: var(--bbp-red); }
.bbp-archive-card__excerpt { color: var(--bbp-muted-dark); font-size: .84rem; line-height: 1.65; }
.bbp-archive-card .bbp-post-meta { margin-top: auto; padding-top: 18px; color: var(--bbp-muted-dark); }
.bbp-pagination { margin-top: 46px; }
.bbp-pagination ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.bbp-pagination a, .bbp-pagination span { display: grid; min-width: 44px; height: 44px; place-items: center; padding: 0 12px; border: 1px solid var(--bbp-border-light); background: var(--bbp-white); font-size: .7rem; font-weight: 800; }
.bbp-pagination .current, .bbp-pagination a:hover { border-color: var(--bbp-red); background: var(--bbp-red); color: var(--bbp-white); }
.bbp-empty-state { max-width: 760px; padding: 45px; border: 1px solid var(--bbp-border-light); background: var(--bbp-white); }
.bbp-empty-state h2 { margin: 18px 0; font-size: 3rem; text-transform: uppercase; }
.bbp-empty-state .bbp-search-form { margin: 30px 0; }

/* Single article */
.bbp-reading-progress { position: fixed; z-index: 2500; top: 0; left: 0; width: 0; height: 4px; background: var(--bbp-red); pointer-events: none; }
.admin-bar .bbp-reading-progress { top: 32px; }
.bbp-single-hero { position: relative; min-height: 610px; overflow: hidden; background: var(--bbp-black); color: var(--bbp-white); }
.bbp-single-hero__media, .bbp-single-hero__overlay { position: absolute; inset: 0; }
.bbp-single-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.bbp-single-hero__overlay { background: linear-gradient(90deg, rgba(4,6,9,.95), rgba(4,6,9,.55) 55%, rgba(4,6,9,.22)), linear-gradient(0deg, rgba(4,6,9,.82), transparent 50%); }
.bbp-single-hero__content { position: relative; z-index: 2; display: flex; min-height: 610px; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding-block: 75px; }
.bbp-single-hero__content h1 { max-width: 1000px; margin: 22px 0; font-size: clamp(4rem,7.3vw,7.5rem); text-transform: uppercase; }
.bbp-single-hero__content h1.is-title-xl { font-size: clamp(3.4rem,6vw,6.2rem); }
.bbp-single-hero__content h1.is-title-xxl { font-size: clamp(3rem,5.2vw,5.4rem); }
.bbp-single-hero__excerpt { max-width: 760px; color: #d1d7dc; font-size: 1.08rem; }
.bbp-single-hero__byline { display: flex; align-items: center; gap: 14px; margin-top: 15px; }
.bbp-single-hero__byline img { border-radius: 50%; }
.bbp-single-hero__byline > div > a { display: block; margin-bottom: 4px; font-size: .74rem; font-weight: 800; text-transform: uppercase; }
.bbp-article-layout { display: grid; grid-template-columns: minmax(0,820px) minmax(260px,320px); justify-content: space-between; gap: clamp(50px,8vw,100px); }
.bbp-article-content { min-width: 0; font-size: 1.05rem; line-height: 1.82; }
.bbp-article-content > *:first-child { margin-top: 0; }
.bbp-article-content p { margin-bottom: 1.55em; }
.bbp-article-content h2 { margin: 2.05em 0 .7em; font-size: clamp(2.3rem,4vw,3.55rem); text-transform: uppercase; }
.bbp-article-content h3 { margin: 1.8em 0 .65em; font-size: clamp(1.75rem,3vw,2.45rem); }
.bbp-article-content h4 { margin: 1.6em 0 .6em; font-size: 1.55rem; }
.bbp-article-content a { color: #c92918; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.bbp-article-content img { width: auto; max-width: 100%; height: auto; }
.bbp-article-content figure { margin: 2.5em 0; }
.bbp-article-content figcaption { margin-top: 9px; color: var(--bbp-muted-dark); font-size: .72rem; }
.bbp-article-content blockquote { margin: 2.3em 0; padding: 8px 0 8px 28px; border-left: 6px solid var(--bbp-red); color: #343b42; font-family: var(--bbp-display); font-size: clamp(1.75rem,3.1vw,2.5rem); font-weight: 700; line-height: 1.18; }
.bbp-article-content ul, .bbp-article-content ol { padding-left: 1.4em; }
.bbp-article-content li { margin-bottom: .6em; }
.bbp-article-content table { width: 100%; margin: 2em 0; border-collapse: collapse; font-size: .86rem; }
.bbp-article-content th, .bbp-article-content td { padding: 12px; border: 1px solid var(--bbp-border-light); text-align: left; }
.bbp-article-content th { background: var(--bbp-ink); color: var(--bbp-white); }
.bbp-article-sidebar { position: relative; }
.bbp-sidebar-card { position: sticky; top: 120px; padding: 24px; margin-bottom: 22px; border: 1px solid var(--bbp-border-light); background: var(--bbp-white); }
.bbp-sidebar-card + .bbp-sidebar-card { position: static; }
.bbp-sidebar-card nav { margin-top: 18px; }
.bbp-sidebar-card nav ol { margin: 0; padding: 0; list-style: none; }
.bbp-sidebar-card nav li { border-top: 1px solid var(--bbp-border-light); }
.bbp-sidebar-card nav a { display: block; padding: 12px 0; color: var(--bbp-muted-dark); font-size: .72rem; font-weight: 700; line-height: 1.45; }
.bbp-sidebar-card nav a:hover, .bbp-sidebar-card nav a.is-active { color: var(--bbp-red); }
.bbp-sidebar-story { padding: 14px 0; border-top: 1px solid var(--bbp-border-light); }
.bbp-sidebar-story a { display: block; font-family: var(--bbp-display); font-size: 1.1rem; font-weight: 700; line-height: 1.1; text-transform: uppercase; }
.bbp-sidebar-story span { display: block; margin-top: 6px; color: var(--bbp-muted-dark); font-size: .56rem; text-transform: uppercase; }
.bbp-article-footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 55px; padding-top: 28px; border-top: 1px solid var(--bbp-border-light); }
.bbp-tags, .bbp-share { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .65rem; font-weight: 700; text-transform: uppercase; }
.bbp-tags > span, .bbp-share > span { color: var(--bbp-muted-dark); }
.bbp-tags a, .bbp-share a { padding: 7px 10px; background: var(--bbp-soft-light); }
.bbp-tags a:hover, .bbp-share a:hover { background: var(--bbp-red); color: var(--bbp-white); }
.bbp-author-box { display: grid; grid-template-columns: 96px 1fr; gap: 24px; margin-top: 55px; padding: 30px; background: var(--bbp-ink); color: var(--bbp-white); }
.bbp-author-box img { border-radius: 50%; }
.bbp-author-box h2 { margin: 8px 0 10px; font-size: 2rem; text-transform: uppercase; }
.bbp-author-box p { color: var(--bbp-muted-light); font-size: .82rem; }
.bbp-author-box a { color: var(--bbp-red); font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.bbp-related__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.bbp-comments { margin-top: 58px; padding-top: 44px; border-top: 1px solid var(--bbp-border-light); }
.bbp-comments > h2 { margin-bottom: 28px; font-size: 2.5rem; text-transform: uppercase; }
.bbp-comment-list { margin: 0; padding: 0; list-style: none; }
.bbp-comment-list li { margin-bottom: 22px; }
.bbp-comment-list .comment-body { padding: 22px; border: 1px solid var(--bbp-border-light); background: var(--bbp-white); }
.bbp-comment-list .children { margin: 20px 0 0 40px; list-style: none; }
.comment-form label { display: block; margin-bottom: 7px; font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.comment-form input:not([type="checkbox"]), .comment-form textarea { width: 100%; padding: 13px; border: 1px solid var(--bbp-border-light); border-radius: 0; background: var(--bbp-white); }
.comment-form input[type="submit"] { min-height: 48px; padding: 0 22px; border: 0; background: var(--bbp-red); color: var(--bbp-white); font-size: .72rem; font-weight: 800; text-transform: uppercase; }

/* Race, route, and video detail */
.bbp-detail-hero { padding: clamp(70px,9vw,130px) 0; background: radial-gradient(circle at 80% 10%, rgba(242,212,0,.12), transparent 30%), var(--bbp-carbon); color: var(--bbp-white); }
.bbp-detail-hero__grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 60px; }
.bbp-detail-hero h1 { max-width: 800px; margin: 20px 0; font-size: clamp(4rem,7vw,7rem); text-transform: uppercase; }
.bbp-detail-hero p { color: var(--bbp-muted-light); }
.bbp-detail-stats { display: grid; grid-template-columns: repeat(2,1fr); border: 1px solid var(--bbp-border-dark); background: var(--bbp-graphite); }
.bbp-detail-stats > div { min-height: 110px; padding: 22px; border-right: 1px solid var(--bbp-border-dark); border-bottom: 1px solid var(--bbp-border-dark); }
.bbp-detail-stats span, .bbp-route-hero-stats span { display: block; color: var(--bbp-muted-light); font-size: .56rem; font-weight: 700; text-transform: uppercase; }
.bbp-detail-stats strong, .bbp-route-hero-stats strong { display: block; margin-top: 10px; color: var(--bbp-white); font-family: var(--bbp-display); font-size: 1.65rem; text-transform: uppercase; }
.bbp-race-detail-layout { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: 70px; }
.bbp-session-card, .bbp-route-planner { align-self: start; padding: 26px; border: 1px solid var(--bbp-border-light); background: var(--bbp-white); }
.bbp-session-card h2, .bbp-route-planner h2 { margin: 10px 0 23px; font-size: 2rem; text-transform: uppercase; }
.bbp-session-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; border-top: 1px solid var(--bbp-border-light); font-size: .72rem; }
.bbp-session-row strong { text-align: right; }
.bbp-results-table { border: 1px solid var(--bbp-border-dark); }
.bbp-results-table > div { display: grid; min-height: 58px; grid-template-columns: 50px 1.5fr 1fr 1fr 70px; align-items: center; gap: 12px; padding: 0 18px; border-top: 1px solid var(--bbp-border-dark); }
.bbp-results-table__head { min-height: 44px !important; border-top: 0 !important; color: var(--bbp-muted-light); font-size: .56rem; font-weight: 800; text-transform: uppercase; }
.bbp-results-table b { color: var(--bbp-yellow); font-family: var(--bbp-display); font-size: 1.3rem; }
.bbp-results-table strong { font-size: .74rem; text-transform: uppercase; }
.bbp-results-table span { color: var(--bbp-muted-light); font-size: .68rem; }
.bbp-results-table em { font-size: .72rem; font-style: normal; font-weight: 800; text-align: right; }
.bbp-results-table--light { border-color: var(--bbp-border-light); background: var(--bbp-white); }
.bbp-results-table--light > div { border-color: var(--bbp-border-light); }
.bbp-results-table--light span { color: var(--bbp-muted-dark); }
.bbp-route-archive-grid, .bbp-video-archive-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.bbp-route-archive-card, .bbp-video-archive-card { border: 1px solid var(--bbp-border-light); background: var(--bbp-white); }
.bbp-route-archive-card__media, .bbp-video-archive-card__media { position: relative; display: block; overflow: hidden; aspect-ratio: 16/10; }
.bbp-route-archive-card__media img, .bbp-video-archive-card__media img { width: 100%; height: 100%; object-fit: cover; }
.bbp-route-archive-card__content, .bbp-video-archive-card > div { padding: 24px; }
.bbp-route-archive-card h2, .bbp-video-archive-card h2 { margin: 10px 0 14px; font-size: 1.8rem; text-transform: uppercase; }
.bbp-route-archive-card__content > p { color: var(--bbp-muted-dark); font-size: .8rem; }
.bbp-route-archive-card .bbp-route-card__stats { margin-top: 25px; }
.bbp-route-archive-card .bbp-route-card__stats strong { color: var(--bbp-ink); }
.bbp-route-hero-stats { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1px; margin-top: 30px; background: rgba(255,255,255,.16); }
.bbp-route-hero-stats > div { min-width: 0; padding: 17px; background: rgba(7,9,12,.82); }
.bbp-route-planner { position: sticky; top: 120px; }
.bbp-route-planner h2 span { color: var(--bbp-red); }
.bbp-route-planner dl { margin: 24px 0; }
.bbp-route-planner dl > div { display: flex; justify-content: space-between; padding: 13px 0; border-top: 1px solid var(--bbp-border-light); font-size: .75rem; }
.bbp-route-planner dt { color: var(--bbp-muted-dark); text-transform: uppercase; }
.bbp-route-planner dd { margin: 0; font-weight: 700; }
.bbp-route-planner .bbp-button { width: 100%; margin-top: 10px; }
.bbp-video-archive-card__media .bbp-play { width: 54px; height: 54px; }
.bbp-video-archive-card > div > span { color: var(--bbp-muted-dark); font-size: .62rem; text-transform: uppercase; }
.bbp-video-embed { position: relative; display: grid; width: min(1180px,100%); margin: 0 auto 55px; overflow: hidden; place-items: center; background: var(--bbp-black); aspect-ratio: 16/9; }
.bbp-video-embed iframe, .bbp-video-embed video, .bbp-video-embed img { width: 100%; height: 100%; border: 0; object-fit: cover; }
.bbp-race-archive-grid { display: grid; gap: 16px; }
.bbp-race-event-card { display: grid; min-height: 135px; grid-template-columns: 110px minmax(0,1fr) 54px; align-items: center; gap: 28px; padding: 20px 24px; border: 1px solid var(--bbp-border-dark); background: var(--bbp-graphite); }
.bbp-race-event-card__date { display: flex; min-height: 90px; flex-direction: column; align-items: center; justify-content: center; border-right: 1px solid var(--bbp-border-dark); color: var(--bbp-yellow); }
.bbp-race-event-card__date strong { font-family: var(--bbp-display); font-size: 3rem; line-height: 1; }
.bbp-race-event-card__date span { color: var(--bbp-muted-light); font-size: .58rem; text-transform: uppercase; }
.bbp-race-event-card h2 { margin: 8px 0; font-size: 2rem; text-transform: uppercase; }
.bbp-race-event-card p { margin: 0; color: var(--bbp-muted-light); font-size: .75rem; }
.bbp-race-event-card__arrow { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--bbp-border-dark); }
.bbp-race-event-card__arrow:hover { border-color: var(--bbp-red); background: var(--bbp-red); }

/* 404 */
.bbp-not-found { display: grid; min-height: 72vh; place-items: center; padding: 80px 0; background: var(--bbp-carbon); color: var(--bbp-white); text-align: center; }
.bbp-not-found .bbp-container { position: relative; max-width: 820px; }
.bbp-not-found .bbp-container > span { position: absolute; z-index: 0; top: 50%; left: 50%; color: rgba(255,255,255,.035); font-family: var(--bbp-display); font-size: min(42vw,32rem); font-weight: 800; line-height: .7; transform: translate(-50%,-50%); }
.bbp-not-found .bbp-eyebrow { position: relative; justify-content: center; }
.bbp-not-found h1 { position: relative; margin: 24px 0; font-size: clamp(3.5rem,8vw,8rem); text-transform: uppercase; }
.bbp-not-found p { position: relative; color: var(--bbp-muted-light); }
.bbp-not-found .bbp-search-form { position: relative; margin: 34px auto 18px; }
.bbp-not-found .bbp-button { position: relative; }

/* WordPress block compatibility */
.alignwide { width: min(1100px, calc(100vw - (var(--bbp-gutter) * 2))); max-width: none; margin-right: auto; margin-left: auto; }
.alignfull { width: 100vw; max-width: none; margin-right: calc(50% - 50vw); margin-left: calc(50% - 50vw); }
.wp-block-image img { height: auto; }
.wp-caption, .gallery-caption { max-width: 100%; color: var(--bbp-muted-dark); font-size: .75rem; }
.sticky { position: relative; }
.bypostauthor { position: relative; }

/* Responsive */
@media (max-width: 1180px) {
  .bbp-site-header__inner { grid-template-columns: 210px 1fr auto; }
  .bbp-desktop-nav { display: none; }
  .bbp-site-header__inner { grid-template-columns: 220px minmax(0,1fr) auto; }
  .bbp-menu-toggle { display: grid; }
  .bbp-header-actions { grid-column: 3; }
  .bbp-hero__layout { grid-template-columns: minmax(0,650px) 320px; gap: 35px; }
  .bbp-next-race { width: 320px; }
  .bbp-feature-story { grid-template-columns: 1fr 1fr; }
  .bbp-garage__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .bbp-footer__grid { grid-template-columns: 1.2fr repeat(3,.65fr); }
  .bbp-footer__recent { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
  .bbp-footer__recent h2 { grid-column: 1 / -1; margin-bottom: 0; }
}

@media (max-width: 1024px) {
  :root { --bbp-section-space: 70px; }
  .admin-bar.has-sticky-header .bbp-site-header { top: 32px; }
  .bbp-hero, .bbp-hero__layout { min-height: 590px; }
  .bbp-hero__layout { grid-template-columns: 1fr 290px; }
  .bbp-hero__title { font-size: clamp(3.45rem,7vw,4.6rem); }
  .bbp-hero__title.is-title-xl, .bbp-hero__title.is-title-xxl { font-size: clamp(2.8rem,6vw,3.8rem); }
  .bbp-next-race { width: 290px; padding: 18px; }
  .bbp-countdown { gap: 5px; }
  .bbp-latest__grid { grid-template-columns: 1fr; }
  .bbp-lead-story { min-height: 560px; }
  .bbp-latest__secondary { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .bbp-story-card__body { padding: 15px; }
  .bbp-story-card__title { font-size: 1.1rem; }
  .bbp-story-card .bbp-post-meta span:nth-child(2) { display: none; }
  .bbp-race-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .bbp-race-grid > :last-child { grid-column: 1 / -1; }
  .bbp-feature-story__content { padding: 55px; }
  .bbp-feature-story__content h2 { font-size: 3.5rem; }
  .bbp-routes__grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .bbp-route-card { padding: 19px; }
  .bbp-route-card h3 { font-size: 1.45rem; }
  .bbp-videos__grid { grid-template-columns: 1fr; }
  .bbp-video-list { grid-template-columns: repeat(3,1fr); grid-template-rows: none; }
  .bbp-video-row { grid-template-columns: 1fr; }
  .bbp-video-row__media { min-height: 150px; }
  .bbp-newsletter__grid { grid-template-columns: 1fr; gap: 30px; }
  .bbp-article-layout { grid-template-columns: minmax(0,1fr) 280px; gap: 50px; }
  .bbp-archive-grid, .bbp-route-archive-grid, .bbp-video-archive-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .bbp-detail-hero__grid { grid-template-columns: 1fr; }
  .bbp-race-detail-layout { grid-template-columns: 1fr 320px; gap: 40px; }
}

@media (max-width: 782px) {
  .admin-bar.has-sticky-header .bbp-site-header { top: 46px; }
  .admin-bar .bbp-reading-progress { top: 46px; }
}

@media (max-width: 768px) {
  :root { --bbp-gutter: 20px; --bbp-section-space: 58px; }
  .bbp-utility__inner { grid-template-columns: auto minmax(0,1fr); gap: 20px; }
  .bbp-utility__newsletter { display: none; }
  .bbp-site-header { height: 70px; }
  .bbp-site-header__inner { height: 70px; grid-template-columns: minmax(0,1fr) auto; gap: 14px; }
  .bbp-brand { width: 190px; }
  .bbp-header-actions { grid-column: 2; }
  .bbp-race-link { display: none; }
  .bbp-header-icon { width: 42px; height: 42px; }
  .bbp-hero, .bbp-hero__layout { min-height: 590px; }
  .bbp-hero__overlay { background: linear-gradient(90deg, rgba(3,5,8,.95), rgba(3,5,8,.58)), linear-gradient(0deg, rgba(3,5,8,.8), transparent); }
  .bbp-hero__layout { display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding-block: 65px; }
  .bbp-hero__content { max-width: 620px; }
  .bbp-hero__title, .bbp-hero__title.is-title-xl, .bbp-hero__title.is-title-xxl { max-width: 620px; font-size: clamp(3.2rem,11vw,4.8rem); }
  .bbp-next-race { display: none; }
  .bbp-breaking__inner { width: 100%; grid-template-columns: 100px minmax(0,1fr); }
  .bbp-breaking__label { padding-inline: 14px; }
  .bbp-section-heading { align-items: flex-end; }
  .bbp-section-heading__title { font-size: 2.4rem; }
  .bbp-section-heading__rule { width: 36px; }
  .bbp-section-heading__link { font-size: .58rem; }
  .bbp-lead-story { min-height: 520px; }
  .bbp-lead-story__content { padding: 26px; }
  .bbp-latest__secondary { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .bbp-race-grid { grid-template-columns: 1fr; }
  .bbp-race-grid > :last-child { grid-column: auto; }
  .bbp-feature-story { grid-template-columns: 1fr; }
  .bbp-feature-story__media { min-height: 430px; }
  .bbp-feature-story__content { padding: 52px var(--bbp-gutter) 58px; }
  .bbp-feature-story__content h2 { font-size: clamp(3rem,10vw,4.4rem); }
  .bbp-garage__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .bbp-routes { min-height: auto; }
  .bbp-routes__inner { min-height: 720px; padding-block: 58px; }
  .bbp-routes__grid { grid-template-columns: 1fr; margin-top: 45px; }
  .bbp-route-card { min-height: 190px; }
  .bbp-route-card__stats { margin-top: 28px; }
  .bbp-video-feature { min-height: 450px; }
  .bbp-video-list { grid-template-columns: 1fr; }
  .bbp-video-row { grid-template-columns: 180px minmax(0,1fr); }
  .bbp-video-row__media { min-height: 145px; }
  .bbp-newsletter { padding: 52px 0; }
  .bbp-newsletter-form, .bbp-newsletter__form > form { grid-template-columns: 1fr 1fr; }
  .bbp-newsletter-form button, .bbp-newsletter__form > form > button { grid-column: 1 / -1; }
  .bbp-footer__grid { grid-template-columns: repeat(2,1fr); gap: 38px; }
  .bbp-footer__brand { grid-column: 1 / -1; }
  .bbp-footer__recent { grid-template-columns: 1fr; }
  .bbp-footer__bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 22px; }
  .bbp-archive-grid, .bbp-route-archive-grid, .bbp-video-archive-grid { grid-template-columns: 1fr 1fr; }
  .bbp-archive-hero h1, .bbp-page-hero h1, .bbp-author-hero h1 { font-size: clamp(3.1rem,12vw,5.2rem); }
  .bbp-author-hero__grid { grid-template-columns: 1fr; }
  .bbp-author-hero img { width: 120px; }
  .bbp-single-hero { min-height: 570px; }
  .bbp-single-hero__content { min-height: 570px; padding-block: 55px; }
  .bbp-single-hero__content h1, .bbp-single-hero__content h1.is-title-xl, .bbp-single-hero__content h1.is-title-xxl { font-size: clamp(3.1rem,11vw,5.4rem); }
  .bbp-article-layout { grid-template-columns: 1fr; }
  .bbp-article-sidebar { display: none; }
  .bbp-related__grid { grid-template-columns: 1fr 1fr; }
  .bbp-race-detail-layout { grid-template-columns: 1fr; }
  .bbp-detail-hero h1 { font-size: clamp(3.3rem,12vw,5.6rem); }
  .bbp-route-hero-stats { grid-template-columns: repeat(2,1fr); }
  .bbp-route-planner { position: static; }
  .bbp-results-table { overflow-x: auto; }
  .bbp-results-table > div { min-width: 720px; }
}

@media (max-width: 576px) {
  .bbp-utility { display: none; }
  .bbp-brand { width: 175px; }
  .bbp-header-actions { gap: 8px; }
  .bbp-header-actions > [data-bbp-search-open] { display: none; }
  .bbp-hero, .bbp-hero__layout { min-height: 570px; }
  .bbp-hero__media img { object-position: 62% center; }
  .bbp-hero__layout { padding-block: 48px; }
  .bbp-hero__title, .bbp-hero__title.is-title-xl, .bbp-hero__title.is-title-xxl { margin: 18px 0; font-size: clamp(2.75rem,13vw,4rem); line-height: .91; }
  .bbp-hero__excerpt { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 3; font-size: .88rem; }
  .bbp-hero__actions { margin-bottom: 18px; }
  .bbp-button { min-height: 46px; padding: 10px 16px; font-size: .66rem; }
  .bbp-hero__actions .bbp-button--ghost { display: none; }
  .bbp-post-meta { font-size: .56rem; }
  .bbp-post-meta span + span::before { margin-right: 10px; }
  .bbp-post-meta { gap: 7px 10px; }
  .bbp-breaking__inner { grid-template-columns: 90px minmax(0,1fr); }
  .bbp-breaking__stories a { padding: 0 15px; }
  .bbp-section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 28px; }
  .bbp-section-heading__title-wrap { align-items: flex-end; }
  .bbp-section-heading__title { font-size: 2.2rem; }
  .bbp-section-heading__link { align-self: flex-end; margin-top: -14px; }
  .bbp-lead-story { min-height: 460px; }
  .bbp-lead-story__content h3 { font-size: 2rem; }
  .bbp-latest__secondary { grid-template-columns: 1fr; }
  .bbp-story-card--compact { display: grid; grid-template-columns: 145px minmax(0,1fr); }
  .bbp-story-card--compact .bbp-story-card__media { height: 100%; aspect-ratio: auto; }
  .bbp-story-card--compact .bbp-story-card__body { padding: 14px; }
  .bbp-data-card { min-height: auto; }
  .bbp-podium { min-height: 270px; }
  .bbp-feature-story__media { min-height: 340px; }
  .bbp-feature-story__content { padding-top: 45px; }
  .bbp-garage__grid { grid-template-columns: 1fr; }
  .bbp-filter-tabs { gap: 16px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; white-space: nowrap; }
  .bbp-routes__background { background-position: 60% center; }
  .bbp-route-card h3 { font-size: 1.65rem; }
  .bbp-video-feature { min-height: 390px; }
  .bbp-video-feature__content { padding: 22px; }
  .bbp-video-feature__content h3 { font-size: 2rem; }
  .bbp-video-row { grid-template-columns: 125px minmax(0,1fr); }
  .bbp-video-row__media { min-height: 128px; }
  .bbp-video-row h3 { font-size: 1rem; }
  .bbp-newsletter-form, .bbp-newsletter__form > form { grid-template-columns: 1fr; }
  .bbp-newsletter-form button, .bbp-newsletter__form > form > button { grid-column: auto; }
  .bbp-footer__grid { grid-template-columns: 1fr 1fr; padding-block: 55px 42px; }
  .bbp-footer__column:last-of-type { grid-column: 1 / -1; }
  .bbp-footer__bottom ul { flex-wrap: wrap; gap: 12px; }
  .bbp-search-overlay { padding: 0; }
  .bbp-search-overlay__panel { height: 100%; padding: 90px 24px 30px; }
  .bbp-search-form { grid-template-columns: 1fr; }
  .bbp-archive-grid, .bbp-route-archive-grid, .bbp-video-archive-grid { grid-template-columns: 1fr; }
  .bbp-article-section { padding-top: 45px; }
  .bbp-article-content { font-size: .98rem; }
  .bbp-article-footer { align-items: flex-start; flex-direction: column; }
  .bbp-author-box { grid-template-columns: 70px 1fr; padding: 22px; }
  .bbp-author-box img { width: 70px; height: 70px; }
  .bbp-related__grid { grid-template-columns: 1fr; }
  .bbp-detail-stats { grid-template-columns: 1fr 1fr; }
  .bbp-detail-stats > div { min-height: 90px; padding: 16px; }
  .bbp-detail-stats strong { font-size: 1.25rem; }
  .bbp-race-event-card { grid-template-columns: 70px minmax(0,1fr); gap: 16px; padding: 16px; }
  .bbp-race-event-card__date { min-height: 75px; }
  .bbp-race-event-card__arrow { display: none; }
  .bbp-race-event-card h2 { font-size: 1.45rem; }
  .bbp-comment-list .children { margin-left: 16px; }
}

@media (max-width: 390px) {
  :root { --bbp-gutter: 16px; }
  .bbp-brand { width: 155px; }
  .bbp-header-icon { width: 40px; height: 40px; }
  .bbp-hero__title, .bbp-hero__title.is-title-xl, .bbp-hero__title.is-title-xxl { font-size: 2.7rem; }
  .bbp-section-heading__title { font-size: 2rem; }
  .bbp-lead-story { min-height: 420px; }
  .bbp-story-card--compact { grid-template-columns: 120px minmax(0,1fr); }
  .bbp-story-card--compact .bbp-story-card__title { font-size: 1rem; }
  .bbp-feature-story__content h2 { font-size: 2.7rem; }
  .bbp-route-card__stats { gap: 5px; }
  .bbp-route-card__stats strong { font-size: .58rem; }
  .bbp-footer__grid { grid-template-columns: 1fr; }
  .bbp-footer__column:last-of-type { grid-column: auto; }
  .bbp-footer__brand { grid-column: auto; }
  .bbp-route-hero-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-height: 520px) and (orientation: landscape) {
  .bbp-utility { display: none; }
  .bbp-site-header, .bbp-site-header__inner { height: 62px; }
  .bbp-brand { width: 165px; }
  .bbp-hero, .bbp-hero__layout { min-height: 480px; }
  .bbp-hero__layout { padding-block: 40px; }
  .bbp-hero__title, .bbp-hero__title.is-title-xl, .bbp-hero__title.is-title-xxl { max-width: 650px; font-size: 3.3rem; }
  .bbp-hero__excerpt { max-width: 620px; -webkit-line-clamp: 2; }
  .bbp-mobile-menu__panel { width: min(500px, 75vw); }
  .bbp-mobile-primary-menu a { min-height: 42px; font-size: 1.1rem; }
}

@media (min-width: 1600px) {
  :root { --bbp-container: 1360px; }
  .bbp-hero__layout { grid-template-columns: minmax(0,720px) 370px; }
  .bbp-hero__content { max-width: 720px; }
  .bbp-hero__title { max-width: 720px; }
  .bbp-next-race { width: 370px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
/* Mobile navigation long-label safeguard. */
.bbp-mobile-primary-menu a {
  min-width: 0;
  padding: 12px 4px 12px 0;
  line-height: 1.05;
  white-space: normal;
  overflow-wrap: anywhere;
}
.bbp-mobile-primary-menu a::after { flex: 0 0 auto; margin-left: 14px; }
@media (max-width: 390px) {
  .bbp-mobile-primary-menu a { font-size: 1.25rem; }
}
.bbp-full-width-content > *:not(.alignfull):not(.alignwide) { width: min(var(--bbp-reading), calc(100% - (var(--bbp-gutter) * 2))); margin-right: auto; margin-left: auto; }
.bbp-full-width-content { padding-block: var(--bbp-section-space); background: var(--bbp-paper); }

/* Integrated publication features — added in 3.1.0 without changing the Paddock layout. */
.bbp-share button {
  appearance: none;
  padding: 7px 10px;
  border: 0;
  background: var(--bbp-soft-light);
  color: var(--bbp-ink);
  font-size: inherit;
  font-weight: inherit;
  text-transform: uppercase;
}
.bbp-share button:hover { background: var(--bbp-red); color: var(--bbp-white); }

.bbp-review-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
  gap: 28px;
  margin: 48px 0;
  padding: clamp(24px, 4vw, 38px);
  background: var(--bbp-carbon);
  color: var(--bbp-racing-white);
  border-top: 5px solid var(--bbp-red);
}
.bbp-review-summary h2 { margin-top: 8px; font-size: clamp(2rem, 4vw, 3rem); }
.bbp-review-summary p { margin: 16px 0 0; color: var(--bbp-muted-light); }
.bbp-review-summary__data { display: grid; gap: 1px; background: var(--bbp-border-dark); }
.bbp-review-summary__data > div { display: flex; justify-content: space-between; gap: 18px; padding: 15px 17px; background: var(--bbp-panel); }
.bbp-review-summary__data span { color: var(--bbp-muted-light); font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.bbp-review-summary__data strong { font-family: var(--bbp-display); font-size: 1.25rem; line-height: 1; }
.bbp-review-summary__rating strong { color: var(--bbp-yellow); font-size: 2rem; }
.bbp-review-summary__rating small { color: var(--bbp-muted-light); font-size: .8rem; }

.bbp-ad { width: 100%; margin: 34px auto; text-align: center; overflow: hidden; }
.bbp-ad-placeholder { margin: 24px 0; padding: 20px; color: var(--bbp-muted-dark); text-align: center; border: 1px dashed var(--bbp-border-light); }
.bbp-article-sidebar .bbp-ad { margin-top: 20px; }

@media (max-width: 760px) {
  .bbp-review-summary { grid-template-columns: 1fr; }
}

/* 3.2 reader tools and circuit profiles */
.bbp-reading-list-button{margin-top:1rem;display:inline-flex;align-items:center;gap:.5rem;min-height:42px;padding:.65rem 1rem;border:1px solid rgba(255,255,255,.35);background:rgba(5,8,12,.56);color:#fff;font:700 .78rem/1 var(--bbp-font-body,sans-serif);letter-spacing:.06em;text-transform:uppercase;cursor:pointer}.bbp-reading-list-button:hover,.bbp-reading-list-button.is-saved{border-color:var(--bbp-red);background:var(--bbp-red)}.bbp-last-updated{margin-top:2rem;padding:.85rem 1rem;border-left:3px solid var(--bbp-red);background:#ebe9e3;font-size:.875rem;color:#4f5963}.bbp-popular-list{display:grid;gap:.75rem}.bbp-popular-list article{padding-bottom:.75rem;border-bottom:1px solid rgba(128,138,148,.25)}.bbp-popular-list a{display:block;font-weight:800;color:inherit}.bbp-popular-list span{display:block;margin-top:.25rem;font-size:.72rem;color:#7c858f;text-transform:uppercase;letter-spacing:.04em}.bbp-reading-list__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.25rem}.bbp-reading-list__grid article{display:grid;grid-template-columns:110px 1fr;gap:1rem;padding:1rem;border:1px solid #d8d5ce;background:#fff}.bbp-reading-list__grid img{width:110px;height:82px;object-fit:cover}.bbp-reading-list__grid h3{margin:.25rem 0 .75rem;font-size:1rem}.bbp-reading-list__grid button{border:0;background:none;color:var(--bbp-red);padding:0;font-weight:700;cursor:pointer}.bbp-circuit-specs{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1px;background:#2a3139;border:1px solid #2a3139}.bbp-circuit-specs>div{padding:1.2rem;background:#121820}.bbp-circuit-specs span{display:block;color:#89939d;font-size:.68rem;text-transform:uppercase;letter-spacing:.08em}.bbp-circuit-specs strong{display:block;margin-top:.35rem;color:#fff;font-family:var(--bbp-font-display,sans-serif);font-size:1.25rem}.bbp-circuit-map{min-height:300px;display:grid;place-items:center;background:#0b1016;border:1px solid #2b333c;overflow:hidden}.bbp-circuit-map img{width:100%;height:100%;object-fit:contain;padding:2rem}.bbp-race-facts{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem;margin:2rem 0}.bbp-race-facts>div{padding:1rem;border:1px solid #d9d6cf;background:#fff}.bbp-race-facts span{display:block;color:#777f87;font-size:.68rem;text-transform:uppercase}.bbp-race-facts strong{display:block;margin-top:.35rem}
@media(max-width:900px){.bbp-reading-list__grid{grid-template-columns:1fr 1fr}.bbp-circuit-specs{grid-template-columns:1fr 1fr}.bbp-race-facts{grid-template-columns:1fr 1fr}}
@media(max-width:560px){.bbp-reading-list__grid{grid-template-columns:1fr}.bbp-reading-list__grid article{grid-template-columns:88px 1fr}.bbp-reading-list__grid img{width:88px;height:72px}.bbp-circuit-specs,.bbp-race-facts{grid-template-columns:1fr}}
@media print{.bbp-reading-list-button,.bbp-share,.bbp-article-sidebar,.bbp-site-header,.bbp-site-footer,.bbp-newsletter{display:none!important}.bbp-article-layout{display:block!important}.bbp-article-main{max-width:none!important}.bbp-single-hero{min-height:0!important;background:#fff!important;color:#000!important}.bbp-single-hero__media,.bbp-single-hero__overlay{display:none!important}.bbp-single-hero__content{position:static!important;padding:2rem 0!important;color:#000!important}}
