/*
 * Minimal Style - Shared Components
 * Reusable UI elements: brand, dividers, cards
 * Prefix: fl-min-*
 */

/* === Brand / Logo === */

.fl-min-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.fl-min-brand__logo {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: #DC2626;
}

.fl-min-brand__text {
  font-size: 16px;
  font-weight: 300;
  color: #111111;
  letter-spacing: 0.02em;
}

/* === Section Header === */

.fl-min-section-header {
  margin-bottom: 64px;
}

.fl-min-section-header__label {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #DC2626;
  margin-bottom: 16px;
}

.fl-min-section-header__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 300;
  line-height: 1.15;
  color: #111111;
  letter-spacing: -0.02em;
}

.fl-min-section-header__subtitle {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 300;
  color: #999999;
  max-width: 520px;
}

.fl-min-section-header--center {
  text-align: center;
}

.fl-min-section-header--center .fl-min-section-header__subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* === Thin Dividers === */

.fl-min-divider {
  width: 100%;
  height: 1px;
  background-color: #E5E5E5;
  border: none;
}

.fl-min-divider--spaced {
  margin: 48px 0;
}

@media (min-width: 768px) {
  .fl-min-divider--spaced {
    margin: 64px 0;
  }
}

.fl-min-divider--short {
  width: 48px;
  background-color: #DC2626;
}

/* === Minimal Card === */

.fl-min-card {
  padding: 32px;
  border: 1px solid #E5E5E5;
  border-radius: 0;
}

@media (min-width: 768px) {
  .fl-min-card {
    padding: 48px;
  }
}

.fl-min-card--hover {
  transition: border-color 0.2s ease;
}

.fl-min-card--hover:hover {
  border-color: #111111;
}

/* === Minimal Grid === */

.fl-min-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .fl-min-grid {
    gap: 32px;
  }
}

.fl-min-grid--2 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .fl-min-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.fl-min-grid--3 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .fl-min-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .fl-min-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* === Minimal Tag / Pill === */

.fl-min-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 400;
  color: #999999;
  border: 1px solid #E5E5E5;
}

/* === Minimal Stat === */

.fl-min-stat {
  display: flex;
  flex-direction: column;
}

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

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

/* === Minimal Image === */

.fl-min-image {
  width: 100%;
  height: auto;
  display: block;
}

.fl-min-image--tint {
  opacity: 0.85;
}

/* === Minimal Stack === */

.fl-min-stack {
  display: flex;
  flex-direction: column;
}

.fl-min-stack--xs {
  gap: 4px;
}

.fl-min-stack--sm {
  gap: 8px;
}

.fl-min-stack--md {
  gap: 16px;
}

.fl-min-stack--lg {
  gap: 32px;
}

.fl-min-stack--xl {
  gap: 48px;
}

/* === Minimal Row === */

.fl-min-row {
  display: flex;
  align-items: center;
}

.fl-min-row--between {
  justify-content: space-between;
}

.fl-min-row--center {
  justify-content: center;
}

@media (max-width: 767px) {
  .fl-min-row--wrap {
    flex-wrap: wrap;
    gap: 16px;
  }
}
