/* =============================================================
   APEX SPORTS TRAINING — PAGE EXTENSIONS
   Sport pages · Location pages · Blog
   ============================================================= */

/* -- Sport / Location hero -- */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  padding: 80px 0;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.5) 60%, rgba(10,10,10,0.7) 100%),
    radial-gradient(50% 80% at 80% 50%, rgba(230,57,70,0.15), transparent 70%);
}
.page-hero .container { position: relative; z-index: 2; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

.page-hero-title {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  font-weight: 400;
  max-width: 14ch;
  margin-bottom: 24px;
}
.page-hero-title em {
  font-style: normal;
  color: var(--red);
}
.page-hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 600px;
  margin-bottom: 36px;
}

/* -- Program grid (sport pages) -- */
.program {
  padding: 120px 0;
  background: var(--white);
}
.program-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.pillars {
  display: grid;
  gap: 28px;
  margin-top: 12px;
}
.pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.pillar-num {
  font-family: var(--display);
  font-size: 36px;
  line-height: 0.9;
  color: var(--red);
  flex-shrink: 0;
  width: 56px;
}
.pillar h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin-bottom: 6px;
}
.pillar p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--gray-mid);
}
.program-image {
  position: sticky;
  top: 120px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.program-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.program-stat {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  border-left: 4px solid var(--red);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}
.program-stat-num {
  font-family: var(--display);
  font-size: 44px;
  line-height: 1;
  color: var(--red);
}
.program-stat-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 6px;
}
.program-stat-label span {
  display: block;
  color: var(--gray-mid);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  font-size: 11px;
  margin-top: 2px;
}

/* -- Pricing cards -- */
.pricing { padding: 120px 0; background: var(--off); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.price-featured {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: translateY(-12px);
  box-shadow: 0 30px 50px rgba(0,0,0,0.2);
}
.price-featured:hover { transform: translateY(-18px); }
.price-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  padding: 6px 12px;
  background: rgba(230,57,70,0.1);
  border-radius: 999px;
}
.price-featured .price-tag {
  background: var(--red);
  color: var(--white);
}
.price-card h3 {
  font-family: var(--display);
  font-size: 64px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 4px;
}
.price-unit {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-mid);
  margin-bottom: 24px;
}
.price-featured .price-unit { color: rgba(255,255,255,0.6); }
.price-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  display: grid;
  gap: 10px;
}
.price-card ul li {
  font-size: 14px;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.price-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 1px;
  color: var(--red);
  font-weight: 800;
  font-size: 14px;
}
.price-featured ul li::before { color: var(--red); }

/* -- CTA band -- */
.cta-band {
  padding: 100px 0;
  background: var(--black);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% 50%, rgba(230,57,70,0.18), transparent 70%);
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin-bottom: 16px;
}
.cta-band p {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* -- Location page specifics -- */
.local-grid {
  padding: 120px 0;
  background: var(--white);
}
.local-grid-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.local-list {
  list-style: none;
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.local-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--off);
  border-radius: var(--radius);
  border-left: 3px solid var(--red);
}
.local-list strong {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
}
.local-list span {
  font-size: 14px;
  color: var(--gray-mid);
}

.local-sports-grid {
  padding: 100px 0;
  background: var(--off);
}
.local-sport-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.local-sport-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-line);
  transition: all 0.3s var(--ease);
}
.local-sport-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.06);
}
.local-sport-card h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin-bottom: 8px;
}
.local-sport-card p {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.5;
  margin-bottom: 16px;
}
.local-sport-card a {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}
.local-sport-card a:hover { text-decoration: underline; }

/* -- Blog -- */
.blog-list {
  padding: 100px 0 120px;
  background: var(--white);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--off);
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-card-meta {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.blog-card h3 {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.05;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.005em;
}
.blog-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray-mid);
}

