:root {
  /* Inherited from skyartz.com hub */
  --bg: #0a0e1a;
  --bg-deep: #050811;
  --surface: #131826;
  --surface-2: #1a2030;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.18);
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --text-soft: #cbd5e1;

  --brand-light: #7CB8E8;
  --brand: #3B82E0;
  --brand-deep: #1E50A8;
  --brand-accent: #2196F3;

  /* Journal's warm terracotta accent */
  --journal-bg: rgba(228, 134, 94, 0.08);
  --journal-border: rgba(228, 134, 94, 0.22);
  --journal-text: #F4C4A8;
  --journal-meta: #E4865E;

  /* Post card category tints */
  --shoes-tint: rgba(148, 163, 184, 0.06);
  --shoes-border: rgba(148, 163, 184, 0.18);
  --racket-tint: rgba(200, 170, 110, 0.08);
  --racket-border: rgba(200, 170, 110, 0.22);
  --apparel-tint: rgba(134, 200, 160, 0.07);
  --apparel-border: rgba(134, 200, 160, 0.20);
  --accessory-tint: rgba(180, 140, 200, 0.07);
  --accessory-border: rgba(180, 140, 200, 0.20);

  --radius: 10px;
  --radius-lg: 16px;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img { display: block; max-width: 100%; height: auto; }

.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
}

/* ============================================
   TOP NAVIGATION
   ============================================ */

.topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0 1rem;
}

.brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo-box {
  width: 44px;
  height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--brand-accent);
  font-size: 18px;
  letter-spacing: -0.5px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text-top {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.brand-text-bottom {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  padding: 5rem 0 3.5rem;
  max-width: 720px;
}

.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--journal-meta);
  margin-bottom: 16px;
  font-weight: 600;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.2px;
  margin: 0 0 1.5rem;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--journal-text);
}

.lede {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 560px;
  font-weight: 400;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 1.5rem 0 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

.section-head h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.3px;
}

.section-head .meta {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   POST GRID (homepage)
   ============================================ */

.posts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-bottom: 3rem;
}

.post-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.post-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}

.post-card.cat-shoes { background: var(--shoes-tint); border-color: var(--shoes-border); }
.post-card.cat-racket { background: var(--racket-tint); border-color: var(--racket-border); }
.post-card.cat-apparel { background: var(--apparel-tint); border-color: var(--apparel-border); }
.post-card.cat-accessory { background: var(--accessory-tint); border-color: var(--accessory-border); }

/* Real product images */
.post-image {
  aspect-ratio: 16/10;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.4s ease;
}

.post-card:hover .post-image img {
  transform: scale(1.03);
}

/* Category-specific image backgrounds - subtle tints behind the product */
.post-card.cat-shoes .post-image { background: linear-gradient(135deg, #1f2533 0%, #151a24 100%); }
.post-card.cat-racket .post-image { background: linear-gradient(135deg, #2a2318 0%, #1a1510 100%); }
.post-card.cat-apparel .post-image { background: linear-gradient(135deg, #152822 0%, #0e1c17 100%); }
.post-card.cat-accessory .post-image { background: linear-gradient(135deg, #1f1a28 0%, #15121d 100%); }

.post-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(10, 14, 26, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.12);
  z-index: 2;
}

.post-insider-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--journal-meta);
  color: var(--bg);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: 700;
  z-index: 2;
}

.post-body { padding: 1.25rem 1.5rem 1.5rem; }

.post-meta {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.post-meta .dot {
  width: 3px;
  height: 3px;
  background: var(--text-muted);
  border-radius: 50%;
  flex-shrink: 0;
}

.post-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin: 0 0 8px;
  color: var(--text);
}

.post-hook {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 16px;
  font-style: italic;
}

/* ============================================
   SPEC STRIP (homepage cards)
   ============================================ */

.spec-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 12px 0;
  margin-bottom: 16px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.spec-item {
  padding: 0 10px;
  border-right: 1px solid var(--border);
}

.spec-item:first-child { padding-left: 0; }
.spec-item:last-child { border-right: none; }

.spec-label {
  font-size: 9px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 600;
}

.spec-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.2px;
}

.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-cta {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-soft);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.15s;
}

.post-card:hover .post-cta { color: var(--journal-text); }

.post-date {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   NEWSLETTER
   ============================================ */

.newsletter {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  margin: 2rem 0 3rem;
}

.newsletter h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.4px;
}

.newsletter p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 auto 24px;
  max-width: 440px;
  line-height: 1.55;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 11px 14px;
  font-size: 14px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--journal-meta);
}

.newsletter-btn {
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 600;
  background: var(--journal-meta);
  color: #0a0e1a;
  border: 1px solid var(--journal-meta);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}

.newsletter-btn:hover { background: var(--journal-text); }

/* ============================================
   SINGLE POST PAGE
   ============================================ */

.breadcrumb {
  font-size: 12px;
  color: var(--text-muted);
  padding: 2rem 0 0;
  max-width: 720px;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb .sep { opacity: 0.5; margin: 0 8px; }

.post-header {
  padding: 1.5rem 0 2rem;
  max-width: 720px;
}

.post-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--journal-meta);
  margin-bottom: 20px;
  font-weight: 600;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.post-eyebrow .dot {
  width: 3px;
  height: 3px;
  background: var(--text-muted);
  border-radius: 50%;
}

.post-eyebrow .neutral { color: var(--text-muted); }

.post-header .post-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.2px;
  margin: 0 0 1.25rem;
}

.post-header .post-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--journal-text);
}

.post-lede {
  font-size: 19px;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0 0 2rem;
  font-weight: 400;
}

