/* Start custom CSS for html, class: .elementor-element-10cae9d *//* ================================
   THE DESH NEWS
   HOMEPAGE CSS
================================ */

#desh-home {
    font-family: Arial, Helvetica, sans-serif;
    color: #111;
    background: #fff;
}

#desh-home * {
    box-sizing: border-box;
}

#desh-home a {
    text-decoration: none;
    color: inherit;
}

.desh-container {
    width: 94%;
    max-width: 1250px;
    margin: auto;
}


/* TOP BAR */

.desh-topbar {
    background: #111;
    color: white;
    font-size: 13px;
}

.desh-topbar .desh-container {
    padding: 10px 0;
}

.trending-label {
    background: #d71920;
    padding: 8px 15px;
    margin-right: 15px;
    font-weight: bold;
}


/* HEADER */

.desh-header {
    background: white;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.desh-logo span {
    font-size: 14px;
    font-weight: bold;
}

.desh-logo h1 {
    font-size: 38px;
    margin: 0;
    line-height: 1;
    font-weight: 800;
}

.desh-logo h1 b {
    color: #d71920;
}

.desh-logo p {
    font-size: 12px;
    margin: 5px 0 0;
    color: #666;
}


.header-banner {
    width: 55%;
    min-height: 75px;
    padding: 15px 25px;
    background: #172638;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-banner strong {
    font-size: 20px;
}

.header-banner a {
    background: #d71920;
    color: white;
    padding: 9px 18px;
    font-size: 12px;
    font-weight: bold;
}


/* NAVIGATION */

.desh-navigation {
    background: #080808;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow-x: auto;
}

.nav-inner a {
    color: white;
    padding: 14px 7px;
    font-size: 13px;
    white-space: nowrap;
}

.nav-inner a:hover {
    color: #e31b23;
}


/* BREAKING */

.breaking-news {
    border-bottom: 1px solid #ddd;
    background: white;
}

.breaking-inner {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

.breaking-inner strong {
    background: #d71920;
    color: white;
    padding: 8px 12px;
    font-size: 11px;
}

#breaking-posts {
    font-size: 12px;
}


/* HERO */

.hero-section {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 18px;
    margin: 20px 0;
}

.hero-post {
    position: relative;
    min-height: 450px;
    border-radius: 7px;
    overflow: hidden;
    color: white;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    z-index: 2;
}

.breaking-tag {
    background: #d71920;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: bold;
}

.hero-content h1 {
    font-size: 35px;
    line-height: 1.15;
    margin: 15px 0;
}

.hero-content p {
    max-width: 650px;
    font-size: 14px;
}

.hero-button {
    display: inline-block;
    margin-top: 15px;
    background: #d71920;
    color: white !important;
    padding: 12px 18px;
    font-size: 12px;
    font-weight: bold;
}


/* TOP STORIES */

.top-stories {
    border: 1px solid #ddd;
    border-radius: 7px;
    padding: 18px;
}

.section-title,
.section-heading,
.category-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title h2,
.section-heading h2,
.category-heading h2 {
    margin: 0;
}

.section-title p,
.section-heading p,
.category-heading p {
    font-size: 11px;
    margin: 4px 0;
    color: #555;
}

.section-title > a,
.section-heading > a,
.category-heading > a {
    color: #d71920;
    font-size: 11px;
    font-weight: bold;
}


.top-story-item {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.top-story-item span {
    min-width: 22px;
    height: 22px;
    background: #d71920;
    color: white;
    border-radius: 50%;
    text-align: center;
    padding-top: 3px;
    font-size: 11px;
}

.top-story-item a {
    font-size: 12px;
    font-weight: 600;
}


/* LATEST */

.news-section {
    margin-top: 25px;
}

.section-heading {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}


/* POST CARD */

.post-card {
    border: 1px solid #ddd;
    border-radius: 7px;
    overflow: hidden;
    background: white;
    transition: .2s;
}

.post-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    transform: translateY(-2px);
}

.post-card > a {
    display: block;
}

.post-card img {
    display: block;
    width: 100%;
    height: 145px;
    object-fit: cover;
}

.post-card-content {
    padding: 12px;
}

.post-date {
    font-size: 9px;
    color: #999;
}

.post-card h3 {
    font-size: 15px;
    line-height: 1.25;
    margin: 6px 0;
}

.post-card h3 a:hover {
    color: #d71920;
}

.post-card p {
    font-size: 11px;
    color: #555;
    line-height: 1.5;
}

.read-more {
    color: #d71920 !important;
    font-size: 10px;
    font-weight: bold;
}


/* CATEGORY */

.category-section {
    margin-top: 30px;
}

.category-block {
    margin-bottom: 30px;
}

.category-heading {
    border-bottom: 2px solid #111;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.category-post-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}


/* BOTTOM */

.bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 30px 0;
}

.info-card {
    border: 1px solid #ddd;
    border-radius: 7px;
    padding: 20px;
}

.info-card h2 {
    margin: 0;
}

.info-card > p {
    font-size: 11px;
    color: #666;
}

.simple-list {
    display: flex;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid #eee;
}

.simple-list span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #d71920;
    color: white;
    text-align: center;
    font-size: 11px;
    padding-top: 3px;
    flex-shrink: 0;
}

.simple-list a {
    font-size: 12px;
    font-weight: 600;
}

.outline-btn {
    display: inline-block;
    color: #d71920 !important;
    border: 1px solid #d71920;
    padding: 8px 12px;
    margin-top: 15px;
    font-size: 11px;
}


/* WHY */

.why-section {
    text-align: center;
    margin: 35px 0;
}

.why-section > h2 {
    margin-bottom: 0;
}

.why-section > p {
    font-size: 11px;
    color: #777;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.why-grid > div {
    border: 1px solid #ddd;
    border-radius: 7px;
    padding: 20px 10px;
}

