/* ── Section ── */
.ticker-section {
    background: #0a0a0a;
    padding: 5rem 0;
    position: relative;
    border-top: 1px solid #3a1010;
    border-bottom: 1px solid #3a1010;
}
 
/* ── Header ── */
.ticker-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}
 
.ticker-header-label {
    display: inline-block;
    background: rgb(220, 65, 65);
    color: white;
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
 
.ticker-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: #ffffff;
    margin: 0 0 0.6rem;
}
 
.ticker-header p {
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    color: #666666;
}
 
/* ── Fade-Masken links & rechts ── */
.ticker-fade-wrap {
    position: relative;
}
 
.ticker-fade-wrap::before,
.ticker-fade-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 180px;
    z-index: 2;
    pointer-events: none;
}
 
.ticker-fade-wrap::before {
    left: 0;
    background: linear-gradient(to right, #0a0a0a 0%, transparent 100%);
}
 
.ticker-fade-wrap::after {
    right: 0;
    background: linear-gradient(to left, #0a0a0a 0%, transparent 100%);
}
 
/* ── Overflow-Container – schneidet den Track ab ── */
.ticker-overflow {
    overflow: hidden;
    width: 100%;
}
 
/* ── Der scrollende Track ── */
.ticker-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: tickerRTL 30s linear infinite;
    will-change: transform;
}
 
/* Pause beim Hover */
.ticker-overflow:hover .ticker-track {
    animation-play-state: paused;
}
 
/* Keyframe: 0 → -50% (Track = 2× Inhalt, also nahtloser Loop) */
@keyframes tickerRTL {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
 
/* ── Einzelne Sponsor-Kachel ── */
.ticker-card {
    background: #1e1e1e;
    border: 1px solid #3a1010;
    border-radius: 12px;
    padding: 1.1rem 2.4rem;
    height: 80px;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
    cursor: default;
}
 
.ticker-card:hover {
    border-color: rgb(220, 65, 65);
    background: #2a0e0e;
    transform: scale(1.04);
}
 
/* Logo-Bild */
.ticker-card img {
    max-height: 46px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.3s ease;
    pointer-events: none;
    display: block;
}
 
.ticker-card:hover img {
    filter: grayscale(0%) brightness(1);
}
 
/* Text-Fallback (solange kein Logo vorhanden) */
.ticker-card .ticker-name {
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #666666;
    white-space: nowrap;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}
 
.ticker-card:hover .ticker-name {
    color: rgb(220, 65, 65);
}
 
/* ── Sponsor werden CTA ── */
.ticker-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 0 2rem;
}
 
.ticker-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid #6b1c1c;
    color: rgb(220, 65, 65);
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0.7rem 1.6rem;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
 
.ticker-cta-link:hover {
    background: rgb(220, 65, 65);
    border-color: rgb(220, 65, 65);
    color: #ffffff;
    transform: translateY(-2px);
}
 
/* ── Responsive ── */
@media (max-width: 768px) {
    .ticker-section { padding: 4rem 0; }
 
    .ticker-fade-wrap::before,
    .ticker-fade-wrap::after { width: 60px; }
 
    .ticker-card {
        min-width: 160px;
        height: 68px;
        padding: 0.9rem 1.6rem;
    }
}
 
@media (prefers-reduced-motion: reduce) {
    .ticker-track {
        animation: none;
    }
    .ticker-overflow {
        overflow-x: auto;
        scrollbar-width: none;
    }
}