/* ==========================================================================
   10-home.css — Homepage section styles (preserved for full site build)
   ========================================================================== */

/* ---- Hero ---- */
.hero {
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

.hero__title {
  margin-bottom: var(--space-7);
}

.hero__title em {
  font-style: normal;
  color: var(--color-primary);
}

.hero__subtitle {
  margin-bottom: var(--space-7);
  max-width: 48ch;
}

.hero__microcopy {
  margin-top: var(--space-4);
  color: var(--color-text-tertiary);
  font-size: var(--font-size-xs);
}

.hero__visual {
  display: flex;
  justify-content: center;
}

.hero__placeholder {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 3;
  background-color: var(--color-gray-100);
  border-radius: var(--radius-2xl);
  border: 2px dashed var(--color-gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__placeholder-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-tertiary);
}

@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
  }
}
