.visitor-shell .sidebar {
  background: rgba(255, 255, 255, 0.82);
}

.visitor-hero-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.94), rgba(14, 165, 233, 0.78)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 20rem);
  border: 0;
}

.visitor-hero-card h2 {
  max-width: 560px;
  margin: 0;
  font-size: 1.7rem;
}

.visitor-hero-card p {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.86);
}

.quick-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 74px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, border-color 160ms ease;
}

.quick-link:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.36);
}

.schedule-day {
  border-left: 4px solid transparent;
}

.schedule-day.is-today {
  border-left-color: var(--primary);
}

.subject-card {
  position: relative;
  overflow: hidden;
}

.subject-card::after {
  content: "";
  position: absolute;
  top: -42px;
  right: -42px;
  width: 108px;
  height: 108px;
  border-radius: 999px;
  background: var(--subject-color, var(--primary));
  opacity: 0.12;
}

.org-chart {
  display: grid;
  gap: 12px;
}

.org-node {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.org-node:first-child {
  border-color: rgba(37, 99, 235, 0.36);
  box-shadow: var(--shadow-soft);
}

.vote-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.about-band {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 18px;
  align-items: stretch;
}

.motto {
  display: grid;
  place-items: center;
  min-height: 220px;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), #0f9f6e);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.motto strong {
  display: block;
  padding: 22px;
  font-size: 1.8rem;
  line-height: 1.15;
}
