/* ============================================
   Free Assessment 2 - Figma Hero + Partners
   ============================================ */

/* ===== HERO ===== */
.fa2-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  max-height: 1080px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fa2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fa2-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fa2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.3) 0%, rgba(37,74,95,0.5) 100%);
}

.fa2-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1208px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 0 40px;
}

.fa2-hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 60px);
  line-height: 1.17;
  color: #fff;
  text-transform: uppercase;
  max-width: 896px;
}

.fa2-hero-content p {
  font-size: clamp(1rem, 1.8vw, 30px);
  line-height: 1.38;
  color: #fff;
  max-width: 865px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .fa2-hero {
    height: auto;
    min-height: 80vh;
    padding: 140px 0 80px;
  }
}

@media (max-width: 480px) {
  .fa2-hero-content h1 {
    font-size: 1.6rem;
  }

  .fa2-hero-content p {
    font-size: 1rem;
  }
}
