/*
Theme Name: Nagarik Pana
Theme URI: https://protech.com/nagarik-pana
Author: ProTech Nepal
Author URI: https://protechnepal.com.np
Description: A custom news theme.
Version: 1.0.1
Text Domain: nagarikpana
*/

:root {
    --primary-color: #004f94;
    --secondary-color: #e67817;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #ffffff;
    --bg-light: #f5f5f5;
    --font-primary: 'Mukta', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);

    color: var(--text-dark);
    margin: 0;
    padding: 0;
    background-color: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Clearfix */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* Layout Styles - Scoped to Main Content Container */
.main-content-container .content-area {
    float: left;
    width: 70%;
}

.main-content-container .widget-area {
    float: right;
    width: 25%;
    position: -webkit-sticky;
    position: sticky;
    top: 80px;
    height: fit-content;
}

.hero-grid-layout {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    align-items: flex-start;
}

@media (max-width: 768px) {

    .main-content-container .content-area,
    .main-content-container .widget-area {
        float: none;
        width: 100%;
    }

    .main-content-container .widget-area {
        margin-top: 30px;
        position: static;
        height: auto;
    }
}

.main-content-container {
    margin-top: 30px;
}

/* Sidebar Ads Gap */
.protech-single-sidebar-ads>div:not(:last-child) {
    margin-bottom: 10px;
}