/*
Theme Name: d2d News
Theme URI: https://d2dnews.in
Author: d2d News Media
Author URI: https://d2dnews.in
Description: A modern, high-energy news theme for d2d News — designed for Indian news networks with bilingual (EN/HI) support, breaking news ticker, live TV widget, video sections, and category-rich layouts. Inspired by ABP Live, Aaj Tak, and India Today aesthetics, executed with a clean contemporary touch.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: d2dnews
Tags: news, magazine, blog, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, right-sidebar, two-columns, three-columns, sticky-post

d2d News WordPress Theme, (C) 2026 d2d News Media Pvt. Ltd.
*/

/* ============================================================
   CSS VARIABLES (THEME TOKENS)
   ============================================================ */
:root {
    --d2d-red: #c8161d;
    --d2d-red-dark: #9c1117;
    --d2d-red-light: #e63946;
    --ink: #0f0f10;
    --ink-soft: #1a1a1c;
    --charcoal: #2a2a2d;
    --grey-1: #f6f6f7;
    --grey-2: #e8e8ea;
    --grey-3: #b5b5b8;
    --grey-4: #6b6b6e;
    --white: #ffffff;
    --yellow: #ffd60a;
    --green-live: #00a651;

    --display: 'Archivo', sans-serif;
    --condensed: 'Roboto Condensed', sans-serif;
    --hindi: 'Noto Sans Devanagari', sans-serif;
    --impact: 'Anton', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; }

html { scroll-behavior: smooth; }

body {
    background: var(--white);
    color: var(--ink);
    font-family: var(--display);
    font-size: 15px;
    line-height: 1.45;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; height: auto; }
::selection { background: var(--d2d-red); color: var(--white); }

/* WordPress core required classes */
.alignleft { float: left; margin: 0 20px 20px 0; }
.alignright { float: right; margin: 0 0 20px 20px; }
.aligncenter { display: block; margin: 0 auto 20px; }
.alignwide { max-width: 1100px; margin: 0 auto; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-family: var(--condensed); font-size: 12px; color: var(--grey-4); padding: 8px 0; }
.screen-reader-text {
    border: 0;
    clip: rect(1px,1px,1px,1px);
    clip-path: inset(50%);
    height: 1px; width: 1px;
    overflow: hidden;
    position: absolute !important;
    word-wrap: normal !important;
}
.sticky { background: var(--grey-1); padding: 12px; border-left: 4px solid var(--d2d-red); }

/* ============================================================
   UTILITY BAR (TOP)
   ============================================================ */
.utility-bar {
    background: var(--ink);
    color: var(--white);
    font-family: var(--condensed);
    font-size: 12px;
    padding: 7px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: 0.02em;
}
.utility-bar .util-left, .utility-bar .util-right { display: flex; gap: 18px; align-items: center; }
.utility-bar .util-right a { opacity: 0.75; transition: opacity .15s; color: var(--white); }
.utility-bar .util-right a:hover { opacity: 1; color: var(--yellow); }
.utility-bar .date { font-weight: 500; }
.utility-bar .date .hindi { font-family: var(--hindi); margin-left: 8px; opacity: 0.7; }
.utility-bar .weather { display: flex; gap: 6px; align-items: center; opacity: 0.85; }
.utility-bar .lang-toggle {
    display: flex; gap: 2px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    padding: 2px;
}
.utility-bar .lang-toggle span {
    padding: 3px 10px;
    font-size: 11px;
    border-radius: 2px;
    font-weight: 600;
    cursor: pointer;
}
.utility-bar .lang-toggle .active { background: var(--white); color: var(--ink); }

/* ============================================================
   HEADER / MASTHEAD
   ============================================================ */
.masthead {
    background: var(--white);
    border-bottom: 1px solid var(--grey-2);
    padding: 16px 24px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--d2d-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--display);
    font-weight: 900;
    font-size: 22px;
    letter-spacing: -0.04em;
    line-height: 1;
    position: relative;
    flex-shrink: 0;
}
.brand-mark::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(200,22,29,0.25);
}
.brand-mark span { position: relative; z-index: 1; }
.brand-wordmark {
    font-family: var(--display);
    font-weight: 900;
    font-size: 30px;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--ink);
    margin-left: -8px;
    padding-left: 14px;
}
.custom-logo { max-height: 56px; width: auto; }

