/* ============================================
   VELVET ORCHID THEME
   Visual DNA: Sparlex Spa Template
   Palette: Pink primary, Purple secondary,
   Warm off-white base, Near-black dark
   Typography: Serif headings + Sans body
   Layout: Full-width sections, generous spacing,
   alternating light/dark, border-accent cards
   ============================================ */

:root {
  --primary: #E8458B;
  --primary-light: #F9D2E4;
  --secondary: #7B4BBE;
  --secondary-light: #DCCAF2;
  --light: #FAF8F6;
  --light-alt: #F3EFE9;
  --dark: #1E1A20;
  --dark-mid: #2D2730;
  --text: #3A3440;
  --text-muted: #7C7485;
  --white: #ffffff;
  --border-radius: 10px;
  --serif: Georgia, "Palatino Linotype", "Book Antiqua", Palatino, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --transition: 0.4s ease;
}

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  color: var(--dark);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--text);
}

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-narrow {
  max-width: 800px;
}

/* === UTILITY === */
.section-label {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  margin-bottom: 1rem;
}

.section-pad {
  padding: 5rem 0;
}

.section-pad-lg {
  padding: 6rem 0;
}

.text-center { text-align: center; }

/* === BUTTONS (Pill-shaped, matching source) === */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.8125rem 2rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  line-height: 1.4;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-light:hover {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

/* === SKIP LINK === */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 9999;
  font-size: 0.875rem;
}

.skip-link:focus {
  top: 0;
  color: var(--white);
}

/* ============================================
   HEADER / NAVIGATION
   Source DNA: top bar + light sticky nav below
   ============================================ */
.topbar {
  background: var(--dark);
  padding: 0.5rem 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
}

.topbar a {
  color: rgba(255,255,255,0.7);
}

