/* ── Neve Eats Blog Post Shared Styles ─────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:  #F7F4EE;
  --cream2: #EDE9E0;
  --orange: #FF8C42;
  --green:  #22C55E;
  --text:   #1A1A1A;
  --muted:  #6B6560;
  --body:   #3A3A3A;
  --card:   #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Jost", "Futura", "Century Gothic", "Trebuchet MS", sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ── Navbar ── */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 6vw;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,244,238,0.93);
  backdrop-filter: blur(12px);
}
.nav-brand { text-decoration: none; color: var(--text); font-size: 21px; font-weight: 700; letter-spacing: 0.4px; }
.nav-back { font-size: 14px; color: var(--muted); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.nav-back:hover { color: var(--text); }

/* ── Article Layout ── */
.article-hero {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 6vw 0;
}
.article-meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.article-tag {
  background: #FFF3E8; color: var(--orange);
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; padding: 4px 12px; border-radius: 999px;
}
.article-date { font-size: 13px; color: var(--muted); font-weight: 500; }
.read-time { font-size: 13px; color: var(--muted); font-weight: 500; }

h1 {
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.3px; line-height: 1.1;
  margin-bottom: 20px;
}
.article-intro {
  font-size: 19px; color: var(--muted);
  line-height: 1.65; margin-bottom: 48px;
  max-width: 680px;
  font-weight: 400;
}

/* ── Body Content ── */
.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 6vw 80px;
}
.article-body h2 {
  font-size: 22px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.3px;
  margin: 52px 0 14px; color: var(--text);
}
.article-body h3 {
  font-size: 18px; font-weight: 700;
  margin: 28px 0 10px; color: var(--text);
}
.article-body p { color: var(--body); margin-bottom: 18px; }
.article-body ul, .article-body ol {
  padding-left: 22px; margin-bottom: 20px;
}
.article-body li { color: var(--body); margin-bottom: 10px; line-height: 1.65; }
.article-body a { color: var(--orange); text-decoration: none; }
.article-body a:hover { text-decoration: underline; }
.article-body strong { color: var(--text); font-weight: 700; }

/* ── Callout box ── */
.callout {
  background: #FFF3E8;
  border-left: 4px solid var(--orange);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 32px 0;
}
.callout p { color: var(--body); margin: 0; }
.callout strong { color: var(--orange); }

/* ── Key Takeaway box ── */
.takeaway {
  background: var(--card);
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  padding: 28px 28px;
  margin: 40px 0;
}
.takeaway .label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--orange); margin-bottom: 10px; }
.takeaway p { color: var(--body); margin: 0; }

/* ── Divider ── */
.divider { border: none; border-top: 1px solid rgba(0,0,0,0.08); margin: 48px 0; }

/* ── FAQ Section ── */
.faq-section { margin: 56px 0; }
.faq-section h2 { margin-bottom: 20px; }
details {
  background: var(--card);
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.07);
  margin-bottom: 10px;
  overflow: hidden;
}
details[open] { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; font-size: 16px; font-weight: 600;
  cursor: pointer; list-style: none; user-select: none; gap: 16px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%236B6560' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: contain;
  transition: transform 0.25s;
}
details[open] summary::after { transform: rotate(180deg); }
.faq-body {
  padding: 0 22px 18px;
  font-size: 15px; color: var(--body); line-height: 1.65;
  border-top: 1px solid rgba(0,0,0,0.06); padding-top: 14px; margin-top: -2px;
}

/* ── App CTA ── */
.app-cta {
  background: var(--text);
  border-radius: 20px;
  padding: 44px 40px;
  text-align: center;
  margin: 56px 0;
  color: #fff;
}
.app-cta .cta-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--orange); margin-bottom: 12px; }
.app-cta h3 { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 10px; text-transform: uppercase; }
.app-cta p { color: rgba(255,255,255,0.65); font-size: 16px; margin-bottom: 28px; }
.app-cta a {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff;
  text-decoration: none; font-size: 16px; font-weight: 700;
  padding: 14px 30px; border-radius: 999px;
  transition: background 0.2s, transform 0.15s;
}
.app-cta a:hover { background: #E5722E; transform: translateY(-1px); }
.app-cta svg { width: 18px; height: 18px; fill: #fff; }

/* ── Related Articles ── */
.related { margin: 56px 0 0; }
.related h2 { margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.related-card {
  background: var(--card); border-radius: 14px; padding: 22px 20px;
  border: 1px solid rgba(0,0,0,0.07);
  text-decoration: none; color: var(--text);
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
}
.related-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
.related-card .tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--orange); margin-bottom: 8px; display: block; }
.related-card h4 { font-size: 15px; font-weight: 700; line-height: 1.35; }

/* ── Footer ── */
footer {
  text-align: center; padding: 32px 6vw;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 14px; color: var(--muted);
}
.footer-links { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: 10px; }
footer a { color: var(--orange); text-decoration: none; font-weight: 600; }
footer a:hover { text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 600px) {
  h1 { letter-spacing: 0; }
  .article-intro { font-size: 17px; }
  .app-cta { padding: 32px 20px; }
  .app-cta h3 { font-size: 20px; }
}
