/* Page-local illustration cards; shared cards and the brand slider stay unchanged. */
.page-breezery #estimate { scroll-margin-top: 110px; }
.page-breezery #estimate .grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.page-breezery #estimate .card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.page-breezery #estimate .estimate-image {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #ecefeb;
  border-bottom: 1px solid var(--line);
}
.page-breezery #estimate .card-body { flex: 1; }
.page-breezery #estimate h3 { line-height: 1.2; }
.page-breezery #estimate .estimate-note {
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
@media (max-width: 760px) {
  .page-breezery #estimate { scroll-margin-top: 86px; }
  .page-breezery #estimate .grid-3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
