/*
Theme Name: DostNews D3
Theme URI: https://dostnews.com
Author: Dost Digital Division (3D)
Author URI: https://dostmarketing.pk
Description: Premium Urdu News Portal — Editorial 3-Column Layout, Modern Typography, Elegant Dividers, Mega Menu with Subcategories, AdSense Ready
Version: 3.2
License: Private
Text Domain: dostnews-d3
*/

/* ══════════════════════════════════════════════════════════
   DESIGN TOKENS - Premium Editorial System
════════════════════════════════════════════════════════════ */

:root {
    /* Brand Palette - Refined */
    --dn-ink: #0f1729;              /* Deep editorial ink */
    --dn-ink-soft: #1e293b;
    --dn-gold: #c9973a;             /* Editorial gold accent */
    --dn-gold-light: #e5b95f;
    --dn-paper: #fafaf7;            /* Newsprint cream */
    --dn-paper-warm: #f5f1e8;
    --dn-line: #e5e0d5;             /* Subtle dividers */
    --dn-line-strong: #d4cdbd;
    --dn-muted: #6b7280;
    --dn-text: #1f2937;
    --dn-text-soft: #4b5563;
    --dn-red: #c0392b;
    --dn-white: #ffffff;
    
    /* Category Accent Colors - Muted Editorial Palette */
    --cat-national: #c0392b;
    --cat-punjab: #d97706;
    --cat-sindh: #2563eb;
    --cat-kpk: #047857;
    --cat-balochistan: #7c3aed;
    --cat-ajk: #be185d;
    --cat-gilgit: #0891b2;
    --cat-international: #1e3a8a;
    --cat-business: #065f46;
    --cat-sports: #c2410c;
    --cat-technology: #5b21b6;
    --cat-agriculture: #15803d;
    --cat-religion: #166534;
    --cat-taste: #b45309;
    --cat-fun: #9d174d;
    
    /* Typography */
    --font-urdu: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', serif;
    --font-display: 'Playfair Display', 'Noto Nastaliq Urdu', serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    
    /* Layout */
    --max-width: 1400px;
    --gap: 28px;
    --radius: 4px;
    --radius-lg: 8px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(15, 23, 41, 0.04);
    --shadow-md: 0 4px 12px rgba(15, 23, 41, 0.06);
    --shadow-lg: 0 12px 32px rgba(15, 23, 41, 0.1);
    --shadow-xl: 0 24px 48px rgba(15, 23, 41, 0.12);
}

/* ══════════════════════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════════════════════ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-urdu);
    direction: rtl;
    background: var(--dn-paper);
    color: var(--dn-text);
    line-height: 1.9;
    overflow-x: hidden;
    
    /* Subtle newsprint texture */
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(201, 151, 58, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(15, 23, 41, 0.02) 0%, transparent 50%);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s ease;
}

a:hover {
    color: var(--dn-red);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.dn-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ══════════════════════════════════════════════════════════
   TOP BAR - Market Ticker Style
════════════════════════════════════════════════════════════ */

.dn-topbar {
    background: var(--dn-ink);
    color: rgba(255,255,255,0.85);
    padding: 10px 0;
    font-size: 0.875rem;
    border-bottom: 3px solid var(--dn-gold);
}

.dn-topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.dn-topbar__links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.dn-topbar__links a {
    font-size: 0.9rem;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.dn-topbar__links a:hover {
    opacity: 1;
    color: var(--dn-gold-light);
}

.dn-topbar__social {
    display: flex;
    gap: 10px;
}

.dn-topbar__social a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    font-size: 0.85rem;
    transition: all 0.25s ease;
}

.dn-topbar__social a:hover {
    background: var(--dn-gold);
    color: var(--dn-ink);
    transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
   MAIN HEADER - Editorial Masthead
════════════════════════════════════════════════════════════ */

.dn-masthead {
    background: var(--dn-white);
    padding: 28px 0;
    border-bottom: 1px solid var(--dn-line);
}

.dn-masthead__ad-left,
.dn-masthead__ad-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.dn-masthead__ad-right {
    justify-content: flex-end;
}

.dn-partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--dn-ink) 0%, var(--dn-ink-soft) 100%);
    color: var(--dn-white);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: transform 0.25s ease;
    min-width: 140px;
    justify-content: center;
}

.dn-partner-badge--gold {
    background: linear-gradient(135deg, var(--dn-red) 0%, #a93226 100%);
}

.dn-partner-badge:hover {
    transform: translateY(-2px);
    color: var(--dn-gold-light);
}

.dn-masthead__logo {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.dn-masthead__logo a {
    display: inline-block;
    line-height: 0;
}

/* CRITICAL: Force logo size — prevents oversized images */
.dn-masthead__logo img,
.dn-masthead__logo .custom-logo,
.dn-masthead__logo .custom-logo-link img {
    max-height: 90px !important;
    max-width: 280px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.dn-masthead__logo-text {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--dn-ink);
    letter-spacing: -1px;
    line-height: 1;
}

.dn-masthead__tagline {
    font-size: 0.85rem;
    color: var(--dn-muted);
    margin-top: 6px;
    letter-spacing: 2px;
}

.dn-masthead__meta {
    text-align: left;
    font-size: 0.95rem;
    color: var(--dn-text-soft);
    white-space: nowrap;
    min-width: 180px;
}

.dn-masthead__date {
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    white-space: normal;
    line-height: 1.5;
}

.dn-masthead__weather {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--dn-ink);
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Fix the grid columns so center stays centered and sides don't squeeze */
.dn-masthead__inner {
    display: grid;
    grid-template-columns: minmax(220px, auto) 1fr minmax(200px, auto);
    align-items: center;
    gap: 30px;
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION - Premium with Dropdown
════════════════════════════════════════════════════════════ */

.dn-nav {
    background: var(--dn-ink);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.dn-nav__inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dn-nav__search {
    flex: 0 0 220px;
    position: relative;
}

.dn-nav__search input {
    width: 100%;
    padding: 10px 16px 10px 40px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    color: white;
    font-family: var(--font-urdu);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s;
}

.dn-nav__search input::placeholder {
    color: rgba(255,255,255,0.5);
}

.dn-nav__search input:focus {
    background: rgba(255,255,255,0.12);
    border-color: var(--dn-gold);
}

.dn-nav__search::before {
    content: '🔍';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    opacity: 0.6;
}

.dn-nav__menu {
    list-style: none;
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-items: stretch;
}

.dn-nav__item {
    position: relative;
}

.dn-nav__link {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 16px 14px;
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    font-weight: 500;
    white-space: nowrap;
    position: relative;
    transition: color 0.25s ease;
}

.dn-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    width: 0;
    height: 3px;
    background: var(--dn-gold);
    transform: translateX(50%);
    transition: width 0.3s ease;
}

.dn-nav__link:hover {
    color: var(--dn-gold-light);
}

.dn-nav__link:hover::after {
    width: 70%;
}

/* Dropdown indicator */
.dn-nav__item--has-children > .dn-nav__link::before {
    content: '▾';
    margin-left: 6px;
    font-size: 0.7rem;
    opacity: 0.7;
}

/* Beautiful Dropdown Submenu */
.dn-nav__submenu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 240px;
    background: var(--dn-white);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-xl);
    list-style: none;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 999;
    border-top: 3px solid var(--dn-gold);
}

.dn-nav__item:hover .dn-nav__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dn-nav__submenu li {
    padding: 0;
}

.dn-nav__submenu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--dn-text);
    font-size: 1.05rem;
    border-right: 3px solid transparent;
    transition: all 0.2s ease;
}

