/* Autos discovery — Platform 21.2.2 */
.adisc-page { padding: 2rem 0 4rem; }
.adisc-container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
.adisc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.adisc-card {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: .5rem;
  padding: 1.5rem 1rem; background: #fff; border: 1px solid #e2e8f0; border-radius: 1rem;
  text-decoration: none; color: #0f172a; transition: all .2s;
}
.adisc-card:hover { border-color: #059669; box-shadow: 0 8px 24px rgba(5,150,105,.12); transform: translateY(-2px); }
.adisc-card i { font-size: 1.75rem; color: #059669; }