.header-search {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.header-search input[type="search"] {
    width: 100%;
    padding: 11px 18px 11px 44px;
    border: 1.5px solid var(--grey-2);
    border-radius: 999px;
    font-family: var(--display);
    font-size: 14px;
    background: var(--grey-1);
    transition: all .2s;
    outline: none;
}
.header-search input[type="search"]:focus {
    border-color: var(--d2d-red);
    background: var(--white);
}
.header-search button[type="submit"] {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--grey-4);
    padding: 4px;
}

.header-cta { display: flex; gap: 10px; align-items: center; }
.live-tv-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--d2d-red);
    color: var(--white);
    padding: 9px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all .2s;
}
.live-tv-btn:hover { background: var(--d2d-red-dark); transform: translateY(-1px); color: var(--white); }
.live-tv-btn .dot {
    width: 7px; height: 7px; border-radius: 50%; background: var(--white);
    animation: d2d-pulse 1.4s infinite;
}
@keyframes d2d-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.icon-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--grey-2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    background: var(--white);
}
.icon-btn:hover { border-color: var(--d2d-red); color: var(--d2d-red); }

/* ============================================================
   PRIMARY NAVIGATION
   ============================================================ */
.primary-nav {
    background: var(--white);
    border-bottom: 3px solid var(--d2d-red);
    padding: 0 24px;
    overflow-x: auto;
    scrollbar-width: none;
    position: sticky;
    top: 89px;
    z-index: 99;
}
.primary-nav::-webkit-scrollbar { display: none; }
.primary-nav ul {
    display: flex;
    gap: 0;
    list-style: none;
    align-items: stretch;
}
.primary-nav li a {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 13.5px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ink);
    white-space: nowrap;
    transition: color .15s;
}
.primary-nav li a:hover { color: var(--d2d-red); }
.primary-nav li.current-menu-item a,
.primary-nav li.current_page_item a {
    background: var(--ink);
    color: var(--white);
}
.primary-nav li.menu-item-hindi a,
.primary-nav li.hindi a { font-family: var(--hindi); font-size: 14px; letter-spacing: 0; }

/* ============================================================
   BREAKING NEWS TICKER
   ============================================================ */
.breaking-bar {
    background: var(--ink);
    color: var(--white);
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 42px;
}
.breaking-label {
    background: var(--d2d-red);
    color: var(--white);
    padding: 0 28px 0 18px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--display);
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    flex-shrink: 0;
    clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}
