/* ================================================================
   Human Journey Lab — "Explorer's Journal" Design System
   ================================================================
   Concept  : An academic explorer's field journal — scholarly yet vivid.
              Think National Geographic meets modern editorial design.
   Fonts    : Playfair Display (editorial headers) + Inter (clean body)
   Palette  :
     --primary:    #2C3E50  deep navy
     --secondary:  #E67E22  amber orange
     --accent:     #16A085  teal green
     --bg:         #FDFEFE  clean white
     --text:       #273746  dark blue-grey

   Unique features vs all other sites in this project:
   1. Dot-grid CSS background on hero (radial-gradient, no image)
   2. Expedition numbered badges on article cards (CSS counter)
   3. Vertical timeline layout on articles list page
   4. Auto-generated floating section-dot navigator on article pages (JS)
   5. Teal reading-progress bar (fixed top, fills on scroll in articles)
   6. Fade crossfade slider (not slide/transform)
   7. Amber ornamental divider line between page sections
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── Reset + Variables ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:      #2C3E50;
  --primary-dk:   #1a2b38;
  --primary-lt:   rgba(44, 62, 80, 0.07);
  --secondary:    #E67E22;
  --secondary-dk: #c9660a;
  --secondary-lt: rgba(230, 126, 34, 0.12);
  --accent:       #16A085;
  --accent-dk:    #0e7d68;
  --accent-lt:    rgba(22, 160, 133, 0.1);
  --bg:           #FDFEFE;
  --bg-warm:      #f8f4ef;
  --bg-dark:      #1e2d3a;
  --text:         #273746;
  --text-muted:   rgba(39, 55, 70, 0.55);
  --border:       rgba(44, 62, 80, 0.14);
  --shadow-sm:    0 2px 12px rgba(44,62,80,0.08);
  --shadow:       0 6px 28px rgba(44,62,80,0.12);
  --shadow-lg:    0 16px 56px rgba(44,62,80,0.18);
  --max-w:        1200px;
  --text-w:       780px;
  --header-h:     72px;
  --radius:       3px;
  --radius-lg:    6px;
  --ff-head:      'Playfair Display', Georgia, serif;
  --ff-body:      'Inter', system-ui, sans-serif;
  --transition:   0.25s ease;
}

/* ── Base ───────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-dk); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-head);
  font-weight: 500;
  line-height: 1.25;
  color: var(--primary);
}

p { margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ─────────────────────────────────────────────────────── */
.wrapper {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.text-content {
  max-width: var(--text-w);
  margin: 0 auto;
}

/* Section divider ornament */
.section-ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 56px 0;
}
.section-ornament::before,
.section-ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.section-ornament span {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Reading Progress Bar ───────────────────────────────────────── */
#reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--accent);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── Header ─────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
/* amber accent line at bottom of header */
.site-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--secondary);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.header-logo img {
  height: 40px;
  width: auto;
  filter: none;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  padding: 6px 14px;
  text-decoration: none;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--secondary);
  transition: left 0.25s ease, right 0.25s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}
.nav-link:hover::after,
.nav-link.active::after {
  left: 14px;
  right: 14px;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  width: 100%;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  background: var(--primary-dk);
  position: relative;
  overflow: hidden;
  padding: 80px 0 64px;
}

/* Dot-grid background — unique feature */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(230,126,34,0.25) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-text { }

.hero-text h1 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-text p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 0;
  max-width: 480px;
}

.hero-image {
  position: relative;
}
.hero-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
/* amber frame accent on hero image */
.hero-image::before {
  content: '';
  position: absolute;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
  border: 2px solid var(--secondary);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

/* ── Index intro text (no image) ────────────────────────────────── */
.index-intro {
  background: var(--bg);
  padding: 64px 0 0;
}
.index-intro p {
  font-size: 1.0625rem;
  line-height: 1.8;
}

/* ── Adding Section (feature-blocks) ───────────────────────────── */
.adding-section-wrap {
  padding: 72px 0;
  background: var(--bg-warm);
}

.adding-section-wrap h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 12px;
  color: var(--primary);
}

.adding-section-wrap > .wrapper > p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 48px;
  max-width: 600px;
}

.feature-blocks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.feature-block {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-block:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.feature-block img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.feature-block h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  padding: 20px 24px 8px;
  border-left: 3px solid var(--secondary);
  margin-left: 0;
}

.feature-block p {
  padding: 0 24px 24px;
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ── Slider ─────────────────────────────────────────────────────── */
.adding-slider-wrap {
  padding: 72px 0;
  background: var(--primary);
}

.carousel-slider {
  position: relative;
}

.carousel-slider h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
}

.carousel-slider > .wrapper > p,
.carousel-slider > p {
  text-align: center;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  font-size: 0.9375rem;
}

.slider-track {
  position: relative;
  height: 340px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slider controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  background: transparent;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}
.slider-btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  border: none;
  padding: 0;
}
.slider-dot.active {
  background: var(--secondary);
  transform: scale(1.3);
}

/* ── FAQ ────────────────────────────────────────────────────────── */
.adding-faq-wrap {
  padding: 72px 0;
  background: var(--bg);
}

.adding-faq-wrap h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 40px;
  color: var(--primary);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-item h3 {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary);
  padding: 20px 48px 20px 0;
  cursor: pointer;
  position: relative;
  user-select: none;
  transition: color var(--transition);
}
.faq-item h3:hover { color: var(--secondary); }