.dn-nav__submenu a::before {
    content: '◂';
    color: var(--dn-gold);
    font-size: 0.8rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s ease;
}

.dn-nav__submenu a:hover {
    background: var(--dn-paper-warm);
    border-right-color: var(--dn-gold);
    color: var(--dn-ink);
    padding-right: 28px;
}

.dn-nav__submenu a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* ══════════════════════════════════════════════════════════
   BREAKING NEWS TICKER
════════════════════════════════════════════════════════════ */

.dn-ticker {
    background: var(--dn-white);
    border-bottom: 1px solid var(--dn-line);
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.dn-ticker__label {
    background: var(--dn-red);
    color: var(--dn-white);
    padding: 12px 24px;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, calc(100% - 15px) 50%, 100% 100%, 0 100%);
    padding-left: 35px;
}

.dn-ticker__label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--dn-white);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.dn-ticker__content {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 12px 20px;
}

.dn-ticker__items {
    display: flex;
    gap: 40px;
    animation: scroll-rtl 40s linear infinite;
    white-space: nowrap;
}

.dn-ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    color: var(--dn-text);
}

.dn-ticker__item::before {
    content: '◆';
    color: var(--dn-gold);
    font-size: 0.7rem;
}

@keyframes scroll-rtl {
    0% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

/* ══════════════════════════════════════════════════════════
   MAIN 3-COLUMN LAYOUT - Premium Editorial Grid
════════════════════════════════════════════════════════════ */

.dn-main {
    padding: 40px 0;
    background: var(--dn-paper);
}

.dn-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: var(--gap);
    position: relative;
}

/* ELEGANT COLUMN DIVIDERS - Newspaper Style */
.dn-grid::before,
.dn-grid::after {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 20px;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--dn-line-strong) 10%,
        var(--dn-line-strong) 90%,
        transparent 100%
    );
    pointer-events: none;
}

.dn-grid::before {
    right: calc(25% + (var(--gap) / 2) - 0.5px);
}

.dn-grid::after {
    left: calc(25% + (var(--gap) / 2) - 0.5px);
}

/* Decorative divider ornaments */
.dn-grid-ornament {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--dn-paper);
    border: 1px solid var(--dn-line-strong);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dn-gold);
    font-size: 0.7rem;
    z-index: 2;
    pointer-events: none;
}

.dn-grid-ornament::before {
    content: '◆';
}

.dn-grid-ornament--left {
    left: calc(25% + (var(--gap) / 2) - 12px);
}

.dn-grid-ornament--right {
    right: calc(25% + (var(--gap) / 2) - 12px);
}

.dn-left-column,
.dn-right-column {
    position: sticky;
    top: 80px;
    align-self: start;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--dn-line-strong) transparent;
}

.dn-left-column::-webkit-scrollbar,
.dn-right-column::-webkit-scrollbar {
    width: 4px;
}

.dn-left-column::-webkit-scrollbar-thumb,
.dn-right-column::-webkit-scrollbar-thumb {
    background: var(--dn-line-strong);
    border-radius: 4px;
}

/* ══════════════════════════════════════════════════════════
   SECTION HEADERS - Editorial Style
════════════════════════════════════════════════════════════ */

.dn-section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 3px double var(--dn-ink);
}

.dn-section-header__accent {
    width: 6px;
    height: 32px;
    background: var(--dn-gold);
    border-radius: 3px;
}

.dn-section-header__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dn-ink);
    line-height: 1;
}

.dn-section-header__title--center {
    font-size: 2.25rem;
}

.dn-section-header__count {
    margin-right: auto;
    font-size: 0.85rem;
    color: var(--dn-muted);
    font-family: var(--font-sans);
    letter-spacing: 1px;
}

/* Smaller section for sidebars */
.dn-sidebar-section {
    margin-bottom: 40px;
}

.dn-sidebar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--dn-ink);
    position: relative;
}

.dn-sidebar-header::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--dn-gold);
}

.dn-sidebar-header__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dn-ink);
}

/* ══════════════════════════════════════════════════════════
   POST CARDS - Modern Editorial Style
════════════════════════════════════════════════════════════ */

.dn-card {
    background: var(--dn-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--dn-line);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    margin-bottom: 20px;
    position: relative;
}

.dn-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--dn-line-strong);
}

/* HERO CARD - Large Feature Card */
.dn-card--hero {
    display: grid;
    grid-template-rows: auto auto;
}

.dn-card--hero .dn-card__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.dn-card--hero .dn-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dn-card--hero:hover .dn-card__image {
    transform: scale(1.05);
}

.dn-card--hero .dn-card__body {
    padding: 24px 28px;
}

.dn-card--hero .dn-card__title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1.5;
    margin-bottom: 14px;
    color: var(--dn-ink);
    font-weight: 700;
}

.dn-card--hero .dn-card__excerpt {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--dn-text-soft);
    margin-bottom: 16px;
}

/* STANDARD CARD - Sidebar/List Style */
.dn-card__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--dn-paper-warm);
}