.breaking-label .pulse-ring {
    width: 8px; height: 8px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
    animation: d2d-pulse-ring 1.5s infinite;
}
@keyframes d2d-pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
    70% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.ticker-track {
    overflow: hidden;
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
}
.ticker-content {
    display: flex;
    gap: 48px;
    animation: d2d-ticker 60s linear infinite;
    white-space: nowrap;
    padding-left: 24px;
    font-family: var(--condensed);
    font-size: 14px;
    font-weight: 500;
}
.ticker-content a { display: inline-flex; align-items: center; gap: 12px; color: var(--white); }
.ticker-content a:hover { color: var(--yellow); }
.ticker-content a::before { content: '●'; color: var(--d2d-red-light); font-size: 8px; }
@keyframes d2d-ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-wrap { max-width: 1400px; margin: 0 auto; padding: 24px; }
.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}
.hero-main {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--ink);
    cursor: pointer;
    transition: transform .3s;
    display: block;
}
.hero-main:hover { transform: translateY(-2px); }
.hero-main .visual { width: 100%; height: 100%; position: absolute; inset: 0; }
.hero-main .visual img,
.hero-main .visual svg { width: 100%; height: 100%; object-fit: cover; }
.hero-main .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0) 75%);
}
.hero-main .content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px 32px 26px;
    color: var(--white);
    z-index: 2;
}
.tag-row { display: flex; gap: 8px; margin-bottom: 14px; align-items: center; flex-wrap: wrap; }
.cat-tag {
    background: var(--d2d-red);
    color: var(--white);
    font-family: var(--display);
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 3px;
}
.live-tag {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 3px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255,255,255,0.2);
}
.live-tag .live-dot {
    width: 6px; height: 6px; background: var(--d2d-red-light); border-radius: 50%;
    animation: d2d-pulse 1.2s infinite;
}
.hero-main h1, .hero-main h2 {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(26px, 3.6vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    max-width: 90%;
    color: var(--white);
}
.hero-meta {
    display: flex;
    gap: 14px;
    font-family: var(--condensed);
    font-size: 13px;
    opacity: 0.85;
    align-items: center;
    flex-wrap: wrap;
}
.hero-meta .sep { width: 3px; height: 3px; background: var(--white); border-radius: 50%; opacity: 0.5; display: inline-block; }

.hero-side { display: flex; flex-direction: column; gap: 14px; }
.side-story {
    background: var(--grey-1);
    border-radius: 6px;
    padding: 16px;
    display: flex;
    gap: 14px;
    cursor: pointer;
    transition: all .2s;
    border-left: 3px solid transparent;
}
.side-story:hover {
    background: var(--white);
    border-left-color: var(--d2d-red);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.side-story .thumb {
    width: 100px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    background: var(--charcoal);
}
.side-story .thumb img,
.side-story .thumb svg { width: 100%; height: 100%; object-fit: cover; }
.side-story .text { flex: 1; min-width: 0; }
.side-story .cat {
    color: var(--d2d-red);
    font-weight: 800;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.side-story h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 14.5px;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 6px;
}
.side-story .time {
    font-family: var(--condensed);
    font-size: 11.5px;
    color: var(--grey-4);
}

/* ============================================================
   SECTION HEADERS & BLOCKS
   ============================================================ */
.block { max-width: 1400px; margin: 0 auto; padding: 40px 24px 0; }
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--ink);
    position: relative;
}
.section-head::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--d2d-red);
}
.section-head h2 {
    font-family: var(--display);
    font-weight: 900;
    font-size: 28px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}
.section-head h2 .hindi {
    font-family: var(--hindi);
    font-size: 18px;
    color: var(--grey-4);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}
