body.make-page {
  margin: 0;
  background: #f9f8f6;
  color: #022b1b;
  font-family: 'Inter', sans-serif;
}

.make-shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.make-page main {
  padding-bottom: 64px;
}

.make-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(2, 43, 27, 0.08);
  background: rgba(249, 248, 246, 0.92);
  backdrop-filter: blur(16px);
}

.make-navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
}

.make-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.make-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #022b1b;
  overflow: hidden;
}

.make-brand--footer .make-brand__mark {
  background: #00d37f;
}

.make-brand__mark-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.make-brand__text {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #022b1b;
  letter-spacing: -0.01em;
}

.make-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.make-nav a {
  font-size: 15px;
  font-weight: 500;
  color: #022b1b;
}

.make-nav__mobile-only {
  display: none;
}

.make-nav a:hover,
.make-nav a.active {
  color: #00d37f;
}

.make-navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.make-search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #022b1b;
}

.make-search-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.make-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

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

.make-button--primary {
  background: #00d37f;
  color: #022b1b;
  box-shadow: 0 8px 24px rgba(0, 211, 127, 0.18);
}

.make-button--secondary,
.make-button--ghost {
  background: transparent;
  color: #022b1b;
  border-color: rgba(2, 43, 27, 0.18);
}

.make-button--dark {
  background: #022b1b;
  color: #f9f8f6;
}

.make-button--full {
  width: 100%;
}

.make-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 10px;
  background: transparent;
}

.make-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #022b1b;
}

.make-search {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(2, 43, 27, 0.82);
}

.make-search.is-open {
  display: flex;
}

.make-search__dialog {
  position: relative;
  width: min(760px, 100%);
  padding: 36px;
  border-radius: 28px;
  background: #f9f8f6;
  box-shadow: 0 24px 80px rgba(2, 43, 27, 0.18);
}

.make-search__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: rgba(2, 43, 27, 0.06);
  color: #022b1b;
  font-size: 28px;
}

.make-search__eyebrow,
.make-page-header__eyebrow {
  margin: 0 0 12px;
  color: #00d37f;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.make-search__dialog h2,
.make-page-header h1,
.make-section__header h2,
.make-featured-card__content h2,
.make-newsletter__copy h2,
.make-cta-banner h2,
.make-copy-card h2,
.make-auth-copy h1,
.make-form-card h2,
.make-search-card__body h2 {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: #022b1b;
  letter-spacing: -0.02em;
}

.make-search__dialog h2 {
  font-size: clamp(28px, 4vw, 40px);
}

.make-search__form,
.make-search-inline,
.make-newsletter__form {
  display: flex;
  gap: 12px;
}

.make-search__form input,
.make-search-inline input,
.make-newsletter__form input,
.make-form-card input,
.make-form-card select {
  min-width: 0;
  height: 48px;
  padding: 0 16px;
  border: none;
  border-radius: 12px;
  background: #ffffff;
  color: #022b1b;
  box-shadow: inset 0 0 0 1px rgba(2, 43, 27, 0.1);
}

.make-form-card textarea {
  width: 100%;
  min-height: 180px;
  padding: 14px 16px;
  border: none;
  border-radius: 12px;
  background: #ffffff;
  color: #022b1b;
  box-shadow: inset 0 0 0 1px rgba(2, 43, 27, 0.1);
}

.make-search__hint {
  margin-top: 12px;
  color: #6a6d6c;
  font-size: 13px;
}

.make-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(520px, 82vh, 780px);
  background: #022b1b;
}

.make-hero__media,
.make-hero__overlay {
  position: absolute;
  inset: 0;
}

.make-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}

.make-hero__overlay {
  background: linear-gradient(135deg, rgba(2, 43, 27, 0.92) 0%, rgba(2, 43, 27, 0.64) 60%, rgba(2, 43, 27, 0.45) 100%);
}

.make-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: clamp(520px, 82vh, 780px);
  padding: 96px 0;
}

.make-hero__copy {
  max-width: 640px;
}

.make-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 6px 12px;
  border: 1px solid rgba(0, 211, 127, 0.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.make-pill--hero {
  background: rgba(0, 211, 127, 0.1);
  color: #00d37f;
}

.make-pill__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #00d37f;
}

.make-hero__copy h1 {
  margin: 0;
  color: #f9f8f6;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.08;
}

