/* ============================================
   Buffalo In Motion — Design System
   Indigenous-led nonprofit • Earth tones • Modern tech
   Breakpoints: 320, 768, 1024, 1440
   ============================================ */

/* --- Typography: mono-led system for reference-inspired feel --- */
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600;700&display=swap");

:root {
  /* UI: monochrome */
  --color-bg: #f6f6f2;
  --color-bg-section: #fbfbf7;
  --color-text: #111111;
  --color-text-muted: #4b4b4b;
  --color-border: #d9d9d0;
  --color-divider: #e4e4dc;
  --color-divider-soft: #ededdf;
  --color-nav-bg: transparent;
  --color-nav-text: #111111;
  --color-nav-hover: rgba(0, 0, 0, 0.06);
  --color-accent: #111111;
  --color-accent-warm: #6f6f6f;
  /* Typography */
  --font-heading: "IBM Plex Mono", ui-monospace, "Cascadia Code", monospace;
  --font-body: "IBM Plex Mono", ui-monospace, "Cascadia Code", monospace;
  --font-mono: "IBM Plex Mono", ui-monospace, "Cascadia Code", monospace;
  /* Layout */
  --max-width: 1200px;
  --content-width: 720px;
  --spacing-unit: 1rem;
  --section-padding-y: 4rem;
  --nav-height: 3.5rem;
  /* Touch targets */
  --touch-min: 44px;
  /* Transitions */
  --ease: 0.2s ease;
}

/* --- Reset / base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image: url("assets/bg-texture.png");
  background-repeat: repeat;
  background-size: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

a:hover,
a:focus {
  text-decoration: none;
  border-bottom-color: transparent;
}

a:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 2px;
}

/* --- Skip link (accessibility) --- */
.skip-link {
  position: absolute;
  top: -3.5rem;
  left: var(--spacing-unit);
  padding: 0.5rem 1rem;
  background: var(--color-text);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  z-index: 100;
  transition: top var(--ease);
  font-weight: 600;
}

.skip-link:focus {
  top: var(--spacing-unit);
}

