/* ============== Single Blog V2 page ============== */

.blog-article {
  padding-top: var(--header-h);
  background: #fff;
}

/* ============== Hero ============== */

.blog-hero {
  width: 100%;
  margin-top: -80px;
}
.blog-hero img {
  width: 100%;
  height: clamp(310px, 46vw, 600px);
  object-fit: cover;
  display: block;
}

/* ============== Section base ============== */

.blog-section {
  padding: clamp(56px, 7vw, 96px) 0;
}

/* Narrow container scoped to article body sections only */
.blog-story .container,
.blog-collage .container,
.blog-promise .container,
.blog-twoup .container {
  max-width: 880px;
  margin: 0 auto;
}

/* ============== Typography ============== */

.blog-kicker {
  text-align: center;
  font-family: "Ysabeau Office", Georgia, serif;
  font-size: clamp(2.4rem, 2.2vw, 4.75rem);
  font-weight: bold;
  letter-spacing: 0.005em;
  line-height: 1.2;
  color: var(--color-dark);
  margin: 0 0 clamp(28px, 4vw, 44px);
}

.blog-heading {
  font-family: "Ysabeau Office", Georgia, serif;
  font-size: clamp(1.4rem, 2.6vw, 3.9rem);
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  color: var(--color-dark);
  margin: 0 0 clamp(20px, 3vw, 32px);
}
.blog-heading--center {
  text-align: center;
}

.blog-text {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.9;
  text-align: justify;
  color: var(--color-dark);
  margin: 0;
}
.blog-text--center {
  text-align: left;
}

/* ============== Collage ============== */

.blog-collage {
  padding-bottom: clamp(56px, 7vw, 96px);
}
.blog-collage img {
  width: 100%;
  display: block;
}

/* ============== Promise (gray band) ============== */

.blog-promise {
  background: #f5f5f5;
}

/* ============== Two-up ============== */

.blog-twoup__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.blog-twoup__image img {
  width: 100%;
  height: auto;
  display: block;
}
.blog-twoup__body .blog-heading + .blog-text {
  margin-bottom: clamp(32px, 5vw, 48px);
}
.blog-twoup__body .blog-text:last-child {
  margin-bottom: 0;
}

/* ============== Mobile ============== */

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