/* =========================================================
   FANS SECTION – CLIENTS PAGE
========================================================= */
.world-hero-background {
  position: relative;
  width: 100%;
  aspect-ratio: 16/8;
  background-size: cover;
  background-position: center;
  background-attachment: inherit;
  z-index: 1;
  display: flex;
  align-items: bottom;
  justify-content: center;
}

.fans {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  align-items: end;
  padding: 80px 0;
}

/* ---------------------------------------------------------
   TITLE
--------------------------------------------------------- */

.fans-title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  line-height: 1;
  font-weight: 300;
  color: var(--primary);
  text-transform: uppercase;
  margin: 0;
  padding-right: 10px;
}

/* ---------------------------------------------------------
   CONTENT (RIGHT SIDE)
--------------------------------------------------------- */

.fans-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  /* align-items: center; */
  padding-bottom: 20px;
  max-width: 80%;
}

.fans-subtitle {
  font-size: var(--fs-subtitle);
  font-weight: 300;
  color: var(--primary);
  line-height: 1.4;
  font-family: var(--font-display);
  margin: 0;
  text-transform: uppercase;
}

.fans-description {
  font-size: 18px;

  color: var(--text);
  margin: 0;
  opacity: 0.9;
}

.fans-description p {
  margin-bottom: 10px;
  line-height: 1.3;
}
/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 1024px) {
  .fans {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }

  .fans-title {
    font-size: clamp(36px, 8vw, 80px);
  }

  .fans-content {
    max-width: 100%;
    align-items: flex-start;
    text-align: flex-start;
  }
}

@media (max-width: 768px) {
  .fans {
    padding: 40px 0;
    gap: 15px;
  }

  .world-hero-background {
    position: relative;
    width: 100%;
    aspect-ratio: auto;
  }
}

@media (max-width: 580px) {
  .fans-description p {
    font-size: 16px;
  }
}
