.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;
}

.college-alumni-groups {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 14px 0 18px 0;
}

.college-alumni-group {
  background: #fff7f2;
  border: 1px solid #ffd8c2;
  border-left: 4px solid var(--orange);
  border-radius: 14px;
  padding: 18px;
}

.college-alumni-group-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.college-alumni-group input,
.college-alumni-group textarea {
  width: 100%;
}

.college-alumni-group textarea {
  min-height: 130px;
  resize: vertical;
}

.site-content-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .college-alumni-group {
    padding: 16px 14px;
  }

  .college-alumni-group-header {
    grid-template-columns: 1fr;
  }

  .college-alumni-group-header .btn-small {
    width: 100%;
    text-align: center;
  }

  #addAlumniGroup {
    width: 100%;
    text-align: center;
  }
}

@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;
  }

  .site-content-actions {
    flex-direction: column;
    gap: 10px;
  }

  .site-content-actions .btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    border-radius: 10px;
  }

  /* Make primary action stand out */
  .site-content-actions .btn-primary {
    font-weight: 700;
    box-shadow: 0 6px 14px rgba(249, 115, 22, 0.25);
  }

  /* Slightly softer secondary button */
  .site-content-actions .btn-secondary {
    opacity: 0.95;
  }
}