/* Day page (/connections) — builds on index.css shared shell + stream cards */

.day-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 215, 0, 0.34);
  background: rgba(0, 54, 96, 0.5);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.day-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--gold);
  color: #003660;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.14);
}

.day-nav-btn.disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
}

.day-nav-title {
  margin: 0;
  text-align: center;
  color: var(--gold);
  font-weight: 900;
  line-height: 1.2;
  font-size: clamp(1.05rem, 3.2vw, 1.4rem);
}

.day-nav-title__school {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.day-nav-title__date {
  display: block;
  margin-top: 2px;
  font-size: 0.86em;
  font-weight: 800;
  opacity: 0.92;
}

.day-view-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(320px, 100%);
  min-height: 44px;
  margin: 22px auto 12px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--gold);
  color: #003660;
  font-weight: 800;
  font-size: 1.08rem;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.day-view-more:hover {
  background: var(--dark-gold);
}

.stream-feed {
  margin-top: 10px;
}

.stream-feed > .stream-card,
.stream-feed > .stream-status,
.stream-feed > .stream-native-ad {
  margin-top: 0;
}

.stream-feed > .stream-card + .stream-card,
.stream-feed > .stream-card + .stream-native-ad,
.stream-feed > .stream-native-ad + .stream-card {
  margin-top: 12px;
}

.burst-particle {
  position: fixed;
  pointer-events: none;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  will-change: transform, opacity;
  transform: translate(-50%, -50%);
  opacity: 1;
}

@media (max-width: 600px) {
  .day-nav {
    gap: 8px;
    padding: 8px 10px;
  }

  .day-nav-btn {
    width: 38px;
    height: 38px;
  }

  .day-nav-title {
    font-size: 1.05rem;
  }
}
