/* PERSONEL ANA SAYFASI — MERKEZİ YETKİLENDİRME (2026-08-17)
   Mevcut V33 tasarım dilini (demo-theme.css değişkenleri, kart yüzeyi,
   yarıçap, gölge) AYNEN kullanır -- yeni bir görsel dil / dev banner /
   fazladan açıklama alanı EKLENMEZ (kullanıcının açık şartı). */

.it-personnel-home .ph-root {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 4px 0 24px;
}

.it-personnel-home .ph-title {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--v33-text);
  letter-spacing: .01em;
}

/* --- İşlerim --------------------------------------------------------- */
.it-personnel-home .ph-stats {
  display: grid;
  /* 4 karo geniş ekranda tek satır, dar ekranda 2'li, çok darda 1'li --
     ayrı bir media query'ye gerek kalmadan (auto-fit + minmax). */
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.it-personnel-home .ph-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 16px;
  background: var(--v33-surface);
  border: 1px solid var(--v33-border);
  border-radius: var(--v33-radius);
  box-shadow: var(--v33-shadow);
  text-decoration: none;
  color: inherit;
  transition: border-color .15s ease, transform .15s ease;
}

.it-personnel-home .ph-stat:hover {
  border-color: var(--v33-brand);
  transform: translateY(-1px);
}

.it-personnel-home .ph-stat:focus-visible {
  outline: 2px solid var(--v33-focus);
  outline-offset: 2px;
}

.it-personnel-home .ph-stat__value {
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--v33-brand-strong);
}

.it-personnel-home .ph-stat__label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--v33-muted);
}

/* --- Kısayollar ------------------------------------------------------ */
.it-personnel-home .ph-shortcuts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 10px;
}

.it-personnel-home .ph-shortcut {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 12px 14px;
  background: var(--v33-surface);
  border: 1px solid var(--v33-border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--v33-text);
  transition: border-color .15s ease, background .15s ease;
}

.it-personnel-home .ph-shortcut:hover {
  border-color: var(--v33-brand);
  background: var(--v33-surface-soft);
}

.it-personnel-home .ph-shortcut:focus-visible {
  outline: 2px solid var(--v33-focus);
  outline-offset: 2px;
}

.it-personnel-home .ph-shortcut b {
  font-size: .9rem;
  font-weight: 600;
}

/* Dokunmatik hedef boyutu -- saha kullanıcısı çoğunlukla telefonda. */
@media (max-width: 720px) {
  .it-personnel-home .ph-stat { padding: 16px 14px; }
  .it-personnel-home .ph-stat__value { font-size: 1.6rem; }
  .it-personnel-home .ph-shortcut { min-height: 56px; }
}