/* -- Blog post -- */
.post {
  padding: 80px 0 100px;
  background: var(--white);
}
.post-inner {
  max-width: 760px;
  margin: 0 auto;
}
.post-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.post-meta span { color: var(--gray-mid); }
.post h1 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  font-weight: 400;
  margin-bottom: 24px;
}
.post-lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--gray-mid);
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-line);
}
.post-body h2 {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 48px 0 18px;
  letter-spacing: 0.005em;
}
.post-body h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 32px 0 14px;
  letter-spacing: 0.005em;
}
.post-body p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.post-body ul, .post-body ol {
  margin: 0 0 20px 22px;
  font-size: 17px;
  line-height: 1.7;
}
.post-body li { margin-bottom: 8px; }
.post-body strong { font-weight: 700; }
.post-body em { font-style: italic; }
.post-body blockquote {
  border-left: 4px solid var(--red);
  padding: 12px 24px;
  margin: 32px 0;
  background: var(--off);
  font-size: 18px;
  font-style: italic;
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* -- Admin -- */
.admin {
  padding: 60px 0 120px;
  background: var(--off);
  min-height: 100vh;
}
.admin-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-line);
  margin-bottom: 18px;
}
.admin-card h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.admin-card p { color: var(--gray-mid); margin-bottom: 16px; line-height: 1.6; }
.admin-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.admin-actions button {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
}
.admin-approve { background: #1A7A2E; color: white; }
.admin-edit { background: var(--off); color: var(--black); border: 1px solid var(--gray-line); }
.admin-reject { background: var(--black); color: white; }
.admin-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--gray-mid);
}

