/* Advertiser hero */
.advertiser-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(7rem, 11vw, 10rem) 0 4.5rem;
  background: linear-gradient(90deg, rgba(2, 6, 4, 0.88) 0%, rgba(2, 6, 4, 0.62) 42%, rgba(2, 6, 4, 0.8) 72%), url(https://cdn.playcred.ae/playcred-advertisers-hero-bg-dark.webp) center center / cover no-repeat;
}

html[data-theme="light"] .advertiser-hero {
  background: linear-gradient(90deg, rgba(244, 247, 243, 0.94) 0%, rgba(244, 247, 243, 0.7) 42%, rgba(244, 247, 243, 0) 72%), url(https://cdn.playcred.ae/playcred-advertisers-hero-bg-light.webp) center center / cover no-repeat;
}

.advertiser-hero h1 {
  margin-top: 2rem;
  font-size: clamp(3.5rem, 7.2vw, 3rem);
  line-height: 0.95;
}

@media (max-width: 768px) {
  .advertiser-hero {
    padding-top: 7.5rem;
  }

  .advertiser-hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }
}

/* Benefits section */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--pc-bg-card);
  border: 1px solid var(--pc-border-light);
  border-radius: var(--pc-radius-md);
  padding: 2rem;
  transition: all 0.3s ease;
}

html[data-theme="light"] .feature-card {
  background: var(--pc-bg-card);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 197, 94, 0.3);
}

.icon-box {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pc-primary);
  margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
