/* ==========================================================================
   Content pages — Only With Us, Architecture Expertise, Meet Gerard,
   Home Valuation, Property Search.
   Layout primitives shared across the site's editorial/marketing pages.
   ========================================================================== */

/* ---------- centered intro block (Elementor icon-box, no icon) ---------- */
.intro-block {
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px 80px;
  text-align: center;
}
.intro-block h2 {
  font-family: var(--gruppo);
  font-size: 43px;
  font-weight: 400;
  line-height: 1.12;
  color: var(--secondary);
}
.intro-block p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
}
.intro-block.tight { padding: 60px 80px 30px; }
.intro-block.narrow { padding-left: 105px; padding-right: 105px; }
.intro-block h2.md { font-size: 30px; }
.intro-block .label {
  font-size: 16px;
  color: #232323;
  margin-bottom: 2px;
}
.intro-block p.left { text-align: left; }

/* ---------- full-width band with a background photo ---------- */
.quote-band {
  position: relative;
  min-height: 527px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  padding: 70px 20px;
}
.quote-band .qb-overlay { position: absolute; inset: 0; background: #fff; opacity: .82; }
.quote-band .qb-inner {
  position: relative;
  max-width: 1210px;
  text-align: center;
}
.quote-band p {
  font-family: var(--gruppo);
  font-style: italic;
  font-size: 16px;
  line-height: 28px;
  color: var(--secondary);
  margin-bottom: 18px;
}
.quote-band p:last-child { margin-bottom: 0; }
.quote-band p:first-child::before { content: '\201C'; }
.quote-band p:last-child::after { content: '\201D'; }

/* ---------- long-form prose ---------- */
.prose {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 80px 90px;
}
.prose h2 {
  font-family: var(--gruppo);
  font-size: 43px;
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.12;
  margin-bottom: 20px;
}
.prose h3 {
  font-family: var(--gruppo);
  font-size: 30px;
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.35;
  margin: 40px 0 16px;
}
/* Architecture Expertise centres every heading and uses a 21px sub-head */
.prose.centered { text-align: center; }
.prose.centered h2 { color: var(--secondary); }
.prose.centered .subhead {
  font-family: var(--gruppo);
  font-size: 21px;
  font-weight: 400;
  color: var(--secondary);
  line-height: 32px;
  text-align: center;
  margin: 46px 0 22px;
}
.prose.centered .body { text-align: left; }
.prose.centered .body p { margin-bottom: 20px; }
.prose .pull {
  font-family: var(--gruppo);
  font-size: 26px;
  line-height: 1.5;
  color: var(--secondary);
  margin-bottom: 26px;
}
.prose p { font-size: 16px; line-height: 26px; color: var(--secondary); margin-bottom: 20px; }
.prose .rule { width: 100%; max-width: none; background: #868686; margin: 30px 0; }

/* ---------- image + text splits ----------
   Column widths are taken from the live page rather than a generic 50/50:
   image-left  → 630 + 43 + 585, flush to the 80px page gutter
   image-right → mirrored to the right gutter
   even        → two equal columns inside the 1230px boxed container
   bleed       → full-bleed media running to the viewport edge            */
.split {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 80px;
  display: grid;
  grid-template-columns: 630px 585px;
  gap: 43px;
  justify-content: start;
  align-items: center;
}
.split.reverse {
  grid-template-columns: 585px 630px;
  justify-content: end;
}
.split.reverse .split-media { order: 2; }
.split.reverse .split-body { order: 1; }
.split.even {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 40px 105px;
  justify-content: stretch;
}
.split.bleed {
  padding: 0;
  grid-template-columns: 892px 488px;
  gap: 60px;
  max-width: none;
}
.split.journey {
  grid-template-columns: 522px 743px;
  gap: 35px;
  justify-content: start;
}
.split-media img { width: 100%; object-fit: cover; }
.split-body h2 {
  font-family: var(--gruppo);
  font-size: 30px;
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.3;
  margin-bottom: 14px;
}
.split-body h2.lg { font-size: 43px; line-height: 1.12; }
.split-body .label {
  font-size: 16px;
  color: #232323;
  margin-bottom: 2px;
}
.split-body .eyebrow {
  font-family: var(--gruppo);
  font-size: 30px;
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 4px;
}
.split-body p { font-size: 16px; line-height: 26px; color: var(--secondary); }
.split-body .btn-outline-dark { margin-top: 26px; }

/* video card with play affordance */
.video-card { position: relative; display: block; }
.video-card img { width: 100%; display: block; }
.video-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.12);
  transition: background-color .3s;
}
.video-card:hover::after { background: rgba(0,0,0,.28); }
.video-card .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* ---------- stat band (animated counters) ---------- */
.stat-band {
  background: #f1f1f1;
  padding: 46px 20px;
  border-top: 1px solid #cfcfcf;
  border-bottom: 1px solid #cfcfcf;
}
.stat-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.stat {
  min-width: 170px;
  text-align: center;
  padding: 0 10px;
}
.stat .n {
  display: block;
  font-family: var(--gruppo);
  font-size: 43px;
  font-weight: 400;
  color: var(--secondary);
  line-height: 1;
}
.stat .t {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #242424;
}

