/**
 * dashboard.css
 * Page profil/accueil client Radio Control
 */

/* ── Grille des action cards ── */
.rts-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

/* ── Tabs Voir / Modifier ── */
.rts-page-tabs {
  display: flex;
  border-bottom: 0.5px solid var(--rts-border);
  margin-bottom: 24px;
  gap: 0;
  list-style: none;
  padding: 0;
}
.rts-page-tabs__item a {
  display: block;
  font-size: 12px;
  padding: 8px 18px;
  color: var(--rts-grey);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -0.5px;
  transition: color 0.12s;
}
.rts-page-tabs__item a:hover { color: var(--rts-red); }
.rts-page-tabs__item.is-active a,
.rts-page-tabs__item a.is-active {
  color: var(--rts-red);
  border-bottom-color: var(--rts-red);
  font-weight: 500;
}

/* ── Bloc user profil Drupal ── */
.profile .field { margin-bottom: 8px; font-size: 13px; }
.profile .field__label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--rts-grey);
  margin-bottom: 2px;
}
