.download-options-section {
  padding-top: 8px;
}

.download-options-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.download-option-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid #dfe5ef;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
}

.download-option-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 18px;
}

.download-platform-icon {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  background: #e9efff;
  color: #2057c9;
  font-size: 16px;
  line-height: 1;
}

.download-group + .download-group {
  margin-top: 14px;
}

.download-group-title {
  margin: 0 0 7px;
  color: #667085;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.download-choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.download-choice {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid #d7deea;
  border-radius: 8px;
  background: #f8fafc;
  color: #1f2937;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.15;
  text-decoration: none;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}

.download-choice::after {
  content: "↗";
  margin-left: 4px;
  color: #7b879b;
  font-size: 11px;
}

.download-choice[download]::after {
  content: "↓";
}

.download-choice:hover,
.download-choice:focus-visible {
  border-color: #2057c9;
  background: #edf3ff;
  color: #1748a8;
  outline: none;
}

@media (max-width: 920px) {
  .download-options-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .download-options-grid {
    grid-template-columns: 1fr;
  }

  .download-option-card {
    padding: 17px;
  }

  .download-choice {
    min-height: 38px;
  }
}
