@import url("/styles.css");

.portrait-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  border-radius: 24px;
  border: 2px dashed rgba(176, 122, 83, 0.35);
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: rgba(43, 28, 20, 0.7);
  font-weight: 600;
}

/* Desktop: image div comes first in HTML but should appear on the right */
.hero-grid .hero-image { order: 2; }
.hero-grid .hero-copy  { order: 1; }

@media (max-width: 900px) {
  .portrait-placeholder { aspect-ratio: 1 / 1; }

  /* Compact portrait on mobile — float left so text wraps around it */
  .hero-grid {
    display: block;
  }
  .hero-image {
    float: left;
    width: 140px;
    margin: 0 16px 8px 0;
  }
  .hero-image img {
    width: 100%;
    height: auto;
    max-width: none;
    margin: 0;
  }
  .hero-copy .eyebrow {
    overflow: hidden;
  }
  .hero-copy h1 {
    font-size: 1.5rem;
    overflow: hidden;
  }
  .hero-copy .lead {
    clear: both;
  }
}