.dn-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dn-card:hover .dn-card__image {
    transform: scale(1.03);
}

.dn-card__image--placeholder {
    background: linear-gradient(90deg, #f3f0e8 25%, #e8e3d5 50%, #f3f0e8 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dn-line-strong);
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.dn-card__body {
    padding: 18px 20px;
}

.dn-card__title {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 12px;
    color: var(--dn-ink);
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dn-card__title a {
    color: inherit;
    transition: color 0.25s ease;
}

.dn-card__title a:hover {
    color: var(--dn-red);
}

/* Category Badge - Premium */
.dn-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dn-white);
    background: var(--cat-national);
    border-radius: 2px;
    letter-spacing: 0.3px;
    position: relative;
    margin-bottom: 10px;
    text-transform: none;
}

.dn-badge--floating {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

/* Card Meta Footer */
.dn-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-top: 1px solid var(--dn-line);
    font-size: 0.85rem;
    color: var(--dn-muted);
    background: var(--dn-paper);
}

.dn-card__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* List-style card for sidebars - horizontal */
.dn-card--list {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 12px;
    padding: 12px;
    background: var(--dn-white);
    border: 1px solid var(--dn-line);
    border-radius: var(--radius);
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.dn-card--list:hover {
    border-color: var(--dn-gold);
    box-shadow: var(--shadow-sm);
}

.dn-card--list .dn-card__image-wrap {
    aspect-ratio: 1;
    border-radius: var(--radius);
}

.dn-card--list .dn-card__title {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 6px;
    -webkit-line-clamp: 2;
}

.dn-card--list .dn-card__meta-small {
    font-size: 0.75rem;
    color: var(--dn-muted);
}

.dn-card--list .dn-badge {
    font-size: 0.7rem;
    padding: 2px 8px;
    margin-bottom: 6px;
}

/* Numbered list cards for "Most Read" */
.dn-card--numbered {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding: 14px 10px;
    border-bottom: 1px solid var(--dn-line);
    align-items: start;
}

.dn-card--numbered:last-child {
    border-bottom: none;
}

.dn-card--numbered .dn-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--dn-gold);
    line-height: 1;
    opacity: 0.8;
}

.dn-card--numbered .dn-card__title {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    -webkit-line-clamp: 3;
}

/* ══════════════════════════════════════════════════════════
   ROTATION INDICATOR DOTS
════════════════════════════════════════════════════════════ */

.dn-rotation-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 16px 0;
}

.dn-rotation-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--dn-line-strong);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.dn-rotation-dot:hover {
    background: var(--dn-gold-light);
    transform: scale(1.2);
}

.dn-rotation-dot.active {
    background: var(--dn-gold);
    width: 30px;
    border-radius: 5px;
}

/* ══════════════════════════════════════════════════════════
   PREMIUM AD / PARTNER BLOCKS
════════════════════════════════════════════════════════════ */

.dn-ad-block {
    background: linear-gradient(135deg, var(--dn-ink) 0%, var(--dn-ink-soft) 100%);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--dn-white);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.dn-ad-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--dn-gold) 0%, transparent 60%);
    opacity: 0.08;
}

.dn-ad-block__label {
    font-size: 0.7rem;
    color: var(--dn-gold);
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-family: var(--font-sans);
}

.dn-ad-block__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
}

.dn-ad-block__text {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 20px;
    position: relative;
}

.dn-ad-block__btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--dn-gold);
    color: var(--dn-ink);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.dn-ad-block__btn:hover {
    background: var(--dn-gold-light);
    color: var(--dn-ink);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 151, 58, 0.4);
}

