/* Shared styles for blog, comparison, and city landing pages.
   Loaded AFTER styles.css so the brand override already applies. */

/* Nav layout: match the landing page exactly so every content page
   has an identical header. Landing has its own scoped nav rules inside
   index.html; these rules make content pages (vs/, blog/, gyms/) look
   the same. */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'Inter', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}
nav .nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
nav .nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
nav .nav-links a {
  color: #a3a3a3;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
nav .nav-links a:hover { color: #ffffff; }
nav .nav-links a.nav-cta {
  background: #dc2626;
  color: #ffffff;
  padding: 0.55rem 1.25rem;
  border-radius: 8px;
  font-weight: 700;
}
nav .nav-links a.nav-cta:hover { background: #b91c1c; color: #ffffff; }

@media (max-width: 768px) {
  nav { padding: 1rem 1.25rem; }
  nav .nav-links { gap: 1rem; }
  nav .nav-links a { font-size: 0.82rem; }
  nav .nav-links a:not(.nav-cta):not(:last-of-type) { display: none; }
}


.content-shell {
  max-width: 880px;
  margin: 0 auto;
  padding: 140px 24px 100px;
  color: #e5e5e5;
}

.content-shell .eyebrow {
  color: #dc2626;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
}

.content-shell h1 {
  font-size: 54px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.content-shell h2 {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
  margin-top: 56px;
  margin-bottom: 18px;
}

.content-shell h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 36px;
  margin-bottom: 12px;
}

.content-shell p {
  font-size: 17px;
  line-height: 1.75;
  color: #a3a3a3;
  margin-bottom: 18px;
}

.content-shell p.lead {
  font-size: 21px;
  color: #d4d4d4;
  line-height: 1.6;
  margin-bottom: 32px;
}

.content-shell ul, .content-shell ol {
  padding-left: 1.3em;
  margin-left: 0;
  margin-bottom: 22px;
  list-style-position: outside;
}

.content-shell ul li, .content-shell ol li {
  font-size: 17px;
  line-height: 1.75;
  color: #a3a3a3;
  margin-bottom: 10px;
  padding-left: 0.4em;
}

.content-shell ul li::marker { color: #dc2626; }

.content-shell strong { color: #ffffff; }

.content-shell a {
  color: #dc2626;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.content-shell a:hover { color: #ffffff; }

.content-shell blockquote {
  border-left: 3px solid #dc2626;
  padding: 16px 24px;
  margin: 28px 0;
  background: rgba(220, 38, 38, 0.06);
  border-radius: 0 8px 8px 0;
}
.content-shell blockquote p { margin: 0; color: #e5e5e5; font-style: italic; }

.content-shell .meta {
  color: #737373;
  font-size: 14px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.content-shell table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}
.content-shell table th {
  background: rgba(220, 38, 38, 0.1);
  color: #ffffff;
  font-weight: 800;
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.content-shell table td {
  padding: 16px;
  color: #d4d4d4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 15px;
}
.content-shell table tr:last-child td { border-bottom: none; }
.content-shell table td.yes { color: #dc2626; font-weight: 700; }
.content-shell table td.no { color: #525252; }

.content-shell .cta-box {
  margin: 56px 0 32px;
  padding: 36px 40px;
  background: linear-gradient(135deg, rgba(220,38,38,0.15), rgba(220,38,38,0.03));
  border: 1px solid rgba(220,38,38,0.35);
  border-radius: 16px;
  text-align: center;
}
.content-shell .cta-box h3 {
  margin-top: 0;
  font-size: 28px;
  color: #ffffff;
}
.content-shell .cta-box p {
  color: #d4d4d4;
  margin-bottom: 24px;
}
.content-shell .cta-box a.btn-primary {
  display: inline-block;
  background: #dc2626;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.2s;
}
.content-shell .cta-box a.btn-primary:hover { background: #b91c1c; color: #ffffff; }

/* Blog index grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.blog-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.2s;
  text-decoration: none !important;
}
.blog-card:hover {
  border-color: rgba(220, 38, 38, 0.4);
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.1);
  transform: translateY(-2px);
}
.blog-card .cat {
  color: #dc2626;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.blog-card h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.3;
}
.blog-card p {
  color: #a3a3a3;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.content-shell .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #737373;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 40px;
}
.content-shell .back-link:hover { color: #ffffff; }

@media (max-width: 640px) {
  .content-shell { padding: 100px 20px 60px; }
  .content-shell h1 { font-size: 36px; }
  .content-shell h2 { font-size: 26px; }
}