.topbar a:hover {
  color: var(--primary);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-email {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.topbar-email svg {
  width: 14px;
  height: 14px;
  fill: var(--primary);
  flex-shrink: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.brand-logo {
  height: 36px;
  width: auto;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.brand-name:hover {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 0.5rem 1rem;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 6px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 6px auto;
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile nav */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0.25rem;
    box-shadow: -4px 0 30px rgba(0,0,0,0.12);
    transition: right 0.35s ease;
    z-index: 1000;
    overflow-y: auto;
    align-items: stretch;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    padding: 0.75rem 0.5rem;
    font-size: 1.0625rem;
    border-bottom: 1px solid var(--light-alt);
  }
}

/* ============================================
   HERO
   Source DNA: Full-viewport with light overlay,
   centered text, serif heading, pill CTAs
   ============================================ */
.hero {
  position: relative;
  background: var(--light-alt);
  padding: 6rem 0 5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,69,139,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(123,75,190,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero .section-label {
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3.25rem;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 620px;
}

.hero-subtitle p {
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Decorative side element */
.hero-decor {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 120px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  border-radius: 4px;
}

/* ============================================
   TOPICS / CATEGORIES
   Source DNA: Alternating left-right cards
   with side border accents (4px)
   ============================================ */
.topics {
  background: var(--white);
}

.topics-header {
  margin-bottom: 3rem;
}

.topics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.topic-card {
  background: var(--light);
  padding: 1.75rem 2rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
}

/* Alternating side border accents - core DNA feature */
.topic-card:nth-child(odd) {
  border-right: 4px solid var(--primary);
}

.topic-card:nth-child(even) {
  border-left: 4px solid var(--primary);
}

.topic-card:hover {
  background: var(--primary);
  border-color: var(--secondary);
}

.topic-card:hover .topic-name,
.topic-card:hover .topic-desc,
.topic-card:hover .topic-desc p {
  color: var(--white);
}

.topic-name {
  font-family: var(--serif);
  font-size: 1.3125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.625rem;
  transition: var(--transition);
}

.topic-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  transition: var(--transition);
}

.topic-desc p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.topic-desc p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .topics-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   LATEST POSTS
   Source DNA: Gallery-like grid with rounded
   corners, hover zoom on images, clean cards
   ============================================ */
.latest-posts {
  background: var(--light-alt);
}

.latest-posts-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.post-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  box-shadow: 0 12px 40px rgba(30,26,32,0.1);
  transform: translateY(-4px);
}

.post-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-card-image img {
  transform: scale(1.08);
}

.post-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-card-date {
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.625rem;
}

.post-card-title {
  font-family: var(--serif);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.35;
  transition: var(--transition);
}

.post-card-title a {
  color: inherit;
}

.post-card-title a:hover {
  color: var(--primary);
}

.post-card-excerpt {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.post-card-excerpt p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.post-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary);
  margin-top: 1rem;
}

.post-card-link:hover {
  gap: 0.625rem;
  color: var(--secondary);
}

.post-card-link svg {
  width: 16px;
  height: 16px;
  transition: var(--transition);
}

@media (max-width: 992px) {
  .posts-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FAQ
   Source DNA: Rounded containers, border accents,
   warm backgrounds. NOT a simple accordion.
   ============================================ */
.faq-section {
  background: var(--white);
}

.faq-header {
  margin-bottom: 3rem;
}

.faq-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.faq-item {
  background: var(--light);
  border-radius: var(--border-radius);
  padding: 1.75rem 2rem;
  border-left: 4px solid var(--secondary-light);
  transition: var(--transition);
  cursor: pointer;
}

.faq-item:hover,
.faq-item.active {
  border-left-color: var(--primary);
}

.faq-question {
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  background: var(--primary);
  transform: rotate(45deg);
}

.faq-toggle svg {
  width: 14px;
  height: 14px;
  stroke: var(--primary);
  transition: var(--transition);
}

.faq-item.active .faq-toggle svg {
  stroke: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, margin 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  margin-top: 1rem;
}

.faq-answer-inner {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-answer-inner p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .faq-columns {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FOOTER
   Source DNA: Dark background, multi-column,
   generous spacing, hover letter-spacing
   ============================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 4.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-heading {
  font-family: var(--serif);
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-about-text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-light);
  font-weight: 500;
  transition: var(--transition);
}

.footer-email:hover {
  color: var(--primary);
  letter-spacing: 1px;
}

.footer-email svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-nav {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 0.25rem;
}

.footer-nav a {
  display: inline-block;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  padding: 0.3125rem 0;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--primary);
  letter-spacing: 1.5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom-nav {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-bottom-nav a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom-nav a:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   PAGE TEMPLATE (About / Static pages)
   ============================================ */
.page-header {
  background: var(--light-alt);
  padding: 4rem 0 3rem;
  border-bottom: 3px solid var(--primary-light);
}

.page-header h1 {
  font-size: 2.5rem;
}

.page-content {
  padding: 3.5rem 0 5rem;
}

.page-content .container-narrow {
  font-size: 1.0625rem;
  line-height: 1.85;
}

.page-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.page-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.page-content p {
  margin-bottom: 1.25rem;
}

.page-content ul, .page-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.page-content li {
  margin-bottom: 0.5rem;
}

.page-content img {
  border-radius: var(--border-radius);
  margin: 1.5rem 0;
}

.page-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 1.25rem 1.5rem;
  background: var(--light);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-muted);
}

/* ============================================
   BLOG INDEX
   ============================================ */
.blog-header {
  background: var(--light-alt);
  padding: 4rem 0 3rem;
  border-bottom: 3px solid var(--primary-light);
}

.blog-list {
  padding: 3.5rem 0 5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 700px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: 0 10px 35px rgba(30,26,32,0.08);
  transform: translateY(-3px);
}

.blog-card-image {
  overflow: hidden;
  aspect-ratio: 16/9;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-date {
  font-size: 0.8125rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.blog-card-title a {
  color: var(--dark);
}

.blog-card-title a:hover {
  color: var(--primary);
}

.blog-card-excerpt {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.blog-card-excerpt p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary);
  margin-top: 1rem;
}

.blog-card-link:hover {
  gap: 0.625rem;
  color: var(--secondary);
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 0.75rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 50px;
  border: 2px solid var(--light-alt);
  color: var(--text);
  transition: var(--transition);
}

.pagination a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pagination a.active,
.pagination .current {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.pagination .prev-next {
  font-size: 0.875rem;
  padding: 0 1.25rem;
}

/* ============================================
   POST (Single article)
   ============================================ */
.post-header {
  background: var(--light-alt);
  padding: 4rem 0 3rem;
  border-bottom: 3px solid var(--primary-light);
}

.post-header .section-label {
  margin-bottom: 0.75rem;
}

.post-header h1 {
  font-size: 2.5rem;
  max-width: 800px;
}

.post-meta {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.post-cover {
  margin-top: -2rem;
  margin-bottom: 2.5rem;
}

.post-cover img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 30px rgba(30,26,32,0.1);
}

.post-excerpt {
  font-size: 1.1875rem;
  color: var(--text-muted);
  line-height: 1.8;
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
}

.post-excerpt p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.post-body {
  padding: 3rem 0 5rem;
}

.post-body .container-narrow {
  font-size: 1.0625rem;
  line-height: 1.85;
}

.post-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.post-body h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.post-body p {
  margin-bottom: 1.25rem;
}

.post-body ul, .post-body ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.post-body li {
  margin-bottom: 0.5rem;
}

.post-body img {
  border-radius: var(--border-radius);
  margin: 1.5rem 0;
}

.post-body blockquote {
  border-left: 4px solid var(--primary);
  padding: 1.25rem 1.5rem;
  background: var(--light);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-muted);
}

/* ============================================
   BACK TO TOP (matching source)
   ============================================ */
.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 15px rgba(232,69,139,0.3);
}

.back-to-top:hover {
  background: var(--secondary);
}

.back-to-top.visible {
  display: flex;
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   RESPONSIVE HERO
   ============================================ */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 0 3.5rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }

  .section-pad {
    padding: 3.5rem 0;
  }

  .section-pad-lg {
    padding: 4rem 0;
  }

  .latest-posts-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.875rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

/* === Focus styles === */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* === Article content from CMS === */
.prose h1, .prose h2, .prose h3,
.prose h4, .prose h5, .prose h6 {
  font-family: var(--serif);
  color: var(--dark);
}

.prose a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prose a:hover {
  color: var(--secondary);
}
