/* ============================================================
   STATS SMALL — plugin.css
   Prefix: ow-stats-
   ============================================================ */

:root {
  --ow-stats-navy: #003a66;
  --ow-stats-red:  #e02454;
  --ow-stats-max:  1180px;
}

.ow-stats-strip {
  background: var(--ow-stats-navy);
  padding: 36px 0;
}

.ow-stats-wrap {
  max-width: var(--ow-stats-max);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 700px) {
  .ow-stats-wrap {
    padding: 0 32px;
  }
}

.ow-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 20px;
}

@media (min-width: 640px) {
  .ow-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.ow-stats-stat {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

@media (min-width: 640px) {
  .ow-stats-stat {
    padding: 0 24px 0 0;
    position: relative;
  }
  .ow-stats-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 30px;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: rgba(255,255,255,.1);
  }
}

.ow-stats-ico {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.ow-stats-ico svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255,255,255,.58);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ow-stats-n {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 4px;
}

.ow-stats-n sup {
  font-size: .85rem;
  color: var(--ow-stats-red);
  font-weight: 700;
  vertical-align: super;
  margin-left: 1px;
}

.ow-stats-l {
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.42);
  line-height: 1.45;
}

/* Mobile compact */
@media (max-width: 639px) {
  .ow-stats-strip {
    padding: 18px 0;
  }
  .ow-stats-grid {
    gap: 14px 12px;
  }
  .ow-stats-ico {
    width: 30px;
    height: 30px;
    border-radius: 7px;
  }
  .ow-stats-ico svg {
    width: 14px;
    height: 14px;
  }
  .ow-stats-n {
    font-size: 1.3rem;
    margin-bottom: 2px;
  }
  .ow-stats-n sup {
    font-size: .7rem;
  }
  .ow-stats-l {
    font-size: .64rem;
  }
}
