/* ── TICKER ── */


.ticker-wrap {
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.6rem 0;
    background: rgba(102, 45, 145, 0.06);
}

.ticker-track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.ticker-item {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    flex-shrink: 0;
    margin-bottom: 0;
}

.ticker-item span {
    color: var(--primary-color);
    margin-right: 0.5rem;
}


/* ── YEAR SECTION ── */
.year-section {
    margin-bottom: 3.5rem;
}

.year-label {
    font-size: clamp(45px, 1rem + 2vw, 50px);
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.year-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(251, 13, 105, 0.4), transparent);
}

/* ── PRESS LIST ── */
.press-list {
    display: flex;
    flex-direction: column;
}

.press-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
    border-radius: 4px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin: 0 -0.5rem;
}

.press-item:hover {
    background: rgba(102, 45, 145, 0.12);
}

.press-item p {
    margin-bottom: 0;
}

.press-item:hover .item-more {
    opacity: 1;
    color: var(--secondary-color);
}

.item-date {
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--primary-color);
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 115px;
}

p.item-title {
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.45;
    flex: 1;
    transition: color 0.15s;
}

.press-item:hover .item-title {
    color: #fff;
}

@media (max-width:767px) {

    a.knowMore,
    .knowMore {
        padding: 0;
        margin-left: 0;
    }
    .press-item{
        flex-direction: column;
        gap: 0.5rem;
    }
}