:root {
    --primary: #1a3c34;
    --primary-alt: #2a5c4e;
    --accent: #d4a017;
    --accent-alt: #e0b74c;
    --neutral: #2b2d42;
    --neutral-light: #6b7280;
    --background: #fff;
    --white: #ffffff;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --font-main: 'Source Sans Pro', system-ui, -apple-system, sans-serif;
    --font-heading: 'Cormorant Garamond', serif;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--background);
    color: var(--neutral);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--neutral);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button,
input {
    font-family: inherit;
    font-size: inherit;
}

.container {
    max-width: 1800px;
    margin: 0 auto;
}

.logo {
    /*height:85px;*/
    font-size: 20px;
}

.branding {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
}

.branding img {
    height: 65px;
}

.section {
    padding: var(--space-lg) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-lg);
    font-size: 2.5rem;
    color: var(--primary);
    position: relative;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: var(--space-sm) auto;
    border-radius: 2px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textScale {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.03);
    }
}

@keyframes rotateIcon {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(90deg);
    }
}

.header {
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
    padding: 10px;
    border-bottom: 2px solid #e9ecef;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        /*padding: var(--space-sm) var(--space-md);*/
    }

.nav-wrap {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav {
    display: flex;
    /*gap: var(--space-md);*/
    align-items: center;
}

.nav a {
    color: var(--neutral);
    font-size: 0.95rem;
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    border-radius: 6px;
    transition: all var(--transition-normal);
}

.nav a:hover {
    color: var(--accent);
    background: rgba(212, 160, 23, 0.1);
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    color: var(--neutral);
    font-size: 0.95rem;
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    transition: all var(--transition-normal);
}

.dropdown-toggle:hover {
    color: var(--accent);
    background: rgba(212, 160, 23, 0.1);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: var(--space-sm) 0;
    min-width: 160px;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    color: var(--neutral);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.dropdown-menu a:hover {
    background: rgba(212, 160, 23, 0.1);
    color: var(--accent);
}

.search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    color: var(--neutral-light);
    z-index: 2;
    font-size: 1rem;
}

.search-field {
    padding: var(--space-sm) var(--space-md) var(--space-sm) 2.5rem;
    border: 1px solid var(--neutral-light);
    border-radius: 20px;
    font-size: 0.9rem;
    width: 180px;
    transition: all var(--transition-normal);
    background: var(--white);
    color: var(--neutral);
}

.search-field:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
    outline: none;
    width: 220px;
}

.search-field::placeholder {
    color: var(--neutral-light);
    opacity: 0.8;
}

.mobile-only {
    display: none;
}

.menu-toggle {
    display: none;
    color: var(--neutral);
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1.5rem;
    transition: all var(--transition-normal);
}

.menu-toggle:hover {
    color: var(--accent);
}

.menu-toggle.active i {
    animation: rotateIcon 0.3s ease forwards;
}

.hero {
    position: relative;
    margin-top: 80px;
}

.slider {
    position: relative;
    height: 540px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-slow), transform var(--transition-slow);
    transform: translateX(20px);
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 8s ease;
}

.slide.active .slide-image {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(26, 60, 52, 0.4));
}

.slide-text {
    position: absolute;
    bottom: 15%;
    left: 5%;
    max-width: 700px;
    color: var(--white);
    padding: var(--space-md);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    border-radius: 8px;
    animation: fadeIn 0.7s ease;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.slide-text .cat-links a {
    color: var(--accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: color var(--transition-normal);
}

.slide-text .cat-links a:hover {
    color: var(--white);
}

.slide-text h2 a {
    font-size: 2.25rem;
    color: var(--white);
    margin: var(--space-sm) 0;
    display: block;
    font-weight: 700;
    transition: color var(--transition-normal);
}

.slide-text h2 a:hover {
    color: var(--accent);
}

.slide-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

.slide-text .more-link {
    color: var(--white);
    background: var(--accent);
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    transition: all var(--transition-normal);
}

.slide-text .more-link:hover {
    background: var(--accent-alt);
    transform: translateY(-2px);
}

.slider-nav {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-sm);
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 1px solid var(--white);
}

.slider-dot.active {
    background: var(--white);
    transform: scale(1.3);
}

.articles {
    padding: var(--space-lg) 0;
    background: var(--background);
}

.articles-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.large-article,
.small-article {
    position: relative;
}

.article-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
}

