/* Waipuna Rise — download card component (shared, sitewide)
 * Used for Floor Plans & Downloads style sections. */

.download-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.download-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
}
.download-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(0,103,85,.07);
  display: flex; align-items: center; justify-content: center;
}
.download-icon img { width: 28px; height: auto; }
.download-title { font-family: 'jost'; font-size: 1.05rem; font-weight: 600; color: #1a1a1a; }
.download-meta { font-size: .82rem; color: #6b7280; letter-spacing: .02em; }
.download-btn { padding: 10px 30px; font-size: .85rem; border: none; cursor: pointer; }
