/* Bella Bakes — home.css (additive, homepage only) */

.about-teaser-grid {
  max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr;
  gap: var(--space-64); align-items: center;
}
.about-teaser-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/5; }
.about-teaser-photo img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .about-teaser-grid { grid-template-columns: 1fr; }
  .about-teaser-photo { order: -1; }
}
