@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ==========================================================
   People Journey Space — "The Navigator" Design System
   Palette:
     --primary   #1C3557  deep navy
     --secondary #6A8DB8  steel blue
     --bg        #F4F7FB  cool page background
     --text      #0F1B2C  near-black navy
     --accent    #F5A623  golden amber
     --surface   #E8EFF8  light blue surface
========================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:    #1C3557;
  --secondary:  #6A8DB8;
  --bg:         #F4F7FB;
  --text:       #0F1B2C;
  --accent:     #F5A623;
  --surface:    #E8EFF8;
  --white:      #ffffff;
  --border:     rgba(28,53,87,0.12);
  --shadow:     0 2px 20px rgba(15,27,44,0.07);
  --shadow-md:  0 4px 28px rgba(15,27,44,0.11);
  --shadow-lg:  0 10px 48px rgba(15,27,44,0.15);
  --max-w:      1120px;
  --header-h:   68px;
  --r:          12px;
  --r-sm:       6px;
  --t:          0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Wrapper ── */
.wrapper {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

/* ============================
   HEADER
============================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(28, 53, 87, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow var(--t);
}

.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(15,27,44,0.28);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link {
  flex-shrink: 0;
  display: block;
  transition: opacity var(--t);
}
.logo-link:hover { opacity: 0.82; }

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

/* Nav */
.main-nav { margin-left: auto; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  display: inline-block;
  padding: 6px 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.78);
  border-radius: 100px;
  transition: color var(--t), background var(--t);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 14px; right: 14px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.08);
  transition: background var(--t);
}
.burger:hover { background: rgba(255,255,255,0.15); }
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28,53,87,0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: var(--header-h);
}
.nav-overlay.open { display: flex; }
.nav-overlay .nav-link {
  font-size: 1.25rem;
  padding: 12px 28px;
}

/* Page offset */
body > main { padding-top: var(--header-h); }

/* ============================
   HERO — INDEX
============================ */
.hero {
  position: relative;
  background: var(--primary);
  overflow: hidden;
  padding: clamp(56px, 9vw, 110px) 0 clamp(48px, 7vw, 88px);
}

/* Dot grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(245,166,35,0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Diagonal cut at bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 64px;
  background: var(--bg);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(245,166,35,0.18);
  border: 1px solid rgba(245,166,35,0.4);
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero__tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero__h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.1rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 780px;
  margin-bottom: 20px;
}

.hero__h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero__line {
  width: 64px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.68);
  max-width: 580px;
  line-height: 1.7;
}

/* ============================
   CONTENT SECTIONS
============================ */
.section {
  padding: clamp(48px, 7vw, 88px) 0;
}

.section--surface {
  background: var(--surface);
}

.section__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--primary);
  margin-bottom: 10px;
}

.section__sub {
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 40px;
  max-width: 560px;
}

/* ── Index page body text ── */
.page-body {
  font-size: 1.0625rem;
  line-height: 1.82;
  color: var(--text);
}

.page-body p { margin-bottom: 1.25em; }
.page-body p:last-child { margin-bottom: 0; }

.page-body .article-image {
  width: 100%;
  border-radius: var(--r);
  margin: 2em 0;
  box-shadow: var(--shadow-md);
}

/* ============================
   ARTICLE CARDS GRID
============================ */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  gap: 24px;
  margin-top: 40px;
}

.article-card {
  position: relative;
  background: var(--white);
  border-radius: var(--r);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  overflow: hidden;
}
.article-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--t);
  border-radius: 4px 0 0 4px;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,166,35,0.25);
}
.article-card:hover::before { transform: scaleY(1); }

.article-card__num {
  position: absolute;
  top: 16px; right: 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--surface);
  user-select: none;
  pointer-events: none;
  transition: color var(--t);
}
.article-card:hover .article-card__num {
  color: rgba(245,166,35,0.12);
}

.article-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--primary);
  padding-right: 48px;
}

.article-card__excerpt {
  font-size: 0.875rem;
  color: var(--secondary);
  line-height: 1.65;
  flex: 1;
}

.article-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--primary);
  margin-top: 4px;
  transition: color var(--t), gap var(--t);
}
.article-card__link:hover {
  color: var(--accent);
  gap: 10px;
}
.article-card__link::after {
  content: '→';
}

/* ============================
   ARTICLE PAGE
============================ */
.reading-progress {
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--accent);
  z-index: 200;
  border-radius: 0 2px 2px 0;
  transition: width 0.1s linear;
}

.article-page {
  padding-top: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(48px, 7vw, 96px);
}

.article-page__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px 6px 10px;
  background: var(--surface);
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--primary);
  border: 1px solid var(--border);
  margin-bottom: 36px;
  transition: background var(--t), border-color var(--t);
}
.article-page__back::before { content: '←'; }
.article-page__back:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.article-page__header {
  max-width: 760px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.article-page__tag {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c87d00;
  margin-bottom: 20px;
}

.article-page__h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--primary);
  margin-bottom: 16px;
}

.article-page__line {
  width: 48px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

/* Article body */
.article-body {
  font-size: 1.0625rem;
  line-height: 1.82;
  color: var(--text);
}

.article-body h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin: 2.4em 0 0.8em;
  padding-left: 20px;
  border-left: 4px solid var(--accent);
  line-height: 1.3;
}

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

.article-body p {
  margin-bottom: 1.3em;
}

.article-body p:last-child { margin-bottom: 0; }

.article-body .article-image {
  width: 100%;
  border-radius: var(--r);
  margin: 2.2em 0;
  box-shadow: var(--shadow-md);
}

