body { background-color: var(--bg-dark-purple); }

:root {
  --dark-purple: #050505;
  --gold: #f9b522;
  --gold-hover: #f1c40f;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.1);
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark-purple); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }

.article-hero {
  background-size: cover; background-position: center;
  min-height: 60vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: 200px 2% 100px 2%;
}
.breadcrumb-label { color: var(--gold); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 1.5rem; font-weight: 600; }
.breadcrumb { color: var(--gold); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 1.5rem; font-weight: 600; }
.article-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.2; max-width: 1100px; margin-bottom: 2rem; }
.article-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem; color: var(--text-muted); font-size: 0.9rem; }
.meta-item { display: flex; align-items: center; gap: 0.5rem; white-space: nowrap; }
.meta-item b { color: var(--gold); }

.main-layout { max-width: 1400px; margin: -4rem auto 4rem; padding: 0 1%; position: relative; z-index: 10; }
.article-body { background: var(--deep-purple-page); padding: 4rem 4%; border-radius: 12px; border: 1px solid var(--border); box-shadow: 0 25px 50px rgba(0,0,0,0.5); }
.article-body p { margin-bottom: 1.5rem; color: #d1d1f1; font-size: 1.15rem; }
.article-body ul,
.article-body ol { margin: 0 0 1.5rem 1.25rem; color: #d1d1f1; font-size: 1.15rem; padding-left: 1rem; }
.article-body li { margin-bottom: 0.5rem; }
.article-body img { max-width: 100%; height: auto; border-radius: 8px; }
.article-body a { color: var(--gold); text-decoration: underline; }
.article-body a:hover { color: var(--gold-hover); }
.article-body h2 { color: var(--gold); font-size: 2.2rem; margin: 3.5rem 0 1.5rem; }
.article-body h3 { font-size: 1.6rem; margin: 2.5rem 0 1rem; color: #ffffff; }
.article-body blockquote { border-left: 5px solid var(--gold); padding: 2.5rem 4rem; background: rgba(249,181,34,0.05); font-style: italic; font-size: 1.4rem; margin: 3rem 0; color: #ffffff; line-height: 1.6; }

.infographic-placeholder {
  background: var(--glass);
  border: 1px dashed var(--gold);
  border-radius: 8px;
  padding: 3rem;
  text-align: center;
  margin: 3rem 0;
}

.similar-insights { max-width: 1400px; margin: 6rem auto; padding: 0 1%; }
.section-header { margin-bottom: 3rem; text-align: left; }
.section-header h2 { font-size: 2.2rem; color: #ffffff; position: relative; display: inline-block; }
.section-header h2::after { content: ""; display: block; width: 60px; height: 4px; background: var(--gold); margin-top: 0.5rem; }
.insights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2.5rem; }
.insight-card { background: var(--deep-purple-page); border-radius: 12px; overflow: hidden; border: 1px solid var(--border); transition: transform 0.3s ease, border-color 0.3s ease; display: flex; flex-direction: column; }
.insight-card:hover { transform: translateY(-10px); border-color: rgba(249,181,34,0.3); }
.insight-card { position: relative; }
.card-link-overlay { position: absolute; inset: 0; z-index: 2; text-decoration: none; }
.card-cta-link { position: relative; z-index: 3; }
.card-img { width: 100%; height: 240px; background-size: cover; background-position: center; }
.card-content { padding: 2rem; flex-grow: 1; display: flex; flex-direction: column; }
.card-category { color: var(--gold); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1rem; display: inline-block; background: rgba(249,181,34,0.1); padding: 0.3rem 0.8rem; border-radius: 4px; width: fit-content; }
.card-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 1rem; line-height: 1.4; color: #ffffff; }
.card-excerpt { font-size: 1rem; color: var(--text-muted); margin-bottom: 2rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.read-story { color: var(--gold); text-decoration: none; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; display: flex; align-items: center; gap: 0.6rem; margin-top: auto; }
.read-story:hover { color: var(--gold-hover); }

@media (max-width: 1024px) {
  .main-layout,
  .similar-insights {
    max-width: 95%;
  }
}

@media (max-width: 768px) {
  .article-hero { min-height: 50vh; padding: 6rem 5% 4rem; }
  .article-body { padding: 3rem 1.5rem; }
  .article-meta { flex-direction: column; gap: 0.5rem; }
  .insights-grid { grid-template-columns: 1fr; }
}
