/* ============================================
   METCON — Blog Post Page Styles
   Prefix: bp-  |  Scope: body.bp-page
   ============================================ */

/* Header overrides removed — uses global white fixed header from styles.css */

/* Hide standard site footer — custom footer in CTA section */
body.bp-page .site-footer {
  display: none;
}

/* ============================================
   HERO
   ============================================ */
.bp-hero {
  position: relative;
  overflow: hidden;
  background: #14110c;
  padding-top: 135px;
}

.bp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bp-hero__blueprint {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 162, 39, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 39, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.4;
}

.bp-hero__glow1 {
  position: absolute;
  top: -160px;
  left: -160px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.18) 0%, transparent 70%);
}

.bp-hero__glow2 {
  position: absolute;
  top: 33%;
  right: -160px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.08) 0%, transparent 70%);
}

/* Breadcrumb */
.bp-hero__breadcrumb {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1.5rem 0;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8E8480;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.bp-hero__breadcrumb a {
  color: #8E8480;
  text-decoration: none;
  transition: color 0.2s;
}

.bp-hero__breadcrumb a:hover {
  color: #C9A227;
}

.bp-hero__breadcrumb .bp-sep {
  color: rgba(201, 162, 39, 0.6);
}

.bp-hero__breadcrumb .bp-current {
  color: #EDE7D6;
}

/* Hero content */
.bp-hero__content {
  position: relative;
  z-index: 1;
  padding: 3rem 1.5rem 4rem;
  max-width: 64rem;
}

.bp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1.75rem;
  background: rgba(201, 162, 39, 0.12);
  color: #E5C151;
  border: 1px solid rgba(201, 162, 39, 0.4);
}

.bp-hero__title {
  font-family: 'Archivo Black', Archivo, 'Helvetica Neue', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  background: linear-gradient(180deg, #6b5a2a 0%, #E5C151 55%, #fff1c4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin: 0;
}

.bp-hero__meta {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.bp-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(215, 207, 184, 0.85);
}

.bp-hero__meta-item svg {
  flex-shrink: 0;
}

.bp-hero__meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #C9A227;
  flex-shrink: 0;
}

/* ============================================
   ARTICLE SECTION (white panel)
   ============================================ */
.bp-article {
  background: #fff;
  color: #0C0C0C;
  border-radius: 40px 40px 0 0;
  margin-top: -2.5rem;
  z-index: 10;
  position: relative;
  padding: 5rem 1.5rem;
}

.bp-article__grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}

/* ============================================
   TOC SIDEBAR
   ============================================ */
.bp-toc {
  display: none;
  position: sticky;
  top: 9rem;
  align-self: start;
}

.bp-toc__heading {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #8A6E1A;
  margin-bottom: 1rem;
}

.bp-toc__link {
  display: block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(12, 12, 46, 0.5);
  padding: 10px 0 10px 14px;
  border-left: 2px solid rgba(12, 12, 46, 0.1);
  transition: color 0.2s, border-color 0.2s;
  line-height: 1.4;
  text-decoration: none;
}

.bp-toc__link:hover {
  color: #8A6E1A;
  border-left-color: #C9A227;
}

.bp-toc__link.active {
  color: #0C0C0C;
  border-left-color: #C9A227;
  font-weight: 600;
}

