.page-home {
  overflow-x: clip;
  background: var(--c-rock);
}

.page-home .breadcrumbs {
  padding: 18px 20px 8px;
  max-width: var(--content-max);
  margin: 0 auto;
}

.page-home .breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--c-slate);
}

.page-home .breadcrumbs a {
  color: var(--c-deep);
  font-weight: 600;
  text-decoration: none;
}

.page-home .breadcrumbs a:hover {
  color: var(--c-red);
}

.page-home .home-hero__inner,
.page-home .home-section__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.page-home .home-hero {
  position: relative;
  padding: 28px 0 48px;
  background: linear-gradient(120deg, var(--c-deep) 0%, var(--c-darkblue) 100%);
  color: var(--c-cream);
}

.page-home .home-hero__inner {
  display: grid;
  gap: 28px;
}

.page-home .home-hero__content {
  max-width: 660px;
  border-left: 3px solid var(--c-yellow);
  padding-left: 18px;
  transition: border-color .2s ease;
}

.page-home .home-hero:hover .home-hero__content {
  border-color: var(--c-red);
}

.page-home .home-hero .section-kicker {
  color: var(--c-yellow);
  font-size: 13px;
  letter-spacing: .12em;
  font-weight: 700;
  margin: 0 0 10px;
  font-family: var(--font-display);
}

.page-home .home-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 7vw, 54px);
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 14px;
}

.page-home .home-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.page-home .home-hero__meta-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: rgba(249, 247, 242, .82);
}

.page-home .home-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-red);
  display: inline-block;
  transition: background .2s ease;
}

.page-home .home-hero:hover .home-hero__dot,
.page-home .home-hero:focus-within .home-hero__dot {
  background: var(--c-yellow);
}

.page-home .home-hero .lede {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(249, 247, 242, .85);
  margin: 0 0 22px;
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-home .home-hero .btn {
  font-family: var(--font-display);
  font-weight: 700;
}

.page-home .home-hero .btn--primary {
  background: var(--c-yellow);
  border-color: var(--c-yellow);
  color: var(--c-deep);
}

.page-home .home-hero .btn--primary:hover {
  background: #ffe066;
  border-color: #ffe066;
}

.page-home .home-hero .btn--ghost {
  background: transparent;
  border-color: rgba(249, 247, 242, .4);
  color: var(--c-cream);
}

.page-home .home-hero .btn--ghost:hover {
  border-color: var(--c-yellow);
  color: var(--c-yellow);
}

.page-home .home-hero__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-raised);
}

.page-home .home-hero__media img {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .home-hero__strip {
  display: block;
  background: var(--c-yellow);
  color: var(--c-deep);
  transform: skewY(-2deg);
  padding: 12px 20px;
  margin-top: -20px;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-top: 2px solid rgba(13, 31, 60, .12);
  border-bottom: 2px solid rgba(13, 31, 60, .12);
}

.page-home .home-hero__strip span {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .05em;
  white-space: nowrap;
}

.page-home .home-hero__strip span + span {
  display: none;
}

.page-home .home-section {
  padding: 52px 0 56px;
}

.page-home .chapter {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.page-home .chapter__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  line-height: .85;
  color: var(--c-clay);
  flex: 0 0 62px;
  letter-spacing: -0.04em;
}

.page-home .chapter__num--light {
  color: var(--c-yellow);
}

.page-home .chapter__num--moss {
  color: var(--c-moss);
}

.page-home .chapter__content {
  flex: 1;
}

.page-home .chapter__content .section-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--c-clay);
  margin: 0 0 6px;
  font-family: var(--font-display);
}

.page-home .chapter__content .section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  line-height: 1.2;
  color: var(--c-deep);
  margin: 0 0 8px;
}

.page-home .chapter__content .lede {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-slate);
  margin: 0;
}

.page-home .home-news {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.page-home .home-news__card {
  padding: 18px;
  border-top: 4px solid transparent;
  transition: box-shadow .2s ease, transform .2s ease;
}

.page-home .home-news__card:nth-child(1) {
  border-top-color: var(--c-red);
}

.page-home .home-news__card:nth-child(2) {
  border-top-color: var(--c-yellow);
}

.page-home .home-news__card:nth-child(3) {
  border-top-color: var(--c-moss);
}

.page-home .home-news__card:hover {
  box-shadow: var(--shadow-raised);
  transform: translateY(-2px);
}

.page-home .home-news__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.page-home .home-news__time {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-slate);
  font-family: var(--font-body);
}

.page-home .home-news__card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 17px;
  line-height: 1.4;
  color: var(--c-deep);
  margin: 0 0 8px;
}

.page-home .home-news__card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-ink);
  margin: 0 0 14px;
}

.page-home .home-news__link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--c-red);
  text-decoration: none;
  transition: color .2s ease;
}

.page-home .home-news__link:hover {
  color: var(--c-clay);
}

.page-home .home-news__data {
  display: grid;
  gap: 0;
  background: var(--c-deep);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.page-home .home-news__data-media img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  display: block;
}

.page-home .home-news__data-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 18px;
  background: var(--c-deep);
}

.page-home .home-news__data-note strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  color: var(--c-yellow);
}

.page-home .home-news__data-note span {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(249, 247, 242, .8);
}

.page-home .home-fill {
  background: linear-gradient(120deg, var(--c-deep) 0%, var(--c-darkblue) 100%);
  color: var(--c-cream);
  padding: 52px 0 56px;
}

.page-home .home-fill .section-kicker {
  color: var(--c-yellow);
}

.page-home .home-fill .section-title {
  color: #ffffff;
}

.page-home .home-fill .lede {
  color: rgba(249, 247, 242, .8);
}

.page-home .home-entry__layout {
  display: grid;
  gap: 28px;
  margin-top: 8px;
}

