/* =========================================================
   PROFILE – ACCORDION / CARDS (mobile first)
   ========================================================= */

.profile-shell{
  padding: 14px;
  max-width: 1180px;
  margin: 0 auto 92px auto; /* bottom-nav space */
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.profile-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.profile-actions .status{
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
}

.section-title{
  font-weight: 900;
  margin: 0 0 10px 0;
  color: var(--evonik-purple);
  letter-spacing: .2px;
}

.muted, .small.muted{
  color: var(--muted);
}

.req{ color: var(--evonik-purple); font-weight: 900; }

/* salary preview box */
.salary-preview-box{
  background: rgba(87,6,140,0.06);
  border: 1px dashed rgba(87,6,140,0.35);
  border-radius: 14px;
  padding: 12px;
  font-size: 12px;
  line-height: 1.35;
}

/* checkbox rows */
.check{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  background: rgba(255,255,255,0.9);
}
.check input[type="checkbox"]{
  width: 18px;
  height: 18px;
}

/* bAV active fields */
.bav-field{
  margin-top: 12px;
}
.bav-field.hidden{
  display:none;
}

/* Make cards inside accordion slightly tighter on desktop */
@media (min-width: 900px){
  .profile-shell{ padding: 16px; }
}

/* Danger delete button already in global; keep small spacing */
.btn-delete-profile{ margin-top: 12px; }

/* Mini-Kacheln (Urlaub & Zeitkonto) – reuse dashboard hero-kpis/hero-kpi */
#card-gutstunden .hero-kpis{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
#card-gutstunden .hero-kpi input{
  width: 100%;
}

@media (max-width: 900px){
  #card-gutstunden .hero-kpis{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  #card-gutstunden .hero-kpis{ grid-template-columns: 1fr; }
}