.section-head .view-all {
    font-family: var(--condensed);
    font-size: 13px;
    font-weight: 700;
    color: var(--d2d-red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
}
.section-head .view-all:hover { gap: 10px; }

/* ============================================================
   STORY GRIDS & CARDS
   ============================================================ */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.story-card { cursor: pointer; transition: transform .25s; display: block; }
.story-card:hover { transform: translateY(-3px); }
.story-card .img {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 12px;
    background: var(--charcoal);
    position: relative;
}
.story-card .img img,
.story-card .img svg { width: 100%; height: 100%; object-fit: cover; }
.story-card .img .duration {
    position: absolute;
    bottom: 8px; right: 8px;
    background: rgba(0,0,0,0.75);
    color: var(--white);
    font-family: var(--condensed);
    font-size: 11px;
    padding: 3px 7px;
    border-radius: 3px;
    backdrop-filter: blur(4px);
}
.story-card .img .play-icon {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 48px; height: 48px;
    background: rgba(200,22,29,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transition: opacity .25s;
}
.story-card:hover .img .play-icon { opacity: 1; }
.story-card .cat {
    color: var(--d2d-red);
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}
.story-card h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 8px;
    transition: color .2s;
}
.story-card:hover h3 { color: var(--d2d-red); }
.story-card .meta {
    font-family: var(--condensed);
    font-size: 12px;
    color: var(--grey-4);
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
.story-card .meta .sep { width: 3px; height: 3px; background: var(--grey-3); border-radius: 50%; display: inline-block; }

/* ============================================================
   TWO COLUMN LAYOUT
   ============================================================ */
.two-col { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; align-items: start; }
.cat-block .lead {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--grey-2);
}
.lead-img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 5px;
    overflow: hidden;
    background: var(--charcoal);
}
.lead-img img, .lead-img svg { width: 100%; height: 100%; object-fit: cover; }
.lead-text .cat {
    color: var(--d2d-red);
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}
.lead-text h3 {
    font-family: var(--display);
    font-weight: 800;
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-bottom: 12px;
}
.lead-text p {
    font-size: 14.5px;
    color: var(--grey-4);
    line-height: 1.55;
    margin-bottom: 14px;
}
.lead-text .byline {
    font-family: var(--condensed);
    font-size: 12px;
    color: var(--grey-4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.lead-text .byline strong { color: var(--ink); }

.cat-list { display: flex; flex-direction: column; }
.cat-list-item {
    display: grid;
    grid-template-columns: 1fr 140px;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid var(--grey-2);
    cursor: pointer;
    transition: padding .2s;
}
.cat-list-item:hover { padding-left: 8px; }
.cat-list-item:last-child { border-bottom: none; }
.cat-list-item .num {
    font-family: var(--impact);
    font-size: 38px;
    line-height: 1;
    color: var(--grey-2);
    margin-right: 12px;
    transition: color .2s;
}
.cat-list-item:hover .num { color: var(--d2d-red); }
.cat-list-item .left-content { display: flex; align-items: flex-start; }
.cat-list-item .cat {
    color: var(--d2d-red);
    font-weight: 800;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}
.cat-list-item h4 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 5px;
}
.cat-list-item .meta {
    font-family: var(--condensed);
    font-size: 11.5px;
    color: var(--grey-4);
}
.cat-list-item .thumb {
    width: 140px;
    aspect-ratio: 4/3;
    border-radius: 4px;
    overflow: hidden;
    background: var(--charcoal);
}
.cat-list-item .thumb img,
.cat-list-item .thumb svg { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   SIDEBAR WIDGETS
   ============================================================ */
.sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 156px; }
.widget {
    background: var(--white);
    border: 1px solid var(--grey-2);
    border-radius: 6px;
    overflow: hidden;
}
.widget-head {
    background: var(--ink);
    color: var(--white);
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.widget-head h3, .widget-title {
    font-family: var(--display);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    margin: 0;
}
.live-pill {
    background: var(--d2d-red);
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
}
.live-pill::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: d2d-pulse 1.4s infinite;
}

.live-feed { padding: 0; }
.live-item {
    padding: 14px 18px;
    border-bottom: 1px solid var(--grey-2);
    position: relative;
    cursor: pointer;
    transition: background .15s;
}
.live-item:hover { background: var(--grey-1); }
.live-item:last-child { border-bottom: none; }
.live-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--d2d-red);
    opacity: 0;
    transition: opacity .15s;
}
.live-item:hover::before { opacity: 1; }
.live-item .time {
    font-family: var(--condensed);
    font-weight: 700;
    font-size: 11px;
    color: var(--d2d-red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}
.live-item p {
    font-size: 13.5px;
    line-height: 1.4;
    color: var(--ink);
}

.live-tv-card {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--ink);
    cursor: pointer;
    overflow: hidden;
    display: block;
}
.live-tv-card .bg { width: 100%; height: 100%; position: absolute; inset: 0; }
.live-tv-card .bg img,
.live-tv-card .bg svg { width: 100%; height: 100%; object-fit: cover; }
.live-tv-card .play-big {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 64px; height: 64px;
    background: rgba(200,22,29,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 30px rgba(200,22,29,0.5);
    transition: transform .25s;
}
.live-tv-card:hover .play-big { transform: scale(1.1); }
.live-tv-card .now-playing {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--d2d-red);
    color: var(--white);
    padding: 5px 10px;
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.live-tv-card .now-playing::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: d2d-pulse 1.4s infinite;
}
.live-tv-card .show-title {
    position: absolute;
    bottom: 12px; left: 12px; right: 12px;
    color: var(--white);
    font-family: var(--display);
    font-weight: 700;
    font-size: 14px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.tags-widget { padding: 16px; }
.tags-list { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-chip {
    background: var(--grey-1);
    border: 1px solid var(--grey-2);
    padding: 6px 12px;
    border-radius: 999px;
    font-family: var(--condensed);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all .15s;
    color: var(--ink);
    display: inline-block;
}
.tag-chip:hover { background: var(--d2d-red); color: var(--white); border-color: var(--d2d-red); }
.tag-chip strong { color: var(--d2d-red); margin-left: 4px; font-weight: 700; }
.tag-chip:hover strong { color: var(--white); }

/* WordPress widget core compatibility */
.widget ul { list-style: none; padding: 16px; }
.widget ul li { padding: 8px 0; border-bottom: 1px solid var(--grey-2); }
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: var(--ink); font-family: var(--display); font-weight: 500; font-size: 14px; }
.widget ul li a:hover { color: var(--d2d-red); }
.widget .search-form { padding: 16px; display: flex; gap: 8px; }
.widget .search-form input[type="search"] { flex: 1; padding: 10px 14px; border: 1px solid var(--grey-2); border-radius: 4px; font-family: var(--display); }
.widget .search-form button { background: var(--d2d-red); color: var(--white); border: none; padding: 10px 16px; border-radius: 4px; cursor: pointer; font-family: var(--display); font-weight: 700; }

/* ============================================================
   VIDEO SECTION (DARK)
   ============================================================ */
.video-section {
    background: var(--ink);
    color: var(--white);
    margin-top: 50px;
    padding: 50px 24px;
}
.video-inner { max-width: 1400px; margin: 0 auto; }
.video-section .section-head { border-bottom-color: rgba(255,255,255,0.2); }
.video-section .section-head h2 { color: var(--white); }
.video-section .section-head h2 .hindi { color: var(--grey-3); }
.video-section .section-head .view-all { color: var(--d2d-red-light); }
.video-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 18px;
}
.video-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    background: var(--charcoal);
    transition: transform .3s;
    display: block;
}
.video-card:hover { transform: translateY(-2px); }
.video-card.large { grid-row: span 2; aspect-ratio: 4/5; }
.video-card:not(.large) { aspect-ratio: 16/10; }
.video-card .bg { width: 100%; height: 100%; position: absolute; inset: 0; }
.video-card .bg img,
.video-card .bg svg { width: 100%; height: 100%; object-fit: cover; }
.video-card .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
}
.video-card .play-mini {
    position: absolute;
    top: 12px; right: 12px;
    width: 36px; height: 36px;
    background: rgba(200,22,29,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.video-card .info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 18px 18px 16px;
    z-index: 2;
}
.video-card.large .info { padding: 24px; }
.cat-tag-vid {
    background: var(--d2d-red);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    padding: 4px 9px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-block;
    margin-bottom: 10px;
}
.video-card h4 {
    color: var(--white);
    font-family: var(--display);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.25;
    margin-bottom: 6px;
}
.video-card.large h4 { font-size: 22px; }
.video-card .views {
    color: var(--grey-3);
    font-family: var(--condensed);
    font-size: 11.5px;
}

/* ============================================================
   STATES TABS
   ============================================================ */
.states-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--grey-2);
    overflow-x: auto;
    scrollbar-width: none;
}
.states-tabs::-webkit-scrollbar { display: none; }
.state-tab {
    padding: 10px 18px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 13px;
    color: var(--grey-4);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    white-space: nowrap;
    transition: all .15s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: var(--display);
}
.state-tab.active { color: var(--ink); border-bottom-color: var(--d2d-red); }
.state-tab:hover { color: var(--ink); }
.states-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ============================================================
   OPINION STRIP
   ============================================================ */