.bp-toc__share {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.bp-toc__share-heading {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8A6E1A;
  margin-bottom: 0.75rem;
}

.bp-toc__share-links {
  display: flex;
  gap: 0.5rem;
}

.bp-toc__share-btn {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.bp-toc__share-btn:hover {
  border-color: #C9A227;
  color: #8A6E1A;
}

/* ============================================
   PROSE CONTENT
   ============================================ */
.bp-prose {
  max-width: 48rem;
  color: rgba(12, 12, 46, 0.78);
}

.bp-prose p {
  font-size: clamp(1.02rem, 1.15vw, 1.18rem);
  line-height: 1.75;
  margin: 0 0 1.4em 0;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  max-width: none;
}

.bp-prose .bp-lead {
  font-size: clamp(1.15rem, 1.5vw, 1.42rem);
  line-height: 1.55;
  color: rgba(12, 12, 46, 0.85);
  font-weight: 500;
  margin-bottom: 1.6em;
  text-align: left;
}

.bp-prose h2 {
  font-family: 'Archivo Black', Archivo, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #0C0C0C;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.1;
  margin: 3.4em 0 0.9em 0;
  scroll-margin-top: 140px;
  position: relative;
  padding-top: 1.2em;
}

.bp-prose h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 3px;
  background: #C9A227;
}

.bp-prose h2:first-child {
  margin-top: 0;
}

.bp-prose h3 {
  font-family: 'Archivo', 'Helvetica Neue', sans-serif;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: #0C0C0C;
  font-size: clamp(1.2rem, 1.6vw, 1.42rem);
  line-height: 1.25;
  margin: 2.2em 0 0.6em 0;
}

.bp-prose ul {
  list-style: none;
  margin: 0 0 1.6em 0;
  padding: 0;
}

.bp-prose ul li {
  position: relative;
  padding: 0.3em 0 0.3em 1.8em;
  line-height: 1.65;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  color: rgba(12, 12, 46, 0.78);
}

.bp-prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 10px;
  height: 2px;
  background: #C9A227;
}

.bp-prose strong {
  color: #0C0C0C;
  font-weight: 700;
}

.bp-prose a {
  color: #8A6E1A;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bp-prose a:hover {
  color: #C9A227;
}

/* ============================================
   PRICE TABLE
   ============================================ */
.bp-price-table {
  background: linear-gradient(160deg, #fafaf5 0%, #f3efe4 100%);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 20px;
  padding: 28px 30px;
  margin: 2em 0;
}

.bp-price-table__heading {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #8A6E1A;
  margin-bottom: 1rem;
}

.bp-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(12, 12, 46, 0.12);
}

.bp-price-row:last-child {
  border-bottom: none;
}

.bp-price-label {
  font-weight: 600;
  color: #0C0C0C;
  font-size: 0.98rem;
}

.bp-price-value {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.92rem;
  color: #8A6E1A;
  font-weight: 600;
  white-space: nowrap;
}

/* ============================================
   INLINE CTA
   ============================================ */
.bp-inline-cta {
  background: linear-gradient(160deg, #1f1a13 0%, #14110c 100%);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 24px;
  padding: 36px 32px;
  margin: 3em 0;
  color: #EDE7D6;
}

.bp-inline-cta__kicker {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #E5C151;
  margin-bottom: 0.75rem;
}

.bp-inline-cta h3 {
  font-family: 'Archivo Black', Archivo, sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.15;
  color: #EDE7D6;
  margin: 0 0 0.8em 0;
}

.bp-inline-cta p {
  color: rgba(237, 231, 214, 0.75);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1.5em 0;
  text-align: left;
  max-width: none;
}

.bp-inline-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ============================================
   RELATED SERVICES
   ============================================ */
.bp-related {
  background: #fff;
  padding: 0 1.5rem 5rem;
}

.bp-related__grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}

.bp-related__spacer {
  display: none;
}

.bp-related__content {
  max-width: 48rem;
}

.bp-related__divider {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding-top: 3rem;
}

.bp-related__heading {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #8A6E1A;
  margin-bottom: 1.25rem;
}

.bp-related__cards {
  display: grid;
  gap: 0.75rem;
}

.bp-related__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  background: #fafaf5;
  border: 1px solid rgba(12, 12, 46, 0.1);
  text-decoration: none;
  transition: border-color 0.2s;
}

.bp-related__card:hover {
  border-color: rgba(201, 162, 39, 0.4);
}

.bp-related__card-name {
  font-family: 'Archivo Black', Archivo, sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 1.125rem;
  color: #0C0C0C;
}

.bp-related__card-arrow {
  color: #8A6E1A;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.bp-related__card:hover .bp-related__card-arrow {
  transform: translateX(4px);
}