.dn-ad-block--red {
    background: linear-gradient(135deg, var(--dn-red) 0%, #a93226 100%);
}

.dn-ad-block--green {
    background: linear-gradient(135deg, var(--cat-business) 0%, #064e3b 100%);
}

/* ══════════════════════════════════════════════════════════
   SINGLE POST STYLING
════════════════════════════════════════════════════════════ */

.dn-progress-bar {
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(to left, var(--dn-gold), var(--dn-red));
    z-index: 9999;
    transition: width 0.1s ease;
}

.dn-single {
    max-width: 820px;
    margin: 0 auto;
    background: var(--dn-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.dn-single__category {
    display: inline-block;
    padding: 6px 16px;
    background: var(--cat-national);
    color: white;
    border-radius: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}

.dn-single__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--dn-ink);
    font-weight: 700;
}

.dn-single__meta {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid var(--dn-line);
    border-bottom: 1px solid var(--dn-line);
    margin-bottom: 30px;
    color: var(--dn-muted);
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.dn-single__image {
    margin: 0 -40px 30px;
    overflow: hidden;
}

.dn-single__image img {
    width: 100%;
    height: auto;
}

.dn-single__content {
    font-size: 1.2rem;
    line-height: 2.1;
    color: var(--dn-text);
}

.dn-single__content p {
    margin-bottom: 20px;
}

.dn-single__content h2,
.dn-single__content h3 {
    margin: 32px 0 16px;
    color: var(--dn-ink);
    font-weight: 700;
}

.dn-single__content h2 { font-size: 1.75rem; }
.dn-single__content h3 { font-size: 1.4rem; }

.dn-single__share {
    margin-top: 40px;
    padding: 28px;
    background: var(--dn-paper-warm);
    border-radius: var(--radius-lg);
    text-align: center;
}

.dn-single__share-title {
    font-size: 1.2rem;
    margin-bottom: 18px;
    color: var(--dn-ink);
}

.dn-social-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dn-social-btn {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.dn-social-btn:hover {
    transform: translateY(-3px) scale(1.1);
    color: white;
    box-shadow: var(--shadow-md);
}

.dn-social-btn--fb { background: #1877f2; }
.dn-social-btn--tw { background: #000; }
.dn-social-btn--wa { background: #25d366; }
.dn-social-btn--lk { background: #0077b5; }

/* ══════════════════════════════════════════════════════════
   FOOTER - Editorial Newspaper Style
════════════════════════════════════════════════════════════ */

.dn-footer {
    background: var(--dn-ink);
    color: rgba(255,255,255,0.85);
    margin-top: 60px;
    position: relative;
}

.dn-footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(to left, var(--dn-gold), var(--dn-red), var(--dn-gold));
}

.dn-footer__main {
    padding: 50px 0 30px;
}

.dn-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.dn-footer__section h3 {
    color: var(--dn-white);
    margin-bottom: 18px;
    font-size: 1.25rem;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--dn-gold);
    display: inline-block;
}

.dn-footer__about p {
    line-height: 1.9;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.dn-footer__links {
    list-style: none;
}

.dn-footer__links li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.dn-footer__links a {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.dn-footer__links a::before {
    content: '◂';
    color: var(--dn-gold);
    font-size: 0.7rem;
}

.dn-footer__links a:hover {
    color: var(--dn-gold-light);
    transform: translateX(-4px);
}

.dn-footer__bottom {
    padding: 20px 0;
    background: rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    font-size: 0.9rem;
}

.dn-footer__bottom a {
    color: var(--dn-gold-light);
}

/* ══════════════════════════════════════════════════════════
   SCROLL TO TOP BUTTON
════════════════════════════════════════════════════════════ */

.dn-scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--dn-ink);
    color: var(--dn-gold);
    border: 2px solid var(--dn-gold);
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.dn-scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.dn-scroll-top:hover {
    background: var(--dn-gold);
    color: var(--dn-ink);
    transform: translateY(-3px);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE - Tablet & Mobile
════════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
    .dn-grid {
        grid-template-columns: 1fr 2fr;
    }
    
    .dn-grid::before {
        right: calc(33.33% + (var(--gap) / 2) - 0.5px);
    }
    
    .dn-grid::after,
    .dn-grid-ornament--right {
        display: none;
    }
    
    .dn-right-column {
        display: none;
    }
    
    .dn-masthead__inner {
        grid-template-columns: auto 1fr auto;
        gap: 20px;
    }
    
    .dn-masthead__ad-left,
    .dn-masthead__ad-right {
        flex-direction: column;
    }
    
    .dn-partner-badge {
        min-width: 120px;
        padding: 10px 14px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .dn-grid {
        grid-template-columns: 1fr;
    }
    
    .dn-grid::before,
    .dn-grid::after,
    .dn-grid-ornament {
        display: none;
    }
    
    .dn-left-column,
    .dn-right-column {
        position: static;
        max-height: none;
    }
    
    .dn-left-column {
        display: block;
    }
    
    .dn-right-column {
        display: block;
    }
    
    .dn-masthead__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .dn-masthead__ad-left,
    .dn-masthead__ad-right {
        flex-direction: row;
        justify-content: center;
    }
    
    .dn-masthead__meta {
        text-align: center;
    }
    
    .dn-nav__search {
        display: none;
    }
    
    .dn-nav__menu {
        overflow-x: auto;
        scrollbar-width: none;
    }
    
    .dn-nav__menu::-webkit-scrollbar {
        display: none;
    }
    
    .dn-nav__link {
        padding: 14px 10px;
        font-size: 1rem;
    }
    
    .dn-nav__submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        display: none;
    }
    
    .dn-nav__item.active .dn-nav__submenu {
        display: block;
    }
    
    .dn-topbar__inner {
        flex-direction: column;
        text-align: center;
    }
    
    .dn-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .dn-single {
        padding: 24px;
    }
    
    .dn-single__image {
        margin: 0 -24px 24px;
    }
}

/* ══════════════════════════════════════════════════════════
   PREMIUM CUSTOM AD DESIGNS
   J7 Icon, PHA Flats, Naqsh Consultants, Dost Marketing, 3D
══════════════════════════════════════════════════════════ */

/* ── 1. J7 ICON BANNER (Luxury Black/Gold) ───────────── */

.dn-ad-j7 {
    display: block;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2416 50%, #1a1a1a 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 30px 0;
    text-decoration: none;
    color: white;
    box-shadow: 0 10px 40px rgba(201, 151, 58, 0.2);
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 151, 58, 0.3);
}

.dn-ad-j7:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(201, 151, 58, 0.35);
    color: white;
}

.dn-ad-j7__bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 151, 58, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(229, 185, 95, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.dn-ad-j7__content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 30px 35px;
    z-index: 2;
}

.dn-ad-j7__badge {
    display: inline-block;
    background: linear-gradient(135deg, #c9973a, #e5b95f);
    color: #1a1a1a;
    padding: 6px 16px;
    border-radius: 2px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.dn-ad-j7__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 900;
    color: #e5b95f;
    margin-bottom: 8px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.dn-ad-j7__subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 14px;
    line-height: 1.5;
}

.dn-ad-j7__features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}

.dn-ad-j7__right {
    text-align: center;
    padding: 20px 25px;
    background: rgba(201, 151, 58, 0.1);
    border: 1px solid rgba(201, 151, 58, 0.3);
    border-radius: var(--radius-lg);
    min-width: 200px;
}

.dn-ad-j7__price-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
    margin-bottom: 4px;
    font-family: var(--font-sans);
}

.dn-ad-j7__price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: #e5b95f;
    line-height: 1;
    margin-bottom: 8px;
}

.dn-ad-j7__plan {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 14px;
    line-height: 1.4;
}

.dn-ad-j7__cta {
    background: linear-gradient(135deg, #c9973a, #e5b95f);
    color: #1a1a1a;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
}

.dn-ad-j7__sponsor {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1.5px;
    font-family: var(--font-sans);
}

@media (max-width: 768px) {
    .dn-ad-j7__content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px 20px;
    }
    .dn-ad-j7__right {
        width: 100%;
    }
    .dn-ad-j7__features {
        gap: 12px;
    }
}

/* ── 2. PHA FLATS BANNER (Government Navy/Green) ─────── */

.dn-ad-pha {
    display: block;
    position: relative;
    background: linear-gradient(135deg, #0a2540 0%, #0f3459 50%, #047857 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 30px 0;
    text-decoration: none;
    color: white;
    box-shadow: 0 10px 40px rgba(10, 37, 64, 0.25);
    transition: all 0.4s ease;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.dn-ad-pha:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(10, 37, 64, 0.4);
    color: white;
}

.dn-ad-pha__pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.02) 20px, rgba(255,255,255,0.02) 40px);
    pointer-events: none;
}

.dn-ad-pha__content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 30px 35px;
    z-index: 2;
}

.dn-ad-pha__gov-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(16, 185, 129, 0.5);
    color: #10b981;
    padding: 6px 14px;
    border-radius: 2px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.dn-ad-pha__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
    line-height: 1.2;
}