/* ========== Sticky navigation ========== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  color: var(--color-nav-text);
  border-bottom: 1px solid var(--color-border);
  box-shadow: none;
  backdrop-filter: blur(6px);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-unit);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-unit);
  background: none;
  border-radius: 0;
  box-shadow: none;
}

.nav-menu {
  background: rgba(255,255,255,0.92);
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.nav-brand {
  color: inherit;
  text-decoration: none;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-brand:hover,
.nav-brand:focus {
  text-decoration: none;
  opacity: 0.9;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: var(--touch-min);
  min-height: var(--touch-min);
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  border-radius: 6px;
  flex-shrink: 0;
}

.nav-toggle:hover,
.nav-toggle:focus {
  background: var(--color-nav-hover);
  outline: none;
}

.nav-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.nav-toggle-icon {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
}

.nav-toggle-icon::before { top: -6px; }
.nav-toggle-icon::after { top: 6px; }

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-bg);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  box-shadow: none;
  border-bottom: 1px solid var(--color-border);
}

.site-nav.is-open .nav-menu {
  max-height: 22rem;
}

.nav-menu a {
  display: block;
  padding: 0.875rem 1.25rem;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
  min-height: var(--touch-min);
  display: flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.nav-menu a:hover,
.nav-menu a:focus {
  background: var(--color-nav-hover);
  text-decoration: none;
}

.nav-menu li:last-child a { border-bottom: none; }

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .nav-menu {
    position: static;
    flex-direction: row;
    max-height: none;
    box-shadow: none;
    gap: 0.25rem;
  }
  .nav-menu a {
    padding: 0.5rem 0.75rem;
    border-bottom: none;
    border-radius: 6px;
  }
}

@media (min-width: 1024px) {
  .nav-inner { padding: 0 1.5rem; }
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch-min);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: none;
  border: 1px solid var(--color-text);
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}

.btn:hover,
.btn:focus {
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.btn-primary {
  background: var(--color-text);
  color: var(--color-bg);
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-text);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
}

.btn-secondary:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

/* ========== Hero (homepage) ========== */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 4rem var(--spacing-unit) 3rem;
  margin-top: 0;
  /* Earth texture as base, with overlay for contrast and readability */
  background: linear-gradient(135deg, var(--color-earth-green, #4a6741) 0%, var(--color-deep-blue, #2e5984) 100%);
  background-image: linear-gradient(rgba(74, 103, 65, 0.88), rgba(46, 89, 132, 0.85)), url("assets/bg-texture.png");
  background-size: cover, auto;
  background-repeat: no-repeat, repeat;
  background-position: top center, 0 0;
  color: #fff;
  z-index: 0;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  color: var(--color-nav-text);
  border-bottom: 1px solid var(--color-border);
  box-shadow: none;
  backdrop-filter: blur(6px);
}

.hero {
  /* Make hero overlap the nav and start at the very top */
  margin-top: calc(-1 * var(--nav-height));
  padding-top: calc(4rem + var(--nav-height));
}

.hero,
.hero * {
  color: #fff !important;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}

.hero .mission-statement {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
}

.hero .hero-cta {
  margin: 1.5rem 0 0;
}

.hero .hero-cta .btn {
  min-height: var(--touch-min);
}

.hero-overview {
  font-size: 1rem;
  line-height: 1.6;
  margin: 1rem 0 0;
  color: var(--color-text-muted);
}

.hero-logo-inline {
  height: 25px;
  vertical-align: -2px;
  width: auto;
  display: inline-block;
  align-content: last baseline;
}

/* ========== Section blocks ========== */
.page-section {
  position: relative;
  padding: var(--section-padding-y) var(--spacing-unit);
  overflow: hidden;
}

.page-section--alt {
  background: transparent;
  box-shadow: none;
}

.paper-surface {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.94);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)),
    url("assets/bg-texture.png");
  background-size: 100% 100%, auto;
  background-repeat: no-repeat, repeat;
  box-shadow:
    0 20px 60px rgba(38, 33, 26, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.paper-surface .page-section {
  padding-left: clamp(1rem, 2.5vw, 2rem);
  padding-right: clamp(1rem, 2.5vw, 2rem);
}

.paper-surface .page-section::before,
.paper-surface .page-section::after {
  opacity: 0.18;
}

.page-section::before,
.page-section::after {
  content: none;
}

.page-section::before {
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.07), rgba(0, 0, 0, 0));
  opacity: 0.35;
}

.page-section::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0));
  opacity: 0.28;
}

.section-heading {
  font-family: var(--font-mono);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--color-text);
  text-align: left;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-intro {
  max-width: 44rem;
  margin: 0 0 2rem;
  text-align: left;
  color: var(--color-text-muted);
}

/* ========== Focus section (reference-inspired) ========== */
.focus-section {
  padding-top: calc(var(--section-padding-y) + 1rem);
  padding-bottom: calc(var(--section-padding-y) + 1rem);
}

.focus-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.focus-intro {
  max-width: 20rem;
}

.focus-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text);
  margin: 0 0 1rem;
}

.focus-section .section-heading {
  text-align: left;
  font-family: var(--font-mono);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  margin-bottom: 0.75rem;
}

.focus-section .section-intro {
  text-align: left;
  margin: 0;
  color: var(--color-text-muted);
}

.focus-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.focus-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}

.focus-icon {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--color-text);
}

.focus-icon svg {
  width: 100%;
  height: 100%;
}

.focus-copy h3 {
  font-family: var(--font-mono);
  font-size: 1rem;
  margin: 0 0 0.65rem;
  color: var(--color-text);
}

.focus-copy p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ========== Value cards grid ========== */
.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.value-card {
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 1.5rem;
  text-align: left;
  transition: border-color var(--ease);
}

.value-card:hover {
  border-color: var(--color-text);
}

.value-card__icon {
  width: 3rem;
  height: 3rem;
  margin: 0 0 1rem;
  color: var(--color-text);
}