/* Callout box */
.bp-related__callout {
  margin-top: 3rem;
  padding: 2rem 2.5rem;
  border-radius: 1.5rem;
  background: linear-gradient(160deg, #fafaf5 0%, #f3efe4 100%);
  border: 1px solid rgba(201, 162, 39, 0.3);
}

.bp-related__callout-kicker {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #8A6E1A;
  margin-bottom: 0.75rem;
}

.bp-related__callout h3 {
  font-family: 'Archivo Black', Archivo, sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  color: #0C0C0C;
  margin-bottom: 0.75rem;
}

.bp-related__callout p {
  color: rgba(12, 12, 46, 0.7);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.bp-related__callout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ============================================
   CTA SECTION (includes footer)
   ============================================ */
.bp-cta {
  border-radius: 40px 40px 0 0;
  margin-top: -2.5rem;
  z-index: 50;
  position: relative;
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, #1a1610 0%, #14110c 100%);
}

.bp-cta__inner {
  max-width: 80rem;
  margin: 0 auto;
}

.bp-cta__grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

.bp-cta__kicker {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #C9A227;
  margin-bottom: 1rem;
}

.bp-cta__heading {
  font-family: 'Archivo Black', Archivo, 'Helvetica Neue', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.02em;
  font-size: clamp(2.6rem, 9vw, 8rem);
  background: linear-gradient(180deg, #6b5a2a 0%, #E5C151 55%, #fff1c4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin: 0;
}

.bp-cta__desc {
  margin-top: 2rem;
  color: rgba(215, 207, 184, 0.75);
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 32rem;
}

.bp-cta__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Contact rows */
.bp-cta__contacts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bp-contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(215, 207, 184, 0.15);
  border-radius: 1rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s;
}

.bp-contact-row:hover {
  border-color: rgba(201, 162, 39, 0.5);
}

.bp-contact-row__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.4);
  display: grid;
  place-items: center;
  color: #C9A227;
  flex-shrink: 0;
}

.bp-contact-row__icon svg {
  width: 18px;
  height: 18px;
}

.bp-contact-row__label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8E8480;
}

