@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700&family=Roboto+Condensed:wght@400;500;600;700&display=swap');

:root {
    --red: #ed1238;
    --deep-red: #d9081c;
    --dark: #1f2024;
    --text: #191919;
    --muted: #8a8a8a;
    --line: #eeeeee;
    --page: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--page);
    color: var(--text);
    font-family: "Noto Sans Devanagari", "Roboto Condensed", Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.top-red-strip {
    height: 52px;
    background: linear-gradient(90deg, #df0910, #ff0f4c);
}

.purak-header {
    background: #fff;
}

.header-main {
    height: 135px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: 140px;
    max-height: 80px;
    object-fit: contain;
}

.brand-text {
    display: none;
    color: #d60012;
    font-family: Georgia, serif;
    font-size: 48px;
    font-weight: 700;
    font-style: italic;
}

.header-search {
    display: flex;
    align-items: center;
}

.header-search input {
    width: 0;
    border: 0;
    border-bottom: 1px solid transparent;
    outline: 0;
    padding: 8px 0;
    transition: .3s;
}

.header-search:hover input,
.header-search input:focus {
    width: 210px;
    padding: 8px 12px;
    border-bottom-color: #ccc;
}

.header-search button {
    border: 0;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
}

.main-menu {
    border-bottom: 1px solid #eee;
}

.main-menu ul {
    margin: 0;
    padding: 0;
    min-height: 78px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 38px;
    list-style: none;
}

.main-menu a {
    display: block;
    padding: 28px 0;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #2c2c2c;
    white-space: nowrap;
}

.main-menu a:hover {
    color: var(--red);
}

.header-shadow {
    height: 46px;
    background: linear-gradient(to bottom, rgba(223,230,237,.7), rgba(255,255,255,0));
}

.page-wrap {
    padding-bottom: 60px;
}

.ad-box {
    height: 140px;
    margin-bottom: 58px;
    border: 1px solid #d4d4d4;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b4b4b4;
    font-style: italic;
    font-size: 18px;
}

.section-heading {
    height: 50px;
    margin-bottom: 28px;
    padding: 0 14px 0 22px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-heading h2 {
    margin: 0;
    color: #fff;
    font-size: 21px;
    font-weight: 700;
}

.section-heading > a {
    padding: 8px 14px;
    border-radius: 4px;
    background: var(--red);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.news-row {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;
    padding: 0 0 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.news-image {
    display: block;
    height: 170px;
    overflow: hidden;
    background: #eee;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.news-image:hover img {
    transform: scale(1.04);
}

.category-tag {
    display: inline-block;
    margin-bottom: 10px;
    padding: 7px 12px 5px;
    border-radius: 4px;
    background: var(--red);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.news-content h3 {
    margin: 0 0 13px;
    font-size: 27px;
    line-height: 1.35;
    font-weight: 600;
}

.news-content h3 a:hover {
    color: var(--red);
}

.post-meta {
    display: flex;
    gap: 18px;
    color: var(--muted);
    font-size: 13px;
}

.side-heading {
    height: 50px;
    margin-bottom: 20px;
    padding: 13px 18px;
    background: var(--dark);
    color: #fff;
    font-size: 19px;
    font-weight: 700;
}

.side-news {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 18px;
    padding: 0 0 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.side-news img {
    width: 112px;
    height: 88px;
    object-fit: cover;
    border-radius: 3px;
}

.side-news h4 {
    margin: 0 0 8px;
    font-size: 19px;
    line-height: 1.4;
    font-weight: 500;
}

.side-news h4 a:hover {
    color: var(--red);
}

.side-news span {
    color: #aaa;
    font-size: 13px;
}

.side-ad {
    height: 250px;
    margin-top: 30px;
    background: #f3f3f3;
    border: 1px solid #ddd;
    color: #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
}

.pagination-wrap {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.pagination-wrap a {
    padding: 9px 15px;
    background: var(--red);
    color: #fff;
    border-radius: 3px;
}

.pagination-wrap span {
    color: #777;
}

.purak-footer {
    margin-top: 30px;
    padding: 42px 0;
    background: #18191c;
    color: #ccc;
}

.purak-footer .container-fluid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.purak-footer strong {
    color: #fff;
    font-size: 24px;
}

.purak-footer p {
    margin: 7px 0 0;
}

@media (max-width: 991px) {
    .main-menu ul {
        gap: 22px;
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .main-menu a {
        padding: 20px 0;
        font-size: 16px;
    }

    .ad-box {
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    .top-red-strip {
        height: 170pxpx;
    }

    .header-main {
        height: 55px;
    }

    .brand img {
        width: 170px;
    }

    .brand-text {
        font-size: 38px;
    }

    .header-search input {
        display: none;
    }

    .header-shadow {
        height: 25px;
    }

    .ad-box {
        height: 90px;
        margin-bottom: 25px;
    }

    .news-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .news-image {
        height: 220px;
    }

    .news-content h3 {
        font-size: 22px;
    }

    .purak-footer .container-fluid {
        flex-direction: column;
    }
}
