/* =============================================
   OpeningPadelClub.com — Master Stylesheet
   Colors: #0A0A0A, #F5F0EB, #FF5C35, #1A1A1A, #6B6560
   Fonts: Instrument Serif (headings), Inter (body)
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1A1A1A;
  background-color: #F5F0EB;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

p {
  font-size: 1.05rem;
  line-height: 1.75;
}

/* --- Utility --- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 120px 0;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FF5C35;
  margin-bottom: 16px;
  display: block;
}

/* Scroll animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 16px 36px;
  background-color: #FF5C35;
  color: #fff;
  border-radius: 50px;
  border: 2px solid #FF5C35;
  transition: background-color 0.3s ease, transform 0.15s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #e54e2a;
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 16px 36px;
  background: transparent;
  color: #F5F0EB;
  border: 1.5px solid rgba(245, 240, 235, 0.35);
  border-radius: 50px;
  transition: border-color 0.3s ease;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: rgba(245, 240, 235, 0.8);
}

.btn-outline-dark {
  color: #1A1A1A;
  border-color: rgba(26, 26, 26, 0.25);
}

.btn-outline-dark:hover {
  border-color: rgba(26, 26, 26, 0.6);
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background-color: rgba(10, 10, 10, 0.85);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background-color 0.3s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #F5F0EB;
  letter-spacing: -0.02em;
}

.logo span {
  color: #FF5C35;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 450;
  color: #F5F0EB;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  padding: 10px 24px;
  background-color: #FF5C35;
  color: #fff !important;
  border-radius: 50px;
  opacity: 1 !important;
  transition: background-color 0.3s ease;
}

.nav-cta:hover {
  background-color: #e54e2a;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #F5F0EB;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0A0A0A;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
    opacity: 1;
  }
}

/* ========== HERO ========== */
.hero {
  background-color: #0A0A0A;
  color: #F5F0EB;
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  color: #F5F0EB;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: #FF5C35;
}

.hero-sub {
  font-size: 1.15rem;
  color: #F5F0EB;
  opacity: 0.6;
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-credibility {
  font-size: 0.82rem;
  color: #F5F0EB;
  opacity: 0.35;
  letter-spacing: 0.02em;
}

.hero-credibility strong {
  opacity: 1;
  color: #FF5C35;
  font-weight: 600;
}

/* Hero decorative — large faded text */
.hero-deco {
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: 'Instrument Serif', serif;
  font-size: clamp(120px, 20vw, 300px);
  color: #F5F0EB;
  opacity: 0.03;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* ========== MARQUEE ========== */
.marquee {
  background-color: #FF5C35;
  color: #0A0A0A;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 48px;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== SERVICES ========== */
.services {
  background-color: #F5F0EB;
}

.services-intro {
  max-width: 560px;
  margin-bottom: 56px;
}

.services-intro h2 {
  color: #1A1A1A;
  margin-bottom: 16px;
}

.services-intro p {
  color: #6B6560;
}

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

/* 5-card layout: 2 on top row, 3 on bottom row */
.services-grid-5 {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

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

@media (max-width: 768px) {
  .services-grid-5,
  .services-grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-grid,
  .services-grid-5 {
    grid-template-columns: 1fr;
  }
}

.service-card {
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 12px;
  padding: 32px 24px;
  position: relative;
  transition: border-color 0.3s ease;
  background-color: transparent;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: rgba(26, 26, 26, 0.25);
}

.service-card.featured {
  border-color: #FF5C35;
  background-color: #fff;
}

.service-card.featured::before {
  content: 'Most popular';
  position: absolute;
  top: -11px;
  left: 32px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background-color: #FF5C35;
  padding: 4px 14px;
  border-radius: 20px;
}

.service-price {
  font-family: 'Instrument Serif', serif;
  font-size: 2rem;
  color: #1A1A1A;
  margin-bottom: 4px;
  line-height: 1;
}

.service-price-note {
  font-size: 0.78rem;
  color: #6B6560;
  margin-bottom: 20px;
}

.service-name {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1A1A1A;
}

.service-desc {
  font-size: 0.85rem;
  color: #6B6560;
  margin-bottom: 24px;
  line-height: 1.7;
}

.service-features {
  margin-bottom: 28px;
  flex-grow: 1;
}

.service-features li {
  font-size: 0.82rem;
  padding: 6px 0;
  color: #1A1A1A;
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.service-cta-primary {
  background-color: #FF5C35;
  color: #fff;
  border: 2px solid #FF5C35;
}

.service-cta-primary:hover {
  background-color: #e54e2a;
}

.service-cta-secondary {
  background-color: transparent;
  color: #1A1A1A;
  border: 1.5px solid rgba(26, 26, 26, 0.2);
}

.service-cta-secondary:hover {
  border-color: rgba(26, 26, 26, 0.5);
}

.services-more {
  text-align: center;
  margin-top: 40px;
  font-size: 0.95rem;
  color: #6B6560;
}

.services-more a {
  color: #FF5C35;
  font-weight: 600;
  position: relative;
}

.services-more a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: #FF5C35;
  transition: width 0.3s ease;
}

.services-more a:hover::after {
  width: 100%;
}

/* ========== PROCESS ========== */
.process {
  background-color: #F5F0EB;
}

.process h2 {
  margin-bottom: 64px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }
}

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

.process-step {
  position: relative;
}

.process-number {
  font-family: 'Instrument Serif', serif;
  font-size: 4.5rem;
  color: #FF5C35;
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -12px;
}

.process-step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #1A1A1A;
}

.process-step p {
  font-size: 0.88rem;
  color: #6B6560;
  line-height: 1.65;
}

/* ========== ABOUT ========== */
.about {
  background-color: #0A0A0A;
  color: #F5F0EB;
}

.about h2 {
  color: #F5F0EB;
  margin-bottom: 48px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

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

.about-person {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.about-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #FF5C35;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.about-info h3 {
  color: #F5F0EB;
  margin-bottom: 4px;
}

.about-info p {
  font-size: 0.88rem;
  color: #F5F0EB;
  opacity: 0.5;
}

.about-text {
  font-size: 1rem;
  color: #F5F0EB;
  opacity: 0.6;
  max-width: 640px;
  margin-bottom: 20px;
}

.about-link {
  font-size: 0.92rem;
  color: #FF5C35;
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.about-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: #FF5C35;
  transition: width 0.3s ease;
}

.about-link:hover::after {
  width: 100%;
}

/* ========== FAQ ========== */
.faq {
  background-color: #F5F0EB;
}

.faq-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}

.faq-header h2 {
  color: #1A1A1A;
}

.faq-header p {
  font-size: 0.92rem;
  color: #6B6560;
}

.faq-list {
  max-width: 100%;
}

.faq-item {
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  padding: 0;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #1A1A1A;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  gap: 16px;
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: #6B6560;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: #6B6560;
  line-height: 1.75;
}

/* ========== BOOK / CTA ========== */
.book {
  background-color: #0A0A0A;
  color: #F5F0EB;
  text-align: center;
}

.book h2 {
  color: #F5F0EB;
  margin-bottom: 16px;
}

.book-sub {
  font-size: 1.05rem;
  color: #F5F0EB;
  opacity: 0.5;
  max-width: 460px;
  margin: 0 auto 36px;
}

.book-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.book-form {
  max-width: 580px;
  margin: 0 auto 32px;
  text-align: left;
}

.book-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 520px) {
  .book-form-row {
    grid-template-columns: 1fr;
  }
}

.book-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
}

