/* Global Styles & Resets */
/* ======================================== */
:root {
    --primary: #1a237e;
    --secondary: #ff5722;
    --dark: #121212;
    --light: #f5f5f5;
    --gray: #757575;
    --light-gray: #e0e0e0;
    --white: #ffffff;
    --black: #000000;
    --transition: all 0.3s ease;
    --mobile-nav-height: 60px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
    font-size: 16px;
}

/* Responsive font sizes */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    .hero-grid{
        grid-template-columns: 1fr !important;
    }
    .news-grid .grid-layout{
        grid-template-columns: 1fr !important;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    /* Improve touch target size */
    display: inline-flex;
    align-items: center;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Mobile-first approach */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
}

/* Header & Navigation */
/* ======================================== */
.header {
    background-color: var(--dark);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary);
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 9999;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

/* Navigation Menu */
.nav ul {
    display: flex;
    gap: 25px;
}

.nav ul li a {
    font-weight: 500;
    font-size: 1rem;
    padding: 5px 0;
    position: relative;
}

.nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav ul li a:hover::after,
.nav ul li.active a::after {
    width: 100%;
}

.nav ul li.active a {
    color: var(--secondary);
}

/* Search Box */
.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 5px 10px;
    transition: var(--transition);
}

.search-box:hover {
    background: rgba(255, 255, 255, 0.15);
}

.search-box input {
    background: transparent;
    border: none;
    color: var(--white);
    padding: 5px 10px;
    width: 180px;
    outline: none;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-box button {
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    color: var(--secondary);
}

/* Main Content Generic Styles */
/* ======================================== */
.main-content {
    padding: 30px 0;
    min-height: calc(100vh - 300px);
}

/* Home Page Specific Styles */
/* ======================================== */
/* Hero Section */
.hero-section {
    margin-bottom: 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}

.hero-main .article-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hero-main .article-card .article-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 15px;
}

.hero-main .article-card .article-content {
    padding: 0 10px;
}

.hero-main .article-tag {
    background: var(--secondary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 10px;
}

.hero-main .article-card h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-main .article-card p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.hero-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.secondary.article-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.secondary.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.secondary .article-image {
    height: 150px;
    background-size: cover;
    background-position: center;
}

.secondary .article-content {
    padding: 15px;
}

.secondary .article-tag {
    background: var(--primary);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 0.7rem;
    display: inline-block;
    margin-bottom: 8px;
}

.secondary h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.3;
}

.secondary .article-meta {
    color: var(--gray);
    font-size: 0.8rem;
}

/* Category Navigation */
.category-nav {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 15px;
}

.category-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: thin;
}

.category-scroll::-webkit-scrollbar {
    height: 5px;
}

.category-scroll::-webkit-scrollbar-thumb {
    background: var(--light-gray);
    border-radius: 5px;
}

.cat-btn {
    background: var(--white);
    border: 1px solid var(--light-gray);
    color: var(--dark);
    padding: 8px 18px;
    border-radius: 30px;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
    font-weight: 500;
}

.cat-btn:hover,
.cat-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* News Grid Section */
.news-grid .grid-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 30px;
}

.articles-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

/* Basic News Card Styles */
.article-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.article-card .article-image {
    height: 210px;
    background-size: cover;
    background-position: center;
}

.article-card .article-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-card .article-tag {
    background: var(--primary);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 0.7rem;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 8px;
}

.article-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.3;
}

/* Mobile responsive article cards */
@media (max-width: 768px) {
    .article-card .article-image {
        height: 180px;
    }
    
    .article-card .article-content {
        padding: 12px;
    }
    
    .article-card h3 {
        font-size: 1rem;
    }
    
    .article-card p {
        font-size: 0.9rem;
    }
}

