/* Transport tile (public transport departures) */
.tile-transport .tile-header h2 { color: var(--blue); }
.tile-transport .tile-header { cursor: pointer; user-select: none; transition: background 0.15s; }
.tile-transport .tile-header:hover { background: var(--surface2); }

/* Detail section (three-state toggle) */
.transport-detail { display: none; }
.transport-detail.open { display: block; }
.tile-transport .tile-badge { background: var(--blue-bg); color: var(--blue); }

.mob-section {
  margin-bottom: 0.9rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}
.mob-section:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.mob-section-title {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.mob-stop-group { margin-bottom: 0.7rem; }
.mob-stop-group:last-child { margin-bottom: 0; }
.mob-stop-name {
  font-size: 0.65rem;
  color: var(--text-dim);
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.mob-departure {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
  font-size: 0.78rem;
}
.mob-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  background: #555;
}
.mob-type-bus { background: #1a73e8; }
.mob-type-tram { background: #e91e63; }
.mob-type-sbahn { background: #2e7d32; }
.mob-type-metro { background: #f76d05; }
.mob-type-regional { background: #7b1fa2; }
.mob-type-national { background: #c62828; }
.mob-type-ferry    { background: #00838f; }

.mob-direction {
  flex: 1;
  font-size: 0.73rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mob-countdown {
  font-weight: 700;
  font-size: 0.78rem;
  min-width: 3.5rem;
  text-align: right;
  white-space: nowrap;
}

.mob-no-deps {
  font-size: 0.72rem;
  color: var(--text-dim);
  padding: 0.2rem 0;
  font-style: italic;
}
.mob-live-badge {
  color: var(--green);
  font-size: 0.6rem;
  margin-left: 0.2rem;
  vertical-align: middle;
}