.opinion-strip {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 50%, #fff5f5 100%);
    margin-top: 50px;
    padding: 50px 24px;
    border-top: 1px solid var(--grey-2);
    border-bottom: 1px solid var(--grey-2);
    position: relative;
    overflow: hidden;
}
.opinion-strip::before {
    content: '"';
    position: absolute;
    top: -100px; left: 20px;
    font-family: var(--display);
    font-weight: 900;
    font-size: 400px;
    color: var(--d2d-red);
    opacity: 0.06;
    line-height: 1;
}
.opinion-inner { max-width: 1400px; margin: 0 auto; position: relative; }
.opinion-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }
.opinion-card {
    background: var(--white);
    padding: 24px;
    border-radius: 6px;
    border-left: 4px solid var(--d2d-red);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    cursor: pointer;
    transition: all .25s;
    display: block;
}
.opinion-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(200,22,29,0.12);
}
.opinion-card .author-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.opinion-card .avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    overflow: hidden;
}
.opinion-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.opinion-card .author-info strong { display: block; font-size: 14px; color: var(--ink); font-weight: 700; }
.opinion-card .author-info span {
    font-family: var(--condensed);
    font-size: 11.5px;
    color: var(--grey-4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.opinion-card h4 {
    font-family: var(--display);
    font-weight: 800;
    font-size: 19px;
    line-height: 1.25;
    margin-bottom: 10px;
    color: var(--ink);
}
.opinion-card p { font-size: 14px; line-height: 1.55; color: var(--grey-4); margin-bottom: 12px; }
.opinion-card .read-time {
    font-family: var(--condensed);
    font-size: 12px;
    color: var(--d2d-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ============================================================
   MARKETS BAR
   ============================================================ */
.markets-bar {
    background: var(--ink);
    color: var(--white);
    padding: 20px 24px;
    margin-top: 50px;
    overflow: hidden;
}
.markets-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; gap: 24px; }
.markets-bar .label {
    font-family: var(--display);
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    padding-right: 24px;
    border-right: 2px solid var(--d2d-red);
}
.markets-row { display: flex; gap: 38px; overflow: hidden; flex: 1; }
.market-item { display: flex; flex-direction: column; gap: 2px; flex-shrink: 0; }
.market-item .name { font-family: var(--condensed); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--grey-3); }
.market-item .value { font-family: var(--display); font-weight: 800; font-size: 18px; }
.market-item .change { font-family: var(--condensed); font-size: 12px; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.market-item .change.up { color: var(--green-live); }
.market-item .change.down { color: var(--d2d-red-light); }

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
    background: var(--d2d-red);
    color: var(--white);
    padding: 56px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.newsletter-section::before, .newsletter-section::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border: 60px solid rgba(255,255,255,0.05);
    border-radius: 50%;
}
.newsletter-section::before { top: -200px; left: -100px; }
.newsletter-section::after { bottom: -200px; right: -100px; }
.newsletter-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }
.newsletter-section h2 {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    line-height: 1.1;
    color: var(--white);
}
.newsletter-section h2 .hindi-tag {
    display: block;
    font-family: var(--hindi);
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 6px;
    letter-spacing: 0;
}
.newsletter-section p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 24px;
    max-width: 50ch;
    margin-left: auto;
    margin-right: auto;
}
.newsletter-section form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 999px;
    padding: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.newsletter-section input[type="email"] {
    flex: 1;
    padding: 12px 22px;
    border: none;
    background: transparent;
    font-family: var(--display);
    font-size: 14px;
    color: var(--ink);
    outline: none;
}
.newsletter-section button[type="submit"] {
    background: var(--ink);
    color: var(--white);
    border: none;
    padding: 0 26px;
    font-family: var(--display);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 999px;
    cursor: pointer;
    transition: background .2s;
}
.newsletter-section button[type="submit"]:hover { background: var(--charcoal); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--ink);
    color: var(--white);
    padding: 48px 24px 24px;
}
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-row { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.footer-brand-row .brand-mark { width: 48px; height: 48px; font-size: 19px; }
.footer-brand-row .brand-wordmark { font-size: 26px; color: var(--white); margin-left: -8px; padding-left: 12px; }
.footer-about {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--grey-3);
    max-width: 36ch;
    margin-bottom: 18px;
}
.footer-about .hindi {
    font-family: var(--hindi);
    color: var(--d2d-red-light);
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}
.social-row { display: flex; gap: 10px; }
.social-row a {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    color: var(--white);
}
.social-row a:hover { background: var(--d2d-red); border-color: var(--d2d-red); transform: translateY(-2px); }
.footer-col h5 {
    font-family: var(--display);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h5::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: var(--d2d-red);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
    color: var(--grey-3);
    font-family: var(--condensed);
    font-size: 13.5px;
    transition: color .15s;
}
.footer-col a:hover { color: var(--d2d-red-light); }
.footer-bottom {
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-family: var(--condensed);
    font-size: 12px;
    color: var(--grey-4);
}
.footer-bottom a { color: var(--grey-4); }
.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   SINGLE POST & PAGE
   ============================================================ */