.book-field:last-child:not(.book-form-row .book-field) {
  margin-bottom: 16px;
}

.book-field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #F5F0EB;
  opacity: 0.5;
}

.book-field input,
.book-field select,
.book-field textarea {
  padding: 12px 16px;
  border: 1px solid rgba(245, 240, 235, 0.15);
  border-radius: 8px;
  background-color: rgba(245, 240, 235, 0.06);
  font-size: 0.92rem;
  color: #F5F0EB;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}

.book-field input::placeholder,
.book-field textarea::placeholder {
  color: rgba(245, 240, 235, 0.25);
}

.book-field input:focus,
.book-field select:focus,
.book-field textarea:focus {
  border-color: #FF5C35;
}

.book-field textarea {
  resize: vertical;
}

.book-field select option {
  background-color: #1A1A1A;
  color: #F5F0EB;
}

.book-submit {
  width: 100%;
  margin-top: 8px;
  font-size: 1rem;
}

.book-status {
  text-align: center;
  margin-top: 12px;
  font-size: 0.88rem;
  min-height: 24px;
}

.book-status.success {
  color: #4ade80;
}

.book-status.error {
  color: #f87171;
}

.book-email {
  font-size: 0.85rem;
  color: #F5F0EB;
  opacity: 0.35;
}

.book-email a {
  color: #FF5C35;
  opacity: 1;
}

/* ========== BLOG ========== */
.blog-preview {
  background-color: #fffaf6;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.blog-preview-head,
.blog-index-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.blog-preview-head p,
.blog-side-note p {
  color: #6B6560;
  max-width: 620px;
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  margin-top: 44px;
}

.blog-feature-card,
.blog-roadmap,
.blog-side-note,
.sidebar-card,
.article-shell,
.article-cta,
.blog-list-card {
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 14px;
  background-color: #fff;
}

.blog-feature-card {
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.blog-feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 92, 53, 0.12), transparent 34%);
  pointer-events: none;
}

.blog-feature-card > * {
  position: relative;
  z-index: 1;
}

