.downloads-section { padding: 56px 5vw 80px; background: var(--bg); }

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.downloads-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow: 0 2px 12px rgba(0,80,140,0.07);
}

.downloads-region {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(0,151,167,0.15);
}

.downloads-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.downloads-link {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background 0.12s, color 0.12s;
  line-height: 1.4;
}
.downloads-link:hover {
  background: rgba(0,151,167,0.08);
  color: var(--teal);
}
.downloads-arrow {
  color: var(--teal);
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
  line-height: 1;
}

.downloads-coming-soon {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted, #7a8a99);
  padding: 6px 8px;
}

@media (max-width: 600px) {
  .downloads-grid { grid-template-columns: 1fr; }
}
