/*
Theme Name: GeneratePress Child
Template: generatepress
Version: 1.0
*/

body {
    font-family: Noto Sans Devanagari, Arial, sans-serif;
}
a {
    text-decoration: none;
    color: #000;
}
a:hover {
    color: #d32f2f;
}
/* लेआउट और ग्रिड */
.news-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1.5fr 0.5fr; /* बेहतर अनुपात */
    gap: 30px;
    padding: 0 15px;
}

/* Featured Post सुधार */
.featured-post {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 25px;
}
.featured-post img {
    transition: transform 0.5s ease;
    display: block;
}
.featured-post:hover img {
    transform: scale(1.05);
}

.category-badge {
    background: #e31e24;
    color: #fff;
    padding: 5px 12px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 11px;
}

/* न्यूज़ लिस्ट (लेफ्ट साइड) */
.list-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}
.list-item h3 { margin: 0 0 5px; color: #222; transition: 0.3s; }
.list-item h3:hover { color: #e31e24; }
.list-item time { font-size: 12px; color: #888; }

/* साइडबार और स्टिकी इफेक्ट */
.sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}
.widget-title {
    border-left: 4px solid #e31e24;
    padding-left: 10px;
    margin-bottom: 20px;
    font-size: 20px;
}

/* साइडबार कार्ड्स */
.news-row-card .card-link {
    display: flex;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 15px;
}
.news-row-card .thumb img {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    object-fit: cover;
}
.news-row-card h4 {
    font-size: 14px;
    margin: 0;
    color: #333;
    line-height: 1.4;
}

/* मोबाइल रिस्पॉन्सिव */
@media (max-width: 992px) {
    .news-wrapper { grid-template-columns: 1fr; }
    .sidebar { position: static; }
}
