/* ==========================================================================
   AREA SOCI AIA — Versione "brand AIA"
   CSS nuovo e pulito, token e linguaggio visivo identici al sito attivo
   (aiaticino.ch): palette azzurro/navy, Inter + Playfair Display,
   card bianche, ombre morbide, gradient sui bottoni primari.
   ========================================================================== */

/* ---------- Reset e token ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Token identici al sito attivo */
  --primary: #097bc0;
  --primary-dark: #0a5a8a;
  --secondary: #2b4a72;
  --accent: #4fc3f7;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --light: #fafbfc;
  --white: #ffffff;
  --text-dark: #1a2332;
  --text-light: #64748b;
  --border: #e2e8f0;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  --gradient-light: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--light);
  color: var(--text-dark);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

.hidden { display: none !important; }

button {
  font-family: inherit;
  cursor: pointer;
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* ---------- Login ---------- */
#login-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1.5rem;
  background: var(--gradient);
}

.login-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 420px;
}

.login-card h1 {
  color: var(--primary);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.login-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.login-card .btn-primary {
  width: 100%;
  margin-top: 0.5rem;
}

.login-footer {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
}

.login-footer a {
  color: var(--primary);
  font-weight: 600;
}

/* ---------- Layout app ---------- */
#app {
  display: flex;
  min-height: 100vh;
}

#main-content {
  flex: 1;
  padding: 2.5rem 2rem;
  overflow-y: auto;
  max-width: 1100px;
}

/* ---------- Sidebar ---------- */
#sidebar {
  width: 250px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--secondary) 0%, #1a2f4a 100%);
  color: var(--white);
  padding: 1.5rem 1rem;
  position: sticky;
  top: 0;
  height: 100vh;
}

.sidebar-header {
  padding: 0 0.75rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 1.5rem;
}

.sidebar-logo {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.sidebar-subtitle {
  display: block;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sidebar-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.nav-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.7rem 0.75rem;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.nav-btn.active {
  background: var(--gradient);
  color: var(--white);
  font-weight: 600;
  box-shadow: var(--shadow);
}

.sidebar-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.sidebar-user {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  word-break: break-all;
  padding: 0 0.75rem;
}

.btn-logout {
  margin: 0 0.75rem;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  transition: var(--transition);
}

.btn-logout:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

/* ---------- Intestazioni di pagina ---------- */
.page-header {
  margin-bottom: 2rem;
}

.page-header h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.page-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ---------- Bottoni ---------- */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  border: none;
  box-shadow: var(--shadow);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover:not(:disabled) {
  background: var(--gradient-light);
  transform: translateY(-2px);
}

/* ---------- Dashboard: statistiche ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.stat-value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-note {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Barra avanzamento affiliazione: piena a inizio periodo,
   si svuota verso la scadenza. Colore per soglie di giorni rimanenti. */
.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 0.6rem;
}

.progress-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.4s ease;
}

.progress-fill--ok { background: var(--success); }
.progress-fill--warn { background: var(--warning); }
.progress-fill--danger { background: var(--danger); }