.page-home .home-entry__text > p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(249, 247, 242, .88);
  margin: 0 0 22px;
}

.page-home .home-entry__steps {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.page-home .home-entry__steps li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(249, 247, 242, .14);
  transition: background .2s ease, padding-left .2s ease;
}

.page-home .home-entry__steps li:hover {
  background: rgba(255, 210, 31, .06);
  padding-left: 8px;
  border-radius: var(--radius-sm);
}

.page-home .home-entry__steps strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  color: var(--c-yellow);
  flex: 0 0 52px;
}

.page-home .home-entry__steps span {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(249, 247, 242, .85);
  font-family: var(--font-body);
}

.page-home .home-entry__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-home .home-entry .btn {
  font-family: var(--font-display);
  font-weight: 700;
}

.page-home .home-entry .btn--primary {
  background: var(--c-yellow);
  border-color: var(--c-yellow);
  color: var(--c-deep);
}

.page-home .home-entry .btn--primary:hover {
  background: #ffe066;
  border-color: #ffe066;
}

.page-home .home-entry .btn--ghost {
  background: transparent;
  border-color: rgba(249, 247, 242, .4);
  color: var(--c-cream);
}

.page-home .home-entry .btn--ghost:hover {
  border-color: var(--c-yellow);
  color: var(--c-yellow);
}

.page-home .home-entry__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-raised);
  object-fit: cover;
  display: block;
}

.page-home .home-favorites {
  display: grid;
  gap: 22px;
}

.page-home .home-favorites__demo {
  background: var(--c-deep);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--c-yellow);
}

.page-home .home-favorites__demo-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.page-home .home-favorites__demo-head .section-kicker {
  color: rgba(249, 247, 242, .65);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-display);
}

.page-home .home-favorites__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.page-home .home-favorites__chips .chip {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(249, 247, 242, .35);
  background: transparent;
  color: rgba(249, 247, 242, .8);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.page-home .home-favorites__chips .chip:hover {
  background: rgba(255, 210, 31, .18);
  border-color: var(--c-yellow);
}

.page-home .home-favorites__chips .chip[aria-pressed="true"] {
  background: var(--c-yellow);
  border-color: var(--c-yellow);
  color: var(--c-deep);
}

.page-home .home-favorites__list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.page-home .home-favorites__list li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  padding: 12px 14px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, .05);
  border-left: 3px solid var(--c-clay);
  border-radius: var(--radius-sm);
}

.page-home .home-favorites__list strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  color: #ffffff;
}

.page-home .home-favorites__list span:last-child {
  font-size: 13px;
  color: var(--c-slate);
  margin-left: auto;
  font-family: var(--font-body);
}

.page-home .home-favorites__tip {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(249, 247, 242, .75);
  margin: 0;
  font-family: var(--font-body);
}

.page-home .home-favorites__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  object-fit: cover;
  display: block;
}

.page-home .home-archive {
  background: linear-gradient(120deg, #e8ece5 0%, var(--c-rock) 55%, var(--c-cream) 100%);
  padding: 52px 0 56px;
}

.page-home .home-archive__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-home .home-archive__card {
  padding: 22px;
  background: var(--c-cream);
  box-shadow: var(--shadow-card);
  transition: box-shadow .2s ease, transform .2s ease;
}

.page-home .home-archive__card:hover {
  box-shadow: var(--shadow-raised);
  transform: translateY(-2px);
}

.page-home .home-archive__card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 19px;
  color: var(--c-deep);
  margin: 0 0 8px;
}

.page-home .home-archive__card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-ink);
  margin: 0 0 14px;
}

.page-home .home-archive__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-home .home-links {
  padding: 48px 0 64px;
  background: var(--c-rock);
}

.page-home .home-links__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.page-home .home-links__item {
  display: grid;
  grid-template-columns: 44px 1fr 20px;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--c-cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: var(--c-ink);
  transition: box-shadow .2s ease, transform .2s ease;
}

.page-home .home-links__item:hover {
  box-shadow: var(--shadow-raised);
  transform: translateY(-2px);
}

.page-home .home-links__index {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--c-clay);
  text-align: center;
}

.page-home .home-links__body strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  color: var(--c-deep);
  margin-bottom: 2px;
}

.page-home .home-links__body span {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: var(--c-slate);
  font-family: var(--font-body);
}

.page-home .home-links__arrow {
  color: var(--c-red);
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

@media (min-width: 720px) {
  .page-home .home-hero__strip {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 12px 0;
  }

  .page-home .home-hero__strip span {
    display: inline;
  }

  .page-home .home-hero__strip span + span {
    display: inline;
  }

  .page-home .home-news {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .page-home .home-archive__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .page-home .home-links__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (min-width: 960px) {
  .page-home .home-hero {
    padding: 36px 0 52px;
  }

  .page-home .home-hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 40px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .page-home .home-section,
  .page-home .home-fill,
  .page-home .home-archive {
    padding: 68px 0 72px;
  }

  .page-home .home-links {
    padding: 56px 0 80px;
  }

  .page-home .chapter {
    margin-bottom: 36px;
  }

  .page-home .chapter__num {
    font-size: 72px;
    flex-basis: 84px;
  }

  .page-home .chapter__content .section-title {
    font-size: 34px;
  }

  .page-home .chapter__content .lede {
    font-size: 15px;
  }

  .page-home .home-news__data {
    grid-template-columns: 2fr 1fr;
    min-height: 260px;
  }

  .page-home .home-entry__layout {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
  }

  .page-home .home-favorites {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
    gap: 28px;
  }

  .page-home .home-favorites__media {
    display: flex;
  }

  .page-home .home-favorites__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page-home .home-links__item {
    padding: 20px;
  }
}