.bp-contact-row__value {
  color: #EDE7D6;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Footer */
.bp-footer {
  border-top: 1px solid rgba(215, 207, 184, 0.15);
  padding-top: 2.5rem;
  display: grid;
  gap: 2rem;
}

.bp-footer__brand-sub {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8E8480;
  margin-top: 0.25rem;
}

.bp-footer__tagline {
  margin-top: 1.5rem;
  color: #C9A227;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bp-footer__col-title {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C9A227;
  margin-bottom: 1rem;
}

.bp-footer__col-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bp-footer__col-list li {
  color: rgba(215, 207, 184, 0.65);
  font-size: 0.875rem;
}

.bp-footer__col-list a {
  color: rgba(215, 207, 184, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.bp-footer__col-list a:hover {
  color: #EDE7D6;
}

.bp-footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(215, 207, 184, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: #8E8480;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ============================================
   SHARED BUTTONS
   ============================================ */
.bp-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  background: linear-gradient(123deg, #2a1a02 7%, #8A6E1A 37%, #C9A227 72%, #f0c54a 100%);
  box-shadow:
    0px 4px 16px rgba(201, 162, 39, 0.25),
    4px 4px 14px rgba(201, 162, 39, 0.35) inset,
    0 0 0 2px rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: 'Archivo', 'Helvetica Neue', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  outline: 2px solid rgba(255, 241, 196, 0);
  outline-offset: -3px;
  transition: outline-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.bp-btn-gold:hover {
  outline-color: rgba(255, 241, 196, 0.6);
  transform: translateY(-1px);
  color: #fff;
}

.bp-btn-gold__dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: #fff1c4;
  box-shadow: 0 0 10px #f0c54a;
}

.bp-btn-gold-big {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 2.5rem;
  border-radius: 9999px;
  background: linear-gradient(123deg, #2a1a02 7%, #8A6E1A 37%, #C9A227 72%, #f0c54a 100%);
  box-shadow:
    0px 4px 16px rgba(201, 162, 39, 0.25),
    4px 4px 14px rgba(201, 162, 39, 0.35) inset,
    0 0 0 2px rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: 'Archivo', 'Helvetica Neue', sans-serif;
  font-weight: 600;
  font-size: clamp(0.75rem, 1vw, 1rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  outline: 2px solid rgba(255, 241, 196, 0);
  outline-offset: -3px;
  transition: outline-color 0.25s, transform 0.25s;
}

.bp-btn-gold-big:hover {
  outline-color: rgba(255, 241, 196, 0.6);
  transform: translateY(-1px);
  color: #fff;
}

.bp-btn-gold-big__dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: #fff1c4;
  box-shadow: 0 0 10px #f0c54a;
}

.bp-btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(215, 207, 184, 0.4);
  color: #EDE7D6;
  font-family: 'Archivo', 'Helvetica Neue', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  transition: border-color 0.2s, color 0.2s;
}

.bp-btn-outline-light:hover {
  border-color: #C9A227;
  color: #C9A227;
}

.bp-btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  border: 1.5px solid #0C0C0C;
  color: #0C0C0C;
  font-family: 'Archivo', 'Helvetica Neue', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  transition: border-color 0.2s, color 0.2s;
}

.bp-btn-outline-dark:hover {
  border-color: #C9A227;
  color: #8A6E1A;
}

.bp-btn-outline-big {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 2.5rem;
  border-radius: 9999px;
  border: 2px solid rgba(215, 207, 184, 0.7);
  color: #EDE7D6;
  font-family: 'Archivo', 'Helvetica Neue', sans-serif;
  font-weight: 600;
  font-size: clamp(0.75rem, 1vw, 1rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  transition: background 0.2s, border-color 0.2s;
}

.bp-btn-outline-big:hover {
  background: rgba(237, 231, 214, 0.1);
  color: #EDE7D6;
}

/* ============================================
   SCROLL-REVEAL ANIMATION
   ============================================ */
.bp-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.bp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.bp-reveal[data-delay="1"] { transition-delay: 0.1s; }
.bp-reveal[data-delay="2"] { transition-delay: 0.15s; }

/* ============================================
   RESPONSIVE
   ============================================ */

/* 640px+ */
@media (min-width: 640px) {
  .bp-article {
    border-radius: 50px 50px 0 0;
    margin-top: -3rem;
  }

  .bp-cta {
    border-radius: 50px 50px 0 0;
    margin-top: -3rem;
  }

  .bp-related__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 768px+ */
@media (min-width: 768px) {
  .bp-hero__breadcrumb {
    padding: 3.5rem 2.5rem 0;
  }

  .bp-hero__content {
    padding: 4rem 2.5rem 6rem;
  }

  .bp-article {
    border-radius: 60px 60px 0 0;
    padding: 7rem 2.5rem;
  }

  .bp-related {
    padding: 0 2.5rem 7rem;
  }

  .bp-cta {
    border-radius: 60px 60px 0 0;
    padding: 7rem 2.5rem;
  }

  .bp-contact-row {
    padding: 1.25rem;
  }

  .bp-contact-row__value {
    font-size: 1.125rem;
  }

  .bp-footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .bp-related__callout {
    padding: 2.5rem;
  }
}

/* 1024px+ */
@media (min-width: 1024px) {
  .bp-article__grid {
    grid-template-columns: 240px 1fr;
    gap: 5rem;
  }

  .bp-toc {
    display: block;
  }

  .bp-related__grid {
    grid-template-columns: 240px 1fr;
    gap: 5rem;
  }

  .bp-related__spacer {
    display: block;
  }

  .bp-cta__grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }

  .bp-footer {
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  }
}

/* 1280px+ */
@media (min-width: 1280px) {
  .bp-article__grid {
    grid-template-columns: 280px 1fr;
  }

  .bp-related__grid {
    grid-template-columns: 280px 1fr;
  }
}

/* 1536px+ */
@media (min-width: 1536px) {
  .bp-hero__breadcrumb {
    padding: 3.5rem 4rem 0;
  }

  .bp-hero__content {
    padding: 4rem 4rem 6rem;
  }
}