/* ---------- dark media-partnership list ---------- */
.media-band { background: #1a1a1a; padding: 90px 20px; }
.media-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 289px 1fr;
  gap: 57px;
}
.media-head { text-align: right; }
.media-head h2 {
  font-family: var(--gruppo);
  font-size: 29px;
  font-weight: 400;
  color: #f1f1f1;
  line-height: 1.2;
}
.media-head .label {
  font-size: 16px;
  color: #f1f1f1;
  margin-top: 6px;
}
.media-cols { display: grid; grid-template-columns: 349px 441px; gap: 144px; }
.media-list li {
  font-size: 14px;
  font-weight: 700;
  color: #f1f1f1;
  padding: 13px 0;
  border-bottom: 1px solid #fff;
  letter-spacing: .4px;
}

/* ---------- press logo strip ---------- */
.logo-strip {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 20px 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.logo-strip img {
  max-height: 46px;
  width: auto;
  opacity: .8;
  transition: opacity .3s;
}
.logo-strip img:hover { opacity: 1; }

/* ---------- closing CTA band on a photo ---------- */
.cta-band {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  padding: 70px 20px;
}
.cta-band .cta-overlay { position: absolute; inset: 0; background: #000; opacity: .38; }
.cta-band .cta-inner { position: relative; text-align: center; max-width: 720px; }
.cta-band h2 {
  font-family: var(--gruppo);
  font-size: 43px;
  font-weight: 400;
  color: #fff;
  line-height: 1.12;
}
.cta-band p { margin-top: 16px; font-size: 16px; line-height: 26px; color: #fff; }
.cta-band .btn-outline-light { margin-top: 28px; }

/* ==========================================================================
   Meet Gerard
   ========================================================================== */
.gerard-info {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 80px 40px;
  display: grid;
  grid-template-columns: 630px 1fr;
  gap: 30px;
  align-items: center;
}
.gerard-info .gi-photo { overflow: hidden; }
.gerard-info .gi-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 12%;   /* keep the face high in the frame, not low */
}
.gi-name {
  font-family: var(--gruppo);
  font-size: 43px;
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.25;
}
.gi-role {
  font-family: var(--gruppo);
  font-size: 21px;
  color: var(--secondary);
  margin-top: 4px;
}
.gi-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 295px 295px;
  gap: 20px;
}
.gi-item { margin-bottom: 23px; }
.gi-item h4 {
  font-family: var(--lato);
  font-size: 16px;
  font-weight: 400;
  color: var(--secondary);
  margin-bottom: 2px;
}
.gi-item a, .gi-item p { font-size: 16px; line-height: 26px; color: #5b5b5b; }
.gi-item a:hover { text-decoration: underline; }

/* ==========================================================================
   Home Valuation — two-step form
   ========================================================================== */
.valuation {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.valuation .v-overlay { position: absolute; inset: 0; background: #111; opacity: .5; }
.valuation-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 140px 0 80px;
  width: 100%;
  text-align: center;
  color: #fff;
}
.valuation h1 {
  font-family: var(--gruppo);
  font-size: 70px;
  font-weight: 400;
  line-height: 1.25;
}
.v-perks {
  margin: 26px 0 34px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.v-perks li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  color: #fff;
}
.v-perks svg { flex: 0 0 auto; }
.v-form { max-width: 896px; margin: 0 auto; text-align: left; }
.v-step { display: none; }
.v-step.active { display: block; }
.v-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.v-form label {
  display: block;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .4px;
}
.v-form input[type="text"],
.v-form input[type="email"],
.v-form input[type="tel"] {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 13px 16px;
  font-family: var(--lato);
  font-size: 15px;
  color: var(--secondary);
  background: #fff;
  border: 0;
  border-radius: 0;
  outline: none;
}
.v-form input:focus { box-shadow: 0 0 0 2px rgba(255,255,255,.7); }
.v-consent {
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
  font-size: 11px !important;
  font-weight: 400 !important;
  line-height: 1.6;
  color: #ececec !important;
}
.v-consent a { text-decoration: underline; }
.v-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.v-form button {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-family: var(--lato);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .5px;
  padding: 15px 35px;
  transition: background-color .3s, color .3s;
  text-transform: uppercase;
}
.v-form button:hover { background: #fff; color: var(--secondary); }
.v-form button.ghost { border-color: rgba(255,255,255,.5); }
.v-note { margin-top: 18px; font-size: 13px; color: #f0f0f0; }

/* ==========================================================================
   Property Search — full IDX shell
   ========================================================================== */
.search-head {
  padding: calc(var(--header-h) + 46px) 20px 26px;
  text-align: center;
}
.search-head h1 {
  font-family: var(--gruppo);
  font-size: 43px;
  font-weight: 400;
  line-height: 1.12;
  color: var(--secondary);
}
.search-shell { max-width: 1224px; margin: 0 auto; padding: 0 20px 80px; }
.search-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-bottom: 18px;
}
.search-toolbar .idx-search { flex: 1 1 260px; }
.search-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 0 20px;
  border-top: 1px solid #e6e6e6;
  font-family: 'Inter', var(--lato);
  font-size: 14px;
  color: #444;
}
.search-meta select {
  font: inherit;
  padding: 8px 12px;
  border: 1px solid rgba(0,0,0,.23);
  border-radius: 4px;
  background: #fff;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1180px) {
  .intro-block, .prose { padding-left: 40px; padding-right: 40px; }
  .intro-block.narrow { padding-left: 40px; padding-right: 40px; }
  /* every split variant collapses to one column — the desktop rules use fixed
     pixel tracks, so each variant has to be named explicitly here */
  .split,
  .split.reverse,
  .split.even,
  .split.bleed,
  .split.journey {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px 40px;
    max-width: 100%;
    justify-content: stretch;
  }
  .split.reverse .split-media { order: 0; }
  .split.reverse .split-body { order: 0; }
  .media-cols { grid-template-columns: 1fr; gap: 0; }
  .cta-band .cta-inner { max-width: 100%; }
  .gerard-info { grid-template-columns: 1fr; gap: 40px; padding: 60px 40px 30px; }
  .gerard-info .gi-photo { max-width: 560px; }
  .media-inner { grid-template-columns: 1fr; gap: 30px; }
  .media-head { text-align: left; }
  .media-cols { grid-template-columns: 1fr; gap: 0; }
  .valuation h1 { font-size: 46px; }
}
@media (max-width: 700px) {
  .intro-block, .intro-block.narrow { padding: 60px 24px; }
  .intro-block h2, .prose h2, .cta-band h2, .media-inner h2,
  .split-body h2.lg, .legal-head h1, .search-head h1 { font-size: 34px; }
  .prose { padding: 50px 24px 60px; }
  .split, .split.reverse, .split.even, .split.bleed, .split.journey { padding: 24px; }
  .arch-grid-section { padding-left: 24px; padding-right: 24px; }
  .gerard-info { padding: 50px 24px 20px; }
  .gi-grid { grid-template-columns: 1fr; }
  .v-row { grid-template-columns: 1fr; gap: 0; }
  .valuation h1 { font-size: 34px; }
  .valuation-inner { padding-left: 24px; padding-right: 24px; }
  .v-perks { gap: 18px; flex-direction: column; align-items: center; }
  .logo-strip { gap: 34px; }
}

/* ==========================================================================
   Notable Architects
   ========================================================================== */
.na-hero { min-height: 550px; }
.arch-grid-section { max-width: 1440px; margin: 0 auto; padding: 68px 55px 40px; }
.arch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.arch-card {
  position: relative;
  aspect-ratio: 333 / 389;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 10px 14px 26px;
  overflow: hidden;
}
.arch-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,.65) 100%);
  transition: background-color .3s;
}
.arch-card h2 {
  position: relative;
  font-family: var(--gruppo);
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1.25;
}