/* -- Local responsive -- */
@media (max-width: 1024px) {
  .program-grid { grid-template-columns: 1fr; gap: 40px; }
  .program-image { position: static; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .price-featured { transform: none; }
  .price-featured:hover { transform: translateY(-6px); }
  .local-grid-inner { grid-template-columns: 1fr; gap: 40px; }
  .local-sport-cards { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .local-sport-cards { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .program-stat { left: 16px; bottom: 16px; padding: 14px 16px; }
  .program-stat-num { font-size: 32px; }
}

/* =============================================================
   ADDITIONAL PAGE STYLES (sport pages, location pages, articles)
   ============================================================= */

/* Hero icon */
.page-hero-icon {
  font-size: 80px;
  line-height: 1;
  margin: 0 0 24px;
  filter: drop-shadow(0 8px 24px rgba(200,49,42,0.4));
}

/* Section wrappers used on sport/location/article pages */
.pillars-section,
.pricing-section,
.location-info-section,
.blog-list-section {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
}

.pricing-section { background: var(--off, #F8F4EA); }

/* Pillar cards (sport pages) */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.pillar-card {
  background: var(--white, #fff);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 36px 32px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
  border-color: var(--red);
}

.pillar-card .pillar-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.pillar-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
  color: var(--ink, #1A1A1A);
}

.pillar-card p {
  color: rgba(0,0,0,0.7);
  line-height: 1.6;
  margin: 0;
}

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

/* Pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.price-card-featured {
  background: linear-gradient(135deg, var(--ink) 0%, #2a2a2a 100%);
  color: var(--cream);
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.2);
  border: none;
}

.price-card-featured h3,
.price-card-featured p,
.price-card-featured ul li { color: var(--cream); }

.price-card-featured .price-tag {
  background: var(--red);
  color: var(--white);
}

.price-card h3 span {
  font-size: 18px;
  font-weight: 500;
  opacity: 0.6;
}

.price-card .price-sub {
  color: rgba(0,0,0,0.6);
  font-size: 14px;
  margin-bottom: 24px;
}

.price-card-featured .price-sub { color: rgba(240,229,208,0.7); }

.pricing-note {
  text-align: center;
  margin-top: 40px;
  color: rgba(0,0,0,0.6);
  font-size: 15px;
}

.pricing-note a { color: var(--red); font-weight: 600; }

@media (max-width: 880px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 60px auto 0; }
  .price-card-featured { transform: none; }
}

/* Location info grid */
.location-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.info-block {
  background: var(--white, #fff);
  border-left: 4px solid var(--red);
  padding: 28px 32px;
  border-radius: 4px;
}

.info-block h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
  color: var(--ink, #1A1A1A);
}

.info-block p { color: rgba(0,0,0,0.7); line-height: 1.6; margin: 0; }

@media (max-width: 880px) {
  .location-info-grid { grid-template-columns: 1fr; }
}

/* Article page */
.article-page {
  padding: 80px 0 120px;
  background: var(--cream);
}

.article-page .container { max-width: 760px; }

.article-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--red);
  margin: 24px 0 12px;
}

.article-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin: 0 0 24px;
  color: var(--ink, #1A1A1A);
}

.article-lede {
  font-size: 20px;
  line-height: 1.55;
  color: rgba(0,0,0,0.75);
  font-weight: 500;
  margin: 0 0 48px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--red);
}

.article-body {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(0,0,0,0.85);
}

.article-body h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: 0.02em;
  margin: 56px 0 16px;
  color: var(--ink, #1A1A1A);
  line-height: 1.15;
}

.article-body h2:first-child { margin-top: 0; }

.article-body p { margin: 0 0 18px; }

.article-body strong { color: var(--ink, #1A1A1A); font-weight: 700; }

.article-body em { font-style: italic; color: var(--red); font-weight: 600; }

.article-cta {
  margin-top: 80px;
  padding: 48px 40px;
  background: var(--ink, #1A1A1A);
  color: var(--cream);
  border-radius: 14px;
  text-align: center;
}

.article-cta h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
  color: var(--cream);
}

.article-cta p {
  color: rgba(240,229,208,0.8);
  margin: 0 0 24px;
}

/* Breadcrumb tweaks for cream backgrounds (article + blog index) */
.article-page .breadcrumb,
.blog-list-section .breadcrumb { color: rgba(0,0,0,0.5); }
.article-page .breadcrumb a,
.blog-list-section .breadcrumb a { color: rgba(0,0,0,0.7); }
.article-page .breadcrumb a:hover,
.blog-list-section .breadcrumb a:hover { color: var(--red); }


/* ===== AGE PROGRESSION GRID (sport pages) ===== */
.ages-section {
  background: var(--cream);
  padding: 80px 0;
  color: #111;
}
.ages-section .section-eyebrow,
.ages-section .section-sub { color: rgba(0,0,0,0.65); }
.ages-section .section-title { color: #111; }
.ages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.age-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 24px 22px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.age-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.age-band {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  background: var(--red, #c8102e);
  color: #fff;
  border-radius: 6px;
  margin-bottom: 12px;
}
.age-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
  color: #111;
}
.age-card p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(0,0,0,0.7);
  margin: 0;
}

/* Locations: info & content */
.location-content {
  padding: 80px 0;
  background: var(--cream);
  color: #111;
}
.location-content .container { max-width: 920px; }
.location-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  letter-spacing: 0.02em;
  margin: 30px 0 14px;
  color: #111;
}
.location-content h2:first-of-type { margin-top: 0; }
.location-content p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(0,0,0,0.78);
  margin: 0 0 16px;
}
.location-content ul { margin: 0 0 18px 22px; padding: 0; }
.location-content li {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(0,0,0,0.78);
  margin: 0 0 6px;
}
.location-content strong { color: #111; }
.location-testimonial {
  background: #fff;
  border-left: 4px solid var(--red, #c8102e);
  padding: 22px 26px;
  margin: 28px 0;
  border-radius: 8px;
}
.location-testimonial p {
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  margin: 0 0 10px;
}
.location-testimonial cite {
  font-style: normal;
  font-size: 14px;
  color: rgba(0,0,0,0.6);
}
.location-map {
  margin: 30px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.location-map iframe { display: block; width: 100%; height: 320px; border: 0; }

/* About / Person page */
.about-page { background: var(--cream); color: #111; padding: 80px 0; }
.about-page .container { max-width: 820px; }
.about-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--red, #c8102e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  margin: 0 0 24px;
}
.about-page h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  letter-spacing: 0.02em;
  margin: 0 0 6px;
}
.about-page .role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.55);
  margin: 0 0 28px;
}
.about-page h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.02em;
  margin: 28px 0 12px;
}
.about-page p { font-size: 17px; line-height: 1.7; color: rgba(0,0,0,0.78); margin: 0 0 16px; }
.about-page ul { margin: 0 0 18px 22px; }
.about-page li { font-size: 16px; line-height: 1.65; color: rgba(0,0,0,0.78); margin: 0 0 6px; }
.creds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin: 18px 0 28px;
}
.cred-pill {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.45;
}
.cred-pill strong { display: block; font-size: 15px; margin-bottom: 4px; }

/* Article byline (multi-author blog) */
.article-byline {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(0,0,0,0.6);
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}
.article-byline a {
  color: var(--red, #c8102e);
  font-weight: 600;
  text-decoration: none;
}
.article-byline a:hover { text-decoration: underline; }
.article-byline .byline-role { color: rgba(0,0,0,0.55); font-size: 13px; }
.article-byline .byline-sep { margin: 0 6px; color: rgba(0,0,0,0.3); }
.article-byline time { font-family: 'JetBrains Mono', monospace; font-size: 12px; }

/* Inline cross-links inside article body */
.article-body a {
  color: var(--red, #c8102e);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: 500;
}
.article-body a:hover { background: rgba(200,16,46,0.08); }

/* ===== HOWTO ARTICLE — rich tryout-prep enhancements ===== */
.howto-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin: 24px 0 32px;
  padding: 18px;
  background: rgba(0,0,0,0.04);
  border-left: 4px solid var(--red, #c8102e);
  border-radius: 8px;
}
.howto-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.howto-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.5);
}
.howto-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: #111;
}

.howto-supply {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 24px 28px;
  margin: 0 0 32px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.howto-supply h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.02em;
  margin: 0 0 18px;
  color: #111;
}
.supply-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.supply-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red, #c8102e);
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.supply-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.supply-col li {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(0,0,0,0.78);
  padding: 5px 0 5px 22px;
  position: relative;
}
.supply-col li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--red, #c8102e);
  font-weight: 700;
}

