/* ==========================================================================
   HERO COMPONENT (50/50 Desktop Grid / Stacked Mobile)
   ========================================================================== */
.hero-component {
  width: 100%;
  padding: 1.5rem 1rem;
  background-color: #f4eee2;
}
@media (min-width: 768px) {
  .hero-component {
    padding: 3rem 2rem;
  }
}
.hero-component__container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  /* 50/50 Side-by-Side Desktop Layout */
}
@media (min-width: 768px) {
  .hero-component__container {
    flex-direction: row;
    gap: 2.5rem;
  }
}
.hero-component {
  /* Left Column: Image */
}
.hero-component__image-col {
  width: 100%;
}
@media (min-width: 768px) {
  .hero-component__image-col {
    width: 50%;
  }
}
.hero-component__image-frame {
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(60, 38, 21, 0.12);
  border: 1px solid #d8c8b0;
}
.hero-component__image {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 450px;
}
@media (min-width: 768px) {
  .hero-component__image {
    max-height: 520px;
  }
}
.hero-component {
  /* Right Column: Content */
}
.hero-component__content-col {
  width: 100%;
}
@media (min-width: 768px) {
  .hero-component__content-col {
    width: 50%;
  }
}
.hero-component {
  /* Illuminated Scribe Vignette (Watercolor Frame Under Text) */
}
.hero-component__card {
  position: relative;
  padding: 2rem 1.5rem;
  background: #faf6ef;
  border-radius: 6px;
  box-shadow: inset 0 0 20px rgba(100, 65, 30, 0.08), 0 10px 25px rgba(45, 30, 15, 0.12);
  /* Painterly watercolor edge fade */
  mask-image: radial-gradient(circle at center, black 70%, transparent 98%);
  -webkit-mask-image: radial-gradient(circle at center, black 70%, transparent 98%);
}
@media (min-width: 768px) {
  .hero-component__card {
    padding: 3rem 2.5rem;
  }
}
.hero-component__title {
  font-family: var(--bs-font-serif, serif);
  font-style: italic;
  color: #7c2d12;
  font-size: 2rem;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .hero-component__title {
    font-size: 2.75rem;
  }
}
.hero-component__subtitle {
  font-family: var(--bs-font-serif, serif);
  color: #3d2b1f;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 1.75rem;
}
@media (min-width: 768px) {
  .hero-component__subtitle {
    font-size: 1.2rem;
  }
}

/*# sourceMappingURL=hero.css.map*/