/* ==================================================
   cultural-marketing-and-storytelling.css
================================================== */

/* =========================
   HERO SECTION
========================= */
.hero {
  padding: 6.25rem 1.25rem 2.5rem; /* 100px 20px 40px */
  text-align: center;
}

/* =========================
   ARTICLE CONTENT
========================= */
.article-container {
  max-width: 50rem; /* 800px */
  margin: 0 auto;
  padding: 2.5rem 1.25rem; /* 40px 20px */
  line-height: 1.6;
  font-size: 1.1rem;
  color: var(--dark);
  font-family: 'Open Sans', sans-serif;
}

/* ---------- Headings ---------- */
.article-container h2,
.article-container h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin: 1.875rem 0 0.9375rem; /* 30px 0 15px */
  line-height: 1.2;
}

.article-container h2 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  color: var(--dark);
}

.article-container h3 {
  font-size: clamp(1.4rem, 3vw, 1.6rem);
  color: var(--primary);
}

/* ---------- Paragraphs ---------- */
.article-container p {
  margin-bottom: 1.25rem; /* 20px */
}

/* ---------- Lists ---------- */
.article-container ul {
  list-style-type: disc;
  margin: 0 0 1.25rem 1.5625rem; /* 0 0 20px 25px */
}

.article-container li {
  margin-bottom: 0.625rem; /* 10px */
}

/* ---------- Links ---------- */
.article-container a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease, text-decoration 0.25s ease;
}

.article-container a:hover {
  text-decoration: underline;
}

/* =========================
   CALL-TO-ACTION (CTA)
========================= */
.article-cta {
  background-color: var(--neutral);
  padding: 1.875rem; /* 30px */
  border-radius: 12px;
  text-align: center;
  margin: 2.5rem auto; /* 40px */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.article-cta p {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1.25rem; /* 20px */
}

.article-cta .cta-btn {
  font-size: 1.1rem;
  padding: 0.9375rem 1.875rem; /* 15px 30px */
  background-color: var(--primary);
  color: var(--light);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.25s ease;
}

.article-cta .cta-btn:hover {
  background-color: var(--accent);
  transform: scale(1.05);
}

/* ---------- Last Paragraph Spacing ---------- */
.article-container > p:last-of-type {
  margin-top: 1.875rem; /* 30px */
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 768px) {
  .article-container {
    padding: 1.25rem 0.9375rem; /* 20px 15px */
    font-size: 1rem;
  }

  .article-container li {
    font-size: 1rem;
  }
}