.article-body h2 .step-num {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.08em;
  background: var(--red, #c8102e);
  color: #fff;
  padding: 5px 11px;
  border-radius: 6px;
  margin-right: 12px;
  vertical-align: middle;
}
.article-body h2 .step-days {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: rgba(0,0,0,0.5);
  font-weight: normal;
}
.article-body h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.02em;
  margin: 28px 0 12px;
  color: #111;
}
.article-body h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  margin: 24px 0 10px;
}

.step-goal {
  background: rgba(200,16,46,0.06);
  border-left: 3px solid var(--red, #c8102e);
  padding: 14px 18px;
  margin: 14px 0 22px;
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(0,0,0,0.82);
}
.step-goal strong { color: var(--red, #c8102e); }

.step-callout {
  margin: 18px 0;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.6;
}
.step-tip {
  background: #f0f7ff;
  border-left: 3px solid #2c7be5;
}
.step-tip strong { color: #2c7be5; }
.step-warn {
  background: #fff4e6;
  border-left: 3px solid #f59e0b;
}
.step-warn strong { color: #d97706; }

.metrics-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 12px 0 24px !important;
}
.metrics-list li {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(0,0,0,0.78);
  padding-left: 0;
  margin-left: 0 !important;
}

.article-body ul {
  margin: 12px 0 18px 22px;
  padding: 0;
}
.article-body ul li {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(0,0,0,0.78);
  margin: 0 0 6px;
}

.article-author-box {
  margin: 48px 0 32px;
  padding: 28px 30px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.author-avatar {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--red, #c8102e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.04em;
}
.author-meta { flex: 1; }
.author-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.5);
  margin: 0 0 6px;
}
.author-meta h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.02em;
  margin: 0 0 4px;
  color: #111;
}
.author-role {
  font-size: 13px;
  color: rgba(0,0,0,0.6);
  margin: 0 0 12px;
}
.author-meta p:not(.author-eyebrow):not(.author-role) {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(0,0,0,0.78);
  margin: 0 0 14px;
}
.btn-sm { font-size: 13px; padding: 8px 16px; }

@media (max-width: 640px) {
  .article-author-box { flex-direction: column; text-align: left; }
  .howto-meta { grid-template-columns: repeat(2, 1fr); }
}
