/* ─── Home Page ─────────────────────────────────────────────── */
.home-main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: calc(100vh - 60px);
  padding: 8rem 2rem 2rem 2rem;
}

.home-panels {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.home-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 220px;
  padding: 2.5rem 2rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: #1a202c;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  gap: 1rem;
  text-align: center;
}

.home-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.13);
}

.home-panel-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  transition: background 0.18s ease;
}

.home-panel:hover .home-panel-icon {
  background: #dbeafe;
}

.home-panel-icon svg {
  width: 32px;
  height: 32px;
}

.home-panel-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a202c;
}

.home-panel-desc {
  font-size: 0.875rem;
  color: #718096;
  line-height: 1.5;
}
