.latest-updates-card{
    max-width:var(--page-max-width);
    margin:0px;

    background:#fff;
    border:1px solid var(--border);
    border-radius:12px;

    padding:18px 20px;

    box-shadow:0 6px 8px rgba(12,24,48,.06);

    box-sizing:border-box;
}


/* Header */

.latest-updates-header{
    display:flex;
    align-items:center;
    gap:12px;

    margin-bottom:15px;
    padding-bottom:12px;

    border-bottom:1px solid #e8edf2;
}


.latest-updates-header h2{
    margin:0;

    font-size:1.35rem;
    font-weight:700;

    color:#0B4A82;
}


/* Latest badge */

.latest-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:4px 10px;

    border-radius:15px;

    background:#dc143c;
    color:#fff;

    font-size:12px;
    font-weight:600;
}


/* News area */

.news-marquee{
    height:150px;

    overflow-y:auto;
    overflow-x:hidden;

    padding-right:8px;

    box-sizing:border-box;
}


/* Each notice */

.news-item{
    display:flex;
    align-items:flex-start;

    gap:12px;

    padding:10px 12px;

    margin-bottom:6px;

    border-radius:8px;

    color:#0d1b3d;

    text-decoration:none;

    font-size:16px;
    font-weight:500;

    line-height:1.5;

    transition:all .2s ease;
}


/* Hover */

.news-item:hover{
    background:#f4f8fc;

    color:#0B4A82;

    text-decoration:none;

    transform:translateX(3px);
}


/* Green dot */

.news-dot{
    width:8px;
    height:8px;

    min-width:8px;

    margin-top:8px;

    border-radius:50%;

    background:#20a447;
}


/* Title */

.news-title{
    flex:1;
}


/* Scrollbar */

.news-marquee::-webkit-scrollbar{
    width:6px;
}

.news-marquee::-webkit-scrollbar-track{
    background:#f1f1f1;
    border-radius:10px;
}

.news-marquee::-webkit-scrollbar-thumb{
    background:#c4cbd2;
    border-radius:10px;
}

.news-marquee::-webkit-scrollbar-thumb:hover{
    background:#9ca5ae;
}


/* Mobile */

@media(max-width:768px){

    .latest-updates-card{
        margin:12px;
        padding:15px;
    }

    .latest-updates-header h2{
        font-size:1.15rem;
    }

    .news-item{
        font-size:15px;
        padding:9px 8px;
    }

    .news-marquee{
        height:180px;
    }
}