/* Article nav (prev/next) */
.article-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.article-nav__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  transition: background var(--t), border-color var(--t), color var(--t);
}
.article-nav__btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.article-nav__btn--all {
  margin-left: auto;
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text);
  font-weight: 600;
}
.article-nav__btn--all:hover {
  background: #d48b0e;
  border-color: #d48b0e;
  color: var(--white);
}

/* ============================
   ABOUT PAGE
============================ */
.about-hero {
  background: var(--primary);
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(245,166,35,0.14) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.about-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 56px;
  background: var(--bg);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.about-hero__inner { position: relative; z-index: 1; }

.about-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.35);
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.about-hero__h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.13;
  color: var(--white);
  max-width: 680px;
  margin-bottom: 20px;
}

.about-hero__line {
  width: 56px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.about-quote {
  background: var(--surface);
  border-radius: var(--r);
  padding: clamp(28px, 4vw, 48px) clamp(28px, 5vw, 56px);
  margin: clamp(32px, 5vw, 56px) 0;
  border-left: 5px solid var(--accent);
  max-width: 780px;
}

.about-quote__text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--primary);
  font-style: italic;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 20px;
  margin: 40px 0 48px;
}

.about-value {
  background: var(--white);
  border-radius: var(--r);
  padding: 28px 24px;
  border: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow var(--t), transform var(--t);
}
.about-value:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.about-value__num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-value__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.about-value__text {
  font-size: 0.9rem;
  color: var(--secondary);
  line-height: 1.65;
}

.about-body {
  font-size: 1.0625rem;
  line-height: 1.82;
}
.about-body p { margin-bottom: 1.3em; }
.about-body p:last-child { margin-bottom: 0; }

/* ============================
   ARTICLES LIST PAGE
============================ */
.articles-hero {
  background: var(--primary);
  padding: clamp(52px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}
.articles-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(245,166,35,0.14) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.articles-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 56px;
  background: var(--bg);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.articles-hero__inner { position: relative; z-index: 1; }
.articles-hero__h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--white);
  max-width: 700px;
  margin-bottom: 16px;
}
.articles-hero__line {
  width: 56px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

/* ============================
   SLIDER OVERRIDES
============================ */
.pjs-slider {
  padding: clamp(40px, 6vw, 72px) 0;
  background: var(--surface);
}

.pjs-slider__header {
  text-align: center;
  margin-bottom: 36px;
  padding: 0 16px;
}

.pjs-slider__header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--primary);
  margin-bottom: 10px;
}

.pjs-slider__header p {
  font-size: 0.95rem;
  color: var(--secondary);
  margin: 0;
}

.pjs-slider__track-wrapper {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pjs-slider__track {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
  width: 100%;
  scroll-snap-type: x mandatory;
}

.pjs-slider__slide {
  flex: 0 0 calc((100% - 40px) / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
  scroll-snap-align: start;
}

.pjs-slider__slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--r);
  box-shadow: var(--shadow-md);
  display: block;
}

.pjs-slider__caption {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--primary);
  margin-top: 10px;
  text-align: center;
  padding: 0 4px;
}

.pjs-slider__btn {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: var(--white);
  color: var(--primary);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
  box-shadow: var(--shadow);
}
.pjs-slider__btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.08);
}

.pjs-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding: 0 16px;
}

.pjs-slider__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0.4;
  transition: background var(--t), opacity var(--t), transform var(--t);
}
.pjs-slider__dot.active {
  background: var(--accent);
  opacity: 1;
  transform: scale(1.4);
}

@media (max-width: 768px) {
  .pjs-slider__slide { flex: 0 0 calc((100% - 20px) / 2); }
}
@media (max-width: 480px) {
  .pjs-slider__slide { flex: 0 0 100%; }
}

/* ============================
   FOOTER
============================ */
.site-footer {
  background: var(--primary);
  padding: clamp(40px, 6vw, 64px) 0 clamp(24px, 4vw, 36px);
  margin-top: auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px 48px;
}

.footer-brand .logo-img--footer {
  height: 38px;
  width: auto;
  opacity: 0.85;
  transition: opacity var(--t);
}
.footer-brand .logo-link:hover .logo-img--footer { opacity: 1; }

.footer-nav .nav-list {
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
}
.footer-nav .nav-link {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  padding: 4px 12px;
}
.footer-nav .nav-link::after { bottom: 2px; left: 12px; right: 12px; }
.footer-nav .nav-link:hover { color: var(--white); background: none; }

.copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-align: right;
  white-space: nowrap;
}

/* Footer bottom rule */
.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ============================
   FADE-IN SCROLL ANIMATION
============================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grid items */
.articles-grid .article-card:nth-child(2) .fade-up,
.articles-grid .article-card:nth-child(2) { transition-delay: 0.08s; }
.articles-grid .article-card:nth-child(3) { transition-delay: 0.16s; }
.articles-grid .article-card:nth-child(4) { transition-delay: 0.24s; }
.articles-grid .article-card:nth-child(5) { transition-delay: 0.08s; }
.articles-grid .article-card:nth-child(6) { transition-delay: 0.16s; }

/* ============================
   UTILITY
============================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .copyright { grid-column: 1 / -1; text-align: center; }
  .footer-nav { grid-column: 1 / -1; }
  .footer-nav .nav-list { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .main-nav { display: none; }
  .burger { display: flex; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .footer-nav .nav-list { justify-content: center; }
  .copyright { text-align: center; }
}

@media (max-width: 480px) {
  .article-nav { flex-direction: column; }
  .article-nav__btn--all { margin-left: 0; width: 100%; justify-content: center; }

  .about-quote { padding: 20px 20px 20px 24px; }
}
