/*
 * Minimal Style - Hero V2 Centered
 * Centered hero with minimal elements and clean layout
 * Prefix: fl-min-hero2-*
 */

/* === Hero Wrapper === */

.fl-min-hero2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 60px 24px;
  background-color: #FFFFFF;
}

@media (min-width: 768px) {
  .fl-min-hero2 {
    min-height: 80vh;
    padding: 100px 48px;
  }
}

@media (min-width: 1024px) {
  .fl-min-hero2 {
    min-height: 90vh;
    padding: 0 80px;
  }
}

/* === Inner Content === */

.fl-min-hero2__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
}

/* === Eyebrow Text === */

.fl-min-hero2__eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #DC2626;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .fl-min-hero2__eyebrow {
    margin-bottom: 32px;
  }
}

/* === Title === */

.fl-min-hero2__title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: #111111;
  letter-spacing: -0.02em;
}

.fl-min-hero2__title-em {
  font-style: italic;
  font-weight: 300;
  color: #111111;
}

/* === Description === */

.fl-min-hero2__desc {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: #999999;
  max-width: 480px;
}

@media (min-width: 768px) {
  .fl-min-hero2__desc {
    margin-top: 24px;
    font-size: 16px;
  }
}

/* === Thin Horizontal Line === */

.fl-min-hero2__line {
  width: 40px;
  height: 1px;
  background-color: #E5E5E5;
  margin: 48px 0;
}

@media (min-width: 768px) {
  .fl-min-hero2__line {
    margin: 56px 0;
  }
}

/* === Action Buttons === */

.fl-min-hero2__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

@media (min-width: 480px) {
  .fl-min-hero2__actions {
    flex-direction: row;
    gap: 24px;
  }
}

.fl-min-hero2__link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111111;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid #E5E5E5;
  transition: all 0.2s ease;
}

.fl-min-hero2__link:hover {
  border-color: #DC2626;
  color: #DC2626;
}

.fl-min-hero2__link--primary {
  color: #DC2626;
  border-color: #DC2626;
}

.fl-min-hero2__link--primary:hover {
  opacity: 0.7;
}

/* === Stats Row === */

.fl-min-hero2__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
}

@media (min-width: 768px) {
  .fl-min-hero2__stats {
    gap: 80px;
    margin-top: 80px;
  }
}

.fl-min-hero2__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fl-min-hero2__stat-value {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  color: #111111;
  line-height: 1;
}

.fl-min-hero2__stat-label {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999999;
}

/* === Image Background === */

.fl-min-hero2__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.04;
}

.fl-min-hero2__inner {
  position: relative;
  z-index: 1;
}

/* === Subtle Vertical Line === */

.fl-min-hero2__vline {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #E5E5E5;
  transform: translateX(-50%);
  opacity: 0.3;
}

@media (max-width: 767px) {
  .fl-min-hero2__vline {
    display: none;
  }
}