.dn-ad-pha__subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 16px;
}

.dn-ad-pha__features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.9);
}

.dn-ad-pha__right {
    text-align: center;
    padding: 20px 25px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: var(--radius-lg);
    min-width: 200px;
}

.dn-ad-pha__price-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
    margin-bottom: 4px;
    font-family: var(--font-sans);
}

.dn-ad-pha__price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: #10b981;
    line-height: 1;
    margin-bottom: 14px;
}

.dn-ad-pha__cta {
    background: #10b981;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
}

.dn-ad-pha__sponsor {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1.5px;
    font-family: var(--font-sans);
}

@media (max-width: 768px) {
    .dn-ad-pha__content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px 20px;
    }
    .dn-ad-pha__right {
        width: 100%;
    }
}

/* ── 3. NAQSH CONSULTANTS SIDEBAR (4-Country Card) ──── */

.dn-ad-naqsh {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    margin-bottom: 24px;
    color: white;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.dn-ad-naqsh__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dn-ad-naqsh__icon {
    font-size: 2.2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c9973a, #e5b95f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dn-ad-naqsh__brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.dn-ad-naqsh__tagline {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    margin-top: 2px;
}

.dn-ad-naqsh__countries {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
}

.dn-ad-naqsh__country {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 10px 12px;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.dn-ad-naqsh__country:hover {
    background: rgba(201, 151, 58, 0.15);
    border-color: rgba(201, 151, 58, 0.3);
}

.dn-ad-naqsh__flag {
    font-size: 1.3rem;
}

.dn-ad-naqsh__cname {
    font-size: 0.9rem;
    font-weight: 600;
}

.dn-ad-naqsh__features {
    margin-bottom: 18px;
}

.dn-ad-naqsh__feature {
    font-size: 0.85rem;
    padding: 6px 0;
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 6px;
}

.dn-ad-naqsh__cta {
    display: block;
    background: linear-gradient(135deg, #c9973a, #e5b95f);
    color: #1a1a1a;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dn-ad-naqsh__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 151, 58, 0.4);
    color: #1a1a1a;
}

.dn-ad-naqsh__sponsor {
    position: absolute;
    top: 8px;
    left: 10px;
    font-size: 0.6rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 1px;
    font-family: var(--font-sans);
}

/* ── 4. DOST MARKETING SIDEBAR (Properties List) ────── */

.dn-ad-dost {
    background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 100%);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    margin-bottom: 24px;
    color: white;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 151, 58, 0.2);
}

.dn-ad-dost::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 151, 58, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.dn-ad-dost__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    position: relative;
}

.dn-ad-dost__logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c9973a, #e5b95f);
    color: #7f1d1d;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 900;
    flex-shrink: 0;
}

.dn-ad-dost__brand {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
}

.dn-ad-dost__tagline {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.75);
    font-style: italic;
    margin-top: 2px;
}

.dn-ad-dost__properties {
    position: relative;
    margin-bottom: 18px;
}

.dn-ad-dost__prop {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.95);
    border-bottom: 1px dotted rgba(255,255,255,0.1);
}

.dn-ad-dost__prop:last-child {
    border-bottom: none;
}

.dn-ad-dost__tick {
    font-size: 1rem;
}

.dn-ad-dost__whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #25d366;
    color: white;
    padding: 10px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.dn-ad-dost__whatsapp:hover {
    background: #20bd5a;
    color: white;
    transform: translateY(-2px);
}

.dn-ad-dost__cta {
    display: block;
    background: rgba(201, 151, 58, 0.2);
    border: 1px solid rgba(201, 151, 58, 0.4);
    color: #e5b95f;
    padding: 10px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.dn-ad-dost__cta:hover {
    background: rgba(201, 151, 58, 0.3);
    color: #e5b95f;
}

.dn-ad-dost__sponsor {
    position: absolute;
    top: 8px;
    left: 10px;
    font-size: 0.6rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 1px;
    font-family: var(--font-sans);
    z-index: 3;
}

/* ── 5. 3D DIGITAL DIVISION WIDGET ───────────────────── */

.dn-ad-3d {
    background: linear-gradient(135deg, #0f1729 0%, #1e293b 100%);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    margin-bottom: 24px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 151, 58, 0.2);
}

.dn-ad-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #c9973a, #e5b95f, #c9973a);
}

.dn-ad-3d__badge {
    display: inline-block;
    background: rgba(201, 151, 58, 0.15);
    border: 1px solid rgba(201, 151, 58, 0.3);
    color: #e5b95f;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
    font-family: var(--font-sans);
    font-weight: 600;
}

.dn-ad-3d__logo-box {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.dn-ad-3d__logo {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #c9973a, #e5b95f);
    color: #0f1729;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(201, 151, 58, 0.3);
}

.dn-ad-3d__brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.dn-ad-3d__tagline {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    font-style: italic;
    margin-bottom: 18px;
}

.dn-ad-3d__services {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    padding: 14px 0;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
}

.dn-ad-3d__service {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.9);
}

.dn-ad-3d__service span:first-child {
    font-size: 1.5rem;
}

.dn-ad-3d__divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 151, 58, 0.4), transparent);
    margin: 16px 0;
}

.dn-ad-3d__cta-text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 12px;
}

.dn-ad-3d__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.dn-ad-3d__cta:hover {
    background: #20bd5a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
}

.dn-ad-3d__sub {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    margin-top: 10px;
}


/* ══════════════════════════════════════════════════════════
   v3.2 — COMPACT LAYOUT OVERRIDES
   Reduces vertical space in header to show content sooner
════════════════════════════════════════════════════════════ */

/* 1️⃣  TOP BAR — 50% reduced (was ~42px → now ~22px) */
.dn-topbar {
    padding: 4px 0;
    font-size: 0.78rem;
}
.dn-topbar__links {
    gap: 16px;
}
.dn-topbar__links a {
    font-size: 0.82rem;
}
.dn-topbar__social a {
    width: 24px;
    height: 24px;
    font-size: 0.72rem;
}

