/* Личный кабинет */
.dashboard-section {
  padding: 3rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.container h2 {
  font-size: 1.6rem;
  color: #1e1e1e;
  margin-bottom: 0.5rem;
}

.role {
  color: #666;
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* Сетка карточек */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 0.5rem;
}

.card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Блок помощи */
.help-box {
  text-align: center;
  padding: 1rem;
  background-color: #f5f6f7;
  border-radius: 8px;
  color: #666;
  font-size: 0.95rem;
}

.help-box a {
  color: #1e1e1e;
  font-weight: 500;
  text-decoration: none;
}

.help-box a:hover {
  text-decoration: underline;
}

/* Адаптив */
@media (max-width: 480px) {
  .dashboard-section {
    padding: 2rem 1rem;
  }

  .container h2 {
    font-size: 1.5rem;
  }
}