.os-section__subtitle {
  color: #94a3b8;
}

.os-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .os-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .os-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }
}

.os-card {
  display: flex;
  aspect-ratio: 1 / 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  background-color: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.os-card:hover {
  border-color: #cbd5e1;
  box-shadow:
    0 4px 6px -1px rgba(15, 23, 42, 0.06),
    0 2px 4px -2px rgba(15, 23, 42, 0.04);
}

.os-card__logo {
  width: auto;
  height: 2.75rem;
  max-width: 80%;
  object-fit: contain;
}

@media (min-width: 640px) {
  .os-card__logo {
    height: 3rem;
  }
}

.os-card__name {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  color: #334155;
}
