.download-options {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin: 28px auto 0;
  text-align: left;
}

.download-option {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 18px;
  color: #fff;
  text-decoration: none;
  background: rgba(5, 41, 107, 0.2);
  transition: transform 0.2s, background 0.2s;
}

.download-option:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.download-option.featured {
  background: #fff;
  color: #0955ac;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.download-option b { display: block; font-size: 13px; }

.download-option small {
  margin: 3px 0 0 !important;
  color: inherit !important;
  opacity: 0.76;
  line-height: 1.45;
}

.download-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 19px;
}

.featured .download-icon { background: rgba(9, 85, 172, 0.1); }

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