/* ---------- Dashboard: accesso rapido ---------- */
.dashboard-quick-links h3 {
  color: var(--secondary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.quick-link-btn {
  padding: 1.1rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary);
  transition: var(--transition);
}

.quick-link-btn:hover {
  background: var(--gradient);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ---------- Comunicazioni ---------- */
.announcement-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.announcement-card:hover {
  box-shadow: var(--shadow-lg);
}

.announcement-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.announcement-date {
  font-size: 0.85rem;
  color: var(--text-light);
}

.announcement-title {
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.announcement-body {
  color: var(--text-dark);
  white-space: pre-line;
}

/* Badge tipologia */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge--ufficiale { background: var(--gradient-light); color: var(--primary-dark); }
.badge--community { background: #ecfdf5; color: #047857; }
.badge--evento    { background: #fffbeb; color: #b45309; }
.badge--muted     { background: var(--light); color: var(--text-light); border: 1px solid var(--border); }
.badge--scadenza  { background: #fef2f2; color: #b91c1c; }  /* rosso: urgenza scadenze */

/* Comunicazioni in evidenza: accento più marcato del bordo di default */
.announcement-card--evidenza {
  border-left-width: 6px;
  border-left-color: var(--secondary);
  background: var(--gradient-light);
}
.announcement-pin {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.announcement-download { margin-top: 0.75rem; }

/* ---------- Template Canva ---------- */
.template-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.template-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.template-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.template-preview {
  background: var(--gradient-light);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.template-preview iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.template-placeholder {
  color: var(--primary-dark);
  font-size: 0.9rem;
  opacity: 0.7;
}

.template-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.template-info h3 {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 0.35rem;
}

.template-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  flex: 1;
  margin-bottom: 1rem;
}

.template-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.template-actions .btn-primary,
.template-actions .btn-secondary {
  width: 100%;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
}

/* ---------- Risorse ---------- */
.resource-category {
  margin-bottom: 2rem;
}

.resource-category h3 {
  color: var(--secondary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}

.resource-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.resource-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  transition: var(--transition);
}

.resource-item:hover {
  box-shadow: var(--shadow-lg);
}

.resource-info {
  display: flex;
  flex-direction: column;
  min-width: 200px;
}

.resource-info strong {
  color: var(--text-dark);
}

.resource-info span {
  font-size: 0.9rem;
  color: var(--text-light);
}

.resource-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.download-count {
  font-size: 0.85rem;
  color: var(--text-light);
  white-space: nowrap;
}

.download-btn {
  padding: 0.55rem 1.25rem;
  font-size: 0.9rem;
}

/* ---------- Barra filtri biblioteca ---------- */
.risorse-filtri {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.risorse-search {
  width: 100%;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.filtro-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filtro-chip {
  padding: 0.3rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.filtro-chip:hover {
  border-color: var(--primary);
}

.filtro-chip--attivo {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* Tag metadati risorsa — riga compatta con una gerarchia chiara:
   il "tipo" è un chip pieno di accento; parole chiave e ambito legale sono
   chip "ghost" (solo contorno), volutamente in secondo piano. */
.resource-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

/* Base comune ai tag risorsa: piccoli, definiti, in caso naturale
   (niente MAIUSCOLO forzato, che appesantiva la riga). */
.resource-tags .badge,
.resource-tags .tag-ambito {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

/* Tipo di risorsa: unico chip pieno, ancora visiva della riga. */
.badge--tipo {
  background: #e3edf8;
  color: var(--primary-dark);
  font-weight: 600;
}

/* Parole chiave e ambito legale: chip "ghost" (contorno sottile). */
.badge--evidenza,
.tag-ambito {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--border);
}

/* ---------- Account ---------- */
.profile-list {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.profile-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
}

.profile-row:nth-child(odd) {
  background: var(--light);
}

.profile-row dt {
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.9rem;
}

.profile-row dd {
  color: var(--text-dark);
  word-break: break-word;
}

/* Le tue risorse scaricate (elenco personale del socio) */
.account-downloads {
  margin-bottom: 1.5rem;
}

.account-downloads h3 {
  margin-bottom: 0.75rem;
}

.download-history {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.download-history-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.download-history-title {
  color: var(--text-dark);
  font-weight: 600;
}

.download-history-date {
  font-size: 0.85rem;
  color: var(--text-light);
  white-space: nowrap;
}

/* Lista storico condivisa (richieste del socio) + pillola stato */
.history-list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
}

.history-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}

.history-title {
  font-weight: 600;
  color: var(--secondary);
}

.history-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}

.history-date {
  color: var(--text-light);
  font-size: 0.85rem;
}

.request-status {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
}

.request-status--attesa {
  background: var(--gradient-light);
  color: var(--primary-dark);
}

.request-status--gestita {
  background: var(--secondary);
  color: var(--white);
}

#update-form-container {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

#update-form-container h3 {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* ---------- Form ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  max-width: 640px;
}

.field {
  margin-bottom: 1.25rem;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.field label span {
  color: var(--danger);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
}

.field textarea {
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--accent);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(9, 123, 192, 0.15);
}

.form-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

/* ---------- Messaggi di stato ---------- */
.error-message {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: var(--danger);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.loading-text,
.empty-text,
.error-text {
  padding: 2rem 1rem;
  text-align: center;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px dashed var(--border);
}

.loading-text { color: var(--text-light); }
.empty-text   { color: var(--text-light); }
.error-text   { color: var(--danger); border-color: #fecaca; }

/* ---------- Notifiche toast ---------- */
#notifications {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.notification {
  padding: 0.8rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  max-width: 360px;
  box-shadow: var(--shadow-lg);
  animation: slideIn 0.3s ease-out;
}

.notification--success { background: var(--success); color: var(--white); }
.notification--error   { background: var(--danger);  color: var(--white); }
.notification--info    { background: var(--primary); color: var(--white); }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ---------- Responsive ---------- */
/* Nota: la resa mobile <=900px (bottom nav, header sticky, tessera) vive nel
   foglio dedicato css/area-soci-mobile.css. Qui resta solo il fine-tuning
   <=600px, valido dentro il layout app-like. */
@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .stat-card {
    padding: 1rem;
  }

  .stat-value {
    font-size: 1.4rem;
  }

  .profile-row {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .form-card {
    padding: 1.25rem;
  }

  .resource-item {
    flex-direction: column;
    align-items: stretch;
  }

  .resource-meta {
    justify-content: space-between;
  }
}

/* ---------- Pannello admin: tab ---------- */
.admin-tabs {
  display: flex;
  gap: 0.25rem;
  border-bottom: 2px solid var(--border);
  margin: 1.5rem 0;
}

.admin-tab {
  padding: 0.6rem 1.1rem;
  border: none;
  background: none;
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}

.admin-tab:hover { color: var(--primary); }

.admin-tab--attivo {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.admin-risorse-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

/* ---------- Card richieste (pannello admin — tab Richieste) ---------- */
.admin-tab-panel[data-tab="richieste"] { margin-top: 1.5rem; }

.request-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  margin: 0.75rem 0;
  background: var(--white);
}
.request-card__head { display: flex; justify-content: space-between; gap: 0.75rem; align-items: baseline; }
.request-card__badge { font-size: 0.75rem; padding: 0.1rem 0.5rem; border-radius: 10px; }
.request-card__badge--nuova { background: var(--gradient-light); color: var(--primary-dark); }
.request-card__badge--gestita { background: var(--light); color: var(--text-light); }
.request-row { margin: 0.25rem 0; }
.request-card__msg { white-space: pre-wrap; margin: 0.75rem 0 0; padding-top: 0.75rem; border-top: 1px solid var(--border); }

/* ---------- Card risorsa (pannello admin — tab Risorse) ---------- */
.admin-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  margin: 0.75rem 0;
  background: var(--white);
}
.admin-card__meta { margin: 0.2rem 0; font-size: 0.9rem; color: var(--text-light); }
.admin-card__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.admin-card__visibile { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.9rem; }

/* ---------- Pannello admin: layout wrap, hint campi, opzioni avanzate ---------- */
.admin-wrap { max-width: 640px; margin: 2.5rem auto; padding: 0 1rem; }
.form-hint { font-size: 0.8rem; color: var(--text-light); margin: 0.25rem 0 0.75rem; }
.admin-avanzate { margin-top: 1.5rem; border: 1px solid var(--border); border-radius: var(--radius); padding: 0.75rem 1rem; }
.admin-avanzate > summary { cursor: pointer; font-weight: 600; color: var(--primary); }
.request-card__action { margin-top: 0.75rem; }

/* ---------- Accessibilità: riduzione animazioni ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
