.hero {
  padding: 7rem 2rem 6rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-block;
  border: 1px solid #E8FF3C;
  color: #E8FF3C;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.hero-title {
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2.5rem, 7vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: #B8B8B0;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.text-link-arrow {
  color: #F5F5F0;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(245, 245, 240, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.text-link-arrow:hover {
  color: #E8FF3C;
  border-color: #E8FF3C;
}

/* Featured grid */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  margin: 2.5rem 0 2rem;
}

.featured-img {
  overflow: hidden;
  background-color: #1E1E1E;
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-img:hover img {
  transform: scale(1.04);
}

.featured-img-tall {
  grid-row: span 2;
}

.featured-img-tall img {
  aspect-ratio: 0.57;
}

.featured-grid .featured-img:not(.featured-img-tall) img {
  aspect-ratio: 1.6;
}

@media (max-width: 768px) {
  .hero {
    padding: 4.5rem 1.5rem 3.5rem;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .featured-img-tall {
    grid-row: auto;
  }

  .featured-img-tall img,
  .featured-grid .featured-img:not(.featured-img-tall) img {
    aspect-ratio: 1.4;
  }
}