.make-hero__copy h1 span {
  color: #00d37f;
}

.make-hero__copy p {
  max-width: 520px;
  margin: 20px 0 0;
  color: rgba(249, 248, 246, 0.74);
  font-size: 18px;
  line-height: 1.72;
}

.make-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.make-hero__ornament {
  position: absolute;
  pointer-events: none;
}

.make-ornament-image {
  display: block;
  width: var(--ornament-size, 240px);
  height: var(--ornament-size, 240px);
  opacity: var(--ornament-opacity, 0.12);
}

.make-ornament-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.make-hero__ornament--right {
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
}

.make-hero__ornament--left {
  left: 24px;
  bottom: 24px;
}

.make-section {
  padding: 56px 0 0;
}

.make-section--tight {
  padding-top: 28px;
}

.make-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.make-section__header h2 {
  font-size: 22px;
  font-weight: 700;
}

.make-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #00d37f;
  font-size: 14px;
  font-weight: 500;
}

.make-link-arrow::after {
  content: '→';
}

.make-featured-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(2, 43, 27, 0.1);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(2, 43, 27, 0.08);
}

.make-featured-card__image {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.make-featured-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.make-featured-card:hover .make-featured-card__image img {
  transform: scale(1.03);
}

.make-featured-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  background: #f9f8f6;
}

.make-featured-card__eyebrow {
  margin: 0 0 10px;
  color: #00d37f;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.make-featured-card__content h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.24;
}

.make-featured-card__excerpt {
  margin-top: 16px;
  color: #454746;
  font-size: 16px;
  line-height: 1.68;
}

.make-featured-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(2, 43, 27, 0.1);
}

.make-featured-card__meta strong {
  display: block;
  color: #022b1b;
  font-size: 14px;
}

.make-featured-card__meta span {
  color: #6a6d6c;
  font-size: 13px;
}

.make-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.make-filter-pills a {
  padding: 7px 18px;
  border: 1px solid rgba(2, 43, 27, 0.22);
  border-radius: 999px;
  color: #022b1b;
  font-size: 14px;
  font-weight: 500;
}

.make-filter-pills a.active,
.make-filter-pills a:hover {
  border-color: #022b1b;
  background: #022b1b;
  color: #f9f8f6;
}

.make-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.make-card {
  overflow: hidden;
  border: 1px solid rgba(2, 43, 27, 0.1);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(2, 43, 27, 0.05);
  transition: all 0.2s ease;
}

.make-card:hover {
  transform: translateY(-3px);
  border-color: #00d37f;
  box-shadow: 0 6px 24px rgba(2, 43, 27, 0.1);
}

.make-card__image {
  position: relative;
  display: block;
  height: 220px;
  overflow: hidden;
}

.make-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.make-card:hover .make-card__image img {
  transform: scale(1.05);
}

.make-card__placeholder,
.make-article-hero__placeholder,
.make-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(145deg, #e8ebe9 0%, #d4d6d5 50%, #e8ebe9 100%);
  color: #6a6d6c;
}

.make-card__placeholder,
.make-article-hero__placeholder {
  width: 100%;
  height: 100%;
}

.make-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.make-card__body h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
}

.make-card__body p {
  color: #6a6d6c;
  font-size: 14px;
  line-height: 1.6;
}

.make-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(2, 43, 27, 0.07);
  color: #868685;
  font-size: 12px;
  font-weight: 500;
}

.make-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
}

.make-badge--saffron {
  background: #f4c542;
  color: #3b2e08;
}

.make-badge--turquoise {
  background: #1ecad3;
  color: #08363a;
}

.make-badge--terracotta {
  background: #f47a3a;
  color: #3a1408;
}

.make-badge--pine {
  background: #022b1b;
  color: #f9f8f6;
}

.make-tag-row,
.make-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.make-article-tags {
  margin-top: 32px;
}

.make-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid rgba(2, 43, 27, 0.1);
  border-radius: 999px;
  background: rgba(2, 43, 27, 0.05);
  color: #454746;
  font-size: 13px;
  font-weight: 500;
}

.make-tag--active,
.make-tag:hover {
  border-color: rgba(0, 211, 127, 0.35);
  background: rgba(0, 211, 127, 0.12);
  color: #022b1b;
}

.make-newsletter {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #08363a;
}