.single-wrap, .page-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 24px;
}
.single-layout, .archive-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}
.post-main {
    background: var(--white);
}
.post-header { margin-bottom: 30px; }
.post-cat-row { display: flex; gap: 8px; margin-bottom: 16px; align-items: center; flex-wrap: wrap; }
.post-title {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--ink);
}
.post-excerpt {
    font-family: var(--display);
    font-size: 18px;
    line-height: 1.5;
    color: var(--grey-4);
    margin-bottom: 20px;
    font-weight: 400;
}
.post-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid var(--grey-2);
    border-bottom: 1px solid var(--grey-2);
    font-family: var(--condensed);
    font-size: 13px;
    color: var(--grey-4);
    flex-wrap: wrap;
}
.post-meta .author-mini { display: flex; gap: 10px; align-items: center; }
.post-meta .author-mini img { width: 36px; height: 36px; border-radius: 50%; }
.post-meta .author-mini strong { color: var(--ink); display: block; font-family: var(--display); font-weight: 700; font-size: 14px; }
.post-meta .sep { width: 3px; height: 3px; background: var(--grey-3); border-radius: 50%; }
.post-featured {
    width: 100%;
    margin: 24px 0;
    border-radius: 6px;
    overflow: hidden;
}
.post-featured img { width: 100%; height: auto; display: block; }
.post-content {
    font-family: 'Georgia', serif;
    font-size: 18px;
    line-height: 1.75;
    color: var(--ink);
}
.post-content h2, .post-content h3, .post-content h4 {
    font-family: var(--display);
    font-weight: 800;
    margin: 1.5em 0 0.6em;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.post-content h2 { font-size: 28px; }
.post-content h3 { font-size: 22px; }
.post-content h4 { font-size: 18px; }
.post-content p { margin-bottom: 1.2em; }
.post-content a { color: var(--d2d-red); text-decoration: underline; }
.post-content blockquote {
    border-left: 4px solid var(--d2d-red);
    padding: 12px 0 12px 24px;
    margin: 24px 0;
    font-style: italic;
    color: var(--charcoal);
    background: var(--grey-1);
    padding-right: 24px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.post-content img { max-width: 100%; height: auto; margin: 24px 0; border-radius: 4px; }
.post-content ul, .post-content ol { margin: 1em 0 1em 1.5em; }
.post-content li { margin-bottom: 0.5em; }
.post-content code {
    font-family: 'Courier New', monospace;
    background: var(--grey-1);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.9em;
}
.post-content pre {
    background: var(--ink);
    color: var(--white);
    padding: 16px;
    border-radius: 6px;
    overflow-x: auto;
    margin: 20px 0;
}

.post-tags { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--grey-2); }
.post-tags a {
    display: inline-block;
    background: var(--grey-1);
    color: var(--ink);
    padding: 6px 12px;
    margin: 0 6px 6px 0;
    border-radius: 999px;
    font-family: var(--condensed);
    font-size: 12px;
}
.post-tags a:hover { background: var(--d2d-red); color: var(--white); }

.post-share {
    display: flex;
    gap: 12px;
    margin: 24px 0;
    padding: 20px 0;
    border-top: 1px solid var(--grey-2);
    border-bottom: 1px solid var(--grey-2);
    align-items: center;
}
.post-share span { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: 0.1em; color: var(--grey-4); }
.post-share a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--grey-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    transition: all .2s;
}
.post-share a:hover { background: var(--d2d-red); color: var(--white); }

