/* Zillow+ title and content fusion — 2026-07-16 */

/* Explicitly keep the title band full width and attached to the header. */
.site-shell main.zillow-approved-page {
  width: calc(100% - var(--site-gutter));
  max-width: none;
  padding-top: 0;
}

.site-shell
  main.zillow-approved-page
  > .about-title-strip.page-title-strip:first-child {
  width: calc(100% + var(--site-gutter));
  max-width: none;
  margin: 0 calc(var(--site-gutter) / -2);
  border-top: 0;
}

/* The white summary now ends with the verified performance figures. */
.zillow-approved-page > .zillow-exposure-summary {
  padding-bottom: clamp(48px, 5vw, 72px);
}

/* One blue section, one hierarchy, four equal cards. */
.zillow-approved-page > .zillow-fused-section {
  display: block;
  padding: clamp(54px, 5.5vw, 82px) 0;
}

.zillow-fused-section > .section-head {
  width: min(860px, 100%);
  margin: 0 auto clamp(28px, 3vw, 42px);
  text-align: center;
}

.zillow-fused-section > .section-head h2 {
  max-width: none;
}

.zillow-approved-page .zillow-fused-section > .zillow-fused-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
  width: 100%;
}

.zillow-fused-grid > .zillow-fused-card {
  display: flex;
  min-width: 0;
  min-height: 440px;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(24px, 2.1vw, 32px) clamp(17px, 1.6vw, 24px);
  text-align: center;
}

.zillow-fused-card > .zillow-card-icons {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 18px;
}

.zillow-card-icons > svg {
  flex: 0 0 auto;
  color: var(--gold);
}

.zillow-fused-card > h3 {
  width: 100%;
  margin: 0;
  text-align: center;
}

.zillow-fused-card > p {
  width: 100%;
  margin: 14px 0 0;
  text-align: center;
}

.zillow-fused-card > .check-list {
  display: grid;
  width: 100%;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
}

.zillow-fused-card > .check-list li {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.zillow-fused-card > .check-list li > svg {
  flex: 0 0 auto;
  margin-top: 2px;
}

@media (max-width: 1080px) {
  .zillow-approved-page .zillow-fused-section > .zillow-fused-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zillow-fused-grid > .zillow-fused-card {
    min-height: 390px;
  }
}

@media (max-width: 720px) {
  .site-shell main.zillow-approved-page {
    width: calc(100% - 28px);
  }

  .site-shell
    main.zillow-approved-page
    > .about-title-strip.page-title-strip:first-child {
    width: calc(100% + 28px);
    margin-right: -14px;
    margin-left: -14px;
  }

  .zillow-approved-page .zillow-fused-section > .zillow-fused-grid {
    grid-template-columns: 1fr;
  }

  .zillow-fused-grid > .zillow-fused-card {
    min-height: 0;
  }
}