.make-newsletter__ornament {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.make-hero__ornament .make-ornament-image img,
.make-newsletter__ornament .make-ornament-image img {
  mix-blend-mode: screen;
}

.make-newsletter__copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 56px 64px;
}

.make-newsletter__copy h2 {
  color: #f9f8f6;
  font-size: clamp(24px, 3.5vw, 34px);
  line-height: 1.2;
}

.make-newsletter__copy p {
  margin-top: 12px;
  color: rgba(249, 248, 246, 0.72);
  font-size: 16px;
  line-height: 1.65;
}

.make-newsletter__form {
  margin-top: 24px;
  max-width: 520px;
}

.make-newsletter__hint {
  font-size: 12px;
  color: rgba(249, 248, 246, 0.38);
}

.make-page-header {
  padding: 40px 0 16px;
}

.make-page-header .make-shell {
  padding: 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(2, 43, 27, 0.04), rgba(30, 202, 211, 0.08));
}

.make-page-header h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
}

.make-page-header p:last-child {
  max-width: 720px;
  margin-top: 12px;
  color: #454746;
  font-size: 17px;
  line-height: 1.7;
}

.make-article-hero {
  position: relative;
  min-height: clamp(360px, 55vh, 580px);
}

.make-article-hero__image,
.make-article-hero__placeholder,
.make-article-hero__overlay {
  position: absolute;
  inset: 0;
}

.make-article-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.make-article-hero__overlay {
  background: linear-gradient(to top, rgba(2, 43, 27, 0.94) 0%, rgba(2, 43, 27, 0.5) 50%, rgba(2, 43, 27, 0.12) 100%);
}

.make-article-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(360px, 55vh, 580px);
  padding: 40px 0;
}

.make-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(249, 248, 246, 0.68);
  font-size: 13px;
  font-weight: 500;
}

.make-back-link::before {
  content: '←';
}

.make-article-hero__content .make-badge {
  position: static;
  margin-bottom: 16px;
}

.make-article-hero__content h1 {
  max-width: 900px;
  color: #f9f8f6;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 800;
  line-height: 1.15;
}

.make-article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  color: rgba(249, 248, 246, 0.72);
  font-size: 13px;
}

.make-article-body-shell {
  max-width: 760px;
}

.make-author-chip {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  padding: 20px;
  border: 1px solid rgba(2, 43, 27, 0.1);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(2, 43, 27, 0.06);
}

.make-author-chip__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #022b1b;
  color: #00d37f;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.make-author-chip__name {
  margin: 0;
  color: #022b1b;
  font-size: 14px;
  font-weight: 500;
}

.make-author-chip__role {
  margin: 2px 0 0;
  color: #6a6d6c;
  font-size: 13px;
}

.make-article-panel {
  padding: 0;
}

.make-article-prose {
  color: #022b1b;
  font-size: 18px;
  line-height: 1.78;
}

.make-article-prose > * + * {
  margin-top: 28px;
}

.make-article-prose p {
  color: #022b1b;
}

.make-article-prose h2 {
  font-size: 26px;
  font-weight: 700;
}

.make-article-prose h3 {
  font-size: 20px;
  font-weight: 600;
}

.make-article-prose blockquote {
  margin: 8px 0;
  padding-left: 24px;
  border-left: 4px solid #00d37f;
  color: #022b1b;
  font-family: 'Manrope', sans-serif;
  font-size: 21px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.55;
}

.make-article-prose ul,
.make-article-prose ol {
  padding-left: 20px;
}

.make-article-prose li + li {
  margin-top: 10px;
}

.make-article-prose a {
  color: #00a864;
}

.make-article-prose img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(2, 43, 27, 0.12);
}

.make-share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(2, 43, 27, 0.1);
}

.make-share-row span {
  color: #022b1b;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.make-share-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 10px;
  background: rgba(2, 43, 27, 0.05);
  color: #022b1b;
  font-size: 13px;
  font-weight: 500;
}

.make-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 40px;
  border-radius: 24px;
  background: #f4c542;
}

.make-cta-banner h2 {
  font-size: clamp(22px, 3vw, 30px);
}

.make-cta-banner p {
  margin-top: 8px;
  color: rgba(2, 43, 27, 0.72);
  font-size: 15px;
}

.make-results-count {
  margin-bottom: 20px;
  color: #454746;
  font-size: 16px;
}

