
/* ---------- Rubrik-Blöcke mit Icon-Filtern ---------- */
.rb-kat-block { padding: 8px 24px 44px; }
.rb-kat-inner { max-width: var(--rb-container); margin: 0 auto; }

.rb-icon-chip-row { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; margin-bottom: 22px; }
.rb-icon-chip-row::-webkit-scrollbar { display: none; }
.rb-icon-chip {
  flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: 8px; width: 82px; text-align: center;
}
.rb-icon-chip-icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--rb-surface);
  display: flex; align-items: center; justify-content: center; color: var(--rb-green-dark);
  transition: background 0.15s ease, transform 0.15s ease;
}
.rb-icon-chip:hover .rb-icon-chip-icon { background: #E4EFCE; transform: translateY(-2px); }
.rb-icon-chip span:last-child { font-size: 12px; font-weight: 600; color: var(--rb-ink); line-height: 1.2; }

.rb-tile8-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.rb-tile8-card { border-radius: var(--rb-radius); overflow: hidden; box-shadow: var(--rb-shadow); background: #fff; position: relative; }
.rb-tile8-link { display: block; }
.rb-tile8-bild-wrap > a.rb-tile8-bild { position: absolute; inset: 0; display: block; }
.rb-tile8-info { display: block; padding: 12px 14px 14px; }
.rb-tile8-titel { font-weight: 700; font-size: 14px; margin: 0 0 4px; color: var(--rb-ink); }
.rb-tile8-metazeile { font-size: 12px; color: var(--rb-text-secondary); margin: 0 0 4px; }
.rb-ort { display: inline-flex; align-items: center; gap: 4px; color: var(--rb-ink); }
.rb-ort svg { flex-shrink: 0; color: var(--rb-green-dark); }
.rb-tile8-text { font-size: 12px; color: var(--rb-text-secondary); margin: 0; line-height: 1.4; }
.rb-punkt { color: var(--rb-border); }
.rb-heute-offen { color: var(--rb-green-dark); font-weight: 700; }
.rb-tile8-bild { position: relative; }
.rb-badge {
  position: absolute; top: 10px; left: 10px; padding: 5px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700; color: #fff; letter-spacing: 0.02em;
}
.rb-badge-premium { background: #2F5233; }
.rb-badge-top_tipp { background: #E4572E; }
.rb-badge-empfehlung_redaktion { background: var(--rb-green-dark); }
.rb-fav-btn {
  position: absolute !important; top: 10px !important; right: 10px !important; width: 34px !important; height: 34px !important; aspect-ratio: 1 / 1 !important; border-radius: 9px !important;
  background: rgba(30,30,28,0.45) !important; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  border: none !important; outline: none !important; box-shadow: none !important;
  display: flex !important; align-items: center !important; justify-content: center !important; color: var(--rb-ink); cursor: pointer; padding: 0 !important;
}
.rb-fav-btn svg { fill: none !important; stroke: #fff !important; stroke-width: 2 !important; width: 21px !important; height: 21px !important; }

.rb-fav-btn.rb-fav-aktiv { color: #fff; }
.rb-fav-btn.rb-fav-aktiv svg { fill: var(--rb-green) !important; stroke: var(--rb-green) !important; }

@media (max-width: 900px) {
  .rb-tile8-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .rb-tile8-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  
  .rb-icon-chip { width: 68px; }
  .rb-icon-chip-icon { width: 48px; height: 48px; }
}

.rb-tile8-bild-wrap { position: relative !important; overflow: hidden !important; width: 100% !important; height: 0 !important; padding-top: 75% !important; }
.rb-tile8-slider {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
  position: absolute; inset: 0;
}
.rb-tile8-slider::-webkit-scrollbar { display: none; }
.rb-tile8-slider .rb-tile8-bild {
  flex: 0 0 100%; scroll-snap-align: start; height: 100%; display: block;
  background-size: cover; background-position: center;
}

.rb-tile8-pfeil {
  position: absolute !important; top: 50% !important; transform: translateY(-50%) !important; width: 28px !important; height: 28px !important; border-radius: 50% !important;
  background: #fff !important; border: none !important; outline: none !important; box-shadow: 0 2px 6px rgba(0,0,0,0.25) !important;
  display: flex !important; align-items: center !important; justify-content: center !important; color: var(--rb-green-dark) !important; cursor: pointer; padding: 0 !important;
  opacity: 0; transition: opacity 0.15s ease; z-index: 2;
}
.rb-tile8-bild-wrap:hover .rb-tile8-pfeil { opacity: 1; }
.rb-tile8-pfeil svg { color: var(--rb-green-dark) !important; stroke: var(--rb-green-dark) !important; fill: none !important; }
.rb-tile8-pfeil { -webkit-tap-highlight-color: transparent; user-select: none; -webkit-user-select: none; }
.rb-tile8-pfeil-links { left: 8px; }
.rb-tile8-pfeil-rechts { right: 8px; }

.rb-tile8-punkte {
  position: absolute; bottom: 10px; left: 0; right: 0; display: flex; justify-content: center; gap: 4px; z-index: 2;
}
.rb-tile8-punkt { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.6); }
.rb-tile8-punkt-aktiv { background: #fff; transform: scale(1.3); }

@media (hover: none) {
  .rb-tile8-pfeil { display: none; }
}
@media (max-width: 700px) {
  .rb-tile8-pfeil { display: none !important; }
}
@media (max-width: 900px) {
  .rb-tile8-grid.rb-suche-tile8-grid { grid-template-columns: 1fr !important; }
}

.rb-gutschein-badge {
  position: absolute; bottom: 10px; left: 10px; padding: 5px 10px; border-radius: 999px;
  font-size: 10px; font-weight: 700; color: #fff; background: #B8860B; letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 4px; z-index: 2;
}
