/* General Page Layouts & Asymmetry Utilities */

.hero-section {
  padding: 6rem 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero-image-wrapper {
  position: absolute;
  right: 5%;
  top: 15%;
  width: 50%;
  height: 70%;
  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: 6rem 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

/* Asymmetrical alignment */
.offset-right {
  transform: translateY(40px);
}
.offset-left {
  transform: translateY(-40px);
}

@media (max-width: 900px) {
  .hero-section {
    flex-direction: column;
    padding: 4rem 0;
  }
  .hero-image-wrapper {
    position: relative;
    width: 100%;
    right: 0;
    top: 0;
    margin-top: 3rem;
    height: 300px;
  }
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .offset-right, .offset-left {
    transform: none;
  }
}
