/* ============================= */
/* Sieger (Senioren) – Timeline  */
/* ============================= */

.winners-page{
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 18px 60px;
}

/* Hero */
.winners-hero{
    margin-bottom: 18px;
}

.winners-hero__inner{
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 18px;
}

.winners-subtitle{
    margin: 0 0 12px;
    text-align: center;
    font-weight: 600;
    color: #555;
    line-height: 1.6;
}

/* Sprungmarken */
.winners-jumplist{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.winners-jumplist a{
    text-decoration: none;
    font-weight: 600;
    color: #0b2a4a;
    border: 1px solid rgba(11,42,74,0.35);
    padding: 6px 12px;
    border-radius: 20px;
}

.winners-jumplist a:hover{
    background: #0b2a4a;
    color: #fff;
}

/* Grid */
.winners-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

/* Cards */
.winners-card{
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.10);
}

/* Heading Blau/Gold */
.winners-card h3{
    margin: 0 0 18px;
    font-size: 1.1rem;
    color: #0b2a4a;
    text-align: center;
    position: relative;
    padding-bottom: 6px;
}

.winners-card h3::after{
    content: "";
    display: block;
    width: 52px;
    height: 2px;
    background: #c9a14a;
    margin: 8px auto 0;
    border-radius: 2px;
}

/* Timeline */
.timeline{
    position: relative;
    margin: 0;
}

/* Jahrzehnt-Heading */
.timeline-decade{
    margin: 18px 0 10px;
    font-size: 1rem;
    color: #0b2a4a;
    text-align: left;
}

/* Eintrag */
.timeline-item{
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.10);
}

.timeline-item:last-child{
    border-bottom: none;
}

.timeline-year{
    font-weight: 700;
    color: #0b2a4a;
    text-align: right;
    white-space: nowrap;
}

.timeline-content{
    color: #333;
    line-height: 1.5;
}

/* Footer */
.winners-footer{
    margin-top: 18px;
    text-align: center;
}

.winners-back{
    text-decoration: none;
    font-weight: 600;
    color: #0b2a4a;
    border: 1px solid rgba(11,42,74,0.35);
    padding: 8px 14px;
    border-radius: 20px;
    display: inline-block;
}

.winners-back:hover{
    background: #0b2a4a;
    color: #fff;
}

/* Responsive */
@media (max-width: 900px){
    .winners-grid{
        grid-template-columns: 1fr;
    }

    .timeline-item{
        grid-template-columns: 72px 1fr;
    }

    .timeline-year{
        text-align: left;
    }
}
