/* =========================
   WHAT'S NEW
========================= */

.whats-new-section{
    padding:70px 0;
    background:#f8fafc;
}

.whats-new-section .section-header{
    text-align:center;
    margin-bottom:40px;
}

.whats-new-section .section-header h2{
    font-size:42px;
    font-weight:700;
    color:#1d293f;
    margin-bottom:15px;
}

.whats-new-section .section-header p{
    color:#666;
    max-width:600px;
    margin:15px auto 0;
    line-height:1.7;
}

/* Ticker Box */

.announcement-ticker{
    max-width:850px;
    height:180px;

    margin:0 auto 25px;

    background:#fff;

    border-radius:16px;

    border:1px solid #e5e7eb;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    overflow:hidden;
}

/* Ticker Content */

.ticker-content{
    display:flex;
    flex-direction:column;

    animation:ticker-scroll 20s linear infinite;
}

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

/* Ticker Item */

.ticker-item{
    display:flex;
    align-items:center;

    gap:12px;

    padding:18px 25px;

    text-decoration:none;

    color:#1d293f;

    border-bottom:1px solid #f3f4f6;

    transition:all .3s ease;
}

.ticker-item:hover{
    background:#eef5ff;
    color:var(--primary-blue);
    padding-left:35px;
}

.ticker-icon{
    color:var(--gold);
    font-size:14px;
    flex-shrink:0;
}

/* View All */

.announcement-link{
    text-align:center;
}

.announcement-link a{
    color:var(--primary-blue);
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.announcement-link a:hover{
    letter-spacing:.5px;
}

/* Animation */

@keyframes ticker-scroll{

    from{
        transform:translateY(0);
    }

    to{
        transform:translateY(-50%);
    }

}

/* Mobile */

@media (max-width:768px){

    .whats-new-section .section-header h2{
        font-size:34px;
    }

    .announcement-ticker{
        height:160px;
    }

    .ticker-item{
        padding:16px 18px;
        font-size:14px;
    }

}