/* ==========================================================================
   2. STATS BANNER BLOCK
   ========================================================================== */

.stats-banner-outline {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 150px;
  width: 100%;
  border-top: 11px solid var(--purple-outline);
  border-bottom: none;
  background-color: #0F0445;
  position: relative;
  z-index: 10;
}

.stats-banner-outline .hero-max-container {
  max-width: 1320px;
  width: 100%;
}

.stats-banner-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 10px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-num-yellow {
  color: var(--warning-yellow);
  font-size: clamp(2.5rem, 3.5vw, 4rem);
  font-weight: 800;
  line-height: 0.9;
}

.stat-lbl-box {
  display: flex;
  flex-direction: column;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.stat-lbl-box span {
  font-size: 18px;
}

.stat-lbl-text {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.25;
}

.stat-dot-badge {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #D9D9D9;
  border-radius: 50%;
  margin: 0 16px;
  flex-shrink: 0;
}

.laurel-flower-img {
  max-height: 90px;
  width: auto;
  object-fit: contain;
}

/* Responsive Overrides - Stats Banner */
@media (max-width: 1399.98px) {
  .stats-banner-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 14px;
  }

  .stat-dot-badge {
    margin: 0 10px;
  }
}
@media (max-width: 450px) {
	.stat-item-highlight .stat-num-yellow{
		font-size:42px !important;
	}
}
@media (max-width: 767.98px) {
  .stats-banner-outline {
    height: auto !important;
    min-height: auto !important;
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    border-width: 8px 0px 8px 0px !important;
    border-style: solid !important;
    border-color: #FFC800 !important;
  }

  .stats-banner-wrapper {
    flex-direction: column;
    gap: 14px;
    padding: 0;
  }

  .stat-item-highlight {
    justify-content: center;
    gap: 10px;
  }

  .stat-item-highlight .stat-num-yellow {
    font-size: 58px;
    font-weight: 800;
    line-height: 1;
  }

  .stat-item-highlight .stat-lbl-box {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.15;
    text-align: left;
  }

  .stat-item-pill {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(153, 153, 153, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 20px;
    justify-content: center;
    width: 100%;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.05);
  }

  .stat-item-pill .stat-num-yellow {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #fff !important;
  }

  .stat-item-pill .stat-lbl-text {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
  }
}