/* 2️⃣  MASTHEAD (logo + ads row) — 20% reduced */
.dn-masthead {
    padding: 14px 0;
}
.dn-masthead__logo {
    min-height: 72px;
}
.dn-masthead__logo img,
.dn-masthead__logo .custom-logo,
.dn-masthead__logo .custom-logo-link img {
    max-height: 72px !important;
    max-width: 230px !important;
}
.dn-masthead__logo-text {
    font-size: 2.3rem;
}
.dn-masthead__tagline {
    font-size: 0.75rem;
    margin-top: 4px;
}
.dn-partner-badge {
    padding: 10px 16px;
    font-size: 0.85rem;
    min-width: 130px;
}
.dn-masthead__date {
    font-size: 0.82rem;
    margin-bottom: 4px;
}
.dn-masthead__weather {
    font-size: 0.85rem;
}

/* 3️⃣  NAVIGATION BAR — 20% reduced */
.dn-nav__inner {
    gap: 14px;
}
.dn-nav__link {
    padding: 12px 11px;
    font-size: 0.95rem;
}
.dn-nav__search {
    flex: 0 0 180px;
}
.dn-nav__search input {
    padding: 7px 14px 7px 36px;
    font-size: 0.85rem;
}
.dn-nav__search::before {
    font-size: 0.8rem;
}

/* 4️⃣  SECTION HEADINGS — 30% reduced */
.dn-section-header {
    margin-bottom: 16px;
    padding-bottom: 10px;
}
.dn-section-header__accent {
    width: 5px;
    height: 22px;
}
.dn-section-header__title {
    font-size: 1.3rem;
}
.dn-section-header__title--center {
    font-size: 1.55rem;  /* صفحہ اول — was 2.25rem */
}
.dn-section-header__count {
    font-size: 0.72rem;
}

/* Sidebar section headings (تازہ ترین / مقبول ترین / زراعت) */
.dn-sidebar-header {
    margin-bottom: 12px;
    padding-bottom: 7px;
}
.dn-sidebar-header__title {
    font-size: 1rem;
}

/* Ticker (تازہ ترین breaking news bar) — slightly compact */
.dn-ticker__label {
    padding: 8px 22px 8px 18px;
    font-size: 0.92rem;
}
.dn-ticker__content {
    padding: 8px 16px;
}
.dn-ticker__item {
    font-size: 0.92rem;
}

/* Main content container — start a bit higher */
.dn-main {
    padding: 22px 0;
}

/* Numbered list in مقبول ترین — slightly compact */
.dn-card--numbered {
    padding: 10px 8px;
}
.dn-card--numbered .dn-number {
    font-size: 1.6rem;
}

/* ── Mobile adjustments to match compact sizing ── */
@media (max-width: 768px) {
    .dn-masthead {
        padding: 12px 0;
    }
    .dn-masthead__logo img {
        max-height: 60px !important;
        max-width: 190px !important;
    }
    .dn-section-header__title--center {
        font-size: 1.4rem;
    }
}

/* ══════════════════════════════════════════════════════════
   v3.3 — FINE-TUNE COMPACT + SCROLL REVEAL + SHARE
════════════════════════════════════════════════════════════ */

/* 1️⃣ TOP BAR — extra 10% tighter */
.dn-topbar { padding: 3px 0; font-size: 0.73rem; }
.dn-topbar__links a { font-size: 0.77rem; }
.dn-topbar__social a { width: 22px; height: 22px; font-size: 0.68rem; }

/* 2️⃣ NAV — tight vertical padding (no empty space above/below words) */
.dn-nav__link { padding: 9px 10px; font-size: 0.9rem; line-height: 1.2; }
.dn-nav__search input { padding: 6px 14px 6px 34px; font-size: 0.82rem; }

/* 3️⃣ TICKER — 20% smaller */
.dn-ticker__label { padding: 6px 20px 6px 16px; font-size: 0.8rem; }
.dn-ticker__content { padding: 6px 14px; }
.dn-ticker__item { font-size: 0.82rem; }

/* 4️⃣ صفحہ اول — more compact */
.dn-section-header__title--center { font-size: 1.25rem; }
.dn-section-header__title { font-size: 1.1rem; }
.dn-section-header__count { font-size: 0.65rem; }
.dn-section-header { margin-bottom: 14px; padding-bottom: 8px; }
.dn-section-header__accent { width: 4px; height: 18px; }
.dn-sidebar-header__title { font-size: 0.92rem; }

/* ══════════════════════════════════════════════════════════
   CATEGORY SECTIONS — Scroll Reveal (fade in as you scroll)
════════════════════════════════════════════════════════════ */
.dn-cat-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    margin-bottom: 45px;
    padding-top: 20px;
    border-top: 1px dashed var(--dn-line);
}
.dn-cat-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.dn-cat-section:first-of-type { border-top: none; padding-top: 0; }

