/* ==========================================================================
   Recall Ticker – gemeinsame Leiste unter der Navigation
   ========================================================================== */

.recall-ticker {
  background: #eef1f4;
  border-bottom: 1px solid #d8dee6;
  color: #2a3640;
  font-size: 0.8125rem;
  line-height: 1.2;
}

.recall-ticker__inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
  height: 2.125rem;
  max-width: var(--maxw, 1180px);
  margin: 0 auto;
  padding: 0  clamp(0.75rem, 3vw, 2rem);
  box-sizing: border-box;
  overflow: hidden;
}

.recall-ticker__icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: #9a6b00;
}

.recall-ticker__icon-svg {
  display: block;
}

.recall-ticker__label {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #3a4650;
  white-space: nowrap;
}

.recall-ticker__label-long {
  display: none;
}

.recall-ticker__label-short {
  display: inline;
}

.recall-ticker__viewport {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.recall-ticker__slides {
  overflow: hidden;
}

.recall-ticker__slide {
  display: none;
}

.recall-ticker__slide.is-active:not([hidden]) {
  display: block;
  overflow: hidden;
}

.recall-ticker__slide[hidden] {
  display: none !important;
}

.recall-ticker__link {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.recall-ticker__link:hover,
.recall-ticker__link:focus-visible {
  color: var(--brand-blue, #1d70b8);
  outline: none;
}

.recall-ticker__link:focus-visible {
  outline: 2px solid var(--brand-blue, #1d70b8);
  outline-offset: 2px;
  border-radius: 0.2rem;
}

.recall-ticker__product {
  display: block;
  overflow: hidden;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.recall-ticker__controls {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.15rem;
}

.recall-ticker__btn {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.625rem;
  height: 1.625rem;
  margin: 0;
  padding: 0;
  border: 1px solid #c8d0d8;
  border-radius: 0.3rem;
  background: #fff;
  color: #3a4650;
  font-size: 0.85rem;
  line-height: 1;
  cursor: pointer;
}

.recall-ticker__btn:hover,
.recall-ticker__btn:focus-visible {
  border-color: #9aabb8;
  background: #f8fafb;
  color: var(--brand-blue, #1d70b8);
}

.recall-ticker__btn:focus-visible {
  outline: 2px solid var(--brand-blue, #1d70b8);
  outline-offset: 1px;
}

.recall-ticker__btn[aria-pressed="true"] .recall-ticker__pause-icon {
  display: none;
}

.recall-ticker__btn[aria-pressed="true"] .recall-ticker__play-icon {
  display: inline !important;
}

.recall-ticker__counter {
  display: none;
  flex-shrink: 0;
  margin-left: 0.15rem;
  color: #5a6772;
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.recall-ticker__all {
  flex-shrink: 0;
  margin-left: 0.15rem;
  padding: 0.2rem 0.45rem;
  border-radius: 0.3rem;
  color: var(--brand-blue, #1d70b8);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.recall-ticker__all:hover,
.recall-ticker__all:focus-visible {
  background: rgba(29, 112, 184, 0.08);
  outline: none;
}

.recall-ticker__all:focus-visible {
  outline: 2px solid var(--brand-blue, #1d70b8);
  outline-offset: 1px;
}

@media (min-width: 640px) {
  .recall-ticker {
    font-size: 0.875rem;
  }

  .recall-ticker__inner {
    height: 2.25rem;
    gap: 0.65rem;
  }

  .recall-ticker__label {
    font-size: 0.8125rem;
  }

  .recall-ticker__label-long {
    display: inline;
  }

  .recall-ticker__label-short {
    display: none;
  }

  .recall-ticker__counter {
    display: inline;
  }
}

@media (max-width: 639px) {
  .recall-ticker__inner {
    gap: 0.35rem;
    padding-inline: 0.65rem;
  }

  .recall-ticker__btn {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.78rem;
  }

  .recall-ticker__all {
    font-size: 0.72rem;
    padding: 0.15rem 0.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .recall-ticker__slide {
    transition: none;
  }
}