.article-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.article-meta {
    display: flex;
    gap: 12px;
    color: var(--gray);
    font-size: 0.8rem;
    margin-top: auto;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Sidebar Styles */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.trending-widget,
.newsletter-widget,
.ad-widget,
.tags-widget {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.trending-widget h3,
.newsletter-widget h3,
.tags-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
    color: var(--primary);
}

.trending-widget ul li {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.trending-widget ul li:last-child {
    border-bottom: none;
}

.trending-widget ul li span {
    background: var(--primary);
    color: var(--white);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-right: 10px;
}

.trending-widget ul li a {
    font-weight: 500;
    transition: var(--transition);
    flex: 1;
}

.trending-widget ul li a:hover {
    color: var(--secondary);
}

.newsletter-widget p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.newsletter-widget form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-widget input {
    padding: 10px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-family: inherit;
}

.newsletter-widget button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-widget button:hover {
    background: #0d1a6b;
}

.ad-placeholder {
    height: 250px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-weight: 600;
    border: 2px dashed var(--light-gray);
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: #f0f0f0;
    color: var(--dark);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.tag:hover {
    background: var(--primary);
    color: var(--white);
}

/* Category Page Styles */
/* ======================================== */
.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.category-title h1 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.category-title p {
    color: var(--gray);
    font-size: 1.1rem;
}

.category-filter select {
    padding: 8px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    background: var(--white);
    font-family: inherit;
    cursor: pointer;
}
.category-news {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
}
.category-news .news-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.category-article {
    display: flex;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.category-article:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-thumb {
    flex: 0 0 250px;
    overflow: hidden;
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-article:hover .article-thumb img {
    transform: scale(1.05);
}

.article-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-info .article-tag {
    align-self: flex-start;
    margin-bottom: 10px;
}

.article-info h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.article-info h2 a:hover {
    color: var(--secondary);
}

.article-info p {
    color: var(--gray);
    margin-bottom: 15px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
}

.page-btn:hover,
.page-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.page-btn.prev,
.page-btn.next {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.page-btn.prev:hover,
.page-btn.next:hover {
    background: #0d1a6b;
}

/* Detail Page Styles */
/* ======================================== */
.breadcrumb {
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: var(--gray);
}

.breadcrumb a:hover {
    color: var(--secondary);
}

.article-detail .article-header {
    margin-bottom: 25px;
}

.article-detail .article-tag {
    background: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 15px;
}

.article-detail h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 700;
}

.article-meta {
    display: flex;
    gap: 20px;
    color: var(--gray);
    font-size: 0.9rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-image {
    border-radius: 10px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray);
    padding: 10px;
    font-style: italic;
}

.article-content {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content h2 {
    font-size: 1.6rem;
    margin: 30px 0 15px;
    color: var(--primary);
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 8px;
}

.article-content ul {
    margin: 15px 0 25px 30px;
    list-style: disc;
}

.article-content ul li {
    margin-bottom: 8px;
}

.quote-block {
    background: #f8f9fa;
    border-left: 4px solid var(--secondary);
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
}

.quote-author {
    margin-top: 10px;
    font-weight: 600;
    font-style: normal;
    color: var(--primary);
}

.article-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.article-tags span {
    font-weight: 600;
    margin-right: 10px;
}

.article-tags a {
    background: #f0f0f0;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-right: 5px;
    display: inline-block;
    margin-bottom: 5px;
}

.article-tags a:hover {
    background: var(--primary);
    color: var(--white);
}

.article-footer {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.share-buttons {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.share-buttons h4 {
    margin-bottom: 15px;
    color: var(--dark);
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.facebook {
    background: #3b5998;
    color: white;
}

.share-btn.linkedin {
    background: #0077b5;
    color: white;
}

.share-btn.link {
    background: #f0f0f0;
    color: var(--dark);
}

.share-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.author-box {
    display: flex;
    gap: 20px;
    align-items: center;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.author-social a {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    text-align: center;
    line-height: 30px;
    margin-right: 8px;
    transition: var(--transition);
}

.author-social a:hover {
    background: var(--secondary);
}

.related-articles {
    margin-bottom: 40px;
}

.related-articles h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
    color: var(--primary);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.related-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.related-image {
    height: 140px;
    background-size: cover;
    background-position: center;
}

.related-content {
    padding: 15px;
}

.related-content h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.related-content span {
    color: var(--gray);
    font-size: 0.8rem;
}

/* Comments Section */
.comments-section {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.comments-section h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.comment-form {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--light-gray);
}

.comment-form textarea {
    width: 100%;
    min-height: 100px;
    padding: 15px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 15px;
}

.newstitle {
    display: -webkit-inline-box !important;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.wlc1 {
    -webkit-line-clamp: 1;
}

.wlc2 {
    -webkit-line-clamp: 2;
}

.wlc3 {
    -webkit-line-clamp: 3;
}

.wlc4 {
    -webkit-line-clamp: 4;
}

.type {
    text-transform: capitalize;

}
.nav-aside-menu li{
    text-transform: capitalize;
}
.typetwo {
    font-size: 1.5rem;
    color: #b50000;
    font-weight: bold;
}

#news-type {
    font-weight: bold;
}
/* a,a:visited,a:hover,a:active,a:focus{
    color: #fff;
    text-decoration: none;
} */
#news-date {
    float: right;
    font-size: 1rem;
}

.news-detail {
    display: block;
    height: 2rem;
    text-transform: capitalize;
}
#news-article{
    margin-top: .5em;
    font-size: 20px;
}
.mb10{
    margin-bottom: 10px;
}
.pt80{
    padding-top: 80px;
}
.nav-container{
    width: calc(100% - 100px);
}
/* .menu,.menu-toggle{
    display: none;
} */
.clearfix img{
    width:220px
}
.alpha img{
    width: 100%;
}
.flexstyle{
    display: flex;
    padding-top: 1rem;
}
.articletext{
    padding: 15px 46px 0 30px;
    font-size: 1.1rem;
    text-decoration: none;
}
#load-more-btn{
    padding: .5rem 1.5rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #112240;
    border-radius: 5px;
    color: #fff !important;
    cursor: pointer;
    width: 100%;
}
.detailtitle{
    font-size: 2rem;
    margin-bottom: .5rem;
}
.mt50{
    margin-top: 50px
}
.mb-0{
    margin-bottom: 0;
}
#searchads {
    position: relative;
    width: 80%;
    border-radius: 25px;
    margin: 1rem 0;
    left: 50%;
    transform: translate(-50%);
    z-index: 9999;
    display: none;
    padding: .5rem 1rem;
}
.ads-box{
    margin: 5px 0;
    text-align: center;
}
.lazy-img{
    object-fit: cover;
}

 .nav-item a{
    text-transform: capitalize;
 }
@media screen and (max-width:767px) and (min-width: 480px){
    .clearfix img{
        width:100%
    }
}
@media screen and (max-width:992px) {
    .articletext{
        padding: 5px 46px 0 30px;
    }
    #box1{
        flex-direction: column;
    }
    #news-article{
        font-size: 14px;
    }
    .big-img{
        height: auto;
    }

}
@media screen and (max-width: 768px) {

    /* .menu-toggle {
        font-size: 24px;
        cursor: pointer;
        position: absolute;
        top: 5px;
        left: 10px;
        z-index: 1;
        color: #fff;
        display: block;
    } */
    
    .menu {
        width: 200px;
        height: 100%;
        background-color: rgb(36, 36, 36);
        position: fixed;
        bottom: 0;
        transition: left 0.3s;
        z-index: -1;
        display: block;
    }
    
    .menu ul {
        list-style: none;
        padding: 5rem 0;
        height: 100%;
        
    }
    
    .menu li {
        padding: 1rem .5rem;
        text-align: center;
        font-size: 1.2rem;
        font-weight: bold;
    }
    
    .menu a {
        text-decoration: none;
        color: #fff;
    } 
    .nav-container{
        height: 28px;
        z-index: 999;
        position: fixed;
        top: 0;
        background: rgb(36, 36, 36);
        width: 100%;
    }
    .nav-container img{
        width: 60px;
        margin-top: 6px !important;
    }
    .nav-container h1{
        margin-left: 50px;
    }
    .bg-1{
        margin-top: 28px;
    }
    .flexstyle{
        display: block;
    }
    #news-img2{
        display: none;
    }
    #box1 .align-items-center{
        align-items: flex-start !important;
    }
}
@media screen and (max-width: 480px) {
    .clearfix img{
        width: 100%;
    }

}

@media screen and (min-width: 992px) {
    .img-responsivemin{
        height: 80px;
    }
    .img-responsive{
        height: 134px !important;
    }
    .img-responsive1{
        height: 250px !important;
    }
    .img-responsive2{
        height: 320px;
    }
    .big-img{
        height: 400px !important;
    }
}
@media screen and (max-width:800px) {
    #box1 .swiper-slide {
        background-size: 100% 100% !important;
    }

}
@media screen and (min-width: 576px) {
    .img3{
        height: 160px !important;
    }
}

@media screen and (min-width:768px) {
    .img3{
        height: 200px !important;
        } 

        
}

@media screen and (min-width:1200px) {
    .img3{
height: 240px !important;
    }
    .img-responsivemin{
        height: 120px;
    }
    .img-responsive{
        height: 200px !important;
    }
    .img-responsive1{
        height: 310px !important;
    }
    .img-responsive2{
        height: 400px !important;
    }
    .big-img{
        height: 500px !important;
    }
}
@media screen and (max-width:1199px) {

}

@media screen and (max-width:575px) {
    .img3{
        height: auto;
    }
}
@media screen and (max-width:768px) {
    .hero-grid,.articles-container,.sidebar{
        gap: 10px !important;
    }
    .main-content{
        padding: 10px 0 !important;
    }
    p{
        margin-bottom: 0 !important;
    }
}