/**
 * DDL Theme — Ticker de noticias
 *
 * @package DDL_Theme
 */

.ticker-wrap {
  background: var(--ink);
  overflow: hidden;
  white-space: nowrap;
  height: 34px;
  display: flex;
  align-items: center;
}
.ticker-label {
  flex-shrink: 0;
  background: var(--flash);
  color: var(--white);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0 18px;
  height: 34px;
  line-height: 34px;
  margin-right: 24px;
}
.ticker-inner {
  display: inline-flex;
  animation: ticker 35s linear infinite;
  gap: 0;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  font-family: var(--f-display);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.ticker-item span {
  color: var(--flash);
  margin-right: 8px;
  font-weight: 700;
}
/* Newsletter mini en ticker */
.ticker-nl {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
}
.ticker-nl input {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 12px;
  color: var(--white);
  font-family: var(--f-body);
  font-size: 0.75rem;
  outline: none;
}
.ticker-nl input::placeholder { color: rgba(255,255,255,0.3); }
.ticker-nl button {
  background: var(--flash);
  color: var(--white);
  border: none;
  padding: 4px 12px;
  font-family: var(--f-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
