:root {
  color-scheme: light;
  --ink: #1d1d1b;
  --muted: #4c4c47;
  --paper: #f4e8dc;
  --canvas: #fffdf8;
  --band: #fff4e8;
  --line: #1d1d1b;
  --accent: #f14f97;
  --accent-dark: #d8397e;
  --mint: #20a99a;
  --gold: #ffd94d;
  --blue: #9db7ff;
  --purple: #a57cff;
  --white: #ffffff;
  --shadow: 7px 7px 0 var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 14px 0;
  background: var(--paper);
  background-image:
    radial-gradient(circle at 7% 24%, #20a99a 0 42px, transparent 43px),
    radial-gradient(circle at 91% 54%, #f14f97 0 66px, transparent 67px),
    radial-gradient(circle at 83% 90%, #ffd94d 0 48px, transparent 49px);
  color: var(--ink);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.5;
}

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

.page-shell {
  width: min(1100px, calc(100% - 34px));
  margin: 0 auto;
  overflow: hidden;
  background: var(--canvas);
  border: 4px solid var(--ink);
  border-radius: 28px;
}

body > .site-header,
body > main,
body > .site-footer {
  width: min(1100px, calc(100% - 34px));
  margin-inline: auto;
}

body > .site-header {
  margin-top: 0;
  border: 4px solid var(--ink);
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
}

body > main {
  overflow: hidden;
  background: var(--canvas);
  border-inline: 4px solid var(--ink);
}

body > main .hero {
  border-top: 0;
}

body > .site-footer {
  border: 4px solid var(--ink);
  border-top: 0;
  border-radius: 0 0 28px 28px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin: 0;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 248, 0.94);
  border: 0;
  border-bottom: 0;
  border-radius: 0;
}

.brand,
.header-cta,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  transition: transform 160ms ease;
}

.brand-icon {
  display: block;
  width: 38px;
  height: 38px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--canvas);
  object-fit: cover;
  box-shadow: 3px 3px 0 var(--ink);
}

.nav-links {
  gap: 22px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
}

.nav-links a {
  transition: transform 160ms ease;
}

.brand:hover,
.brand:focus-visible,
.nav-links a:hover,
.nav-links a:focus-visible {
  transform: translateY(-2px);
}

.header-cta {
  min-height: 42px;
  padding: 0 18px;
  border: 4px solid var(--ink);
  border-radius: 999px;
  background: var(--blue);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--ink);
}

.hero {
  position: relative;
  display: grid;
  width: 100%;
  min-height: min(720px, calc(100svh - 96px));
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  margin: 0;
  padding: clamp(50px, 7vw, 110px) clamp(28px, 6vw, 74px) clamp(36px, 5vw, 70px);
  background: var(--canvas);
  border: 0;
  border-radius: 0;
  overflow: hidden;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 720px;
  font-size: clamp(2.45rem, 4.4vw, 3.85rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  max-width: 850px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.hero-copy {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-tagline {
  max-width: 620px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(1.32rem, 2.2vw, 1.85rem);
  font-weight: 950;
  line-height: 1.16;
}

.hero-tagline-char {
  display: inline-block;
  transform-origin: 50% 78%;
  animation: tagline-char-wiggle 1.4s ease-in-out infinite;
  animation-delay: calc(var(--char-index, 0) * 50ms);
}

@keyframes tagline-char-wiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg) translateY(-1px);
  }
  50% {
    transform: rotate(3deg);
  }
  75% {
    transform: rotate(-2deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-tagline-char {
    animation: none;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--ink);
  border-radius: 8px;
  padding: 0 22px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}

.primary:hover {
  background: #ffe46f;
}

.secondary {
  border: 4px solid var(--ink);
  background: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
}

.full {
  width: 100%;
}

.hero-media {
  position: relative;
  display: flex;
  min-height: 420px;
  align-items: center;
  justify-content: center;
}

.portrait-card {
  position: relative;
  width: min(330px, 88vw);
  height: 310px;
  border: 5px solid var(--ink);
  border-radius: 20px 20px 52px 52px;
  background: var(--accent);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.portrait-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  filter: saturate(0.82) contrast(0.9) brightness(0.98);
  transform: scale(1.01);
}

.status-pill {
  position: absolute;
  right: 14px;
  bottom: 28px;
  z-index: 5;
  padding: 4px 10px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: #4cff7a;
  font-size: 0.68rem;
  font-weight: 900;
}

.sticker {
  position: absolute;
  z-index: 6;
  display: grid;
  place-items: center;
  border: 4px solid var(--ink);
  color: var(--ink);
  font-weight: 950;
  box-shadow: 5px 5px 0 var(--ink);
}

.figma {
  top: -6px;
  left: 18%;
  width: 82px;
  height: 82px;
  border-radius: 14px;
  background: var(--blue);
  transform: rotate(-11deg);
}

.nameplate {
  top: 52px;
  right: -6px;
  min-width: 180px;
  min-height: 62px;
  border-radius: 999px;
  background: var(--blue);
  font-size: 1.24rem;
}

.chart {
  left: 0;
  top: 155px;
  width: 90px;
  height: 90px;
  border-radius: 20px;
  background: var(--mint);
  gap: 5px;
  padding: 18px;
}

.chart span {
  display: block;
  width: 100%;
  height: 10px;
  border: 3px solid var(--ink);
  background: var(--canvas);
}

.eye {
  right: 8px;
  bottom: 72px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--gold);
}

.eye::before {
  content: "";
  display: block;
  width: 36px;
  height: 22px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--canvas);
}

