/* ===============================
   SHORT NEWS – FULL WIDTH GRID
=============================== */

html, body{
    margin:0;
    padding:0;
    overflow-x:hidden; /* 🔥 removes horizontal scroll */
    font-family:'Segoe UI Variable',sans-serif;
}

.shortnews-wrapper{
    padding:60px 5%;
}

/* Full width responsive grid */
.shortnews-overlay-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap:25px;
}

/* Card */
.shortnews-card{
    background:#ffffff;
    border-radius:16px;
    padding:20px;
    border:1px solid #eef1f5;
    box-shadow:0 6px 20px rgba(0,0,0,0.05);
    transition:all .3s ease;
}

/* Hover */
.shortnews-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 28px rgba(0,0,0,0.08);
}

/* Tag */
.news-tag{
    display:inline-block;
    font-size:0.65rem;
    font-weight:600;
    padding:5px 12px;
    border-radius:30px;
    background:#f4f6fa;
    color:#555;
    margin-bottom:12px;
    text-transform:uppercase;
}

/* Title */
.shortnews-card h4{
    font-size:1rem;
    font-weight:700;
    margin-bottom:8px;
    color:#111827;
    line-height:1.4;
}

/* Description */
.shortnews-card p{
    font-size:0.88rem;
    line-height:1.6;
    color:#6b7280;
}

/* Meta */
.news-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:15px;
    font-size:0.75rem;
    color:#9aa3af;
}

.news-meta a{
    text-decoration:none;
    font-weight:600;
    color:#ff512f;
    transition:.2s;
}

.news-meta a:hover{
    color:#dd2476;
}