.dn-cat-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.dn-cat-section__footer {
    text-align: center;
    margin-top: 20px;
}
.dn-cat-section__more {
    display: inline-block;
    padding: 8px 20px;
    background: var(--dn-ink);
    color: var(--dn-gold);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.dn-cat-section__more:hover {
    background: var(--dn-gold);
    color: var(--dn-ink);
    transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
   SHARE BUTTONS — Floating Sticky + Top Inline
════════════════════════════════════════════════════════════ */

/* Inline bar (top of post body) */
.dn-share-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--dn-paper-warm);
    border-radius: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.dn-share-inline__label {
    font-size: 0.85rem;
    color: var(--dn-muted);
    font-weight: 600;
    margin-left: auto;
}
.dn-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.dn-share-btn:hover {
    transform: translateY(-2px) scale(1.08);
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.dn-share-btn--wa { background: #25d366; }
.dn-share-btn--fb { background: #1877f2; }
.dn-share-btn--tw { background: #000; }
.dn-share-btn--tg { background: #0088cc; }
.dn-share-btn--lk { background: #0077b5; }
.dn-share-btn--cp { background: var(--dn-ink); }
.dn-share-btn--cp.copied { background: #10b981; }

/* Floating side bar (always visible while scrolling) */
.dn-share-float {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 500;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: white;
    padding: 10px 8px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    border: 1px solid var(--dn-line);
}
.dn-share-float .dn-share-btn {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
}

/* Copy link toast */
.dn-copy-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--dn-ink);
    color: var(--dn-gold);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    z-index: 9999;
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.dn-copy-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 1200px) {
    .dn-share-float { display: none; }
}
@media (max-width: 768px) {
    .dn-cat-section__grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   v3.4 — STICKY SIDEBARS (NO BLANK SPACE)
════════════════════════════════════════════════════════════ */

/* Whole sidebar sticks as user scrolls - no blank area ever */
.dn-left-column,
.dn-right-column {
    position: sticky;
    top: 80px;
    align-self: start;
    max-height: none;
    overflow-y: visible;
}

/* Mobile: normal flow */
@media (max-width: 768px) {
    .dn-left-column,
    .dn-right-column {
        position: static;
    }
}

/* ══════════════════════════════════════════════════════════
   v3.5 — TITLE OVERLAP FIX + LIVE RATES + SUBMENU
════════════════════════════════════════════════════════════ */

/* ── Hero card title (homepage featured) ── */
.dn-card--hero .dn-card__title {
    font-size: clamp(1.1rem, 2vw, 1.55rem);
    line-height: 2.1;
    margin-bottom: 12px;
    word-spacing: 2px;
}
.dn-card--hero .dn-card__excerpt {
    font-size: 0.95rem;
    line-height: 1.95;
}

/* ── Default card title (sidebars) ── */
.dn-card__title {
    font-size: 1rem;
    line-height: 2;
}

/* ── Single post title — biggest culprit of overlap ── */
.dn-single__title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 2.1;
    word-spacing: 2px;
    margin-bottom: 16px;
}
.dn-single__content {
    font-size: 1.1rem;
    line-height: 2.1;
}
.dn-single__content p { margin-bottom: 16px; }
.dn-single__content h2 { font-size: 1.4rem; line-height: 1.9; }
.dn-single__content h3 { font-size: 1.2rem; line-height: 1.9; }

/* ── Sub-category dropdown items match parent style ── */
.dn-nav__submenu a {
    font-family: var(--font-urdu);
    font-size: 0.95rem;
    line-height: 1.8;
    padding: 10px 18px;
}

/* ── LIVE RATES BAR (above topbar) ── */
.dn-rates-bar {
    background: #047857;
    color: white;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}
.dn-rates-bar__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    padding: 5px 0;
    justify-content: center;
}
.dn-rates-bar__item {
    white-space: nowrap;
    position: relative;
    padding: 0 4px;
}
.dn-rates-bar__item::after {
    content: '|';
    position: absolute;
    right: -13px;
    opacity: 0.4;
}
.dn-rates-bar__item:last-child::after { display: none; }

/* ── Numbered "مقبول ترین" cards — fix title overlap too ── */
.dn-card--numbered .dn-card__title {
    font-size: 0.92rem;
    line-height: 2;
}

/* ── Category archive page title ── */
.dn-section-header__title[style*="2.5rem"] {
    font-size: 1.6rem !important;
    line-height: 1.6 !important;
}

@media (max-width: 768px) {
    .dn-rates-bar { font-size: 0.7rem; }
    .dn-rates-bar__inner { gap: 14px; }
    .dn-single__title { font-size: 1.3rem; line-height: 2; }
}

/* ══════════════════════════════════════════════════════════
   v3.6 — SUBMENU COMPACT (font -30%, width -40%)
════════════════════════════════════════════════════════════ */

/* Submenu narrower + smaller fonts */
.dn-nav__submenu {
    min-width: 145px;          /* was 240px → -40% */
    padding: 6px 0;
}
.dn-nav__submenu a {
    font-size: 0.72rem;        /* was ~0.95rem → -30% */
    line-height: 1.5;
    padding: 7px 14px;
}

/* v3.7 — Rates bar slimmer + bolder */
.dn-rates-bar { font-size: 0.7rem; font-weight: 700; }
.dn-rates-bar__inner { padding: 2px 0; gap: 16px; }
.dn-rates-bar__item { letter-spacing: 0.2px; }
.dn-rates-bar__item::after { right: -10px; }

@media (max-width: 768px) {
    .dn-rates-bar { font-size: 0.62rem; }
    .dn-rates-bar__inner { gap: 10px; padding: 2px 0; }
}

/* v3.8 — Fix Nastaliq title clipping in numbered cards */
.dn-card--numbered {
    overflow: visible;
}
.dn-card--numbered .dn-card__title {
    overflow: visible;
    display: block;
    -webkit-line-clamp: unset;
    padding-top: 8px;
    padding-bottom: 4px;
}

/* v3.9 — Nav patti sharp/compact + bolder text */
.dn-nav__inner { gap: 10px; }
.dn-nav__link {
    padding: 5px 9px;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.3;
}
.dn-nav__search { flex: 0 0 145px; }
.dn-nav__search input {
    padding: 5px 12px 5px 30px;
    font-size: 0.78rem;
}
.dn-nav__search::before { font-size: 0.72rem; left: 12px; }

/* Submenu links - keep readable but tight */
.dn-nav__submenu a { font-weight: 600; }

/* ══════════════════════════════════════════════════════════
   v4.2 — VIDEOS PAGE (English UI like UrduPoint)
════════════════════════════════════════════════════════════ */

.videos-page { background: #fafaf7; min-height: 60vh; }

/* Channel Tabs */
.vp-channel-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.vp-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: white;
    border: 2px solid var(--dn-line);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dn-text);
    cursor: pointer;
    transition: all 0.2s ease;
    --tab-color: var(--dn-ink);
}
.vp-tab:hover {
    border-color: var(--tab-color);
    color: var(--tab-color);
}
.vp-tab--active {
    background: var(--tab-color);
    border-color: var(--tab-color);
    color: white;
}
.vp-tab--active[data-channel="all"] {
    background: var(--dn-ink);
    border-color: var(--dn-ink);
}
.vp-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: rgba(0,0,0,0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}
.vp-tab--active .vp-count { background: rgba(255,255,255,0.25); }

/* Layout: sidebar + content */
.vp-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
    align-items: start;
}

/* Sidebar */
.vp-sidebar {
    background: white;
    border: 1px solid var(--dn-line);
    border-radius: 8px;
    padding: 18px 14px;
    position: sticky;
    top: 80px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}
.vp-sidebar-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dn-muted);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--dn-line);
    margin-bottom: 8px;
}
.vp-playlist-list { list-style: none; padding: 0; margin: 0; }
.vp-playlist-list li { margin: 0; }
.vp-playlist {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    color: var(--dn-text);
    font-size: 0.88rem;
    line-height: 1.4;
    transition: all 0.2s ease;
    display: block;
}
.vp-playlist:hover {
    background: var(--dn-paper-warm);
}
.vp-playlist--active {
    background: var(--dn-ink);
    color: white;
}
.vp-playlist-title {
    display: block;
    font-weight: 600;
    margin-bottom: 2px;
}
.vp-playlist-meta {
    display: block;
    font-size: 0.72rem;
    opacity: 0.7;
}

