/* Events hub — card grid. Chrome tokens come from /calcutta/style.css. */

body.events-hub .app-main {
  padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
}

.events-lead {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-muted);
  margin: 0 0 16px;
}

.events-card-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.events-type-card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  text-decoration: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  background: var(--bg-cream-card-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 16px 14px;
  box-shadow: var(--shadow-sm);
}

.events-type-card:hover,
.events-type-card:focus-visible {
  border-color: var(--color-gold);
  outline: none;
}

.events-type-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-forest);
  color: var(--color-gold);
  font-size: 1.15rem;
}

body.dark-mode .events-type-icon {
  background: rgba(212, 175, 55, 0.14);
}

.events-type-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.events-type-name {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--color-forest);
  line-height: 1.15;
}

.events-type-desc {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-muted);
  line-height: 1.35;
}

.events-type-go {
  color: var(--color-gold-dark);
  font-size: 0.9rem;
}
