/*

Theme Name: The NaijaWide News
Theme URI: https://thenaijawide.ng
Description: A mobile-friendly theme.
Version: June 2026
Author: Find Me
Author URI: https://facebook.com/ 
Tags: silver, white, one-column

// This file is part of the Gbedu360 Mobile Theme for WordPress
// https://gbedu360.com 
//
// Copyright (c) 2021 Genesis Inc, Ltd. All rights reserved.
// https://gebdu360.com
//
// Released under the GPL license
// http://www.opensource.org/licenses/gpl-license.php
//
// **********************************************************************
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
// **********************************************************************

*/

 /* ==========================
THENAIJAWIDE NEWS CARD SYSTEM
========================== */

.tnw-card{
    display:flex;
    gap:16px;
    background:#fff;
    padding:15px;
    border:1px solid #ececec;
    border-radius:12px;
    margin-bottom:15px;
    transition:.3s ease;
}

.tnw-card:hover{
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.tnw-card-image{
    width:140px;
    min-width:140px;
    overflow:hidden;
    border-radius:10px;
}

.tnw-card-image img{
    width:100%;
    height:100px;
    object-fit:cover;
    display:block;
}

.tnw-card-content{
    flex:1;
}

.tnw-category{
    display:inline-block;
    background:#008751;
    color:#fff;
    padding:4px 10px;
    border-radius:20px;
    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:8px;
}

.tnw-card-title{
    font-size:18px;
    line-height:1.4;
    margin-bottom:8px;
}

.tnw-card-title a{
    color:#111;
}

.tnw-card-title a:hover{
    color:#008751;
}

.tnw-card-excerpt{
    color:#666;
    font-size:14px;
    margin-bottom:10px;
}

.tnw-meta{
    display:flex;
    gap:15px;
    color:#888;
    font-size:12px;
}

@media(max-width:768px){

.tnw-card{
    flex-direction:column;
}

.tnw-card-image{
    width:100%;
}

.tnw-card-image img{
    height:220px;
}

}