/* ============================================
   HERO/INTRO CARD COMPONENT
   ============================================ */

.hero-intro-card {
  width: 100%;
   
  height: 395px;
  margin: 0 auto;
  position: relative;
  border: 1px solid #a1844c;
  border-radius: 20px;
  box-shadow: 0px 10px 36.9px 0px rgba(247, 147, 26, 0.1);
  overflow: hidden;
}

.hero-intro-card__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-base);
  overflow: hidden;
  border-radius: 20px;
}

.hero-intro-card__background::before {
  content: '';
  position: absolute;
  top: -11.35%;
  left: -0.63%;
  width: 101.33%;
  height: 216.02%;
  background-image: url('../../assets/images/frog-breaker-xp/hero-intro-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.8;
}

.hero-intro-card__content {
  position: relative;
  z-index: var(--z-dropdown);
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
}

.hero-intro-card__subtitle {
  font-family: var(--font-primary);
  font-size: 22.035px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  text-transform: uppercase;
  letter-spacing: 2.2035px;
  line-height: 1.71;
  margin: 0 0 19px 0;
  padding: 0;
  white-space: nowrap;
}

.hero-intro-card__title {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.71;
  margin: 0 0 38px 0;
  padding: 0;
  white-space: nowrap;
}

.hero-intro-card__description {
  font-family: var(--font-primary);
  font-size: 16.816px;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  line-height: 1.3;
  margin: 0 0 20px 0;
  padding: 0;
  max-width: 664px;
  white-space: pre-wrap;
}

.hero-intro-card__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-intro-card__bullets li {
  font-family: var(--font-primary);
  font-size: 14.414px;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  line-height: 1.71;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.hero-intro-card__bullets li::before {
  content: '• ';
  color: var(--color-text-primary);
  margin-right: 4px;
}

/* Responsive */
@media (max-width: 1400px) {
  .hero-intro-card {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 1200px) {
  .hero-intro-card {
    height: auto;
    min-height: 395px;
    margin: 0 auto;
    width: 100%;
  }
  
  .hero-intro-card__content {
    padding: var(--spacing-4xl) var(--spacing-3xl);
  }
  
  .hero-intro-card__title {
    font-size: 28px;
    white-space: normal;
  }
  
  .hero-intro-card__subtitle {
    font-size: 20px;
    white-space: normal;
  }
  
  .hero-intro-card__description {
    font-size: 15px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-intro-card {
    margin: 0 auto;
    height: auto;
    min-height: 350px;
    width: 100%;
    max-width: 100%;
  }
  
  /* Fix background image cropping on mobile */
  .hero-intro-card__background::before {
    background-size: cover;
    background-position: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .hero-intro-card__content {
    padding: var(--spacing-2xl) var(--spacing-lg);
  }
  
  .hero-intro-card__subtitle {
    font-size: 16px;
    letter-spacing: 1.5px;
    margin-bottom: var(--spacing-md);
    white-space: normal;
  }
  
  .hero-intro-card__title {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: var(--spacing-lg);
    white-space: normal;
  }
  
  .hero-intro-card__description {
    font-size: 13px;
    margin-bottom: var(--spacing-lg);
  }
  
  .hero-intro-card__bullets li {
    font-size: 12px;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .hero-intro-card__content {
    padding: var(--spacing-xl) var(--spacing-md);
  }
  
  .hero-intro-card__subtitle {
    font-size: 14px;
    letter-spacing: 1px;
  }
  
  .hero-intro-card__title {
    font-size: 20px;
  }
  
  .hero-intro-card__description {
    font-size: 12px;
  }
  
  .hero-intro-card__bullets li {
    font-size: 11px;
  }
}

