/* =========================================
   Hero Section (HOME ONLY)
   ========================================= */
.hero-panel {
  position: relative;
  background-color: var(--panel-bg);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 50% at 82% 30%,
    rgba(212, 175, 55, 0.12),
    transparent 50%
  );
  pointer-events: none;
}

.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 30px 24px;
}

.hero-text {
  position: relative;
  z-index: 10;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  gap: 16px;

  order: 2;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 500px;
}

.hero-image-container {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  order: 1;
}

.hero-image-container img {
  position: relative;
  z-index: 10;

  max-height: 280px;
  width: 100%;

  object-fit: contain;

  border-radius: 8px;
}

@media (min-width: 768px) {

  .hero-content-wrapper {
    grid-template-columns: 1fr 1fr;
    padding: 40px;
  }

  .hero-text {
    order: 1;
  }

  .hero-image-container {
    order: 2;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-image-container img {
    max-height: 320px;
  }
}