/* Device support badges — Desktop / Android / iPhone */
.dl-devices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
  align-items: center;
}

.dl-device {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2rem;
  padding: 0.28rem 0.7rem 0.28rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.55);
  color: #e2e8f0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.dl-device-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.14);
  color: #7dd3fc;
  flex-shrink: 0;
}

.dl-device-icon.is-android {
  background: rgba(163, 230, 53, 0.14);
  color: #bef264;
}

.dl-device-icon.is-apple {
  background: rgba(226, 232, 240, 0.12);
  color: #f8fafc;
}

.dl-device-text {
  white-space: nowrap;
}

/* Place nicely in common hero layouts */
.ccdl-hero .dl-devices,
.ytdl-hero .dl-devices,
.pd-hero .dl-devices,
.pd-hero-main .dl-devices {
  margin-top: 0.85rem;
}

.ccdl-hero-aside .dl-devices,
.ytdl-hero-aside .dl-devices,
.pd-hero-aside .dl-devices {
  margin-top: 0.65rem;
  justify-content: flex-end;
}

@media (max-width: 640px) {
  .dl-devices {
    margin-top: 0.65rem;
  }

  .ccdl-hero-aside .dl-devices,
  .pd-hero-aside .dl-devices {
    justify-content: flex-start;
  }
}