.value-card__icon svg {
  width: 100%;
  height: 100%;
}

.value-card h3 {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}

.value-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 768px) {
  .focus-layout {
    grid-template-columns: minmax(180px, 240px) 1fr;
    gap: 3rem;
    align-items: start;
  }

  .focus-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 3rem;
  }
}

@media (min-width: 1024px) {
  .value-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========== Partner logo grid ========== */
.partners-section .section-intro {
  margin-bottom: 2rem;
}

.partner-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 80px;
  padding: 0.5rem;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.partner-logo img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

/* ========== Content layout (inner pages) ========== */
.main-content {
  flex: 1;
  padding-bottom: var(--section-padding-y);
}

.content-wrap {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--spacing-unit);
}

.content-wrap--wide {
  max-width: var(--max-width);
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.two-col__block h2,
.two-col__block h3 {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--color-text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.two-col__block p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
}

/* ========== Footer ========== */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 1.5rem var(--spacing-unit);
  background: #fff;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-footer a {
  color: var(--color-text);
}

/* ========== Technology page: three-tier stack ========== */
.tech-stack {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tech-tier {
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 1.5rem;
  transition: border-color var(--ease);
}

.tech-tier:hover {
  border-color: var(--color-text);
}

.tech-tier h2,
.tech-tier h3 {
  font-family: var(--font-mono);
  font-size: 1rem;
  margin: 0 0 1rem;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tech-components {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

.tech-component {
  position: relative;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  text-align: left;
  cursor: default;
}

.tech-component .tech-component__label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tech-component .tech-component__detail {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100%;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--color-text);
  color: var(--color-bg);
  font-size: 0.8rem;
  border-radius: 2px;
  white-space: nowrap;
  max-width: 220px;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
  z-index: 10;
}

.tech-component:hover .tech-component__detail,
.tech-component:focus-within .tech-component__detail {
  opacity: 1;
}

@media (min-width: 768px) {
  .tech-components {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========== Roadmap timeline ========== */
.roadmap-timeline {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.roadmap-phase {
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 1.5rem;
  border-left: 3px solid var(--color-text);
}

.roadmap-phase--current {
  border-left-color: var(--color-text);
}

.roadmap-phase h3 {
  font-family: var(--font-mono);
  font-size: 1rem;
  margin: 0 0 0.25rem;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.roadmap-phase .roadmap-phase__dates {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.roadmap-phase ul {
  margin: 0 0 0 1.25rem;
  padding: 0;
  color: var(--color-text-muted);
}

.roadmap-phase li {
  margin-bottom: 0.25rem;
}

.roadmap-status {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 2px;
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ========== Forms ========== */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 0.35rem;
  color: var(--color-text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--color-text);
  border-radius: 2px;
  background: transparent;
  color: var(--color-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-text);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.8;
}

.form-group .form-hint {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: var(--color-text);
}

.form-error {
  font-size: 0.85rem;
  color: var(--color-text);
  margin-top: 0.25rem;
}

.form-actions {
  margin-top: 1.5rem;
}

/* ========== Team cards ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
  justify-content: center;
}

.team-card {
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 1.5rem;
}

.team-card__photo {
  width: 120px;
  height: 120px;
  border-radius: 2px;
  object-fit: cover;
  background: var(--color-bg-section);
  margin-bottom: 1rem;
}

.team-card h3 {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  margin: 0 0 0.25rem;
  color: var(--color-text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-card .team-card__role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.team-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========== Contact: dual layout ========== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-form-wrap {
  background: #fff !important;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 1.5rem;
}

.contact-info h3 {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  margin: 0 0 0.75rem;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-info p,
.contact-info address {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  font-style: normal;
}

.contact-info a {
  color: var(--color-text);
}

.contact-map {
  min-height: 200px;
  background: transparent;
  border-radius: 2px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }
}

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

/* Responsive spacing */
@media (min-width: 768px) {
  .page-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .page-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media (min-width: 1440px) {
  .page-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
