/* General Page Layouts & Asymmetry Utilities */

.hero-section {
  padding: 4rem 0;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content {
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  right: 0;
  top: 0;
  margin-top: 3rem;
  height: 300px;
  border-radius: var(--radius-card);
  overflow: hidden;
  z-index: 1;
  box-shadow: 6px 6px 14px var(--shadow-dark), -6px -6px 14px var(--shadow-light);
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.section-padding {
  padding: 4rem 0;
}

.grid-2, .grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Asymmetrical alignment */
.offset-right {
  transform: none;
}
.offset-left {
  transform: none;
}

@media (min-width: 901px) {
  .hero-section {
    flex-direction: row;
    padding: 6rem 0;
    min-height: 80vh;
  }
  .hero-content {
    max-width: 600px;
  }
  .hero-image-wrapper {
    position: absolute;
    right: 5%;
    top: 15%;
    width: 50%;
    height: 70%;
    margin-top: 0;
  }
  .section-padding {
    padding: 6rem 0;
  }
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .offset-right {
    transform: translateY(40px);
  }
  .offset-left {
    transform: translateY(-40px);
  }
}

