/* Editorial Pages - Matching Landing Page Theme */

.editorial-page {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  background: radial-gradient(circle at top, #181824 0, #050509 55%, #020206 100%);
  color: #f7f7ff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

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

/* Header - Matching landing page sticky header */

.editorial-page .site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(24px);
  background: linear-gradient(to bottom, rgba(5, 5, 12, 0.95), rgba(5, 5, 12, 0.75), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.editorial-page .site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 1.5rem;
}

.editorial-page .logo {
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
  text-decoration: none;
  color: #f7f7ff;
  opacity: 0.85;
}

.editorial-page .main-nav {
  display: flex;
  gap: 16px;
}

.editorial-page .main-nav a {
  position: relative;
  padding: 4px 0;
  text-decoration: none;
  color: rgba(247, 247, 255, 0.75);
  font-size: 13px;
  transition: color 0.16s ease;
}

.editorial-page .main-nav a.active {
  color: rgba(247, 247, 255, 0.95);
}

.editorial-page .main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.85);
  transition: width 0.18s ease;
}

.editorial-page .main-nav a:hover::after {
  width: 100%;
}

.editorial-page .main-nav a:hover {
  color: #f7f7ff;
}

/* Page content */

.editorial-page .page {
  flex: 1;
}

.editorial-page .hero {
  padding: 4rem 0 3rem;
  text-align: center;
}

.editorial-page .hero h1 {
  margin: 0 0 1rem;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  background: linear-gradient(135deg, #f8c08b, #f4a5d4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.editorial-page .hero .subtitle {
  margin: 0 auto;
  color: rgba(247, 247, 255, 0.7);
  max-width: 640px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.editorial-page .page-section {
  padding: 2.5rem 0 3rem;
  line-height: 1.7;
}

.editorial-page .page-section h2 {
  margin: 2.5rem 0 1rem;
  font-size: 1.75rem;
  color: rgba(247, 247, 255, 0.95);
  font-weight: 600;
}

.editorial-page .page-section p {
  color: rgba(247, 247, 255, 0.8);
  margin: 1rem 0;
}

.editorial-page .page-section strong {
  color: rgba(247, 247, 255, 0.95);
}

.editorial-page .page-section em {
  color: rgba(248, 192, 139, 0.9);
}

/* Lists */

.editorial-page .bullet-list,
.editorial-page .numbered-list {
  margin: 1rem 0 1rem 1.5rem;
  color: rgba(247, 247, 255, 0.8);
}

.editorial-page .numbered-list li {
  margin-bottom: 1.5rem;
}

.editorial-page .bullet-list li {
  margin-bottom: 0.5rem;
}

/* Testimonials */

.editorial-page .testimonial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.editorial-page .testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(12px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.editorial-page .testimonial-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.editorial-page .testimonial-text {
  margin: 0 0 1rem;
  color: rgba(247, 247, 255, 0.85);
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
}

.editorial-page .testimonial-author {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(247, 247, 255, 0.5);
}

.editorial-page .disclaimer {
  font-size: 0.9rem;
  color: rgba(247, 247, 255, 0.5);
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid rgba(248, 192, 139, 0.3);
  border-radius: 4px;
}

/* Footer */

.editorial-page .site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 0;
  font-size: 0.85rem;
  color: rgba(247, 247, 255, 0.5);
  text-align: center;
  margin-top: 4rem;
}

/* Responsive */

@media (min-width: 720px) {
  .editorial-page .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .editorial-page .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 640px) {
  .editorial-page .hero h1 {
    font-size: 2rem;
  }
  
  .editorial-page .main-nav {
    font-size: 12px;
    gap: 12px;
  }
}