/* Plus/minus toggle */
.faq-item h3::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--secondary);
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item.open h3::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-item.open h3 {
  color: var(--secondary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding: 0 0 20px;
  color: var(--text);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin: 0;
}
.faq-item.open {
  border-left: 3px solid var(--secondary);
  padding-left: 16px;
}

/* ── Articles List Page ─────────────────────────────────────────── */
.articles-hero {
  padding: 56px 0 40px;
  background: var(--primary-dk);
  position: relative;
  overflow: hidden;
}
.articles-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(230,126,34,0.2) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}
.articles-hero h1 {
  position: relative;
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}
.articles-hero p {
  position: relative;
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  margin-top: 10px;
  margin-bottom: 0;
}

/* Timeline layout */
.articles-timeline {
  padding: 64px 0 80px;
}

.timeline-list {
  position: relative;
  padding-left: 48px;
  list-style: none;
}
/* The vertical line */
.timeline-list::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 14px;
  width: 2px;
  background: linear-gradient(to bottom, var(--secondary), var(--accent));
}

.timeline-item {
  position: relative;
  margin-bottom: 36px;
  counter-increment: expedition;
}

/* Expedition number badge — unique feature */
.timeline-item::before {
  content: counter(expedition, decimal-leading-zero);
  position: absolute;
  left: -48px;
  top: 24px;
  width: 28px;
  height: 28px;
  background: var(--secondary);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 1;
}

/* The timeline dot on the line */
.timeline-item::after {
  content: '';
  position: absolute;
  left: -37px;
  top: 30px;
  width: 8px;
  height: 8px;
  background: var(--bg);
  border: 2px solid var(--secondary);
  border-radius: 50%;
}

.article-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--secondary);
  box-shadow: var(--shadow-sm);
  padding: 24px 28px;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition), transform var(--transition), border-left-color var(--transition);
}
.article-card:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
  border-left-color: var(--accent);
  color: inherit;
}

.article-card-title {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.article-card:hover .article-card-title {
  color: var(--accent);
}

.article-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.article-card-arrow {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--accent);
  text-transform: uppercase;
}
.article-card:hover .article-card-arrow {
  color: var(--secondary);
}

/* ── Article Page ───────────────────────────────────────────────── */
.article-hero {
  padding: 56px 0 40px;
  background: var(--primary-dk);
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(230,126,34,0.2) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}
.article-hero h1 {
  position: relative;
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

.article-body-wrap {
  padding: 56px 0 80px;
}

.article-body {
  counter-reset: chapter;
}

/* Chapter markers on h2 — numbered like field notebook chapters */
.article-body h2 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  counter-increment: chapter;
  position: relative;
  padding-left: 48px;
}
.article-body h2::before {
  content: counter(chapter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--secondary);
  padding: 2px 7px;
  border-radius: 2px;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.article-body h2:first-child { margin-top: 0; }

.article-body p {
  font-size: 1.0rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.article-body img {
  margin: 32px auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  max-width: 100%;
}

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 40px;
  padding: 8px 16px 8px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.back-link:hover {
  color: var(--primary);
  border-color: var(--secondary);
  background: var(--secondary-lt);
}
.back-link::before {
  content: '←';
  font-size: 1rem;
}

/* ── Section Navigator (auto-generated by JS) ───────────────────── */
#section-nav {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.snav-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid rgba(44,62,80,0.3);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.snav-dot:hover,
.snav-dot.active {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: scale(1.4);
}
.snav-dot .snav-tooltip {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  white-space: nowrap;
  padding: 4px 10px;
  border-radius: 3px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.snav-dot:hover .snav-tooltip { opacity: 1; }

/* ── About Page ─────────────────────────────────────────────────── */
.about-hero {
  padding: 64px 0 48px;
  background: var(--primary-dk);
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(230,126,34,0.2) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}
.about-hero h1 {
  position: relative;
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 12px;
}

.about-body-wrap {
  padding: 60px 0 80px;
}
.about-body-wrap .text-content p {
  font-size: 1.0625rem;
  line-height: 1.85;
}
.about-body-wrap .text-content h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 14px;
  padding-left: 16px;
  border-left: 3px solid var(--secondary);
}

/* About page extra decorative card */
.about-values {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-value-card {
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border-top: 3px solid var(--accent);
}
.about-value-card h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 600;
}
.about-value-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ── Footer ─────────────────────────────────────────────────────── */
.site-footer {
  background: var(--primary-dk);
  padding: 48px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 24px;
}

.footer-logo img {
  height: 36px;
  width: auto;
  filter: invert(1);
  opacity: 0.9;
  transition: opacity var(--transition);
}
.footer-logo:hover img { opacity: 1; }

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 4px 12px;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--secondary); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
  text-align: right;
  margin: 0;
  white-space: nowrap;
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  #section-nav { display: none; }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-image::before { display: none; }
  .hero-text p { max-width: 100%; }

  .feature-blocks-grid { grid-template-columns: 1fr; }

  .about-values { grid-template-columns: 1fr 1fr; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-copy { text-align: center; }
}

@media (max-width: 768px) {
  .wrapper { padding: 0 20px; }

  /* Mobile nav */
  .menu-toggle { display: flex; }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    border-bottom: 2px solid var(--secondary);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
    gap: 0;
  }
  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
  }
  .nav-link::after { display: none; }
  .nav-link:last-child { border-bottom: none; }

  .hero { padding: 52px 0 44px; }
  .hero-image img { height: 240px; }

  .slider-track { height: 240px; }

  .timeline-list { padding-left: 36px; }
  .timeline-list::before { left: 10px; }
  .timeline-item::before {
    left: -36px;
    width: 22px;
    height: 22px;
    font-size: 0.6rem;
  }
  .timeline-item::after { left: -29px; }

  .article-body h2 { font-size: 1.2rem; }

  .about-values { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 1.75rem; }
  .adding-section-wrap,
  .adding-slider-wrap,
  .adding-faq-wrap,
  .articles-timeline,
  .article-body-wrap,
  .about-body-wrap { padding-top: 48px; padding-bottom: 48px; }
}