.why-grid span {
    font-size: 28px;
}

.why-grid h3 {
    font-size: 13px;
}

.why-grid p {
    font-size: 10px;
    color: #666;
}


/* NEWSLETTER */

.newsletter {
    background: #141e2b;
    color: white;
    border-radius: 7px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin-bottom: 10px;
}

.newsletter h2 {
    margin: 0;
}

.newsletter h3 {
    margin: 5px 0;
}

.newsletter p {
    font-size: 11px;
    margin-bottom: 0;
}

.newsletter form {
    display: flex;
}

.newsletter input {
    min-width: 270px;
    padding: 14px;
    border: none;
}

.newsletter button {
    background: #d71920;
    color: white;
    border: none;
    padding: 0 18px;
    font-weight: bold;
}


/* FINAL CTA */

.final-cta {
    background: #a50f18;
    color: white;
    border-radius: 7px;
    padding: 30px;
    margin: 0 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.final-cta h2 {
    margin: 0;
    font-size: 28px;
}

.final-cta h3 {
    margin: 5px 0;
}

.final-cta p {
    max-width: 700px;
    font-size: 12px;
}

.final-cta a {
    background: white;
    color: #a50f18 !important;
    padding: 12px 18px;
    white-space: nowrap;
    font-weight: bold;
    font-size: 11px;
}


/* LOADING */

.loading {
    padding: 30px;
    text-align: center;
}


/* TABLET */

@media(max-width: 1000px) {

    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-post-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* MOBILE */

@media(max-width: 700px) {

    .header-inner {
        display: block;
    }

    .header-banner {
        width: 100%;
        margin-top: 15px;
    }

    .nav-inner {
        justify-content: flex-start;
        gap: 15px;
    }

    .hero-section {
        grid-template-columns: 1fr;
    }

    .hero-post {
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 25px;
    }

    .news-grid {
        grid-template-columns: 1fr 1fr;
    }

    .category-post-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bottom-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .newsletter {
        display: block;
    }

    .newsletter form {
        margin-top: 15px;
    }

    .newsletter input {
        min-width: 0;
        width: 65%;
    }

    .newsletter button {
        width: 35%;
    }

    .final-cta {
        display: block;
    }

}


@media(max-width: 480px) {

    .desh-logo h1 {
        font-size: 30px;
    }

    .header-banner strong {
        font-size: 16px;
    }

    .hero-content h1 {
        font-size: 22px;
    }

    .news-grid,
    .category-post-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .category-heading {
        align-items: flex-start;
    }

    .newsletter input {
        width: 60%;
    }

    .newsletter button {
        width: 40%;
        font-size: 9px;
    }

}

#desh-home .hero-content h1 {
    color: #ffffff !important;
    font-weight: 800;
    line-height: 1.2;
    position: relative;
    z-index: 2;

    padding: 10px 15px;
    margin: 10px 0 15px;

    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.95) 0%,
        rgba(0,0,0,0.85) 45%,
        rgba(0,0,0,0.45) 75%,
        rgba(0,0,0,0) 100%
    );

    text-shadow: 0 2px 5px rgba(0,0,0,0.9);
}

```css
/* ================================
   FLOATING NEWS SUBSCRIBE POPUP
================================ */

.desh-subscribe-popup {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 290px;

    display: flex;
    align-items: center;
    gap: 12px;

    background: #ffffff;

    padding: 14px 38px 14px 14px;

    border-radius: 12px;

    box-shadow: 0 8px 30px rgba(0,0,0,0.20);

    z-index: 99999;

    border-left: 5px solid #d60000;

    animation: deshPopupSlide 0.7s ease;
}


/* ICON */

.desh-subscribe-popup .subscribe-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #d60000;

    color: #ffffff;

    border-radius: 50%;

    font-size: 23px;

    box-shadow: 0 4px 12px rgba(214,0,0,0.30);
}


/* CONTENT */

.subscribe-popup-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.subscribe-popup-content strong {
    font-size: 16px;
    line-height: 1.2;

    color: #111111;

    font-weight: 800;
}

.subscribe-popup-content span {
    font-size: 11px;

    color: #666666;

    line-height: 1.3;

    margin-bottom: 5px;
}


/* SUBSCRIBE BUTTON */

.subscribe-now-btn {
    display: inline-block;

    width: fit-content;

    background: #d60000;

    color: #ffffff !important;

    padding: 7px 13px;

    border-radius: 5px;

    font-size: 11px;

    font-weight: 700;

    text-decoration: none !important;

    transition: all 0.3s ease;
}

.subscribe-now-btn:hover {
    background: #000000;

    color: #ffffff !important;

    transform: translateY(-1px);
}


/* CLOSE BUTTON */

.subscribe-close {
    position: absolute;

    top: 5px;
    right: 7px;

    width: 22px;
    height: 22px;

    border: none;

    background: transparent;

    color: #777777;

    font-size: 20px;

    line-height: 20px;

    cursor: pointer;

    padding: 0;
}

.subscribe-close:hover {
    color: #d60000;
}


/* ANIMATION */

@keyframes deshPopupSlide {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .desh-subscribe-popup {
        right: 12px;
        bottom: 12px;

        width: calc(100% - 24px);

        max-width: 330px;

        padding: 12px 35px 12px 12px;
    }

    .desh-subscribe-popup .subscribe-icon {
        width: 42px;
        height: 42px;

        min-width: 42px;

        font-size: 20px;
    }

    .subscribe-popup-content strong {
        font-size: 14px;
    }

    .subscribe-popup-content span {
        font-size: 10px;
    }

    .subscribe-now-btn {
        font-size: 10px;

        padding: 6px 11px;
    }

}
```/* End custom CSS */