.app-download-strip {
  margin-top: 48px;
  padding: 28px 32px;
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.app-download-strip h3 {
  margin: 0 0 6px;
  font-size: 1.25rem;
}

.app-download-strip p {
  margin: 0;
  opacity: 0.9;
  font-size: 15px;
}

.app-download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-tags a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.feature-tags a:hover {
  color: var(--green);
}


.card-grid--four {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1100px) {
  .card-grid--four {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 820px) {
  .card-grid--four {
    grid-template-columns: 1fr;
  }

  .app-download-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}
