/* =====================================================================
   Atletico Arten — Homepage statistics band (aa-stats)
   Matches public_html/redesign-front-end/styles.css (.aa-stats)
   Preview: solid teal band — no background photo.
   ===================================================================== */

:root {
  --aa-stats-teal: #1d3533;
  --aa-stats-muted: #8e9a99;
  --aa-stats-maxw: 1440px;
}

.aa-stats {
  background: var(--aa-stats-teal);
  background-image: none;
  color: #fff;
  position: relative;
}

/* Kill legacy #statistics-section photo overlay if old id is ever reused */
.aa-stats::after {
  content: none;
  display: none;
}

.aa-stats__inner {
  max-width: var(--aa-stats-maxw);
  margin: 0 auto;
  width: 100%;
  padding: 28px 20px;
  box-sizing: border-box;
}

.aa-stats__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.aa-stats__title {
  margin: 0;
  color: #fff;
  font-family: "Montserrat Alternates", system-ui, sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  flex: 1 1 100%;
}

.aa-stat {
  flex: 1 1 0;
  min-width: 90px;
  text-align: center;
}

.aa-stat__num {
  font-family: "Montserrat Alternates", system-ui, sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 56px;
  line-height: 1;
}

.aa-stat__label {
  font-family: "Montserrat Alternates", system-ui, sans-serif;
  color: var(--aa-stats-muted);
  font-size: 15px;
  margin-top: 6px;
}

@media (min-width: 768px) {
  .aa-stats__inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .aa-stats__title {
    font-size: 30px;
    flex: 1 1 220px;
  }

  .aa-stat__num {
    font-size: 84px;
  }

  .aa-stat__label {
    font-size: 20px;
  }
}

@media (min-width: 1200px) {
  .aa-stats__inner {
    padding: 80px 40px;
  }

  .aa-stats__row {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 24px;
  }

  .aa-stats__title {
    font-size: 36px;
    line-height: 43px;
    flex: 0 0 auto;
    max-width: 400px;
  }

  .aa-stat__num {
    font-size: 121px;
  }

  .aa-stat__label {
    font-size: 24px;
  }
}