.blog-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background-color: rgba(255, 92, 53, 0.1);
  color: #FF5C35;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.blog-feature-card h2,
.blog-feature-card h3,
.blog-roadmap-block h2,
.article-cta h2,
.faq-block h2 {
  margin-bottom: 14px;
}

.blog-meta,
.article-meta-row,
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.blog-meta {
  margin: 22px 0 18px;
}

.blog-meta span,
.article-meta-row span,
.breadcrumbs,
.breadcrumbs a {
  font-size: 0.86rem;
  color: #6B6560;
}

.blog-link {
  color: #FF5C35;
  font-weight: 600;
}

.blog-roadmap {
  padding: 24px;
}

.roadmap-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.roadmap-item:first-child {
  padding-top: 0;
}

.roadmap-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.roadmap-item span,
.blog-list-card span {
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  color: #FF5C35;
  line-height: 1;
}

.roadmap-item strong {
  display: block;
  margin-bottom: 4px;
  color: #1A1A1A;
}

.roadmap-item p,
.blog-list-card p {
  font-size: 0.9rem;
  color: #6B6560;
}

.blog-main-page {
  padding-top: 88px;
}

.page-hero {
  padding: 88px 0 40px;
}

.page-hero--blog,
.page-hero--article {
  background-color: #0A0A0A;
  color: #F5F0EB;
  position: relative;
  overflow: hidden;
}

.page-hero--blog::before,
.page-hero--article::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(255, 92, 53, 0.18), transparent 38%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero p {
  max-width: 760px;
  color: rgba(245, 240, 235, 0.7);
}

.breadcrumbs {
  margin-bottom: 18px;
}

.breadcrumbs span,
.breadcrumbs a {
  color: rgba(245, 240, 235, 0.55);
}

.blog-index {
  background-color: #F5F0EB;
}

.blog-side-note,
.sidebar-card {
  padding: 24px;
}

.blog-roadmap-block {
  margin-top: 34px;
}

.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.blog-list-card {
  padding: 24px;
}

.blog-list-card h3 {
  margin: 14px 0 8px;
  color: #1A1A1A;
}

.article-wrap {
  background-color: #F5F0EB;
}

.article-grid {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.article-sidebar {
  position: sticky;
  top: 108px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sidebar-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  color: #6B6560;
  font-size: 0.95rem;
}

.sidebar-list li:last-child {
  border-bottom: none;
}

.article-shell {
  padding: 36px;
}

.article-shell p {
  color: #6B6560;
  margin-bottom: 18px;
}

.article-meta-row {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.article-shell h2 {
  margin: 38px 0 14px;
  color: #1A1A1A;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.article-list {
  list-style: disc;
  margin: 0 0 18px;
  padding-left: 18px;
}

.article-list li {
  color: #6B6560;
  margin-bottom: 10px;
}

.article-callout {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 3px solid #FF5C35;
  border-radius: 0 10px 10px 0;
  background-color: rgba(255, 92, 53, 0.08);
  color: #1A1A1A;
}

.article-table-wrap {
  overflow-x: auto;
  margin: 22px 0;
}

.article-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.article-table th,
.article-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  text-align: left;
  vertical-align: top;
}

.article-table th {
  color: #1A1A1A;
  font-size: 0.9rem;
}

.article-table td {
  color: #6B6560;
  font-size: 0.95rem;
}

.article-cta {
  margin-top: 34px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 92, 53, 0.12), rgba(10, 10, 10, 0.06));
}

.faq-block {
  margin-top: 34px;
}

.blog-faq-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.blog-faq-item:last-child {
  border-bottom: none;
}

.blog-faq-item h3 {
  margin-bottom: 8px;
  color: #1A1A1A;
}

.blog-faq-item p {
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .blog-preview-head,
  .blog-preview-grid,
  .blog-index-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .blog-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blog-feature-card,
  .blog-roadmap,
  .blog-side-note,
  .sidebar-card,
  .article-shell,
  .article-cta,
  .blog-list-card {
    padding: 22px;
  }

  .blog-list-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 66px 0 28px;
  }

  .blog-main-page {
    padding-top: 74px;
  }
}

/* ========== FOOTER ========== */
.site-footer {
  background-color: #0A0A0A;
  color: #F5F0EB;
  padding: 40px 0;
  border-top: 1px solid rgba(245, 240, 235, 0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #F5F0EB;
}

.footer-logo span {
  color: #FF5C35;
}

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

.footer-links a {
  font-size: 0.82rem;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-copy {
  font-size: 0.78rem;
  opacity: 0.25;
}

.footer-crosslinks {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 240, 235, 0.06);
  font-size: 0.82rem;
  opacity: 0.3;
}

.footer-crosslinks a {
  color: #F5F0EB;
  transition: opacity 0.3s ease;
}

.footer-crosslinks a:hover {
  opacity: 1;
}
