/* ============================================================
   Latin Travel — Shared Feature Article Styles
   Loaded by all feature pages: travel-myths, treks, adventure, etc.
   Page-specific styles remain inline in each HTML file.
   ============================================================ */

/* ── HERO ── */
.article-hero {
  position: relative;
  padding: 6rem 3rem 2.5rem;
  background: #1f1008;
  overflow: hidden;
}
.article-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 40%;
  opacity: 0.14;
  transform: scale(1.04);
}
.article-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(31,16,8,0.3) 0%, rgba(31,16,8,0.95) 100%);
}
.article-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}
.article-eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.article-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.article-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.article-hero-title em { color: var(--gold); font-style: normal; }
.article-hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(240,235,225,0.85);
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: 2rem;
}
.article-byline {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(168,121,42,0.4);
  padding-top: 1.25rem;
}
.article-byline-name {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.article-byline-role {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(240,235,225,0.5);
}

/* ── BODY ── */
.article-wrap {
  background: #faf8f4;
  padding: 3rem 3rem 7rem;
}
.article-inner {
  max-width: 760px;
  margin: 0 auto;
}
.article-intro {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.8;
  color: #2a2520;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #ddd8cf;
}
.article-intro strong { font-weight: 600; color: #1a1614; }
.article-p {
  font-size: 1rem;
  line-height: 1.85;
  color: #2a2520;
  margin-bottom: 1.25rem;
}
.article-p strong { color: #111; font-weight: 600; }
.article-p em { color: #3a3530; }

/* ── PULL QUOTE ── */
.article-pullquote {
  border-left: 3px solid var(--gold);
  background: #f0ebe1;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.article-pullquote p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  color: #2a2520;
  line-height: 1.7;
  margin: 0;
}
.article-pullquote cite {
  display: block;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.75rem;
}

/* ── GOLD-DASH BULLET LIST ── */
.example-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.5rem 0;
  padding: 0;
}
.example-list li {
  font-size: 0.92rem;
  color: #2a2520;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.example-list li::before {
  content: "";
  display: inline-block;
  width: 16px;
  min-width: 16px;
  height: 1px;
  background: var(--gold);
  margin-top: 0.7em;
  flex-shrink: 0;
}

/* ── CLOSING CTA ── */
.article-cta {
  background: #1f1008;
  padding: 3.5rem 3rem;
  text-align: center;
  margin-top: 5rem;
}
.article-cta .section-eyebrow { color: var(--gold); justify-content: center; }
.article-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #ffffff;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.article-cta-sub {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(240,235,225,0.8);
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .article-hero  { padding: 5rem 1.5rem 2rem; }
  .article-wrap  { padding: 3rem 1.5rem 5rem; }
  .article-cta   { padding: 3rem 1.5rem; }
}
