/* =========================================================
   CYRTIX — STREAM LIST PAGE
   Academic · Discipline-first · Professional
========================================================= */

/* ---------- HERO ---------- */
.stream-hero {
  min-height: 420px;
  display: flex;
  align-items: center;
  background: var(--cx-hero-gradient);
  border-bottom: var(--cx-border-thin) solid var(--cx-header-border);
}

.stream-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--cx-space-12);
  padding: var(--cx-space-16) 0;
}

.stream-hero-content {
  max-width: 720px;
}

.stream-hero-title {
  font-family: var(--cx-font-display);
  font-size: var(--cx-text-hero);
  font-weight: var(--cx-weight-extrabold);
  color: #fff;
  margin-bottom: var(--cx-space-4);
}

.stream-hero-subtitle {
  font-size: var(--cx-text-lg);
  color: var(--cx-slate-300);
  line-height: var(--cx-leading-relaxed);
}

.stream-hero-crest {
  height: 96px;
  opacity: 0.95;
  filter: drop-shadow(0 12px 36px rgba(0,224,255,0.25));
}

/* ---------- STREAM GROUPS ---------- */
.stream-groups {
  padding: var(--cx-space-16) 0;
  background: var(--cx-surface-900);
}

/* ---------- GROUP HEADER ---------- */
.stream-group {
  margin-bottom: var(--cx-space-20);
}

.stream-group-header {
  margin-bottom: var(--cx-space-8);
  padding-left: var(--cx-space-4);
  border-left: 4px solid var(--cx-cyan-500);
}

.stream-group-title {
  font-size: var(--cx-text-2xl);
  font-weight: var(--cx-weight-bold);
  color: #fff;
}

.stream-group-subtitle {
  margin-top: var(--cx-space-2);
  color: var(--cx-slate-400);
  font-size: var(--cx-text-base);
}

/* ---------- STREAM GRID ---------- */
.stream-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--cx-space-6);
}

/* ---------- STREAM CARD ---------- */
.stream-card {
  display: block;
  padding: var(--cx-space-6);
  border-radius: var(--cx-radius-card);
  background: var(--cx-surface-800);
  border: var(--cx-border-thin) solid var(--cx-white-a08);
  text-decoration: none;
  transition: border-color var(--cx-duration-base) var(--cx-ease-smooth),
              transform var(--cx-duration-base) var(--cx-ease-smooth);
}

.stream-card:hover {
  border-color: var(--cx-cyan-500);
  transform: translateY(-2px);
}

/* ---------- CARD CONTENT ---------- */
.stream-card-title {
  font-size: var(--cx-text-xl);
  font-weight: var(--cx-weight-semibold);
  color: #fff;
  margin-bottom: var(--cx-space-2);
}

.stream-card-subtitle {
  font-size: var(--cx-text-sm);
  color: var(--cx-slate-400);
  line-height: var(--cx-leading-relaxed);
  margin-bottom: var(--cx-space-4);
}

.stream-card-family {
  font-size: var(--cx-text-sm);
  color: var(--cx-cyan-400);
  font-weight: var(--cx-weight-medium);
  margin-bottom: var(--cx-space-4);
}

/* ---------- CTA ---------- */
.stream-card-cta {
  font-size: var(--cx-text-sm);
  font-weight: var(--cx-weight-medium);
  color: var(--cx-cyan-400);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .stream-hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .stream-hero-crest {
    margin-top: var(--cx-space-6);
  }
}