.related-posts { margin-top: 40px; padding-top: 30px; border-top: 2px solid var(--ink); }
.related-posts h3 {
    font-family: var(--display);
    font-weight: 900;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

/* Comments */
.comments-area { margin-top: 40px; padding-top: 30px; border-top: 2px solid var(--ink); }
.comments-title {
    font-family: var(--display);
    font-weight: 900;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.comment-list { list-style: none; }
.comment { padding: 16px 0; border-bottom: 1px solid var(--grey-2); }
.comment-author { display: flex; gap: 12px; margin-bottom: 8px; align-items: center; }
.comment-author img { width: 40px; height: 40px; border-radius: 50%; }
.comment-author .fn { font-family: var(--display); font-weight: 700; font-size: 14px; }
.comment-meta { font-family: var(--condensed); font-size: 12px; color: var(--grey-4); }
.comment-body { padding-left: 52px; }
.comment-reply-link {
    display: inline-block;
    margin-top: 8px;
    font-family: var(--condensed);
    font-size: 12px;
    font-weight: 700;
    color: var(--d2d-red);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.comment-respond { margin-top: 30px; }
.comment-reply-title { font-family: var(--display); font-weight: 800; font-size: 18px; margin-bottom: 16px; }
.comment-form { display: flex; flex-direction: column; gap: 12px; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--grey-2);
    border-radius: 4px;
    font-family: var(--display);
    font-size: 14px;
    outline: none;
}
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--d2d-red); }
.comment-form .form-submit input[type="submit"] {
    background: var(--d2d-red);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    font-family: var(--display);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}