.arch-prose { max-width: 1440px; margin: 0 auto; padding: 40px 80px 90px; text-align: center; }
.arch-prose > div { margin-bottom: 34px; }
.arch-prose h2 {
  font-family: var(--gruppo);
  font-size: 30px;
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.3;
  margin-bottom: 12px;
}
.arch-prose p { font-size: 16px; line-height: 26px; color: var(--secondary); }

/* ==========================================================================
   Neighborhood guide index
   ========================================================================== */
.guide-section { max-width: 1440px; margin: 0 auto; padding: 90px 205px; }
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 100px;
}
.guide-card { display: block; text-align: center; }
.guide-media { overflow: hidden; }
.guide-media img {
  width: 100%;
  aspect-ratio: 465 / 450;
  object-fit: cover;
  transition: transform .5s ease;
}
.guide-card:hover .guide-media img { transform: scale(1.04); }
.guide-card h2 {
  margin-top: 22px;
  font-family: var(--gruppo);
  font-size: 21px;
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.3;
}
.guide-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 15px 35px;
  border: 2px solid var(--secondary);
  font-family: var(--lato);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .5px;
  color: var(--secondary);
  transition: background-color .3s, color .3s;
  text-transform: uppercase;
}
.guide-card:hover .guide-btn { background: var(--secondary); color: #fff; }

/* ==========================================================================
   Legal / privacy policy
   ========================================================================== */
.legal-head { padding: calc(var(--header-h) + 70px) 20px 10px; text-align: center; }
.legal-head h1 {
  font-family: var(--gruppo);
  font-size: 43px;
  font-weight: 400;
  line-height: 1.12;
  color: var(--secondary);
}
.legal-body { max-width: 900px; margin: 0 auto; padding: 20px 20px 90px; }
.legal-body h1 {
  font-family: var(--gruppo);
  font-size: 34px;
  font-weight: 400;
  color: var(--secondary);
  margin-bottom: 6px;
}
.legal-body h2 {
  font-family: var(--gruppo);
  font-size: 26px;
  font-weight: 400;
  color: var(--secondary);
  margin: 34px 0 10px;
}
.legal-body p { font-size: 16px; line-height: 26px; color: #333; margin-bottom: 14px; }
.legal-body ul, .legal-body ol { margin: 0 0 18px 22px; }
.legal-body li { list-style: disc; font-size: 16px; line-height: 26px; color: #333; margin-bottom: 8px; }
.legal-body li p { margin-bottom: 0; }
.legal-body strong { font-weight: 700; color: var(--secondary); }
.legal-body em { font-style: italic; color: #666; }
.legal-body a { text-decoration: underline; }

@media (max-width: 1180px) {
  .arch-grid { grid-template-columns: repeat(2, 1fr); }
  .arch-grid-section { padding: 50px 30px 30px; }
  .arch-prose { padding: 30px 30px 70px; }
  .guide-section { padding: 60px 40px; }
  .guide-grid { gap: 40px; }
}
@media (max-width: 700px) {
  .arch-grid { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
  .guide-section { padding: 50px 24px; }
  .legal-body { padding: 20px 24px 70px; }
}

/* ==========================================================================
   Blog index — full-width rows, media bleeding left of the text panel
   ========================================================================== */
.post-list { max-width: 1440px; margin: 0 auto; padding: 70px 80px 90px; }
.post-row {
  position: relative;
  display: grid;
  grid-template-columns: 723px 1fr;
  align-items: center;
  min-height: 653px;
  margin-bottom: 30px;
}
.post-media { display: block; overflow: hidden; }
.post-media img {
  width: 100%;
  height: 653px;
  object-fit: cover;
  transition: transform .6s ease;
}
.post-row:hover .post-media img { transform: scale(1.03); }
.post-body {
  position: relative;
  z-index: 1;
  margin-left: -60px;
  background: #fff;
  padding: 54px 46px;
}
.post-title {
  display: block;
  font-family: var(--gruppo);
  font-size: 30px;
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.25;
}
.post-title:hover { opacity: .7; }
.post-meta {
  margin-top: 16px;
  display: flex;
  gap: 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
}
.post-excerpt { margin-top: 12px; font-size: 16px; line-height: 26px; color: var(--secondary); }
.post-more {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  color: #404040;
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
  text-transform: uppercase;
}
.post-more:hover { border-bottom-color: #404040; }

/* ==========================================================================
   Press & Media index
   ========================================================================== */
.press-list { max-width: 1440px; margin: 0 auto; padding: 70px 80px 90px; }
.press-row {
  max-width: 900px;
  padding: 30px 0;
  border-bottom: 1px solid #e2e2e2;
}
.press-row:first-child { border-top: 1px solid #e2e2e2; }
.press-title {
  display: block;
  font-family: var(--gruppo);
  font-size: 30px;
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.3;
}
.press-title:hover { opacity: .7; }
.press-source {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #979797;
}
.press-excerpt { margin-top: 12px; font-size: 16px; line-height: 26px; color: var(--secondary); }
.press-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
  text-transform: uppercase;
}
.press-more:hover { border-bottom-color: var(--secondary); }

/* ==========================================================================
   Testimonials index
   ========================================================================== */
.testi-list { max-width: 1280px; margin: 0 auto; padding: 70px 80px 90px; }
.testi-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
}
.testi-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #ededed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--gruppo);
  font-size: 46px;
  color: #6f6f6f;
}
.testi-name {
  font-family: var(--gruppo);
  font-size: 43px;
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.3;
}
.testi-detail { margin-top: 2px; font-size: 14px; font-weight: 700; color: #777; }
.testi-text {
  margin-top: 14px;
  font-family: var(--gruppo);
  font-style: italic;
  font-size: 16px;
  line-height: 24px;
  color: var(--secondary);
}
.testi-text::before { content: '\201C'; }
.testi-text::after { content: '\201D'; }

@media (max-width: 1180px) {
  .post-list, .press-list, .testi-list { padding-left: 40px; padding-right: 40px; }
  .post-row { grid-template-columns: 1fr; min-height: 0; }
  .post-media img { height: 380px; }
  .post-body { margin-left: 0; padding: 28px 0 0; }
}
@media (max-width: 700px) {
  .post-list, .press-list, .testi-list { padding-left: 24px; padding-right: 24px; }
  .testi-row { grid-template-columns: 1fr; gap: 18px; }
  .testi-avatar { width: 92px; height: 92px; font-size: 34px; }
  .testi-name, .press-title, .post-title { font-size: 26px; }
}

/* ==========================================================================
   Blog post
   ========================================================================== */
.post-hero {
  position: relative;
  min-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
.post-hero-title {
  font-family: var(--gruppo);
  font-size: 43px;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  text-align: center;
}
.post-hero-meta {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.post-article { max-width: 980px; margin: 0 auto; padding: 70px 20px 90px; }
.post-article p { font-size: 16px; line-height: 26px; color: var(--secondary); margin-bottom: 24px; }
.post-article h2 {
  font-family: var(--gruppo);
  font-size: 43px;
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.3;
  margin: 40px 0 18px;
}
.post-article h3 {
  font-family: var(--gruppo);
  font-size: 30px;
  font-weight: 400;
  color: var(--secondary);
  margin: 32px 0 14px;
}
.post-article img { width: 100%; height: auto; margin: 8px 0 10px; }
.post-article ul, .post-article ol { margin: 0 0 24px 22px; }
.post-article li { list-style: disc; font-size: 16px; line-height: 26px; margin-bottom: 8px; }
.post-article a { text-decoration: underline; }

/* ==========================================================================
   Press item
   ========================================================================== */
.press-article { max-width: 900px; margin: 0 auto; padding: calc(var(--header-h) + 80px) 20px 80px; }
.pa-eyebrow { font-size: 14px; font-weight: 700; letter-spacing: 1px; color: #979797; text-transform: uppercase; }
.pa-title {
  margin-top: 10px;
  font-family: var(--gruppo);
  font-size: 43px;
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.25;
}
.pa-meta { margin-top: 12px; font-size: 14px; font-weight: 700; color: #555; }
.pa-body { margin-top: 26px; }
.pa-body p { font-size: 16px; line-height: 26px; color: var(--secondary); }
.pa-nav {
  margin-top: 50px;
  padding-top: 26px;
  border-top: 1px solid #e2e2e2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.pa-nav a { font-size: 16px; font-family: var(--gruppo); color: var(--secondary); line-height: 1.35; }
.pa-nav a:hover { opacity: .7; }
.pa-nav span { display: block; font-family: var(--lato); font-size: 13px; font-weight: 700; color: #979797; margin-bottom: 4px; }
.pa-next { text-align: right; }
.pa-back { margin-top: 40px; }

/* ==========================================================================
   Neighborhood guide
   ========================================================================== */
.guide-hero { min-height: 600px; }
.guide-article { max-width: 860px; margin: 0 auto; padding: 70px 20px 40px; }
.guide-article h2 {
  font-family: var(--gruppo);
  font-size: 43px;
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.3;
  margin: 36px 0 16px;
}
.guide-article h3 {
  font-family: var(--gruppo);
  font-size: 30px;
  font-weight: 400;
  color: var(--secondary);
  margin: 30px 0 14px;
}
.guide-article p { font-size: 16px; line-height: 26px; color: var(--secondary); margin-bottom: 22px; }
.guide-article img { width: 100%; height: auto; margin: 10px 0; }
.guide-article ul, .guide-article ol { margin: 0 0 22px 22px; }
.guide-article li { list-style: disc; font-size: 16px; line-height: 26px; margin-bottom: 8px; }
.guide-article a { text-decoration: underline; }
.guide-cta { text-align: center; padding: 10px 20px 80px; }

@media (max-width: 700px) {
  .post-hero { min-height: 460px; }
  .post-hero-title { font-size: 30px; }
  .post-article h2, .pa-title, .guide-article h2 { font-size: 30px; }
  .pa-nav { grid-template-columns: 1fr; }
  .pa-next { text-align: left; }
}