.article-content {
    position: relative;
    z-index: 2;
}

.article-content a,
.article-content button,
.article-meta a {
    position: relative;
    z-index: 3;
}

.large-article {
    animation: fadeIn 0.6s ease forwards;
    /* margin-bottom: var(--space-lg); */
}

.large-article.hidden {
    display: none;
}

.large-article .article-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: transform var(--transition-slow);
}

.large-article:hover .article-image {
    transform: scale(1.03);
}

.large-article .article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--primary) 5%, transparent 80%);
    transition: background var(--transition-normal);
}

.large-article:hover .article-overlay {
    background: linear-gradient(to top, var(--primary-alt) 5%, transparent 50%);
}

.large-article .article-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-lg);
    z-index: 2;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.large-article .cat-links a {
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    background: var(--accent);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 4px;
    transition: all var(--transition-normal);
}

.large-article .cat-links a:hover {
    background: var(--accent-alt);
}

.large-article h3 {
    font-size: 1.5rem;
    color: var(--white);
    transition: all var(--transition-normal);
}

.large-article h3:hover {
    color: var(--accent-alt);
    animation: textScale 0.3s ease forwards;
}

.large-article p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 80%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.large-article .article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
}

.large-article .author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.large-article .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    transition: all var(--transition-normal);
}

.large-article:hover .author-avatar {
    transform: scale(1.1);
}

.small-articles {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.small-article {
    animation: fadeIn 0.6s ease forwards;
    border-radius: 8px;
    overflow: hidden;
}

.small-article:nth-child(1) {
    animation-delay: 0.2s;
}

.small-article:nth-child(2) {
    animation-delay: 0.4s;
}

.small-article .article-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform var(--transition-slow);
}

.small-article:hover .article-image {
    transform: scale(1.03);
}

.small-article .article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--primary) 5%, transparent 80%);
    transition: background var(--transition-normal);
}

.small-article:hover .article-overlay {
    background: linear-gradient(to top, var(--accent) 5%, transparent 30%);
}

.small-article .article-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-md);
    z-index: 2;
    color: var(--white);
}

.small-article .cat-links a {
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    background: var(--accent);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 4px;
    transition: all var(--transition-normal);
}

.small-article .cat-links a:hover {
    background: var(--accent-alt);
}

.small-article h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin: var(--space-sm) 0;
    transition: all var(--transition-normal);
}

.small-article h3:hover {
    color: var(--accent-alt);
    animation: textScale 0.3s ease forwards;
}

.small-article .article-meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.small-article .author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    transition: all var(--transition-normal);
}

.small-article:hover .author-avatar {
    transform: scale(1.1);
}

.more-articles {
    display: grid;
    grid-template-columns: auto auto;
    gap: 18px;
    margin-top: 18px;
}

.load-more {
    text-align: center;
    margin-top: var(--space-lg);
}

