/* Mobile-specific rules for Reach legacy awareness badges */
.reach-page .reach-mobile-aware-badges {
  display: none;
}

@media (max-width: 767.98px) {
  .reach-page .reach-mobile-aware-badges {
    display: flex !important;
    flex-direction: row;
    gap: 10px;
    margin: 0 0 12px 0;
    padding: 0;
    justify-content: space-between;
  }
  .reach-page .reach-aware-badge {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(27, 29, 60, 0.1);
    background-image: var(--tile-gradient);
    background-clip: padding-box;
    border: none;
    border-radius: 0;
    padding: 12px 10px 10px;
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.2),
      0 6px 16px rgba(0, 0, 0, 0.4);
  }
  .reach-page .reach-aware-badge-label {
    font-size: 12px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 8px;
    text-align: center;
  }
  .reach-page .reach-aware-badge-value {
    font-size: 28px;
    font-weight: 300;
    color: inherit;
    text-shadow:
      0 0 8px rgba(255, 255, 255, 0.16),
      0 0 2px rgba(255, 255, 255, 0.08);
  }
  .reach-page .reach-aware-badge-desc {
    font-size: 13px;
    font-weight: 300;
    color: #e0e0e0;
    margin-top: 4px;
    text-align: center;
    line-height: 1.3;
    padding: 0 2px 2px 2px;
  }
    .reach-page .reach-aware-badge-label {
      font-size: 12px;
      font-weight: 300;
      color: #fff;
      margin-bottom: 8px;
      text-align: center;
    }
    .reach-page .reach-aware-badge-value {
      font-size: 28px;
      font-weight: 300;
      color: #fff;
      text-shadow:
        0 0 8px rgba(255, 255, 255, 0.16),
        0 0 2px rgba(255, 255, 255, 0.08);
    }
    .reach-page .reach-aware-badge-desc {
      font-size: 13px;
      font-weight: 300;
      color: #fff;
      margin-top: 4px;
      text-align: center;
      line-height: 1.3;
      padding: 0 2px 2px 2px;
    }