.make-search-results {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.make-search-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 20px;
  overflow: hidden;
  border: 1px solid rgba(2, 43, 27, 0.1);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(2, 43, 27, 0.05);
}

.make-search-card__image {
  display: block;
  min-height: 220px;
}

.make-search-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.make-search-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 24px 24px 24px 0;
}

.make-search-card__body h2 {
  font-size: 24px;
}

.make-search-card__body p,
.make-copy-card p,
.make-info-card p,
.make-info-card li,
.make-copy-card li,
.make-auth-copy p {
  color: #454746;
}

.make-search-card__meta {
  display: flex;
  gap: 16px;
  color: #868685;
  font-size: 13px;
}

.make-two-column,
.make-auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: 24px;
}

.make-copy-card,
.make-info-card,
.make-form-card,
.make-table-card {
  padding: 32px;
  border: 1px solid rgba(2, 43, 27, 0.1);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(2, 43, 27, 0.05);
}

.make-copy-card h2 + p,
.make-copy-card h2 + ul {
  margin-top: 16px;
}

.make-copy-card p + p,
.make-copy-card ul + h2,
.make-copy-card h2 + ul,
.make-info-card p + a {
  margin-top: 16px;
}

.make-copy-card ul,
.make-info-card ul {
  padding-left: 18px;
}

.make-copy-card li + li,
.make-info-card li + li {
  margin-top: 10px;
}

.make-info-stack {
  display: grid;
  gap: 16px;
}

.make-auth-copy {
  padding-top: 24px;
}

.make-form-card input,
.make-form-card textarea,
.make-form-card select {
  width: 100%;
}

.make-empty {
  min-height: 160px;
  padding: 32px;
  font-size: 18px;
}

.make-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.make-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(2, 43, 27, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: #022b1b;
}

.make-footer {
  margin-top: 64px;
  padding: 56px 0 32px;
  background: #022b1b;
}

.make-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.make-footer__brand p,
.make-footer__column a,
.make-footer__bottom p,
.make-footer__bottom-links a {
  color: rgba(249, 248, 246, 0.62);
}

.make-footer__brand p {
  max-width: 220px;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.65;
}

.make-footer__column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.make-footer__column h4 {
  margin: 0 0 8px;
  color: rgba(249, 248, 246, 0.36);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.make-footer__column a:hover,
.make-footer__bottom-links a:hover {
  color: #00d37f;
}

.make-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(249, 248, 246, 0.1);
}

.make-footer__bottom-links {
  display: flex;
  gap: 20px;
}

@media (max-width: 1100px) {
  .make-featured-card,
  .make-card-grid,
  .make-footer__grid,
  .make-two-column,
  .make-auth-layout {
    grid-template-columns: 1fr;
  }

  .make-search-card {
    grid-template-columns: 1fr;
  }

  .make-search-card__body {
    padding: 24px;
  }
}

@media (max-width: 900px) {
  .make-nav {
    position: fixed;
    top: 69px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px;
    border-radius: 20px;
    background: #f9f8f6;
    box-shadow: 0 24px 60px rgba(2, 43, 27, 0.16);
  }

  .make-nav.is-open {
    display: flex;
  }

  .make-nav__mobile-only {
    display: inline-flex;
  }

  .make-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .make-navbar__desktop-link,
  .make-navbar__cta {
    display: none;
  }

  .make-newsletter__copy,
  .make-page-header .make-shell,
  .make-copy-card,
  .make-info-card,
  .make-form-card,
  .make-table-card,
  .make-search__dialog {
    padding: 24px;
  }

  .make-newsletter__ornament,
  .make-hero__ornament--right {
    display: none;
  }

  .make-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .make-cta-banner,
  .make-section__header,
  .make-footer__bottom,
  .make-newsletter__form,
  .make-search-inline,
  .make-search__form {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .make-shell {
    width: min(1240px, calc(100% - 24px));
  }

  .make-hero {
    min-height: 520px;
  }

  .make-hero__content {
    min-height: 520px;
    padding: 72px 0;
  }

  .make-hero__copy h1 {
    font-size: 42px;
  }

  .make-hero__actions .make-button {
    width: 100%;
  }

  .make-featured-card__content {
    padding: 24px;
  }

  .make-card-grid {
    grid-template-columns: 1fr;
  }

  .make-card__image {
    height: 200px;
  }

  .make-article-hero__content h1 {
    font-size: 32px;
  }
}