.section,
.section-band,
.final-cta {
  padding: clamp(36px, 5vw, 72px) clamp(18px, 5vw, 72px);
}

.section-band {
  border-block: 4px solid var(--ink);
}

.section,
.section-band,
.final-cta {
  background: var(--canvas);
}

main > section:not(.hero):nth-of-type(even) {
  background: var(--band);
}

main > section:not(.hero) {
  border-top: 0;
}

#cta {
  border-top: 4px solid var(--ink);
  background: var(--mint);
}

#contact {
  border-top: 0;
  border-block-start: 0;
}

#career {
  border-bottom: 0;
  border-block-end: 0;
}

.section-inner {
  width: 100%;
  margin: 0 auto;
}

.two-column,
.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.text-stack {
  color: var(--muted);
  font-size: 1.08rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.steps-grid article,
.offer-card {
  border: 3px solid var(--ink);
  border-radius: 12px;
  background: var(--white);
  padding: 18px;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.tile-link {
  display: block;
  height: 100%;
  color: inherit;
}

.tile-link:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
  border-radius: 8px;
}

.card-icon {
  position: relative;
  display: block;
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  color: var(--ink);
  font-weight: 950;
  box-shadow: 4px 4px 0 rgba(29, 29, 27, 0.5);
}

.circuit-icon::before,
.circuit-icon::after,
.pages-icon::before,
.pages-icon::after,
.branch-icon::before,
.branch-icon::after {
  content: "";
  position: absolute;
}

.circuit-icon::before {
  left: 50%;
  top: 50%;
  width: 38px;
  height: 30px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: transparent;
  transform: translate(-50%, -50%);
}

.circuit-icon::after {
  left: 50%;
  top: 50%;
  width: 22px;
  height: 12px;
  border: 2px solid var(--ink);
  border-top: 0;
  border-radius: 0 0 10px 10px;
  transform: translate(-50%, -2px);
}

.pages-icon::before {
  left: 50%;
  top: 50%;
  width: 36px;
  height: 36px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  transform: translate(-50%, -50%);
}

.pages-icon::after {
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  transform: translate(-50%, -50%);
}

.branch-icon::before {
  left: 50%;
  top: 50%;
  width: 36px;
  height: 36px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  transform: translate(-50%, -50%);
}

.branch-icon::after {
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  transform: translate(-50%, -50%);
}

.blue {
  background: var(--blue);
}

.teal {
  background: var(--mint);
}

.pink {
  background: #8ea2db;
}

.yellow {
  background: #2bb2a5;
}

.green {
  background: #ec5b98;
}

.purple {
  background: var(--purple);
}

.steps-grid p,
.benefit-list p,
.proof p,
.offer p {
  color: var(--muted);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.steps-grid article,
.benefit-list div {
  min-height: 220px;
}

.career-grid {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.career-card {
  width: min(92%, 980px);
  margin-inline: auto;
  border: 3px solid var(--ink);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
  overflow: hidden;
  transition: transform 160ms ease;
}

.career-card:hover,
.career-card:focus-within {
  transform: translateY(-2px);
}

.career-summary {
  list-style: none;
  cursor: pointer;
  padding: 18px;
}

.career-summary::-webkit-details-marker {
  display: none;
}

.career-summary h3 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.career-summary h3 strong {
  font-size: 1.32em;
  font-weight: 900;
}

.career-summary h3::after {
  margin-left: auto;

  content: "▼";
  width: 30px;
  height: 30px;
  min-width: 30px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  line-height: 1;
  padding-top: 1px;
  background: var(--canvas);
}

.career-card[open] .career-summary h3::after {
  content: "▲";
}

.career-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: 18px;
  padding: 0 18px 18px;
  align-items: start;
}

.career-copy ul,
.career-copy ol {
  margin: 0;
  padding-left: 20px;
}

.career-copy li + li {
  margin-top: 10px;
}

.career-video-wrap {
  width: 100%;
}

.career-video-title {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.career-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 3px solid var(--ink);
  border-radius: 10px;
  overflow: hidden;
  background: var(--ink);
}

.career-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.career-copy h3 {
  margin-bottom: 10px;
}

.benefit-list div {
  padding: 18px;
  border: 3px solid var(--ink);
  border-radius: 12px;
  background: var(--canvas);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.steps-grid article:hover,
.steps-grid article:focus-within,
.benefit-list div:hover,
.benefit-list div:focus-within {
  transform: translateY(-2px);
}

.benefit-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.04rem;
}

.interest-icon {
  position: relative;
  display: block;
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  box-shadow: 4px 4px 0 rgba(29, 29, 27, 0.5);
}

.merged-eyebrow {
  margin-top: 26px;
}

.mint {
  background: var(--mint);
}

.interest-icon::before,
.interest-icon::after {
  content: "";
  position: absolute;
}

.system-icon::before {
  left: 50%;
  top: 50%;
  width: 36px;
  height: 36px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  transform: translate(-50%, -50%);
}

.system-icon::after {
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.health-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58%;
  height: 58%;
  border: 3px solid var(--ink);
  border-radius: 10px;
  background: var(--canvas);
  transform: translate(-50%, -50%);
}

.health-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42%;
  height: 42%;
  background:
    linear-gradient(var(--ink), var(--ink)) center / 18% 100% no-repeat,
    linear-gradient(var(--ink), var(--ink)) center / 100% 18% no-repeat;
  transform: translate(-50%, -50%);
}

.electronics-icon::before {
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  transform: translate(-65%, -50%);
}

.electronics-icon::after {
  left: 50%;
  top: 50%;
  width: 14px;
  height: 3px;
  background: var(--ink);
  transform: translate(2px, -50%) rotate(-32deg);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metrics div {
  min-height: 150px;
  padding: 18px;
  border: 4px solid var(--ink);
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 5px 5px 0 var(--accent);
}

.metrics strong {
  display: block;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 10px;
  color: #cbd6d2;
  font-weight: 700;
}

.offer-card {
  background: var(--gold);
}

.offer-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding-left: 20px;
}

.final-cta {
  background: var(--mint);
  color: var(--ink);
  border-top: 4px solid var(--ink);
}

.final-cta .eyebrow {
  color: var(--ink);
}

.signup-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 12px;
  margin-top: 30px;
}