.comment-form .form-submit input[type="submit"]:hover { background: var(--d2d-red-dark); }

/* ============================================================
   ARCHIVE / CATEGORY
   ============================================================ */
.archive-header {
    background: var(--ink);
    color: var(--white);
    padding: 40px 24px;
    margin-bottom: 32px;
}
.archive-header-inner { max-width: 1400px; margin: 0 auto; }
.archive-cat-label {
    font-family: var(--condensed);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--d2d-red-light);
    margin-bottom: 8px;
}
.archive-title {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(32px, 5vw, 54px);
    letter-spacing: -0.025em;
    text-transform: uppercase;
    line-height: 1;
}
.archive-description {
    font-family: var(--display);
    font-size: 16px;
    color: var(--grey-3);
    margin-top: 12px;
    max-width: 60ch;
}

.pagination-row {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 40px 0;
    flex-wrap: wrap;
}
.pagination-row a, .pagination-row span {
    padding: 10px 16px;
    border: 1.5px solid var(--grey-2);
    border-radius: 4px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 13px;
    color: var(--ink);
    transition: all .15s;
}
.pagination-row a:hover { background: var(--d2d-red); color: var(--white); border-color: var(--d2d-red); }
.pagination-row .current { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* 404 */
.error-404 {
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 24px;
    text-align: center;
}
.error-404 .big {
    font-family: var(--display);
    font-weight: 900;
    font-size: 180px;
    line-height: 1;
    color: var(--d2d-red);
    letter-spacing: -0.05em;
}
.error-404 h1 {
    font-family: var(--display);
    font-weight: 800;
    font-size: 32px;
    margin: 20px 0;
    text-transform: uppercase;
}
.error-404 p { color: var(--grey-4); margin-bottom: 24px; font-size: 16px; }
.error-404 .btn {
    display: inline-block;
    background: var(--d2d-red);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 999px;
    font-family: var(--display);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
}
.error-404 .btn:hover { background: var(--d2d-red-dark); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .stories-grid { grid-template-columns: repeat(2, 1fr); }
    .two-col { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .video-grid { grid-template-columns: repeat(2, 1fr); }
    .video-card.large { grid-row: span 1; aspect-ratio: 16/10; }
    .states-grid { grid-template-columns: repeat(2, 1fr); }
    .opinion-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .single-layout, .archive-layout { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .masthead { grid-template-columns: 1fr auto; padding: 12px 16px; }
    .header-search { display: none; }
    .utility-bar { padding: 6px 14px; font-size: 11px; }
    .utility-bar .util-left .weather { display: none; }
    .brand-mark { width: 46px; height: 46px; font-size: 18px; }
    .brand-wordmark { font-size: 24px; }
    .primary-nav { padding: 0 14px; }
    .hero-wrap, .block { padding: 18px 16px; }
    .stories-grid { grid-template-columns: 1fr; }
    .cat-block .lead { grid-template-columns: 1fr; }
    .cat-list-item { grid-template-columns: 1fr; }
    .cat-list-item .thumb { display: none; }
    .video-grid { grid-template-columns: 1fr; }
    .states-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .markets-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
    .markets-bar .label { border-right: none; border-bottom: 2px solid var(--d2d-red); padding-bottom: 8px; padding-right: 0; }
    .section-head h2 { font-size: 22px; }
    .section-head h2 .hindi { font-size: 15px; }
    .hero-main .content { padding: 18px 20px 16px; }
    .newsletter-section form { flex-direction: column; border-radius: 12px; gap: 6px; padding: 6px; }
    .newsletter-section button { padding: 12px; border-radius: 8px; }
    .newsletter-section input { text-align: center; }
    .related-grid { grid-template-columns: 1fr; }
    .post-meta { gap: 8px; }
    .comment-body { padding-left: 0; }
}