.load-more-btn {
    background: var(--accent);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.load-more-btn:hover {
    background: var(--accent-alt);
    transform: translateY(-2px);
}

.load-more-btn.hidden {
    display: none;
}

.footer {
    background: var(--neutral);
    color: var(--white);
    padding: var(--space-lg) 0;
    text-align: center;
    margin-top: auto;
}

    .footer .container {
        display: flex;
        justify-content: space-between;
        gap: var(--space-lg);
        width: 95%;
    }

    .footer a {
        color: #e0e5ee;
        font-size: 0.9rem;
        font-weight: 500;
        transition: color var(--transition-normal);
    }

.footer a:hover {
    color: var(--accent);
}

@media (max-width: 1024px) and (min-width: 768px) {

    .slider {
        height: 480px;
    }

    .slide-text {
        left: 5%;
        max-width: 70%;
        padding: var(--space-md);
    }

    .slide-text h2 a {
        font-size: 1.8rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .large-article .article-image {
        height: 400px;
    }

    .large-article h3 {
        font-size: 1.5rem;
    }

    .large-article p {
        max-width: 100%;
    }

    .small-articles {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .small-article .article-image {
        height: 200px;
    }

    .more-articles {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 920px) {

    body {
        text-align: justify;
    }

    .header .container {
        flex-wrap: wrap;
        display:block;
        /*padding: var(--space-sm) var(--space-md);*/
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-md) var(--space-md);
        z-index: 999;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 8px 8px;
        max-height: 70vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

        .nav.active {
            display: flex;
            animation: fadeIn 0.3s ease;
            gap: 10px;
        }

    .dropdown {
        display: none;
        width: 100%;
    }

    .dropdown.active {
        display: block;
    }

    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: var(--space-sm) 0;
        border-bottom: 1px solid var(--neutral-light);
    }

    .dropdown-menu {
        display: none;
        position: static;
        box-shadow: none;
        padding: var(--space-sm) var(--space-md);
        background: none;
        max-height: 50vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }


    .dropdown.active .dropdown-menu {
        display: block;
    }

    .nav a,
    .dropdown-menu a {
        padding: var(--space-sm) 0;
        border-bottom: 1px solid var(--neutral-light);
        font-size: 1rem;
    }

    .nav a:last-child,
    .dropdown-menu a:last-child {
        border-bottom: none;
    }

    .search-wrap {
/*        display: none;*/
        width: 100%;
        /*margin: var(--space-sm) 0;*/
        padding: var(--space-xs) 0;
    }

    .nav.active .search-wrap {
        display: flex;
    }

    .search-field {
        width: 100%;
        padding: var(--space-sm) var(--space-md) var(--space-sm) 2.5rem;
        color: var(--neutral);
        border-radius: 25px;
        border: 1px solid var(--neutral-light);
        background: rgba(255, 255, 255, 0.95);
        font-size: 0.95rem;
    }

    .search-field:focus {
        width: 100%;
        color: var(--neutral);
        border-color: var(--accent);
        box-shadow: 0 0 0 2px rgba(212, 160, 23, 0.2);
    }

    .search-icon {
        left: var(--space-sm);
        font-size: 0.9rem;
        color: var(--neutral);
    }

    .menu-toggle {
        display: block;
        z-index: 1000;
    }

    .mobile-only {
        display: block;
    }

    i.fas.fa-search.search-icon {
        padding-left: 10px;
    }

    .slider {
        height: 300px;
    }

    .slide-overlay {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(26, 60, 52, 0.5));
    }

    .slide-text {
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%);
        min-width: 90%;
        padding: var(--space-sm);
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(8px);
        border-radius: 6px;
        text-align: center;
    }

    .slide-text h2 a {
        font-size: 1.6rem;
    }

    .slide-text p {
        font-size: 0.9rem;
        margin-bottom: var(--space-sm);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .slide-text .more-link {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }

    .slider-dot {
        width: 7px;
        height: 7px;
    }

    .slider-nav {
        bottom: var(--space-sm);
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .more-articles {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 767px) and (min-width: 480px) {

    .hero {
        margin-top: 90px;
    }

    .branding img {
        height: 55px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: var(--space-sm);
    }

    .section-title::after {
        margin: var(--space-xs) auto;
    }

    .articles {
        padding: 0;
    }

    .large-article {
        margin-bottom: 0;
    }

    .large-article .article-content {
        padding: var(--space-md);
    }

    .large-article h3 {
        font-size: 1.5rem;
        margin: var(--space-xs) 0;
    }

    .large-article p {
        font-size: 1rem;
        margin-bottom: var(--space-sm);
    }

    .articles-grid {
        gap: var(--space-sm);
    }

    .small-articles {
        gap: var(--space-sm);
    }

    .small-article .article-image {
        height: 200px;
    }

    /* .more-articles {
            margin-top: var(--space-sm);
            display: flex;
            flex-direction: column;
            gap: 10px;
        } */

    .load-more {
        margin-top: var(--space-sm);
    }

    .footer .container {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

@media (max-width: 479px) {

    .container {
        padding-inline: 5px;
    }

    .branding a {
        font-size: 1.4rem;
    }

    .branding img {
        height: 50px;
    }

    .menu-toggle {
        font-size: 1.3rem;
        padding: var(--space-xs);
    }

    .nav {
        padding: var(--space-sm) var(--space-md);
    }

    .nav a,
    .dropdown-menu a {
        font-size: 0.9rem;
        padding: var(--space-xs) 0;
    }

    .search-field {
        width: 100%;
        height: 34px;
        padding: var(--space-xs) var(--space-md) var(--space-xs) 2rem;
        font-size: 0.85rem;
        color: var(--neutral);
        border-radius: 20px;
    }

    .search-field:focus {
        width: 100%;
        color: var(--neutral);
    }

    .search-icon {
        left: var(--space-sm);
        font-size: 0.85rem;
    }

    .slider {
        height: 250px;
    }

    .slide-text {
        bottom: 8%;
        min-width: 95%;
        padding: var(--space-xs);
    }

    .slide-text h2 a {
        font-size: 1rem;
    }

    .slide-text p {
        font-size: 0.8rem;
    }

    .slide-text .more-link {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }

    .articles {
        padding: var(--space-xs) 0;
    }

    .articles-grid {
        gap: var(--space-sm);
    }

    .large-article {
        margin-bottom: var(--space-xs);
    }

    .large-article .article-image {
        height: 250px;
    }

    .large-article .article-content {
        padding: var(--space-sm);
    }

    .large-article h3 {
        font-size: 1rem;
    }

    .large-article p {
        font-size: 0.9rem;
        display: none;
    }

    .small-articles {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .small-article h3 {
        font-size: 1rem;
    }

    .more-articles {
        margin-top: var(--space-sm);
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: var(--space-sm);
    }

    .section-title::after {
        margin: var(--space-xs) auto;
    }

    .load-more {
        margin-top: var(--space-sm);
    }

    .footer .container {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .footer {
         padding: 5px 0; 
    }
}

.main-content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
    align-items: start;
    width: 100%;
}

.ad-sidebar {
    position: relative;
    padding: 20px 0;
}

.ad-unit {
    /* background: var(--white); */
    /* border-radius: 8px; */
    margin-bottom: 30px;
    /* box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05); */
    text-align: center;
}

.ad-label {
    display: block;
    font-size: 0.8rem;
    color: var(--neutral-light);
    text-transform: uppercase;
    margin: 5px 0;
    letter-spacing: 1px;
}

.ad-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, rgba(26, 60, 52, 0.03), rgba(212, 160, 23, 0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-light);
    border-radius: 4px;
    border: 1px dashed rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .mobile-ad-container {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-ad-container {
        width: 100%;
        overflow-x: auto;
        /* Enable horizontal scrolling */
        -webkit-overflow-scrolling: touch;
        /* Smooth scrolling on iOS */
        scroll-snap-type: x mandatory;
        /* Snap to each ad unit */
        white-space: nowrap;
        padding: 10px 0;
        scrollbar-width: none;
    }

    .mobile-ad-container::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar in WebKit browsers */
    }

    .mobile-ad-scroller {
        display: inline-block;
        white-space: nowrap;
        animation: scrollAds 30s linear infinite;
    }

    .mobile-ad-container .ad-unit {
        display: inline-block;
        width: 300px;
        margin: 0 2px;
        vertical-align: top;
        white-space: normal;
        box-shadow: none;
        background-color: transparent;
        scroll-snap-align: start;
    }

    .weather-widget-card,
    .cricket-widget-card,
    .music-widget-card,
    .stock-widget-card {
        position: relative;
        width: 300px;
        overflow: hidden;
        border: none !important;
        border-radius: 8px;
        box-shadow: none !important;
        background-color: transparent !important;
    }


    .mobile-ad-container:hover .mobile-ad-scroller {
        animation-play-state: paused;
    }

    @keyframes scrollAds {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .mobile-ad-container:hover .mobile-ad-scroller {
        animation-play-state: paused;
    }

    .main-content-with-sidebar {
        gap: var(--space-sm);
        margin-top: 0;
    }

    .ad-unit {
        margin-bottom: 0;
    }

    .main-content-with-sidebar {
        grid-template-columns: 1fr;
    }

    .ad-sidebar {
        display: none;
    }

    .mobile-ad-container {
        display: block;
        text-align: center;
        white-space: nowrap;
    }
}

.mobile-ad-container:hover .ad-unit {
    animation-play-state: paused;
}

.weather-widget-card,
.cricket-widget-card,
.music-widget-card,
.stock-widget-card {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-ad-container .ad-unit {
    display: inline-block;
    width: 300px;
    margin: 0 5px;
    vertical-align: top;
    white-space: normal;
}

.mobile-ad-container {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.ad-unit #__next .TrackListWidget_widgetContainer__VVETD,
.TrackListWidget_trackListGridContainer__GZGxh{
    height: 100% !important;
}

@media (hover: none) {
    .mobile-ad-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
    }

    .mobile-ad-container .ad-unit {
        scroll-snap-align: start;
        animation: none !important;
    }
}