label span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 750;
}

input {
  width: 100%;
  min-height: 52px;
  border: 4px solid var(--ink);
  border-radius: 8px;
  padding: 0 14px;
  background: var(--canvas);
  color: var(--ink);
  font: inherit;
}

input::placeholder {
  color: #77766f;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: var(--canvas);
}

@media (max-width: 880px) {
  .nav-links {
    display: none;
  }

  .hero,
  .two-column,
  .offer-layout,
  .signup-form {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    order: -1;
    min-height: 390px;
  }

  .nameplate {
    right: 0;
  }

  .steps-grid,
  .benefit-list {
    grid-template-columns: 1fr;
  }

  .career-content {
    grid-template-columns: 1fr;
  }

  .metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    min-height: 38px;
    padding-inline: 14px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-actions,
  .button,
  .signup-form button {
    width: 100%;
  }

  .page-shell {
    width: min(100% - 20px, 1100px);
    border-radius: 22px;
  }

  .portrait-card {
    width: min(280px, 82vw);
    height: 270px;
  }

  .figma {
    left: 0;
  }

  .nameplate {
    top: 28px;
    min-width: 146px;
    min-height: 54px;
    font-size: 1rem;
  }

  .chart {
    left: -4px;
    top: 142px;
    width: 72px;
    height: 72px;
  }

  .eye {
    right: -5px;
    bottom: 64px;
    width: 64px;
    height: 64px;
  }

  .site-footer {
    flex-direction: column;
  }
}

.blog-hero {
  min-height: auto;
  padding-top: clamp(44px, 6vw, 78px);
  padding-bottom: clamp(28px, 4vw, 54px);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.blog-filter {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.blog-filter label {
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-filter select {
  min-height: 46px;
  min-width: 220px;
  border: 3px solid var(--ink);
  border-radius: 10px;
  padding: 0 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
}

.blog-card {
  border: 3px solid var(--ink);
  border-radius: 12px;
  background: var(--white);
  padding: 20px;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.blog-card:hover,
.blog-card:focus-within {
  transform: translateY(-2px);
}

.blog-meta {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.blog-page-info {
  min-width: 120px;
  text-align: center;
  font-weight: 850;
}

.blog-pagination .button {
  min-height: 44px;
  padding-inline: 18px;
}

.blog-pagination .button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.article-header {
  display: grid;
  gap: 14px;
}

.article-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.article-tag {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-left: auto;
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 0 12px;
  background: var(--gold);
  font-weight: 900;
  font-size: 0.8rem;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
}

.article-hero-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 240px;
  border: 3px dashed var(--ink);
  border-radius: 12px;
  background: var(--canvas);
  font-weight: 900;
  text-transform: uppercase;
}

.article-layout {
  display: grid;
  gap: 18px;
}

.article-main {
  grid-column: 1 / -1;
}

.article-meta {
  margin-top: 2px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  word-spacing: 0.2em;
}

.article-list {
  margin: 0 0 18px;
  padding-left: 20px;
}

.article-list li {
  margin-bottom: 8px;
  color: var(--muted);
}

.article-bottom-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.article-related {
  margin-top: 0;
}

.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.section-separator {
  width: calc(100% - 24px);
  margin: 12px auto 18px;
  border: 0;
  border-top: 2px solid rgba(29, 29, 27, 0.25);
}

.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;
}

.linkedin-icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-right: 4px;
  border-radius: 4px;
  background: #0a66c2;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

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

  .article-nav .button {
    width: 100%;
  }
}
