/* HERO SECTION STYLING */
.hero {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 100vh;
  padding: 64px;
  gap: 32px;
  box-sizing: border-box;
}

.hero-text {
  flex: 1;
  max-width: 480px;
}

.hero-text h1 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-btn {
  background: #e50914;
  color: white;
  padding: 12px 24px;
  font-weight: 600;
  display: inline-block;
}

/* Grid of Jerseys */
.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-items: center;
  justify-items: center;
}

.hero-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
}