/* Video grid */
.vp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    transition: opacity 0.3s ease;
}
.vp-card {
    background: white;
    border: 1px solid var(--dn-line);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}
.vp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.1);
    border-color: var(--dn-line-strong);
}
.vp-card__thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
}
.vp-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.vp-card:hover .vp-card__thumb img {
    transform: scale(1.05);
}
.vp-card__play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 56px; height: 56px;
    background: rgba(0,0,0,0.8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    padding-left: 4px;
    transition: all 0.3s ease;
}
.vp-card:hover .vp-card__play {
    background: #ff0000;
    transform: translate(-50%, -50%) scale(1.1);
}
.vp-card__channel {
    position: absolute;
    bottom: 8px; left: 8px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 600;
}
.vp-card__body { padding: 14px; }
.vp-card__title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--dn-ink);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.vp-card__meta {
    font-size: 0.78rem;
    color: var(--dn-muted);
}

/* Lightbox */
.vp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.vp-lightbox--open { display: flex; }
.vp-lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.92);
    cursor: pointer;
}
.vp-lightbox__content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    z-index: 1;
}
.vp-lightbox__embed {
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}
.vp-lightbox__embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.vp-lightbox__title {
    color: white;
    margin-top: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}
.vp-lightbox__close {
    position: absolute;
    top: -40px; right: 0;
    background: transparent;
    border: 0;
    color: white;
    font-size: 1.6rem;
    cursor: pointer;
    width: 36px; height: 36px;
}

@media (max-width: 768px) {
    .vp-layout { grid-template-columns: 1fr; }
    .vp-sidebar { position: static; max-height: none; }
    .vp-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .vp-card__title { font-size: 0.85rem; }
    .vp-card__play { width: 44px; height: 44px; font-size: 1rem; }
}
@media (max-width: 480px) {
    .vp-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   v4.3 — DYNAMIC NAV AUTO-FIT (item count ke hisaab se spacing)
════════════════════════════════════════════════════════════ */

/* Spacious — up to 7 items */
.dn-nav__menu--lg .dn-nav__link {
    padding: 8px 14px;
    font-size: 1rem;
}

/* Medium — 8-10 items */
.dn-nav__menu--md .dn-nav__link {
    padding: 6px 11px;
    font-size: 0.92rem;
}

/* Small — 11-13 items */
.dn-nav__menu--sm .dn-nav__link {
    padding: 5px 8px;
    font-size: 0.86rem;
}

/* Extra small — 14+ items */
.dn-nav__menu--xs .dn-nav__link {
    padding: 5px 6px;
    font-size: 0.8rem;
}
.dn-nav__menu--xs .dn-nav__item--has-children > .dn-nav__link::before {
    margin-left: 3px;
    font-size: 0.6rem;
}

/* Active item highlight */
.dn-nav__item--active > .dn-nav__link,
.dn-nav__submenu .current-menu-item > a {
    color: var(--dn-gold-light);
}

/* ══════════════════════════════════════════════════════════
   v4.4 — SINGLE POST AD SIZE REDUCTION (international standard)
   BBC/Dawn/Reuters style: compact native ads, ~40% smaller
════════════════════════════════════════════════════════════ */

/* Single post container — only ad rules (don't touch other pages) */
.dn-single .dn-ad-j7,
.dn-single .dn-ad-pha {
    margin: 22px 0;
    border-radius: 8px;
}

/* J7 banner — compact on single post */
.dn-single .dn-ad-j7__content,
.dn-single .dn-ad-pha__content {
    padding: 16px 20px;
    gap: 18px;
}

.dn-single .dn-ad-j7__title,
.dn-single .dn-ad-pha__title {
    font-size: 1.3rem;
    margin-bottom: 4px;
    line-height: 1.3;
}

.dn-single .dn-ad-j7__subtitle,
.dn-single .dn-ad-pha__subtitle {
    font-size: 0.85rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.dn-single .dn-ad-j7__features,
.dn-single .dn-ad-pha__features {
    font-size: 0.78rem;
    gap: 12px;
}

.dn-single .dn-ad-j7__badge,
.dn-single .dn-ad-pha__gov-badge {
    font-size: 0.65rem;
    padding: 4px 10px;
    margin-bottom: 8px;
    letter-spacing: 1.2px;
}

.dn-single .dn-ad-j7__right,
.dn-single .dn-ad-pha__right {
    padding: 12px 16px;
    min-width: 150px;
    border-radius: 6px;
}

.dn-single .dn-ad-j7__price,
.dn-single .dn-ad-pha__price {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.dn-single .dn-ad-j7__price-label,
.dn-single .dn-ad-pha__price-label {
    font-size: 0.65rem;
}

.dn-single .dn-ad-j7__plan {
    font-size: 0.7rem;
    margin-bottom: 8px;
}

.dn-single .dn-ad-j7__cta,
.dn-single .dn-ad-pha__cta {
    padding: 7px 14px;
    font-size: 0.78rem;
}

.dn-single .dn-ad-j7__sponsor,
.dn-single .dn-ad-pha__sponsor {
    font-size: 0.55rem;
    top: 6px;
    left: 10px;
}

/* Mobile — even more compact */
@media (max-width: 768px) {
    .dn-single .dn-ad-j7__content,
    .dn-single .dn-ad-pha__content {
        padding: 14px 16px;
        gap: 12px;
    }
    .dn-single .dn-ad-j7__title,
    .dn-single .dn-ad-pha__title { font-size: 1.1rem; }
    .dn-single .dn-ad-j7__price,
    .dn-single .dn-ad-pha__price { font-size: 1.2rem; }
}

/* Inline "Advertisement" label on top of each ad — international standard */
.dn-single .dn-ad-j7::before,
.dn-single .dn-ad-pha::before {
    content: 'Advertisement';
    display: block;
    text-align: center;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    color: var(--dn-muted);
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    text-transform: uppercase;
    opacity: 0.7;
}
