/* Heute-Tab — nutzt ausschließlich CSS-Variablen aus index.html */

.ht-root {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  color: var(--ink, #e8e6e1);
  font-family: inherit;
}

.ht-header {
  flex: 0 0 auto;
  padding: 10px 14px 8px;
}

.ht-eyebrow {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--title-sub, rgba(240, 238, 233, .62));
  margin-bottom: 4px;
}

.ht-titel {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: .04em;
  color: var(--title-ink, #f2f0ea);
  line-height: 1.15;
  margin: 0 0 8px;
}

.ht-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.ht-chip {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid var(--line, #2a2a34);
  background: var(--panel2, #1e1e26);
  color: var(--text, #e8e6e1);
  white-space: nowrap;
}

.ht-chip-route {
  color: #e8b93e;
  border-color: rgba(232, 185, 62, .45);
}

.ht-chip-countdown {
  color: var(--fuji, #6ea8fe);
  border-color: rgba(110, 168, 254, .45);
  background: rgba(110, 168, 254, .1);
}

.ht-chip-live {
  color: var(--accent, #e84f8a);
  border-color: var(--accent, #e84f8a);
  background: var(--accent-soft, rgba(232, 79, 138, .14));
}

.ht-chip-archiv {
  color: var(--dim, #8d8b86);
}

.ht-day-nav {
  flex: 0 0 auto;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 0 12px 10px;
  scrollbar-width: none;
}

.ht-day-nav::-webkit-scrollbar {
  display: none;
}

.ht-day {
  flex: 0 0 auto;
  min-width: 54px;
  padding: 7px 6px;
  text-align: center;
  border-radius: 12px;
  border: 1px solid var(--line, #2a2a34);
  background: var(--panel2, #1e1e26);
  cursor: pointer;
  color: var(--ink-dim, #8d8b86);
  font-size: 10px;
  font-family: inherit;
  line-height: 1.2;
}

.ht-day b {
  display: block;
  color: var(--text, #e8e6e1);
  font-size: 12px;
  margin-bottom: 1px;
}

.ht-day small {
  display: block;
  font-size: 9px;
  margin-top: 2px;
  color: var(--dim, #8d8b86);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 64px;
}

.ht-day.active {
  border-color: var(--accent, #e84f8a);
  background: var(--accent-soft, rgba(232, 79, 138, .14));
  color: var(--accent, #e84f8a);
}

.ht-day.heute-mark {
  box-shadow: inset 0 0 0 1px rgba(110, 168, 254, .4);
  border-color: var(--fuji, #6ea8fe);
}

.ht-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 0 12px 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--scroll-thumb, #2e2e3a) transparent;
}

.ht-card {
  background: var(--glass, rgba(12, 14, 20, .72));
  border: 1px solid var(--glass-border, rgba(255, 255, 255, .06));
  border-radius: var(--radius-lg, 18px);
  padding: 12px 12px 10px;
  margin-bottom: 10px;
  backdrop-filter: var(--glass-blur, blur(24px) saturate(1.2));
  -webkit-backdrop-filter: var(--glass-blur, blur(24px) saturate(1.2));
}

.ht-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--title-ink, #f2f0ea);
}

.ht-sub {
  font-size: 11px;
  color: var(--ink-dim, #8d8b86);
  line-height: 1.45;
  margin: 0 0 8px;
}

.ht-hinweis {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px;
  border-radius: 12px;
  background: var(--field-soft, rgba(8, 10, 16, .42));
  border-left: 3px solid var(--fuji, #6ea8fe);
}

.ht-hinweis-icon {
  font-size: 20px;
  width: 26px;
  text-align: center;
  flex: 0 0 auto;
}

.ht-hinweis strong {
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
}

.ht-hinweis span {
  display: block;
  font-size: 11px;
  color: var(--content-copy, #c9c7c2);
  line-height: 1.4;
}

.ht-hinweis a {
  display: inline-block;
  margin-top: 4px;
  font-size: 11px;
  color: var(--fuji, #6ea8fe);
  text-decoration: none;
}

.ht-spot {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 9px 6px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}

.ht-spot:hover,
.ht-spot.done {
  background: var(--panel2, #1e1e26);
  border-color: var(--glass-border, rgba(255, 255, 255, .06));
}

.ht-check {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1.5px solid var(--line, #2a2a34);
  background: var(--field, rgba(8, 10, 16, .55));
  flex: 0 0 auto;
  margin-top: 1px;
  cursor: pointer;
  font-size: 12px;
  color: transparent;
  font-family: inherit;
  padding: 0;
  display: grid;
  place-items: center;
}

.ht-check.is-done {
  background: var(--accent, #e84f8a);
  border-color: var(--accent, #e84f8a);
  color: #fff;
}

.ht-nr {
  flex: 0 0 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-soft, rgba(232, 79, 138, .14));
  color: var(--accent, #e84f8a);
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.ht-spot-body {
  flex: 1;
  min-width: 0;
}

.ht-spot-name {
  font-size: 13px;
  font-weight: 600;
}

.ht-spot.done .ht-spot-name {
  text-decoration: line-through;
  opacity: .72;
}

.ht-spot-desc {
  font-size: 11px;
  color: var(--content-copy, #c9c7c2);
  margin-top: 2px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ht-spot-kat {
  flex: 0 0 auto;
  font-size: 9.5px;
  color: var(--ink-dim, #8d8b86);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 4px;
}

.ht-event {
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 122, 47, .08);
  border: 1px solid rgba(255, 122, 47, .25);
  margin-bottom: 6px;
}

.ht-event:last-child {
  margin-bottom: 0;
}

.ht-event-next {
  opacity: .88;
}

.ht-event-dot {
  color: #ff7a2f;
  font-size: 14px;
  flex: 0 0 auto;
}

.ht-event strong {
  display: block;
  font-size: 13px;
}

.ht-event small {
  display: block;
  color: var(--ink-dim, #8d8b86);
  font-size: 11px;
  margin-top: 2px;
}

.ht-event-desc {
  margin: 4px 0 0;
  font-size: 11px;
  color: var(--content-copy, #c9c7c2);
  line-height: 1.4;
}

.ht-transfer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
  text-align: center;
  padding: 4px 0;
}

.ht-transfer-stadt {
  font-family: "Fraunces", Georgia, serif;
  font-size: 14px;
  font-weight: 600;
}

.ht-transfer-mitte {
  font-size: 11px;
  color: var(--ink-dim, #8d8b86);
}

.ht-transfer-mitte b {
  display: block;
  color: var(--text, #e8e6e1);
  font-size: 13px;
  margin: 2px 0;
}

.ht-transfer-fuss {
  margin: 6px 0 0;
}

.ht-leer {
  padding: 8px 4px;
  font-size: 11.5px;
  color: var(--dim, #8d8b86);
  margin: 0;
}