.post-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.author-chip {
  width: 28px;
  height: 28px;
  background: var(--brand-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.post-byline .author-name { color: var(--text); font-weight: 600; }
.post-byline .sep { opacity: 0.5; }

/* ============================================
   POST COVER (full post)
   ============================================ */

.cover {
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #1f2533 0%, #0a0e1a 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2rem;
}

.cover-caption {
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  z-index: 2;
}

/* ============================================
   SPEC BLOCK (full post)
   ============================================ */

.spec-block {
  max-width: 720px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.spec-block-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--journal-meta);
  font-weight: 600;
  margin-bottom: 12px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.spec-block .spec-item {
  padding: 0 16px;
  border-right: 1px solid var(--border);
}

.spec-block .spec-item:first-child { padding-left: 0; }
.spec-block .spec-item:last-child { border-right: none; padding-right: 0; }

.spec-block .spec-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.4px;
}

/* ============================================
   ARTICLE BODY
   ============================================ */

article { max-width: 720px; }

article p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 0 0 1.5rem;
}

article p:first-of-type::first-letter {
  font-size: 48px;
  font-weight: 700;
  float: left;
  line-height: 1;
  padding: 6px 8px 0 0;
  color: var(--text);
}

article h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 3rem 0 1rem;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

article blockquote {
  border-left: 3px solid var(--journal-meta);
  margin: 2rem 0;
  padding: 0.25rem 0 0.25rem 1.5rem;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
  letter-spacing: -0.3px;
}

article strong { color: var(--text); font-weight: 700; }

article a.inline-link {
  color: var(--journal-text);
  border-bottom: 1px solid var(--journal-border);
  transition: border-color 0.15s;
}

article a.inline-link:hover { border-color: var(--journal-meta); }

article ul {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
}

article ul li {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 0.75rem;
}

article ul li::marker {
  color: var(--journal-meta);
}

/* ============================================
   PULL IMAGE (within article)
   ============================================ */

.pull-image {
  aspect-ratio: 3/2;
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pull-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2rem;
}

.pull-image-caption {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  background: rgba(10,14,26,0.7);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 4px;
}

/* ============================================
   RANKED LIST (for Top 5 bags post)
   ============================================ */

.ranked-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0 3rem;
}

.ranked-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color 0.2s ease;
}

.ranked-item:hover { border-color: var(--border-strong); }

.rank-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -2px;
  color: var(--journal-meta);
  line-height: 1;
}

.ranked-content {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.ranked-image {
  aspect-ratio: 1;
  background: var(--surface-2);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ranked-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.ranked-text h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: -0.3px;
}

.ranked-text .brand-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--journal-meta);
  font-weight: 600;
  margin-bottom: 4px;
}

.ranked-text p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 6px 0 0;
}

/* ============================================
   WHERE TO BUY
   ============================================ */

.where-to-buy {
  max-width: 720px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin: 3rem 0;
}

.where-to-buy-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--journal-meta);
  font-weight: 600;
  margin-bottom: 4px;
}

.where-to-buy h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.3px;
}

.links-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.buy-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  transition: border-color 0.15s, background 0.15s;
}

.buy-link:hover {
  border-color: var(--journal-meta);
  background: var(--surface-2);
}

.buy-link .arrow { color: var(--text-muted); }

/* ============================================
   TAGS
   ============================================ */

.post-meta-section {
  max-width: 720px;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  margin-top: 3rem;
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.tag {
  padding: 5px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  transition: border-color 0.15s, color 0.15s;
}

.tag:hover { border-color: var(--border-strong); color: var(--text); }

/* ============================================
   RELATED POSTS
   ============================================ */

.related { padding: 3rem 0 4rem; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.related-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.related-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}

.related-meta {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 8px;
}

.related-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}

.related-date {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-logo-box {
  width: 26px;
  height: 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--brand-accent);
  font-size: 11px;
}

.brand-tld {
  color: var(--brand-accent);
  font-weight: 500;
}

.footer-blurb {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  max-width: 340px;
  line-height: 1.55;
}

.footer-right { text-align: right; }

.footer-contact { margin-bottom: 14px; }

.footer-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 600;
}

.footer-contact a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  transition: color 0.15s;
}

.footer-contact a:hover { color: var(--brand-accent); }

.footer-meta {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 720px) {
  .page { padding: 1rem 1rem 0; }

  .hero { padding: 3rem 0 2rem; }
  .hero h1 { font-size: 36px; letter-spacing: -0.8px; }
  .lede { font-size: 15px; }

  .posts { grid-template-columns: 1fr; }

  .newsletter { padding: 1.75rem; }
  .newsletter-form { flex-direction: column; }

  .post-header .post-title { font-size: 32px; letter-spacing: -0.8px; }
  .post-lede { font-size: 16px; }

  article p, article ul li { font-size: 16px; }
  article blockquote { font-size: 18px; padding-left: 1rem; }
  article h2 { font-size: 22px; }

  .spec-block { padding: 1.25rem; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); row-gap: 16px; }
  .spec-block .spec-item {
    padding: 0 10px;
    border-right: none;
  }
  .spec-block .spec-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .spec-block .spec-value { font-size: 18px; }

  .ranked-item { grid-template-columns: 40px 1fr; padding: 1.25rem; gap: 1rem; }
  .rank-number { font-size: 32px; }
  .ranked-content { grid-template-columns: 90px 1fr; gap: 1rem; }

  .links-row { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }

  .footer { grid-template-columns: 1fr; }
  .footer-right { text-align: left; }
  .footer-meta { justify-content: flex-start; }
}
