/*
 * Minimal Hero V2 — Centered
 * Theme: Thm-Teepublic / Minimal
 * Centered with wide padding
 */

.fl-min-hero-v2 {
  padding: 80px 48px;
  margin-bottom: 48px;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.fl-min-hero-v2-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.fl-min-hero-v2-title {
  margin: 0;
  font-size: 48px;
  font-weight: 300;
  color: #111111;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.fl-min-hero-v2-desc {
  margin: 0;
  font-size: 16px;
  color: #999999;
  font-weight: 300;
  max-width: 500px;
  line-height: 1.7;
}

.fl-min-hero-v2-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 14px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #DC2626;
  background: transparent;
  color: #DC2626 !important;
  transition: all 0.2s ease;
}

.fl-min-hero-v2-cta:hover {
  background: #DC2626;
  color: #FFFFFF !important;
}

@media (max-width: 768px) {
  .fl-min-hero-v2 {
    padding: 64px 24px;
  }

  .fl-min-hero-v2-title {
    font-size: 36px;
  }

  .fl-min-hero-v2-desc {
    font-size: 14px;
  }
}
