.dashboard-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  border-top: 4px solid var(--orange);
}

.dashboard-hero h1 {
  margin-bottom: 8px;
}

.dashboard-hero p:last-child {
  color: var(--text-soft);
}

.dashboard-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.dashboard-stat {
  text-align: center;
}

.dashboard-stat h3 {
  color: var(--text-soft);
  margin-bottom: 10px;
}

.dashboard-stat p {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
}

.dashboard-cycles-card {
  margin-top: 8px;
}

.dashboard-cycle-card {
  border-left: 4px solid var(--orange);
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.status-open {
  color: var(--orange-dark);
  font-weight: 700;
}

.status-closed {
  color: var(--text-soft);
  font-weight: 700;
}

@media (max-width: 900px) {
  .dashboard-hero {
    flex-direction: column;
  }

  .dashboard-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  /* ===== HERO ===== */
  .dashboard-hero {
    padding: 18px 14px;
    gap: 14px;
  }

  .dashboard-hero h1 {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .dashboard-hero p {
    font-size: 0.95rem;
  }

  /* ===== ACTION BUTTONS ===== */
  .dashboard-actions {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }

  .dashboard-actions .btn {
    width: 100%;
    text-align: center;
  }

  /* ===== STATS GRID ===== */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dashboard-stat {
    padding: 18px 14px;
  }

  .dashboard-stat h3 {
    font-size: 0.9rem;
  }

  .dashboard-stat p {
    font-size: 1.6rem;
  }

  /* ===== SECTION TITLE ===== */
  .section-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .section-title-row h2 {
    font-size: 1.4rem;
  }

  /* ===== CYCLE CARDS ===== */
  .session-card.dashboard-cycle-card {
    padding: 16px 14px;
  }

  .session-info h3 {
    font-size: 1.1rem;
  }

  .session-info p {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  /* ===== CARD ACTIONS ===== */
  .session-actions {
    width: 100%;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .session-actions .btn {
    width: 100%;
    text-align: center;
  }

  /* ===== GENERAL CARD SPACING ===== */
  .dashboard-cycles-card {
    padding: 18px 14px;
  }
}