/* ============================================================
   THE DAILY TRIBUNE — UNIFIED STYLESHEET
   Pages: index.html | about.html | contact.html
   Breakpoints:
     Mobile  : 360px – 767px
     Tablet  : 768px – 1024px
     Desktop : 1025px+
============================================================ */

/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
    --dt-bg-primary: #FFFFFF;
    --dt-bg-secondary: #F8F9FA;
    --dt-bg-tertiary: #F0F2F5;
    --dt-text-primary: #1C1C1C;
    --dt-text-secondary: #505050;
    --dt-text-tertiary: #737373;
    --dt-accent-primary: #D32F2F;
    --dt-accent-hover: #B71C1C;
    --dt-accent-light: #FFEBEE;
    --dt-border-light: #E0E0E0;
    --dt-border-medium: #BDBDBD;
    --dt-header-bg: #1C1C1C;
    --dt-header-text: #FFFFFF;
    --dt-shadow-sm: rgba(0, 0, 0, 0.05);
    --dt-shadow-md: rgba(0, 0, 0, 0.10);
    --dt-shadow-lg: rgba(0, 0, 0, 0.18);
    --dt-overlay: rgba(0, 0, 0, 0.55);
}

[data-theme="dark"] {
    --dt-bg-primary: #121212;
    --dt-bg-secondary: #1E1E1E;
    --dt-bg-tertiary: #2A2A2A;
    --dt-text-primary: #E8E8E8;
    --dt-text-secondary: #B8B8B8;
    --dt-text-tertiary: #8F8F8F;
    --dt-accent-primary: #FF5252;
    --dt-accent-hover: #FF6E6E;
    --dt-accent-light: rgba(255, 82, 82, 0.15);
    --dt-border-light: #3A3A3A;
    --dt-border-medium: #505050;
    --dt-header-bg: #000000;
    --dt-header-text: #FFFFFF;
    --dt-shadow-sm: rgba(0, 0, 0, 0.3);
    --dt-shadow-md: rgba(0, 0, 0, 0.4);
    --dt-shadow-lg: rgba(0, 0, 0, 0.5);
    --dt-overlay: rgba(0, 0, 0, 0.75);
}

/* ============================================================
   RESET
============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Merriweather', serif;
    background: var(--dt-bg-primary);
    color: var(--dt-text-primary);
    line-height: 1.8;
    transition: background-color 0.4s ease, color 0.4s ease;
}

img {
    max-width: 100%;
    display: block;
}

[dir="rtl"] {
    direction: rtl;
}

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes scrollLTR {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes scrollRTL {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(100%);
    }
}

@keyframes dtFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dtSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dt-fade-in {
    animation: dtFadeIn 0.8s ease forwards;
}

/* ============================================================
   BREAKING NEWS BANNER
============================================================ */
.dt-breaking-banner {
    background: var(--dt-accent-primary);
    color: #fff;
    padding: 0.7rem 0;
    overflow: hidden;
    position: relative;
    z-index: 1001;
}

.dt-breaking-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.dt-breaking-label {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.82rem;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.7rem;
    border-radius: 4px;
    flex-shrink: 0;
}

.dt-breaking-scroll {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
}

.dt-breaking-text {
    display: inline-block;
    padding-left: 100%;
    animation: scrollLTR 40s linear infinite;
}

/* RTL ticker */
[dir="rtl"] .dt-breaking-wrapper {
    direction: rtl;
}

[dir="rtl"] .dt-breaking-text {
    padding-left: 0;
    padding-right: 100%;
    animation: scrollRTL 40s linear infinite;
}

/* ============================================================
   TOP BAR
============================================================ */
.dt-topbar {
    background: var(--dt-header-bg);
    color: var(--dt-header-text);
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dt-topbar-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.dt-topbar-left {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 0.83rem;
    flex-wrap: wrap;
}

.dt-topbar-right {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

[dir="rtl"] .dt-topbar-wrapper,
[dir="rtl"] .dt-topbar-left,
[dir="rtl"] .dt-topbar-right {
    direction: rtl;
}

.dt-btn-icon {
    background: none;
    border: none;
    color: var(--dt-header-text);
    cursor: pointer;
    font-size: 0.82rem;
    padding: 0.35rem 0.7rem;
    transition: background 0.3s;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-family: 'Merriweather', serif;
    white-space: nowrap;
}

.dt-btn-icon:hover {
    background: rgba(255, 255, 255, 0.12);
}

.dt-btn-login {
    background: #1B7A4A;
    color: #fff;
    border: none;
    padding: 0.45rem 1.1rem;
    border-radius: 7px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    font-family: 'Merriweather', serif;
}

.dt-btn-login:hover {
    background: #155D38;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(27, 122, 74, 0.4);
}

.dt-btn-subscribe {
    background: var(--dt-accent-primary);
    color: #fff;
    border: none;
    padding: 0.45rem 1.1rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Merriweather', serif;
}

.dt-btn-subscribe:hover {
    background: var(--dt-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

/* ============================================================
   HEADER
============================================================ */
.dt-header {
    background: var(--dt-bg-primary);
    border-bottom: 4px double var(--dt-border-medium);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--dt-shadow-md);
}

.dt-header-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.8rem 2rem 1.2rem;
    text-align: center;
    border-bottom: 1px solid var(--dt-border-light);
}

[dir="rtl"] .dt-header-main {
    direction: rtl;
}

.dt-masthead {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--dt-text-primary);
    letter-spacing: 3px;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    line-height: 1;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s;
}

.dt-masthead:hover {
    color: var(--dt-accent-primary);
}

[dir="rtl"] .dt-masthead {
    letter-spacing: 1px;
}

.dt-tagline {
    font-family: 'Lora', serif;
    font-size: 0.92rem;
    color: var(--dt-text-secondary);
    font-style: italic;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.7rem;
    flex-wrap: wrap;
}

[dir="rtl"] .dt-tagline {
    direction: rtl;
}

/* ============================================================
   NAVBAR — Desktop
============================================================ */
.dt-navbar {
    background: var(--dt-bg-secondary);
    border-top: 1px solid var(--dt-border-light);
    position: relative;
}

.dt-navbar-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
}

[dir="rtl"] .dt-navbar-wrapper {
    direction: rtl;
}

/* Hamburger */
.dt-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.9rem 1.2rem;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    z-index: 1002;
    position: relative;
}

.dt-hamburger-bar {
    width: 25px;
    height: 2.5px;
    background: var(--dt-text-primary);
    border-radius: 2px;
    display: block;
    transition: transform 0.32s ease, opacity 0.2s ease;
    transform-origin: center;
}

.dt-hamburger.is-active .dt-hamburger-bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.dt-hamburger.is-active .dt-hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.dt-hamburger.is-active .dt-hamburger-bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* dt-menu-toggle removed — all pages now use dt-hamburger */

/* Overlay */
.dt-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--dt-overlay);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dt-nav-overlay.is-visible {
    display: block;
    opacity: 1;
}

/* Nav list */
.dt-nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    flex: 1;
}

[dir="rtl"] .dt-nav-list {
    direction: rtl;
}

.dt-nav-item {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
}

.dt-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 1.15rem 1.5rem;
    color: var(--dt-text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.87rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s;
    white-space: nowrap;
    font-family: 'Merriweather', serif;
    border-bottom: 3px solid transparent;
}

.dt-nav-link:hover,
.dt-nav-link.active {
    color: var(--dt-accent-primary);
    background: var(--dt-accent-light);
    border-bottom-color: var(--dt-accent-primary);
}

.dt-dropdown-icon {
    font-size: 0.62rem;
    transition: transform 0.3s;
}

.dt-nav-item:hover .dt-dropdown-icon {
    transform: rotate(180deg);
}

/* Desktop dropdown */
.dt-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dt-bg-primary);
    border: 2px solid var(--dt-border-light);
    border-radius: 8px;
    box-shadow: 0 8px 25px var(--dt-shadow-lg);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dt-nav-item:hover .dt-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

[dir="rtl"] .dt-dropdown {
    left: auto;
    right: 0;
}

.dt-dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
}

.dt-dropdown-item {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dt-dropdown-link {
    display: block;
    padding: 0.85rem 1.4rem;
    color: var(--dt-text-primary);
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.3s;
    font-weight: 500;
    font-family: 'Merriweather', serif;
}

.dt-dropdown-link:hover {
    background: var(--dt-accent-light);
    color: var(--dt-accent-primary);
    padding-left: 2rem;
}

[dir="rtl"] .dt-dropdown-link:hover {
    padding-left: 1.4rem;
    padding-right: 1.9rem;
}

/* ============================================================
   HERO BANNER (About / Contact pages)
============================================================ */
.about-hero {
    background: linear-gradient(135deg, var(--dt-accent-primary) 0%, var(--dt-accent-hover) 100%);
    color: #fff;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0L50 50L0 100' stroke='rgba(255,255,255,0.1)' fill='none'/%3E%3Cpath d='M50 0L100 50L50 100' stroke='rgba(255,255,255,0.1)' fill='none'/%3E%3C/svg%3E");
    opacity: 0.35;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-hero p {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

[dir="rtl"] .about-hero {
    direction: rtl;
}

[dir="rtl"] .about-hero-content {
    text-align: right;
    unicode-bidi: plaintext;
}

/* ============================================================
   ABOUT PAGE CONTENT
============================================================ */
.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.about-section {
    margin-bottom: 6rem;
}

/* Journalistic Excellence Hub */
.excellence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.excellence-card {
    background: var(--dt-bg-secondary);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--dt-border-light);
    box-shadow: 0 10px 30px var(--dt-shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.excellence-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--dt-accent-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.excellence-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px var(--dt-shadow-md);
    border-color: var(--dt-accent-primary);
}

.excellence-card:hover::after {
    transform: scaleX(1);
}

.excellence-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.excellence-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dt-text-primary);
    margin-bottom: 1rem;
}

.excellence-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--dt-text-secondary);
}

/* Animation: Slide Up */
@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.dt-slide-up {
    opacity: 0;
    animation: slideUpFade 0.8s ease forwards;
}

/* Split Row Section */
.about-split-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 2rem 0;
}

.split-content-side {
    flex: 1;
}

.split-image-side {
    flex: 1;
}

.split-promo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 45px var(--dt-shadow-md);
    border: 1px solid var(--dt-border-light);
    transition: transform 0.5s ease;
}

.split-promo-image:hover {
    transform: scale(1.02);
}

.about-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dt-text-primary);
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
}

.about-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--dt-accent-primary);
    border-radius: 2px;
}

.about-section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dt-text-secondary);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

[dir="rtl"] .about-section-subtitle {
    text-align: right;
}

/* Leadership */
.excellence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.leader-card {
    background: var(--dt-bg-secondary);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid var(--dt-border-light);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px var(--dt-shadow-sm);
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px var(--dt-shadow-md);
    border-color: var(--dt-accent-primary);
}

.leader-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.leader-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dt-text-primary);
    margin-bottom: 0.5rem;
}

.leader-title {
    color: var(--dt-accent-primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leader-description {
    color: var(--dt-text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Mission & Vision */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.mission-card,
.vision-card {
    background: var(--dt-bg-secondary);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid var(--dt-border-light);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--dt-accent-primary);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px var(--dt-shadow-md);
    border-color: var(--dt-accent-primary);
}

.mission-icon,
.vision-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.mission-card h3,
.vision-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dt-text-primary);
    margin-bottom: 1.5rem;
}

.mission-card p,
.vision-card p {
    color: var(--dt-text-secondary);
    line-height: 1.9;
    font-size: 1.1rem;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--dt-bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--dt-border-light);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px var(--dt-shadow-sm);
    display: flex;
    flex-direction: column;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px var(--dt-shadow-md);
    border-color: var(--dt-accent-primary);
}

.team-member-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-member-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.team-member-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dt-text-primary);
    margin-bottom: 0.5rem;
}

.team-member-role {
    color: var(--dt-accent-primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member-description {
    color: var(--dt-text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.team-member-contact {
    display: flex;
    gap: 0.8rem;
    margin-top: auto;
}

.team-member-contact a {
    width: 36px;
    height: 36px;
    background: var(--dt-bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dt-text-primary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
}

.team-member-contact a svg {
    display: block;
    stroke-width: 2.2;
    transition: transform 0.3s ease;
}

.team-member-contact a:hover {
    background: var(--dt-accent-primary);
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 5px 15px var(--dt-shadow-sm);
}

.team-member-contact a:hover svg {
    transform: scale(1.1);
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--dt-bg-secondary);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--dt-border-light);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--dt-shadow-md);
    border-color: var(--dt-accent-primary);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.value-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dt-text-primary);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--dt-text-secondary);
    line-height: 1.7;
}

/* ============================================================
   CONTACT PAGE CONTENT
============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info-section h2 {
    text-align: left;
}

.contact-info-section h2::after {
    left: 0;
    transform: none;
}

[dir="rtl"] .contact-info-section h2 {
    text-align: right;
}

[dir="rtl"] .contact-info-section h2::after {
    left: auto;
    right: 0;
    transform: none;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--dt-bg-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--dt-border-light);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateX(5px);
    border-color: var(--dt-accent-primary);
    box-shadow: 0 4px 15px var(--dt-shadow-sm);
}

[dir="rtl"] .contact-card {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .contact-card:hover {
    transform: translateX(-5px);
}

.contact-icon {
    font-size: 2rem;
    background: var(--dt-bg-tertiary);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dt-text-primary);
}

.contact-card p {
    color: var(--dt-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-form-section {
    background: var(--dt-bg-secondary);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--dt-border-light);
    box-shadow: 0 4px 20px var(--dt-shadow-sm);
}

[dir="rtl"] .contact-form-section {
    text-align: right;
}

.form-wrapper h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--dt-text-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dt-text-primary);
}

[dir="rtl"] .form-group label {
    text-align: right;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--dt-border-medium);
    border-radius: 6px;
    background: var(--dt-bg-primary);
    color: var(--dt-text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dt-accent-primary);
    box-shadow: 0 0 0 3px var(--dt-accent-light);
}

[dir="rtl"] .form-group input,
[dir="rtl"] .form-group select,
[dir="rtl"] .form-group textarea {
    text-align: right;
    direction: rtl;
}

.btn-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--dt-accent-primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--dt-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.contact-social {
    margin-top: 2rem;
}

.contact-social h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dt-text-primary);
}

[dir="rtl"] .contact-social .dt-social-links {
    direction: rtl;
}

.contact-social .dt-social-links a {
    background: var(--dt-bg-tertiary);
    color: var(--dt-text-primary);
}

.contact-social .dt-social-links a:hover {
    background: var(--dt-accent-primary);
    color: #fff;
}

.map-container {
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--dt-shadow-sm);
    border: 1px solid var(--dt-border-light);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================================
   INDEX PAGE — MAIN CONTAINER
============================================================ */
.dt-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Dashboard */
.dt-dashboard {
    display: none;
    animation: dtFadeIn 0.6s ease;
}

.dt-dashboard.active {
    display: block;
}

.dt-homepage {
    display: block;
}

.dt-homepage.hidden {
    display: none;
}

.dt-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--dt-accent-primary);
    flex-wrap: wrap;
    gap: 1rem;
}

.dt-dashboard-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dt-text-primary);
}

.dt-btn-back {
    padding: 0.8rem 2rem;
    background: var(--dt-bg-tertiary);
    border: 1px solid var(--dt-border-medium);
    color: var(--dt-text-primary);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Merriweather', serif;
}

.dt-btn-back:hover {
    background: var(--dt-border-light);
    transform: translateY(-2px);
}

.dt-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.dt-card {
    background: var(--dt-bg-secondary);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--dt-border-light);
    box-shadow: 0 6px 20px var(--dt-shadow-sm);
    transition: all 0.4s ease;
}

.dt-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px var(--dt-shadow-md);
    border-color: var(--dt-accent-primary);
}

.dt-card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.dt-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dt-text-primary);
}

.dt-card-text {
    color: var(--dt-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.dt-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--dt-accent-light);
    color: var(--dt-accent-primary);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.dt-badge.success {
    background: #E8F5E9;
    color: #2E7D32;
}

/* Form Styles (dashboard) */
.dt-form-section {
    background: var(--dt-bg-secondary);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--dt-border-light);
    margin-bottom: 2rem;
}

.dt-form-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--dt-text-primary);
}

.dt-form-group {
    margin-bottom: 2rem;
}

.dt-form-label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--dt-text-primary);
    font-size: 0.95rem;
}

.dt-form-input,
.dt-form-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--dt-border-light);
    border-radius: 6px;
    background: var(--dt-bg-primary);
    color: var(--dt-text-primary);
    font-size: 1rem;
    font-family: 'Merriweather', serif;
    transition: all 0.3s ease;
}

.dt-form-input:focus,
.dt-form-select:focus {
    outline: none;
    border-color: var(--dt-accent-primary);
    box-shadow: 0 0 0 4px var(--dt-accent-light);
}

.dt-btn {
    background: var(--dt-accent-primary);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Merriweather', serif;
}

.dt-btn:hover {
    background: var(--dt-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.dt-btn-secondary {
    background: var(--dt-bg-tertiary);
    color: var(--dt-text-primary);
    border: 2px solid var(--dt-border-medium);
}

.dt-btn-secondary:hover {
    background: var(--dt-border-light);
    box-shadow: 0 6px 20px var(--dt-shadow-sm);
}

.dt-newsletter-grid {
    display: grid;
    gap: 1.5rem;
}

.dt-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--dt-bg-primary);
    border: 2px solid var(--dt-border-light);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dt-checkbox-wrapper:hover {
    border-color: var(--dt-accent-primary);
    background: var(--dt-accent-light);
}

.dt-checkbox-wrapper input[type="checkbox"] {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: var(--dt-accent-primary);
}

.dt-checkbox-label {
    flex-grow: 1;
    cursor: pointer;
}

.dt-checkbox-label strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--dt-text-primary);
}

.dt-checkbox-label span {
    color: var(--dt-text-tertiary);
    font-size: 0.9rem;
}

/* Login Modal */
.dt-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    animation: dtFadeIn 0.3s ease;
    overflow-y: auto;
    padding: 2rem;
}

.dt-login-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dt-login-box {
    background: var(--dt-bg-primary);
    border-radius: 12px;
    padding: 3rem;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 20px 60px var(--dt-shadow-lg);
    border: 2px solid var(--dt-border-light);
    position: relative;
    animation: dtSlideUp 0.4s ease;
}

.dt-login-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--dt-text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

[dir="rtl"] .dt-login-close {
    right: auto;
    left: 1.5rem;
}

.dt-login-close:hover {
    background: var(--dt-accent-light);
    color: var(--dt-accent-primary);
    transform: rotate(90deg);
}

.dt-login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.dt-login-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dt-text-primary);
    margin-bottom: 0.5rem;
}

.dt-login-subtitle {
    color: var(--dt-text-secondary);
    font-size: 1rem;
}

.dt-login-form {
    margin-bottom: 2rem;
}

.dt-login-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--dt-border-light);
}

.dt-login-tab {
    flex: 1;
    padding: 1rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--dt-text-secondary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Merriweather', serif;
    margin-bottom: -2px;
}

.dt-login-tab.active {
    color: var(--dt-accent-primary);
    border-bottom-color: var(--dt-accent-primary);
}

.dt-login-tab:hover {
    color: var(--dt-accent-primary);
}

.dt-login-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.dt-login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--dt-border-light);
}

.dt-login-divider span {
    background: var(--dt-bg-primary);
    padding: 0 1rem;
    color: var(--dt-text-tertiary);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.dt-social-login {
    display: grid;
    gap: 1rem;
}

.dt-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem;
    border: 2px solid var(--dt-border-light);
    border-radius: 6px;
    background: var(--dt-bg-secondary);
    color: var(--dt-text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
}

.dt-social-btn:hover {
    border-color: var(--dt-accent-primary);
    background: var(--dt-accent-light);
    transform: translateY(-2px);
}

.dt-login-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dt-border-light);
    color: var(--dt-text-secondary);
}

.dt-login-footer a {
    color: var(--dt-accent-primary);
    text-decoration: none;
    font-weight: 600;
}

.dt-login-footer a:hover {
    text-decoration: underline;
}

/* ============================================================
   INDEX — HOMEPAGE CONTENT
============================================================ */
.dt-hero-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 3px double var(--dt-border-medium);
}

.dt-hero-main {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.4s ease;
    box-shadow: 0 8px 30px var(--dt-shadow-md);
}

.dt-hero-main:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px var(--dt-shadow-lg);
}

.dt-hero-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.dt-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--dt-overlay) 0%, transparent 100%);
    padding: 3.5rem 2.5rem 2.5rem;
    color: white;
}

.dt-category-tag {
    display: inline-block;
    background: var(--dt-accent-primary);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
}

.dt-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

.dt-hero-excerpt {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    opacity: 0.95;
}

.dt-meta {
    font-size: 0.9rem;
    opacity: 0.9;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.dt-meta-divider {
    color: rgba(255, 255, 255, 0.5);
}

/* Sidebar */
.dt-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dt-sidebar-story {
    background: var(--dt-bg-secondary);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--dt-border-light);
    cursor: pointer;
    transition: all 0.4s ease;
}

.dt-sidebar-story:hover {
    transform: translateX(-6px);
    box-shadow: 0 6px 25px var(--dt-shadow-md);
    border-color: var(--dt-accent-primary);
}

[dir="rtl"] .dt-sidebar-story:hover {
    transform: translateX(6px);
}

.dt-sidebar-story img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.dt-sidebar-content {
    padding: 1.8rem;
}

.dt-sidebar-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dt-text-primary);
    line-height: 1.3;
}

.dt-sidebar-content p {
    color: var(--dt-text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Section Headers */
.dt-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--dt-accent-primary);
}

.dt-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dt-text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dt-link-viewall {
    color: var(--dt-accent-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dt-link-viewall:hover {
    color: var(--dt-accent-hover);
    transform: translateX(5px);
}

[dir="rtl"] .dt-link-viewall:hover {
    transform: translateX(-5px);
}

/* Articles Grid */
.dt-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.dt-article-card {
    background: var(--dt-bg-secondary);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--dt-border-light);
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.dt-article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--dt-shadow-lg);
    border-color: var(--dt-accent-primary);
}

.dt-article-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.dt-article-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.dt-article-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--dt-text-primary);
    line-height: 1.4;
    font-weight: 700;
}

.dt-article-body p {
    color: var(--dt-text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.7;
}

.dt-link-readmore {
    color: var(--dt-accent-primary);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.dt-link-readmore:hover {
    color: var(--dt-accent-hover);
    transform: translateX(5px);
}

[dir="rtl"] .dt-link-readmore:hover {
    transform: translateX(-5px);
}

/* Video Section */
.dt-video-section {
    margin-bottom: 4rem;
    padding: 3rem;
    background: var(--dt-bg-secondary);
    border-radius: 12px;
}

.dt-video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.dt-video-card {
    background: var(--dt-bg-primary);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--dt-border-light);
    transition: all 0.3s ease;
    cursor: pointer;
}

.dt-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--dt-shadow-md);
    border-color: var(--dt-accent-primary);
}

.dt-video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.dt-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dt-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(211, 47, 47, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.dt-video-card:hover .dt-video-play {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--dt-accent-primary);
}

.dt-video-info {
    padding: 1.5rem;
}

.dt-video-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--dt-text-primary);
}

.dt-video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

[dir="rtl"] .dt-video-duration {
    right: auto;
    left: 10px;
}

/* Trending */
.dt-trending-section {
    margin-bottom: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--dt-accent-light) 0%, var(--dt-bg-secondary) 100%);
    border-radius: 12px;
    border: 2px solid var(--dt-border-light);
}

.dt-trending-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.dt-trending-card {
    display: flex;
    gap: 1.5rem;
    background: var(--dt-bg-primary);
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--dt-border-light);
    transition: all 0.3s ease;
    cursor: pointer;
}

.dt-trending-card:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 25px var(--dt-shadow-md);
    border-color: var(--dt-accent-primary);
}

[dir="rtl"] .dt-trending-card:hover {
    transform: translateX(5px);
}

.dt-trending-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--dt-accent-primary);
    line-height: 1;
    flex-shrink: 0;
}

.dt-trending-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--dt-text-primary);
    line-height: 1.3;
}

.dt-trending-content p {
    color: var(--dt-text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Opinion */
.dt-opinion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.dt-opinion-card {
    background: var(--dt-bg-secondary);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 5px solid var(--dt-accent-primary);
    box-shadow: 0 4px 15px var(--dt-shadow-sm);
    transition: all 0.3s ease;
}

[dir="rtl"] .dt-opinion-card {
    border-left: none;
    border-right: 5px solid var(--dt-accent-primary);
}

.dt-opinion-card:hover {
    transform: translateX(-8px);
    box-shadow: 0 8px 30px var(--dt-shadow-md);
}

[dir="rtl"] .dt-opinion-card:hover {
    transform: translateX(8px);
}

.dt-opinion-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dt-text-primary);
    line-height: 1.3;
}

.dt-opinion-card p {
    color: var(--dt-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.dt-author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--dt-border-light);
}

.dt-author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--dt-accent-primary);
}

.dt-author-name {
    font-weight: 700;
    color: var(--dt-text-primary);
    margin-bottom: 0.2rem;
}

.dt-author-role {
    color: var(--dt-text-tertiary);
    font-size: 0.85rem;
}

/* ============================================================
   FOOTER (shared)
============================================================ */
.dt-footer {
    background: var(--dt-header-bg);
    color: var(--dt-header-text);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    border-top: 4px solid var(--dt-accent-primary);
}

.dt-footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.dt-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

[dir="rtl"] .dt-footer-grid {
    direction: rtl;
}

.dt-footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.dt-footer-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    opacity: 0.9;
}

[dir="rtl"] .dt-footer-section {
    text-align: right;
}

.dt-footer-links {
    list-style: none;
}

.dt-footer-links li {
    margin-bottom: 1rem;
}

.dt-footer-links a {
    color: var(--dt-header-text);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: inline-block;
}

.dt-footer-links a:hover {
    opacity: 1;
    color: var(--dt-accent-primary);
    transform: translateX(5px);
}

[dir="rtl"] .dt-footer-links a:hover {
    transform: translateX(-5px);
}

.dt-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

[dir="rtl"] .dt-social-links {
    direction: rtl;
}

.dt-social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dt-header-text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.dt-social-links a:hover {
    background: var(--dt-accent-primary);
    transform: translateY(-4px);
}

.dt-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

[dir="rtl"] .dt-footer-bottom {
    direction: rtl;
}

/* ============================================================
   RESPONSIVE — DESKTOP / LAPTOP (1025px+)
============================================================ */
@media (min-width: 1025px) {
    .about-container {
        padding: 5rem 4rem;
    }

    .about-split-row {
        gap: 6rem;
    }

    .excellence-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================================
   RESPONSIVE — TABLET  768px – 1024px
============================================================ */
@media (min-width: 768px) and (max-width: 1024px) {

    /* Masthead */
    .dt-masthead {
        font-size: 2.9rem;
        letter-spacing: 2px;
    }

    .dt-header-main {
        padding: 1.4rem 1.5rem 1rem;
    }

    .dt-tagline {
        font-size: 0.85rem;
        gap: 0.8rem;
    }

    /* Topbar Refinement for Tablet */
    .dt-topbar-wrapper {
        padding: 0 1.5rem;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .dt-topbar-left {
        font-size: 0.76rem;
        gap: 0.5rem;
    }

    /* Hide Location on smaller tablets to ensure fit */
    @media (max-width: 900px) {

        .dt-topbar-left span:nth-child(3),
        .dt-topbar-left span:nth-child(4) {
            display: none;
        }
    }

    .dt-topbar-left span:nth-child(even) {
        opacity: 0.3;
    }

    .dt-btn-icon {
        padding: 0.3rem 0.5rem;
    }

    .dt-btn-login,
    .dt-btn-subscribe {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    /* Breaking */
    .dt-breaking-wrapper {
        padding: 0 1.5rem;
    }

    /* Hamburger visible on tablet */
    .dt-hamburger {
        display: flex;
    }

    /* Slide-in drawer */
    .dt-nav-list {
        position: fixed !important;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background: var(--dt-bg-primary);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        overflow-y: auto;
        padding: 5rem 0 2rem;
        z-index: 999;
        transition: left 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 4px 0 22px var(--dt-shadow-lg);
        border-right: 3px solid var(--dt-accent-primary);
        flex-wrap: nowrap;
    }

    [dir="rtl"] .dt-nav-list {
        left: auto !important;
        right: -100%;
        transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-right: none;
        border-left: 3px solid var(--dt-accent-primary);
    }

    .dt-nav-list.is-open {
        left: 0 !important;
    }

    [dir="rtl"] .dt-nav-list.is-open {
        right: 0 !important;
        left: auto !important;
    }

    .dt-nav-item {
        width: 100%;
    }

    .dt-nav-link {
        justify-content: space-between;
        padding: 1.05rem 1.8rem;
        width: 100%;
        border-bottom: 1px solid var(--dt-border-light);
        font-size: 0.9rem;
        border-left: 3px solid transparent;
    }

    .dt-nav-link:hover,
    .dt-nav-link.active {
        border-left-color: var(--dt-accent-primary);
        border-bottom-color: var(--dt-border-light);
        background: var(--dt-accent-light);
    }

    [dir="rtl"] .dt-nav-link {
        border-left: none;
        border-right: 3px solid transparent;
    }

    [dir="rtl"] .dt-nav-link:hover,
    [dir="rtl"] .dt-nav-link.active {
        border-right-color: var(--dt-accent-primary);
    }

    /* Accordion dropdown */
    .dt-dropdown {
        position: static !important;
        transform: none !important;
        opacity: 0;
        visibility: hidden;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: var(--dt-bg-secondary);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.25s ease, visibility 0.25s;
    }

    .dt-nav-item.is-open .dt-dropdown {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
    }

    .dt-nav-item.is-open .dt-dropdown-icon {
        transform: rotate(180deg);
    }

    .dt-dropdown-link {
        padding: 0.8rem 2.6rem;
        font-size: 0.86rem;
        border-bottom: 1px solid var(--dt-border-light);
    }

    .dt-dropdown-link:hover {
        padding-left: 3.2rem;
    }

    /* Menu toggle removed — hamburger handles all pages */

    /* Hero */
    .about-hero {
        padding: 3rem 1.5rem;
    }

    .about-hero h1 {
        font-size: 2.6rem;
    }

    .about-hero p {
        font-size: 1.05rem;
    }

    /* About */
    .about-container {
        padding: 3rem 1.5rem;
    }

    .about-section-title {
        font-size: 2.4rem;
    }

    .about-split-row {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .about-split-row .about-section-title {
        text-align: center !important;
    }

    .excellence-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-form-section {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .contact-info-section h2 {
        text-align: center;
    }

    .contact-info-section h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Index homepage */
    .dt-hero-section {
        grid-template-columns: 1fr;
    }

    .dt-hero-image {
        height: 420px;
    }

    .dt-hero-title {
        font-size: 2rem;
    }

    .dt-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .dt-sidebar-story {
        flex: 1 1 calc(50% - 1rem);
    }

    .dt-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dt-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dt-trending-grid {
        grid-template-columns: 1fr;
    }

    .dt-opinion-grid {
        grid-template-columns: 1fr;
    }

    .dt-section-title {
        font-size: 2rem;
    }

    .dt-dashboard-title {
        font-size: 2.2rem;
    }

    .dt-dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .dt-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE  360px – 767px
============================================================ */
@media (max-width: 767px) {

    /* Masthead */
    .dt-masthead {
        font-size: 1.7rem;
        letter-spacing: 1px;
    }

    .dt-header-main {
        padding: 0.9rem 1rem 0.6rem;
    }

    .dt-tagline {
        font-size: 0.72rem;
        gap: 0.35rem;
    }

    /* Responsive Topbar — Stacked for Mobile */
    .dt-topbar {
        padding: 0.6rem 0;
    }

    .dt-topbar-wrapper {
        flex-direction: column;
        gap: 0.7rem;
        padding: 0 1rem;
        text-align: center;
    }

    .dt-topbar-left {
        display: flex;
        justify-content: center;
        width: 100%;
        font-size: 0.75rem;
        gap: 0.6rem;
        opacity: 0.9;
    }

    /* Hide separators on mobile for cleaner look */
    .dt-topbar-left span:nth-child(even) {
        display: none;
    }

    .dt-topbar-right {
        width: 100%;
        justify-content: center;
        gap: 0.4rem;
    }

    .dt-btn-icon {
        padding: 0.4rem 0.6rem;
        background: rgba(255, 255, 255, 0.05);
    }

    .dt-btn-login,
    .dt-btn-subscribe {
        padding: 0.45rem 0.8rem;
        font-size: 0.78rem;
        flex: 1;
        max-width: 120px;
    }

    /* Breaking */
    .dt-breaking-wrapper {
        padding: 0 0.8rem;
        gap: 0.7rem;
    }

    .dt-breaking-label {
        font-size: 0.7rem;
        padding: 0.2rem 0.45rem;
    }

    /* Hamburger visible on mobile */
    .dt-hamburger {
        display: flex;
        padding: 0.8rem 1rem;
    }

    /* Full-screen slide drawer */
    .dt-nav-list {
        position: fixed !important;
        top: 0;
        left: -100%;
        width: 82%;
        max-width: 310px;
        height: 100vh;
        background: var(--dt-bg-primary);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        overflow-y: auto;
        padding: 4.5rem 0 2rem;
        z-index: 999;
        transition: left 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 4px 0 20px var(--dt-shadow-lg);
        border-right: 3px solid var(--dt-accent-primary);
        flex-wrap: nowrap;
    }

    [dir="rtl"] .dt-nav-list {
        left: auto !important;
        right: -100%;
        transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-right: none;
        border-left: 3px solid var(--dt-accent-primary);
    }

    .dt-nav-list.is-open {
        left: 0 !important;
    }

    .about-container {
        padding: 2.5rem 1.2rem;
    }

    .about-section {
        margin-bottom: 4rem;
    }

    .about-section-title {
        font-size: 2rem;
        padding-bottom: 1rem;
    }

    .about-split-row {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .about-split-row .about-section-title {
        text-align: center !important;
    }

    .excellence-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    [dir="rtl"] .dt-nav-list.is-open {
        right: 0 !important;
        left: auto !important;
    }

    .dt-nav-item {
        width: 100%;
    }

    .dt-nav-link {
        justify-content: space-between;
        padding: 1rem 1.4rem;
        width: 100%;
        border-bottom: 1px solid var(--dt-border-light);
        font-size: 0.86rem;
        border-left: 3px solid transparent;
    }

    .dt-nav-link:hover,
    .dt-nav-link.active {
        border-left-color: var(--dt-accent-primary);
        border-bottom-color: var(--dt-border-light);
        background: var(--dt-accent-light);
    }

    [dir="rtl"] .dt-nav-link {
        border-left: none;
        border-right: 3px solid transparent;
    }

    [dir="rtl"] .dt-nav-link:hover,
    [dir="rtl"] .dt-nav-link.active {
        border-right-color: var(--dt-accent-primary);
    }

    /* Accordion dropdown */
    .dt-dropdown {
        position: static !important;
        transform: none !important;
        opacity: 0;
        visibility: hidden;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: var(--dt-bg-secondary);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.25s ease, visibility 0.25s;
    }

    .dt-nav-item.is-open .dt-dropdown {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
    }

    .dt-nav-item.is-open .dt-dropdown-icon {
        transform: rotate(180deg);
    }

    .dt-dropdown-link {
        padding: 0.75rem 2.4rem;
        font-size: 0.84rem;
        border-bottom: 1px solid var(--dt-border-light);
    }

    /* Menu toggle removed — hamburger handles all pages */

    /* Hero (about/contact) */
    .about-hero {
        padding: 2.5rem 1rem;
    }

    .about-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .about-hero p {
        font-size: 0.95rem;
    }

    /* About */
    .about-container {
        padding: 2rem 1rem;
    }

    .about-section-title {
        font-size: 1.9rem;
    }

    .about-section-subtitle {
        font-size: 1rem;
    }

    .excellence-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .leader-card {
        padding: 2rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mission-card,
    .vision-card {
        padding: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-member-image {
        height: 220px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    /* Contact */
    .about-container {
        padding: 2rem 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-section {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-section h2 {
        text-align: center;
    }

    .contact-info-section h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Index homepage */
    .dt-container {
        padding: 1.5rem 1rem;
    }

    .dt-hero-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .dt-hero-image {
        height: 280px;
    }

    .dt-hero-title {
        font-size: 1.5rem;
    }

    .dt-hero-excerpt {
        font-size: 1rem;
    }

    .dt-sidebar {
        flex-direction: column;
    }

    .dt-sidebar-story img {
        height: 160px;
    }

    .dt-articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .dt-video-grid {
        grid-template-columns: 1fr;
    }

    .dt-video-section {
        padding: 1.5rem;
    }

    .dt-trending-section {
        padding: 1.5rem;
    }

    .dt-trending-grid {
        grid-template-columns: 1fr;
    }

    .dt-opinion-grid {
        grid-template-columns: 1fr;
    }

    .dt-section-title {
        font-size: 1.6rem;
    }

    .dt-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding-bottom: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .dt-dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .dt-dashboard-title {
        font-size: 1.8rem;
    }

    .dt-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dt-card {
        padding: 1.5rem;
    }

    .dt-form-section {
        padding: 1.5rem;
    }

    .dt-login-box {
        padding: 2rem 1.5rem;
    }

    .dt-login-title {
        font-size: 2rem;
    }

    /* Footer */
    .dt-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .dt-footer {
        padding: 3rem 0 1.5rem;
        margin-top: 3rem;
    }
}

/* ============================================================
   DESKTOP 1025px+ — reset any mobile/tablet bleed-through
============================================================ */
@media (min-width: 1025px) {
    .dt-hamburger {
        display: none !important;
    }

    .dt-nav-overlay {
        display: none !important;
    }

    .dt-nav-list {
        position: static !important;
        width: auto !important;
        max-width: none !important;
        height: auto !important;
        flex-direction: row !important;
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
        border: none !important;
        overflow: visible !important;
        left: auto !important;
        right: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        flex-wrap: wrap !important;
    }

    .dt-dropdown {
        position: absolute !important;
        transform: translateY(-10px) !important;
        max-height: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .dt-nav-item:hover .dt-dropdown {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .dt-articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .dt-video-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ================================================================
   BLOG PAGE STYLES (Moved from blog.css)
================================================================ */
/* ================================================================
   THE DAILY TRIBUNE — BLOG PAGE  (blog.css)
   All class names prefixed: blg-   (zero conflicts with styles.css)
   Breakpoints:
     Mobile  : 360px – 767px
     Tablet  : 768px – 1024px
     Desktop : 1025px+
================================================================ */

/* ================================================================
   KEYFRAME ANIMATIONS
================================================================ */
@keyframes blg-fade-up {
    from {
        opacity: 0;
        transform: translateY(44px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blg-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes blg-slide-left {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes blg-hero-title {
    0% {
        opacity: 0;
        transform: translateY(32px) skewY(3deg);
        filter: blur(4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) skewY(0);
        filter: blur(0);
    }
}

@keyframes blg-scale-in {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes blg-badge-pop {
    0% {
        opacity: 0;
        transform: scale(0.6) translateY(-8px);
    }

    70% {
        transform: scale(1.08) translateY(2px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes blg-stripe-grow {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

@keyframes blg-counter-tick {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blg-shimmer {
    0% {
        background-position: -800px 0;
    }

    100% {
        background-position: 800px 0;
    }
}

@keyframes blg-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ================================================================
   HERO
================================================================ */
.blg-hero {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blg-hero-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 70% at 65% 55%, rgba(211, 47, 47, .22) 0%, transparent 65%),
        linear-gradient(145deg, #0b0b0b 0%, #1a1a1a 55%, #080808 100%);
}

/* Diagonal texture overlay */
.blg-hero-backdrop::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(48deg,
            rgba(255, 255, 255, .018) 0px,
            rgba(255, 255, 255, .018) 1px,
            transparent 1px, transparent 48px);
}

/* Red corner accent bar */
.blg-hero-backdrop::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--dt-accent-primary, #D32F2F);
}

.blg-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 5rem 2.5rem 3rem;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.blg-hero-eyebrow {
    display: inline-block;
    font-family: 'Merriweather', serif;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--dt-accent-primary, #D32F2F);
    margin-bottom: 1rem;
    animation: blg-fade-in .6s ease both;
}

.blg-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 6vw, 5.8rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.04;
    letter-spacing: -1.5px;
    max-width: 760px;
    margin-bottom: 1.4rem;
    animation: blg-hero-title .95s cubic-bezier(.22, 1, .36, 1) .12s both;
}

.blg-hero-sub {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .68);
    line-height: 1.8;
    max-width: 540px;
    margin-bottom: 2.4rem;
    animation: blg-fade-up .8s ease .35s both;
}

/* Search bar */
.blg-search-bar {
    display: flex;
    align-items: center;
    max-width: 520px;
    background: rgba(255, 255, 255, .09);
    border: 1.5px solid rgba(255, 255, 255, .18);
    border-radius: 50px;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s;
    animation: blg-fade-up .8s ease .5s both;
}

.blg-search-bar:focus-within {
    border-color: var(--dt-accent-primary, #D32F2F);
    box-shadow: 0 0 0 4px rgba(211, 47, 47, .18);
}

.blg-search-ico {
    margin-left: 1.2rem;
    color: rgba(255, 255, 255, .5);
    flex-shrink: 0;
}

.blg-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: .9rem 1rem;
    color: #fff;
    font-family: 'Merriweather', serif;
    font-size: .9rem;
}

.blg-search-input::placeholder {
    color: rgba(255, 255, 255, .42);
}

.blg-search-btn {
    background: var(--dt-accent-primary, #D32F2F);
    border: none;
    color: #fff;
    padding: .9rem 1.6rem;
    font-family: 'Merriweather', serif;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .3s;
}

.blg-search-btn:hover {
    background: #b71c1c;
}

/* Stats strip */
.blg-hero-stats {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center !;
    gap: 0;
    padding: 1.4rem 2.5rem;
    background: rgba(255, 255, 255, .05);
    border-top: 1px solid rgba(255, 255, 255, .08);
    max-width: 100%;

}

.blg-stat {
    display: flex;
    flex-direction: column;
    padding: 0 3rem;
    animation: blg-counter-tick .7s ease .7s both;
}

.blg-stat:first-child {
    padding-left: calc((100vw - 1400px)/2 + 2.5rem);
}

.blg-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.blg-stat-lbl {
    font-family: 'Merriweather', serif;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .45);
    margin-top: .3rem;
}

.blg-stat-sep {
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, .15);
    flex-shrink: 0;
}

/* ================================================================
   FILTER BAR
================================================================ */
.blg-filter-bar {
    background: var(--dt-bg-secondary, #f4f4f4);
    border-bottom: 2px solid var(--dt-border-light, #e0e0e0);
    position: sticky;
    top: 0;
    z-index: 88;
    animation: blg-fade-in .5s ease .2s both;
}

.blg-filter-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 0;
}

.blg-filter-inner::-webkit-scrollbar {
    display: none;
}

.blg-filter-btn {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    padding: 1rem 1.3rem;
    font-family: 'Merriweather', serif;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--dt-text-secondary, #666);
    cursor: pointer;
    white-space: nowrap;
    transition: color .25s, border-color .25s;
}

.blg-filter-btn:hover {
    color: var(--dt-accent-primary, #D32F2F);
}

.blg-filter-active {
    color: var(--dt-accent-primary, #D32F2F) !important;
    border-bottom-color: var(--dt-accent-primary, #D32F2F) !important;
}

/* ================================================================
   PAGE WRAP
================================================================ */
.blg-page-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2.5rem 5rem;
}

/* ================================================================
   DIVIDER LABEL
================================================================ */
.blg-divider-label {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
    animation: blg-fade-in .6s ease .3s both;
}

.blg-divider-line {
    flex: 1;
    height: 1px;
    background: var(--dt-border-light, #e0e0e0);
}

.blg-divider-text {
    font-family: 'Merriweather', serif;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--dt-accent-primary, #D32F2F);
    white-space: nowrap;
}

/* ================================================================
   FEATURED CARD
================================================================ */
.blg-featured-section {
    margin-bottom: 4rem;
}

.blg-featured {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--dt-border-light, #e0e0e0);
    box-shadow: 0 8px 48px rgba(0, 0, 0, .1);
    background: var(--dt-bg-secondary, #fff);
    animation: blg-scale-in .85s cubic-bezier(.22, 1, .36, 1) .2s both;
    transition: transform .4s ease, box-shadow .4s ease;
}

.blg-featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 64px rgba(0, 0, 0, .16);
}

.blg-featured-media {
    position: relative;
    overflow: hidden;
}

.blg-featured-img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.blg-featured:hover .blg-featured-img {
    transform: scale(1.05);
}

.blg-featured-body {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blg-featured-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.55rem, 2.3vw, 2.35rem);
    font-weight: 700;
    color: var(--dt-text-primary, #111);
    line-height: 1.25;
    margin: .6rem 0 1.2rem;
    transition: color .25s;
}

.blg-featured:hover .blg-featured-title {
    color: var(--dt-accent-primary, #D32F2F);
}

.blg-featured-desc {
    font-size: .98rem;
    color: var(--dt-text-secondary, #555);
    line-height: 1.82;
    margin-bottom: 2rem;
}

/* CTA button */
.blg-cta {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: var(--dt-accent-primary, #D32F2F);
    color: #fff;
    text-decoration: none;
    font-family: 'Merriweather', serif;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: .9rem 2rem;
    border-radius: 4px;
    align-self: flex-start;
    transition: background .3s, transform .3s, box-shadow .3s;
    position: relative;
    overflow: hidden;
}

.blg-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .15);
    transition: left .4s ease;
}

.blg-cta:hover::before {
    left: 100%;
}

.blg-cta:hover {
    background: #b71c1c;
    transform: translateX(4px);
    box-shadow: 0 4px 18px rgba(211, 47, 47, .38);
}

.blg-cta-arrow {
    transition: transform .3s;
}

.blg-cta:hover .blg-cta-arrow {
    transform: translateX(5px);
}

/* ================================================================
   LAYOUT: MAIN + SIDEBAR
================================================================ */
.blg-content-wrap {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 3.5rem;
    align-items: start;
}

/* ================================================================
   SECTION HEADERS
================================================================ */
.blg-sec-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2rem;
    padding-bottom: .75rem;
    border-bottom: 3px solid var(--dt-accent-primary, #D32F2F);
}

.blg-sec-head--mt {
    margin-top: 4rem;
}

.blg-sec-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--dt-text-primary, #111);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.blg-view-all {
    font-family: 'Merriweather', serif;
    font-size: .76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dt-accent-primary, #D32F2F);
    text-decoration: none;
    transition: color .2s, transform .2s;
    white-space: nowrap;
}

.blg-view-all:hover {
    transform: translateX(4px);
}

/* ================================================================
   ARTICLE CARD GRID
================================================================ */
.blg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Scroll-triggered entrance — set by JS */
.blg-card {
    background: var(--dt-bg-secondary, #fff);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--dt-border-light, #e0e0e0);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(38px);
    transition:
        opacity .65s ease,
        transform .65s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.blg-card.blg-visible {
    opacity: 1;
    transform: translateY(0);
}

.blg-card:hover {
    box-shadow: 0 16px 52px rgba(0, 0, 0, .14);
    border-color: var(--dt-accent-primary, #D32F2F);
}

.blg-card-media {
    position: relative;
    overflow: hidden;
}

.blg-card-img {
    width: 100%;
    height: 215px;
    object-fit: cover;
    display: block;
    transition: transform .55s ease;
}

.blg-card:hover .blg-card-img {
    transform: scale(1.07);
}

.blg-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .22) 0%, transparent 55%);
    opacity: 0;
    transition: opacity .4s;
    pointer-events: none;
}

.blg-card:hover .blg-card-overlay {
    opacity: 1;
}

.blg-card-body {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blg-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--dt-text-primary, #111);
    line-height: 1.35;
    margin: .45rem 0 .7rem;
    transition: color .25s;
}

.blg-card:hover .blg-card-title {
    color: var(--dt-accent-primary, #D32F2F);
}

.blg-card-desc {
    font-size: .88rem;
    color: var(--dt-text-secondary, #555);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 1.2rem;
}

.blg-card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: .9rem;
    border-top: 1px solid var(--dt-border-light, #e0e0e0);
    margin-bottom: 1rem;
}

.blg-card-link {
    font-family: 'Merriweather', serif;
    font-size: .74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
    color: var(--dt-accent-primary, #D32F2F);
    text-decoration: none;
    transition: letter-spacing .25s;
}

.blg-card:hover .blg-card-link {
    letter-spacing: 1.5px;
}

/* ================================================================
   BADGES
================================================================ */
.blg-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: 'Merriweather', serif;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: .28rem .75rem;
    border-radius: 3px;
    color: #fff;
    animation: blg-badge-pop .55s cubic-bezier(.34, 1.56, .64, 1) .3s both;
}

.blg-badge--world {
    background: #1565C0;
}

.blg-badge--tech {
    background: #00695C;
}

.blg-badge--politics {
    background: #4A148C;
}

.blg-badge--science {
    background: #0277BD;
}

.blg-badge--business {
    background: #2E7D32;
}

.blg-badge--culture {
    background: #E65100;
}

.blg-badge--sports {
    background: #880E4F;
}

.blg-badge--opinion {
    background: var(--dt-accent-primary, #D32F2F);
}

/* ================================================================
   BYLINE
================================================================ */
.blg-byline {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.blg-byline--sm {
    margin-bottom: 0;
    margin-top: 1.5rem;
}

.blg-byline-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--dt-accent-primary, #D32F2F);
    flex-shrink: 0;
}

.blg-byline-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blg-byline-name {
    font-family: 'Merriweather', serif;
    font-size: .84rem;
    font-weight: 700;
    color: var(--dt-text-primary, #111);
}

.blg-byline-role {
    font-size: .74rem;
    color: var(--dt-text-tertiary, #999);
    font-style: italic;
}

/* Date & read-time */
.blg-date-label {
    font-family: 'Merriweather', serif;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--dt-accent-primary, #D32F2F);
    display: block;
}

.blg-readtime {
    font-size: .74rem;
    color: var(--dt-text-tertiary, #999);
    font-style: italic;
    white-space: nowrap;
}

/* Mini author (card footer) */
.blg-mini-author {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.blg-mini-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--dt-border-light, #e0e0e0);
}

.blg-mini-name {
    font-size: .75rem;
    font-weight: 600;
    color: var(--dt-text-secondary, #555);
}

/* ================================================================
   OPINION CARDS
================================================================ */
.blg-opinion-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.blg-opinion-card {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--dt-border-light, #e0e0e0);
    background: var(--dt-bg-secondary, #fff);
    transition: transform .35s, box-shadow .35s, border-color .35s;
    opacity: 0;
    transform: translateX(-30px);
    transition:
        opacity .65s ease,
        transform .65s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.blg-opinion-card.blg-visible {
    opacity: 1;
    transform: translateX(0);
}

.blg-opinion-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
    border-color: var(--dt-accent-primary, #D32F2F);
}

.blg-opinion-stripe {
    width: 5px;
    background: var(--dt-accent-primary, #D32F2F);
    flex-shrink: 0;
    transform-origin: top;
    animation: blg-stripe-grow .6s ease .4s both;
}

.blg-opinion-body {
    padding: 2rem 2.2rem;
    flex: 1;
}

.blg-opinion-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.42rem;
    font-weight: 700;
    color: var(--dt-text-primary, #111);
    line-height: 1.3;
    margin: .5rem 0 .9rem;
    transition: color .25s;
}

.blg-opinion-card:hover .blg-opinion-title {
    color: var(--dt-accent-primary, #D32F2F);
}

.blg-opinion-text {
    font-size: .93rem;
    color: var(--dt-text-secondary, #555);
    line-height: 1.82;
}

/* ================================================================
   LOAD MORE
================================================================ */
.blg-load-wrap {
    text-align: center;
    padding: 1rem 0 2rem;
}

.blg-load-btn {
    font-family: 'Merriweather', serif;
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    background: transparent;
    color: var(--dt-accent-primary, #D32F2F);
    border: 2px solid var(--dt-accent-primary, #D32F2F);
    padding: 1rem 3.5rem;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .35s;
}

.blg-load-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--dt-accent-primary, #D32F2F);
    transform: translateX(-102%);
    transition: transform .38s cubic-bezier(.25, .46, .45, .94);
    z-index: 0;
}

.blg-load-btn:hover::before {
    transform: translateX(0);
}

.blg-load-btn:hover {
    color: #fff;
}

.blg-load-btn:disabled {
    opacity: .5;
    cursor: default;
}

/* ================================================================
   SIDEBAR
================================================================ */
.blg-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 62px;
}

.blg-widget {
    background: var(--dt-bg-secondary, #fff);
    border: 1px solid var(--dt-border-light, #e0e0e0);
    border-radius: 10px;
    padding: 1.8rem;
    animation: blg-slide-left .7s ease .35s both;
}

.blg-widget-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--dt-text-primary, #111);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 1.4rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.blg-widget-title svg {
    color: var(--dt-accent-primary, #D32F2F);
    flex-shrink: 0;
}

.blg-widget-title--center {
    justify-content: center;
}

/* TRENDING */
.blg-trending-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blg-trending-item {
    display: flex;
    gap: .9rem;
    align-items: flex-start;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--dt-border-light, #e0e0e0);
}

.blg-trending-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.blg-trend-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dt-accent-primary, #D32F2F) !important;
    /* opacity: .28; */
    flex-shrink: 0;
    line-height: 1;
    width: 30px;
    transition: opacity .25s;
}

.blg-trending-item:hover .blg-trend-num {
    opacity: 1;
}

.blg-trend-link {
    font-size: .85rem;
    font-weight: 600;
    color: var(--dt-text-primary, #111);
    text-decoration: none;
    line-height: 1.42;
    display: block;
    margin-bottom: .25rem;
    transition: color .25s;
}

.blg-trend-link:hover {
    color: var(--dt-accent-primary, #D32F2F);
}

.blg-trend-meta {
    font-size: .7rem;
    color: var(--dt-text-tertiary, #999);
    font-style: italic;
}

/* NEWSLETTER */
.blg-widget--newsletter {
    background: linear-gradient(140deg, #D32F2F 0%, #b71c1c 100%);
    border-color: transparent;
    text-align: center;
}

.blg-widget--newsletter .blg-widget-title {
    color: #fff;
    justify-content: center;
}

.blg-widget--newsletter .blg-widget-title svg {
    color: #fff;
}

.blg-nl-icon {
    font-size: 2.4rem;
    margin-bottom: .4rem;
    animation: blg-float 3s ease-in-out infinite;
}

.blg-nl-desc {
    font-size: .86rem;
    color: rgba(255, 255, 255, .88);
    line-height: 1.65;
    margin-bottom: 1.2rem;
}

.blg-nl-form {
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.blg-nl-input {
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 4px;
    padding: .75rem 1rem;
    color: #fff;
    font-family: 'Merriweather', serif;
    font-size: .85rem;
    outline: none;
    transition: border-color .3s, box-shadow .3s;
}

.blg-nl-input::placeholder {
    color: rgba(255, 255, 255, .55);
}

.blg-nl-input:focus {
    border-color: rgba(255, 255, 255, .75);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .14);
}

.blg-nl-btn {
    background: #fff;
    color: var(--dt-accent-primary, #D32F2F);
    border: none;
    padding: .8rem;
    border-radius: 4px;
    font-family: 'Merriweather', serif;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    cursor: pointer;
    transition: background .3s, transform .25s;
}

.blg-nl-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.blg-nl-note {
    font-size: .7rem;
    color: rgba(255, 255, 255, .65);
    margin-top: .5rem;
}

/* CATEGORIES */
.blg-cat-list {
    list-style: none;
}

.blg-cat-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .75rem 0;
    border-bottom: 1px solid var(--dt-border-light, #e0e0e0);
    color: var(--dt-text-primary, #111);
    text-decoration: none;
    font-size: .88rem;
    font-weight: 600;
    transition: color .25s, padding-left .25s;
}

.blg-cat-list li:last-child .blg-cat-link {
    border-bottom: none;
}

.blg-cat-link:hover {
    color: var(--dt-accent-primary, #D32F2F);
    padding-left: 6px;
}

.blg-cat-count {
    background: var(--dt-bg-tertiary, #eee);
    color: var(--dt-text-tertiary, #999);
    font-size: .7rem;
    font-weight: 700;
    padding: .2rem .55rem;
    border-radius: 20px;
}

/* CONTRIBUTORS */
.blg-contrib-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blg-contrib-item {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.blg-contrib-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--dt-border-light, #e0e0e0);
    flex-shrink: 0;
    transition: border-color .25s;
}

.blg-contrib-item:hover .blg-contrib-avatar {
    border-color: var(--dt-accent-primary, #D32F2F);
}

.blg-contrib-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blg-contrib-name {
    font-size: .85rem;
    font-weight: 700;
    color: var(--dt-text-primary, #111);
}

.blg-contrib-beat {
    font-size: .72rem;
    color: var(--dt-text-tertiary, #999);
    font-style: italic;
}

.blg-follow-btn {
    font-family: 'Merriweather', serif;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dt-accent-primary, #D32F2F);
    border: 1.5px solid var(--dt-accent-primary, #D32F2F);
    background: none;
    padding: .28rem .7rem;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background .25s, color .25s;
}

.blg-follow-btn:hover {
    background: var(--dt-accent-primary, #D32F2F);
    color: #fff;
}

/* TAG CLOUD */
.blg-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.blg-tag-pill {
    font-size: .73rem;
    font-weight: 700;
    font-family: 'Merriweather', serif;
    color: var(--dt-text-secondary, #555);
    background: var(--dt-bg-tertiary, #eee);
    border: 1px solid var(--dt-border-light, #e0e0e0);
    padding: .32rem .78rem;
    border-radius: 3px;
    text-decoration: none;
    transition: all .25s;
}

.blg-tag-pill:hover {
    background: var(--dt-accent-primary, #D32F2F);
    color: #fff;
    border-color: var(--dt-accent-primary, #D32F2F);
    transform: translateY(-2px);
}

/* ================================================================
   DARK THEME
================================================================ */
[data-theme="dark"] .blg-featured {
    background: var(--dt-bg-secondary);
}

[data-theme="dark"] .blg-card {
    background: var(--dt-bg-secondary);
}

[data-theme="dark"] .blg-opinion-card {
    background: var(--dt-bg-secondary);
}

[data-theme="dark"] .blg-widget {
    background: var(--dt-bg-secondary);
}

[data-theme="dark"] .blg-filter-bar {
    background: var(--dt-bg-secondary);
}

/* ================================================================
   RESPONSIVE — TABLET  768px – 1024px
================================================================ */
@media (min-width: 768px) and (max-width: 1024px) {

    /* Hero */
    .blg-hero-inner {
        padding: 3.5rem 1.8rem 2.5rem;
    }

    .blg-hero-title {
        font-size: 2.9rem;
    }

    .blg-hero-sub {
        font-size: 1rem;
        max-width: 100%;
    }

    .blg-hero-stats {
        padding: 1.2rem 1.8rem;
    }

    .blg-stat {
        padding: 0 2rem;
    }

    .blg-stat:first-child {
        padding-left: 1.8rem;
    }

    /* Filter */
    .blg-filter-inner {
        padding: 0 1.8rem;
    }

    /* Page */
    .blg-page-wrap {
        padding: 2.5rem 1.8rem 4rem;
    }

    /* Featured: stack */
    .blg-featured {
        grid-template-columns: 1fr;
    }

    .blg-featured-img {
        min-height: 300px;
        height: 300px;
    }

    .blg-featured-body {
        padding: 2rem;
    }

    .blg-featured-title {
        font-size: 1.75rem;
    }

    /* Content layout: full width, sidebar stacks below */
    .blg-content-wrap {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Sidebar: 2-col at tablet */
    .blg-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        position: static;
    }

    .blg-widget--newsletter {
        grid-column: 1 / -1;
    }

    /* 2-column card grid */
    .blg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.6rem;
    }

    .blg-card-img {
        height: 190px;
    }

    /* Section titles */
    .blg-sec-title {
        font-size: 1.6rem;
    }

    /* Opinion */
    .blg-opinion-body {
        padding: 1.6rem 1.8rem;
    }

    .blg-opinion-title {
        font-size: 1.25rem;
    }
}

/* ================================================================
   RESPONSIVE — MOBILE  360px – 767px
================================================================ */
@media (max-width: 767px) {

    /* Hero */
    .blg-hero {
        min-height: auto;
    }

    .blg-hero-inner {
        padding: 2.8rem 1rem 2rem;
    }

    .blg-hero-title {
        font-size: 2rem;
        letter-spacing: -.5px;
    }

    .blg-hero-sub {
        font-size: .92rem;
        margin-bottom: 1.6rem;
    }

    .blg-search-bar {
        max-width: 100%;
    }

    .blg-search-input {
        padding: .75rem .8rem;
        font-size: .84rem;
    }

    .blg-search-btn {
        padding: .75rem 1rem;
        font-size: .75rem;
    }

    /* Stats: wrap */
    .blg-hero-stats {
        flex-wrap: wrap;
        padding: 1rem 1rem;
        gap: .8rem 0;
    }

    .blg-stat {
        padding: 0 1.2rem;
    }

    .blg-stat:first-child {
        padding-left: 1.2rem;
    }

    .blg-stat-num {
        font-size: 1.4rem;
    }

    .blg-stat-sep {
        display: none;
    }

    /* Filter */
    .blg-filter-inner {
        padding: 0 .8rem;
    }

    .blg-filter-btn {
        padding: .8rem .85rem;
        font-size: .72rem;
    }

    /* Page */
    .blg-page-wrap {
        padding: 1.8rem 1rem 3rem;
    }

    /* Featured: single column */
    .blg-featured {
        grid-template-columns: 1fr;
    }

    .blg-featured-img {
        min-height: 220px;
        height: 220px;
    }

    .blg-featured-body {
        padding: 1.5rem;
    }

    .blg-featured-title {
        font-size: 1.4rem;
    }

    .blg-featured-desc {
        font-size: .88rem;
        margin-bottom: 1.4rem;
    }

    .blg-cta {
        padding: .8rem 1.5rem;
        font-size: .76rem;
    }

    /* Layout: single column */
    .blg-content-wrap {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Section headers */
    .blg-sec-head {
        flex-wrap: wrap;
        gap: .4rem;
    }

    .blg-sec-title {
        font-size: 1.35rem;
    }

    .blg-sec-head--mt {
        margin-top: 2.5rem;
    }

    /* Cards: single column */
    .blg-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
        margin-bottom: 2.5rem;
    }

    .blg-card-img {
        height: 185px;
    }

    .blg-card-title {
        font-size: 1.1rem;
    }

    .blg-card-desc {
        font-size: .85rem;
    }

    .blg-card-body {
        padding: 1.3rem;
    }

    /* Opinion */
    .blg-opinion-title {
        font-size: 1.15rem;
    }

    .blg-opinion-body {
        padding: 1.3rem 1.4rem;
    }

    .blg-opinion-text {
        font-size: .87rem;
    }

    .blg-byline {
        flex-wrap: wrap;
    }

    .blg-byline--sm {
        margin-top: 1.1rem;
    }

    /* Sidebar: single column, no sticky */
    .blg-sidebar {
        position: static;
        gap: 1.4rem;
    }

    .blg-widget {
        padding: 1.4rem;
    }

    .blg-widget-title {
        font-size: 1rem;
        margin-bottom: 1.1rem;
    }

    /* Load more: full width */
    .blg-load-btn {
        width: 100%;
        padding: .9rem;
    }

    /* Newsletter */
    .blg-nl-icon {
        font-size: 2rem;
    }
}

/* ================================================================
   DESKTOP  1025px+ (explicit confirms)
================================================================ */
@media (min-width: 1025px) {
    .blg-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .blg-content-wrap {
        grid-template-columns: 1fr 330px;
    }

    .blg-featured {
        grid-template-columns: 1.15fr 1fr;
    }
}

/* ================================================================
   BLOG INNER PAGE (Article)
================================================================ */

/* Breadcrumbs */
.blg-inner-breadcrumbs {
    font-size: .8rem;
    color: var(--dt-text-tertiary, #999);
    margin-bottom: 2rem;
    font-family: 'Merriweather', serif;
}

.blg-inner-breadcrumbs a {
    color: var(--dt-text-secondary, #555);
    text-decoration: none;
    transition: color .2s;
}

.blg-inner-breadcrumbs a:hover {
    color: var(--dt-accent-primary, #D32F2F);
}

/* Article Header */
.blg-article-header {
    margin-bottom: 2.5rem;
    text-align: left;
}

.blg-article-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--dt-text-primary, #111);
    line-height: 1.15;
    margin: 1rem 0 1.2rem;
    letter-spacing: -.5px;
}

.blg-article-subtitle {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    color: var(--dt-text-secondary, #555);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 90%;
}

.blg-article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--dt-border-light, #e0e0e0);
    border-bottom: 1px solid var(--dt-border-light, #e0e0e0);
    padding: 1.2rem 0;
}

.blg-meta-right {
    font-family: 'Merriweather', serif;
    font-size: .78rem;
    color: var(--dt-text-tertiary, #999);
    display: flex;
    align-items: center;
    gap: 8px;
}

.blg-meta-sep {
    color: #ccc;
}

/* Featured Image */
.blg-article-figure {
    margin: 0 0 3.5rem 0;
    width: 100%;
}

.blg-article-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.blg-article-figure figcaption {
    font-size: .8rem;
    color: var(--dt-text-tertiary, #888);
    margin-top: .8rem;
    font-style: italic;
    text-align: center;
}

/* Article Body Typography */
.blg-article-body {
    font-family: 'Lora', serif;
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--dt-text-primary, #222);
    /* margin-bottom: 3rem; */
}

.blg-article-body p {
    margin-bottom: 1.8rem;
}

.blg-article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin: 3rem 0 1.2rem;
    color: var(--dt-text-primary);
}

.blg-article-body h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    color: var(--dt-text-primary);
}

.blg-dropcap {
    float: left;
    font-family: 'Playfair Display', serif;
    font-size: 4.8rem;
    line-height: .8;
    font-weight: 900;
    color: var(--dt-accent-primary);
    margin-right: .8rem;
    margin-top: .4rem;
}

.blg-article-body blockquote {
    border-left: 4px solid var(--dt-accent-primary, #D32F2F);
    margin: 2.5rem 0 2.5rem 1.5rem;
    padding-left: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-style: italic;
    color: var(--dt-text-primary);
    line-height: 1.4;
}

.blg-article-body blockquote footer {
    font-family: 'Merriweather', serif;
    font-size: .85rem;
    margin-top: 1rem;
    color: var(--dt-text-tertiary);
    font-style: normal;
    font-weight: 700;
}

/* Inline Images */
.blg-article-inline-img {
    margin: 3rem 0;
}

.blg-article-inline-img img {
    width: 100%;
    border-radius: 6px;
}

/* Tags & Share */
.blg-article-tags {
    margin: 3rem 0;
    padding-top: 2rem;
    border-top: 1px solid var(--dt-border-light, #e0e0e0);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .8rem;
}

.blg-article-tags span {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: .9rem;
    color: var(--dt-text-primary);
}

.blg-share-section {
    background: var(--dt-bg-tertiary, #f9f9f9);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.blg-share-label {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: var(--dt-text-primary);
}

/* Related */
.blg-related-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 3px solid var(--dt-accent-primary);
}


/* DARK MODE OVERRIDES */
[data-theme="dark"] .blg-share-section {
    background: var(--dt-bg-secondary);
}

[data-theme="dark"] .blg-article-body {
    color: #dcdcdc;
}

[data-theme="dark"] .blg-article-body h2,
[data-theme="dark"] .blg-article-body h3,
[data-theme="dark"] .blg-article-body blockquote {
    color: #f0f0f0;
}


/* RESPONSIVE */
@media (max-width: 767px) {
    .blg-article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .blg-article-title {
        font-size: 2rem;
    }

    .blg-article-body {
        font-size: 1.05rem;
    }

    .blg-share-section {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .blg-related-section .blg-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ================================================================
   WORLD NEWS PAGE
================================================================ */

.wn-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Section Header */
.wn-section-header {
    border-bottom: 4px solid var(--dt-text-primary, #111);
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
}

.wn-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    color: var(--dt-text-primary, #111);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.wn-sub-nav {
    display: flex;
    gap: 1.5rem;
}

.wn-sub-link {
    font-family: 'Merriweather', serif;
    font-size: .9rem;
    font-weight: 700;
    color: var(--dt-text-secondary, #555);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: color .2s;
}

.wn-sub-link:hover,
.wn-sub-link.active {
    color: var(--dt-accent-primary, #D32F2F);
}

/* Hero Section */
.wn-hero {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
    align-items: center;
}

.wn-hero-media {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.wn-hero-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .5s;
}

.wn-hero:hover .wn-hero-img {
    transform: scale(1.02);
}

.wn-hero-content {
    padding: 1rem 0;
}

.wn-label {
    display: inline-block;
    font-family: 'Merriweather', serif;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--dt-accent-primary, #D32F2F);
    border-bottom: 2px solid var(--dt-accent-primary, #D32F2F);
}

.wn-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.wn-hero-title a {
    color: var(--dt-text-primary, #111);
    text-decoration: none;
    background-image: linear-gradient(to right, var(--dt-text-primary) 0%, var(--dt-text-primary) 100%);
    background-size: 0% 2px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size .3s;
}

.wn-hero-title a:hover {
    background-size: 100% 2px;
}

.wn-hero-excerpt {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: var(--dt-text-secondary, #444);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.wn-meta {
    font-size: .85rem;
    color: var(--dt-text-tertiary, #888);
    font-weight: 600;
}

.wn-author {
    color: var(--dt-text-primary, #111);
    margin-right: 10px;
}

/* Main Grid Layout */
.wn-layout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    border-top: 1px solid var(--dt-border-light, #e0e0e0);
    padding-top: 3rem;
}

/* News List */
.wn-col-title {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--dt-accent-primary, #D32F2F);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.wn-col-title::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: var(--dt-border-light, #e0e0e0);
}

.wn-news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.wn-card {
    display: flex;
    flex-direction: column;
}

.wn-card-media {
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 4px;
}

.wn-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .4s;
}

.wn-card:hover .wn-card-img {
    transform: scale(1.05);
}

.wn-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    line-height: 1.25;
    margin-bottom: .8rem;
    font-weight: 700;
}

.wn-card-title a {
    color: var(--dt-text-primary);
    text-decoration: none;
}

.wn-card-title a:hover {
    text-decoration: underline;
    text-decoration-color: var(--dt-accent-primary);
}

.wn-card-desc {
    font-size: .95rem;
    color: var(--dt-text-secondary);
    line-height: 1.5;
    margin-bottom: .8rem;
}

/* Sidebar Widgets */
.wn-sidebar-col {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.wn-widget-title {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--dt-text-primary);
    padding-bottom: .5rem;
    margin-bottom: 1.5rem;
    color: var(--dt-text-primary);
}

.wn-list {
    list-style: none;
    padding: 0;
}

.wn-list-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px dashed var(--dt-border-light, #e0e0e0);
}

.wn-list-item:last-child {
    border: none;
}

.wn-rank {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 1;
    font-weight: 900;
    color: var(--dt-border-medium, #ccc);
}

.wn-list-link {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--dt-text-primary);
    text-decoration: none;
    line-height: 1.4;
    display: block;
    margin-bottom: .3rem;
}

.wn-list-link:hover {
    color: var(--dt-accent-primary);
}

.wn-list-meta {
    font-size: .75rem;
    text-transform: uppercase;
    color: var(--dt-accent-primary);
    font-weight: 700;
    letter-spacing: .5px;
}

.wn-mini-card {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.wn-mini-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.wn-mini-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    line-height: 1.2;
    margin: 0;
}

.wn-mini-title a {
    color: var(--dt-text-primary);
    text-decoration: none;
}

/* DARK MODE */
[data-theme="dark"] .wn-section-header {
    border-bottom-color: #fff;
}

[data-theme="dark"] .wn-title,
[data-theme="dark"] .wn-hero-title a,
[data-theme="dark"] .wn-card-title a,
[data-theme="dark"] .wn-list-link,
[data-theme="dark"] .wn-mini-title a {
    color: #fff;
}

[data-theme="dark"] .wn-hero-excerpt,
[data-theme="dark"] .wn-card-desc {
    color: #ccc;
}

[data-theme="dark"] .wn-rank {
    color: #444;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .wn-hero {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .wn-hero-title {
        font-size: 2rem;
    }

    .wn-layout-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .wn-sidebar-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .wn-page-container {
        padding: 2rem 1rem;
    }

    .wn-title {
        font-size: 2.2rem;
    }

    .wn-sub-nav {
        overflow-x: auto;
        padding-bottom: .5rem;
        width: 100%;
        white-space: nowrap;
    }

    .wn-hero-excerpt {
        display: none;
    }

    /* Hide teaser on mobile to save space */

    .wn-news-grid {
        grid-template-columns: 1fr;
    }

    .wn-sidebar-col {
        grid-template-columns: 1fr;
    }
}

/* ================================================================
   POLITICS PAGE
================================================================ */

.pol-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.pol-section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--dt-border-light, #e0e0e0);
}

.pol-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dt-text-primary);
    margin-bottom: .5rem;
    letter-spacing: -1px;
}

.pol-subtitle {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    color: var(--dt-text-secondary);
    font-style: italic;
}

/* Hero Analysis */
.pol-hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    background: var(--dt-bg-secondary, #f8f8f8);
    border: 1px solid var(--dt-border-light, #ddd);
    padding: 2.5rem;
    margin-bottom: 4rem;
    align-items: center;
}

.pol-tag {
    font-family: 'Merriweather', serif;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dt-accent-primary);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 1rem;
}

.pol-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.pol-hero-title a {
    color: var(--dt-text-primary);
    text-decoration: none;
    transition: color .2s;
}

.pol-hero-title a:hover {
    color: var(--dt-accent-primary);
}

.pol-hero-excerpt {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dt-text-secondary);
    margin-bottom: 2rem;
}

.pol-author-block {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pol-author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--dt-border-light);
}

.pol-author-info {
    font-size: .9rem;
    line-height: 1.3;
}

.pol-author-info strong {
    display: block;
    color: var(--dt-text-primary);
    font-family: 'Merriweather', serif;
}

.pol-author-info span {
    color: var(--dt-text-tertiary);
    font-size: .8rem;
}

.pol-hero-media img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 12px var(--dt-shadow-sm, rgba(0, 0, 0, 0.05));
}

/* Layout Grid */
.pol-layout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

/* Feed */
.pol-col-header {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    border-bottom: 2px solid var(--dt-text-primary);
    padding-bottom: .5rem;
    margin-bottom: 2rem;
    color: var(--dt-text-primary);
}

.pol-card {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--dt-border-light, #eee);
    padding-bottom: 2rem;
}

.pol-card:last-child {
    border: none;
}

.pol-card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: .8rem;
    font-size: .8rem;
    font-family: 'Merriweather', serif;
}

.pol-card-tag {
    font-weight: 700;
    color: var(--dt-accent-primary);
    text-transform: uppercase;
}

.pol-card-date {
    color: var(--dt-text-tertiary);
}

.pol-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: .8rem;
}

.pol-card-title a {
    color: var(--dt-text-primary);
    text-decoration: none;
}

.pol-card-title a:hover {
    text-decoration: underline;
    text-decoration-color: var(--dt-accent-primary);
}

.pol-card-text {
    color: var(--dt-text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Widgets */
.pol-sidebar-col {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.pol-widget {
    background: var(--dt-bg-tertiary, #fff);
    border: 1px solid var(--dt-border-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.pol-widget-title {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--dt-text-primary);
    letter-spacing: .5px;
}

/* Quote Widget */
.pol-widget--quote {
    background: var(--dt-accent-primary);
    color: #fff;
    border: none;
    position: relative;
    overflow: hidden;
}

.pol-quote-icon {
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 5rem;
    opacity: 0.2;
    font-family: serif;
}

.pol-quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    line-height: 1.3;
    font-style: italic;
    margin: 1.5rem 0 2rem;
    position: relative;
    z-index: 1;
}

.pol-quote-author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    font-weight: 600;
}

.pol-mini-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Poll Widget */
.pol-poll-q {
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.4;
    color: var(--dt-text-primary);
}

.pol-poll-option {
    margin-bottom: 1rem;
}

.pol-poll-label {
    display: flex;
    justify-content: space-between;
    font-size: .85rem;
    margin-bottom: .3rem;
    font-weight: 600;
    color: var(--dt-text-secondary);
}

.pol-poll-bar {
    height: 8px;
    background: var(--dt-border-light, #e0e0e0);
    border-radius: 4px;
    overflow: hidden;
}

.pol-poll-fill {
    height: 100%;
    background: var(--dt-accent-primary);
}

.pol-poll-meta {
    font-size: .75rem;
    color: var(--dt-text-tertiary);
    text-align: right;
    margin-top: 1rem;
}


/* DARK MODE */
[data-theme="dark"] .pol-hero {
    background: var(--dt-bg-primary);
    border-color: var(--dt-border-light);
}

[data-theme="dark"] .pol-title,
[data-theme="dark"] .pol-hero-title a,
[data-theme="dark"] .pol-card-title a,
[data-theme="dark"] .pol-poll-q {
    color: #fff;
}

[data-theme="dark"] .pol-subtitle,
[data-theme="dark"] .pol-hero-excerpt,
[data-theme="dark"] .pol-card-text {
    color: #ccc;
}

[data-theme="dark"] .pol-widget {
    background: var(--dt-bg-secondary);
    border-color: var(--dt-border-light);
}


/* RESPONSIVE */
@media (max-width: 1024px) {
    .pol-hero {
        grid-template-columns: 1fr;
    }

    .pol-layout-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pol-sidebar-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .pol-title {
        font-size: 2.2rem;
    }

    .pol-hero {
        padding: 1.5rem;
        text-align: center;
    }

    .pol-hero-content {
        order: 2;
    }

    .pol-hero-media {
        order: 1;
        margin-bottom: 1.5rem;
    }

    .pol-author-block {
        justify-content: center;
    }

    .pol-sidebar-col {
        grid-template-columns: 1fr;
    }
}

/* ================================================================
   BUSINESS PAGE
================================================================ */

.biz-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Market Ticker */
.biz-ticker-wrap {
    background: var(--dt-text-primary);
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 40px;
    position: relative;
    border-bottom: 3px solid var(--dt-accent-primary, #D32F2F);
}

.biz-ticker-label {
    background: var(--dt-accent-primary);
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 900;
    font-size: .85rem;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}

.biz-ticker-mask {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.biz-ticker-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    position: absolute;
    animation: bizTickerScroll 70s linear infinite;
    height: 100%;
}

.biz-ticker-track:hover {
    animation-play-state: paused;
}

@keyframes bizTickerScroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.biz-ticker-item {
    font-family: 'Roboto Mono', monospace;
    font-size: .85rem;
    padding: 0 1.5rem;
    display: inline-flex;
    gap: 8px;
    color: #eee;
}

.biz-up {
    color: #4caf50;
}

.biz-down {
    color: #f44336;
}

/* Hero */
.biz-hero {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
    background: var(--dt-bg-secondary);
    padding: 3rem;
    border-radius: 4px;
    border: 1px solid var(--dt-border-light);
}

.biz-badge {
    background: var(--dt-text-primary);
    color: #fff;
    padding: .3rem .8rem;
    font-size: .75rem;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 2px;
    margin-bottom: 1rem;
    display: inline-block;
}

.biz-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 700;
}

.biz-hero-title a {
    color: var(--dt-text-primary);
    text-decoration: none;
    transition: color .3s;
}

.biz-hero-title a:hover {
    color: var(--dt-accent-primary);
}

.biz-hero-excerpt {
    font-size: 1.1rem;
    color: var(--dt-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Chart Visual */
.biz-chart-visual {
    height: 200px;
    display: flex;
    align-items: flex-end;
    gap: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--dt-text-tertiary);
    position: relative;
    margin-bottom: .5rem;
}

.biz-chart-bar {
    flex: 1;
    background: var(--dt-accent-primary);
    opacity: 0.8;
    border-radius: 2px 2px 0 0;
    transition: opacity .3s;
}

.biz-chart-bar:hover {
    opacity: 1;
}

.biz-chart-caption {
    font-family: 'Roboto Mono', monospace;
    font-size: .75rem;
    text-align: right;
    color: var(--dt-text-tertiary);
}

/* Divider */
.biz-divider {
    border-bottom: 2px solid var(--dt-text-primary);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 0.1em;
}

.biz-divider span {
    background: var(--dt-bg-primary);
    padding: 0 1.5rem;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: .9rem;
    color: var(--dt-text-primary);
}

/* Grid & Cards */
.biz-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.biz-card {
    background: var(--dt-bg-secondary);
    border: 1px solid var(--dt-border-light);
    border-radius: 4px;
    overflow: hidden;
    transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

/* HOVER EFFECTS: LIFT & SHADOW */
.biz-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--dt-accent-primary);
}

.biz-card-img-wrap {
    overflow: hidden;
    height: 180px;
}

.biz-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.biz-card:hover .biz-card-img {
    transform: scale(1.1);
}

.biz-card-body {
    padding: 1.5rem;
    flex-grow: 1;
}

.biz-cat {
    font-size: .7rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--dt-accent-primary);
    margin-bottom: .8rem;
    display: block;
}

.biz-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: .8rem;
    line-height: 1.25;
}

.biz-card-title a {
    color: var(--dt-text-primary);
    text-decoration: none;
}

.biz-card-text {
    font-size: .9rem;
    color: var(--dt-text-secondary);
    line-height: 1.6;
}

/* Highlight & Dark Cards */
.biz-card--highlight {
    border-top: 4px solid var(--dt-accent-primary);
}

.biz-card--dark {
    background: #1a2332;
    color: #fff;
    border: none;
}

.biz-card--dark .biz-card-title a,
.biz-card--dark .biz-card-text {
    color: #fff;
}

/* Newsletter */
.biz-newsletter {
    background: var(--dt-accent-primary);
    color: #fff;
    padding: 3rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ================================================================
   SPORTS PAGE
================================================================ */

.spt-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Score Ticker */
.spt-ticker-wrap {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 45px;
    border-bottom: 4px solid #ffab00;
    /* Sporty Yellow/Orange */
}

.spt-ticker-label {
    background: #ffab00;
    color: #000;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 900;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    font-size: 1rem;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    padding-right: 2.5rem;
}

.spt-ticker-mask {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.spt-ticker-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    position: absolute;
    animation: sptTickerScroll 25s linear infinite;
    height: 100%;
}

.spt-ticker-track:hover {
    animation-play-state: paused;
}

@keyframes sptTickerScroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.spt-ticker-item {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: .95rem;
    padding: 0 2rem;
    display: inline-flex;
    gap: 10px;
    font-weight: 700;
}

.spt-score-box {
    background: #333;
    padding: 2px 8px;
    border-radius: 4px;
    color: #ffab00;
}

/* Hero */
.spt-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    margin-bottom: 4rem;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.spt-hero-bg {
    position: absolute;
    inset: 0;
    background: url('../../asset/images/sports7.webp') no-repeat center center/cover;
    /* Stadium */
    transition: transform 5s ease;
}

.spt-hero:hover .spt-hero-bg {
    transform: scale(1.05);
}

.spt-hero-content {
    position: relative;
    width: 100%;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #fff;
    z-index: 2;
}

.spt-badge {
    background: #e31b23;
    /* Sporty Red */
    padding: .4rem 1rem;
    font-weight: 900;
    text-transform: uppercase;
    font-size: .8rem;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
    transform: skew(-10deg);
}

.spt-hero-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: .95;
    margin-bottom: 1rem;
    max-width: 900px;
}

.spt-hero-desc {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 2rem;
    max-width: 700px;
}

.spt-hero-stats {
    display: flex;
    gap: 2rem;
}

.spt-stat-box {
    border-left: 4px solid #ffab00;
    padding-left: 1rem;
}

.spt-stat-val {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffab00;
    line-height: 1;
}

.spt-stat-label {
    font-size: .8rem;
    text-transform: uppercase;
    color: #bbb;
}

/* Layout */
.spt-layout-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 3rem;
}

.spt-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.spt-section-header h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--dt-text-primary);
}

.spt-line {
    height: 4px;
    background: var(--dt-text-primary);
    width: 100%;
    opacity: 0.1;
}

/* News Grid */
.spt-news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.spt-card {
    background: var(--dt-bg-secondary);
    border-radius: 8px;
    overflow: hidden;
    transition: transform .3s;
}

.spt-card:hover {
    transform: translateY(-5px);
}

.spt-card-img-wrap {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.spt-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.spt-card:hover .spt-card-img {
    transform: scale(1.1);
}

.spt-cat-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #000;
    color: #fff;
    padding: .3rem 1rem;
    font-weight: 700;
    font-size: .75rem;
    text-transform: uppercase;
}

.spt-card-body {
    padding: 1.5rem;
}

.spt-card-body h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: .8rem;
}

.spt-card-body h3 a {
    color: var(--dt-text-primary);
    text-decoration: none;
}

.spt-card-body h3 a:hover {
    color: #e31b23;
}

.spt-card-body p {
    color: var(--dt-text-secondary);
    font-size: .9rem;
}

/* Sidebar Widgets */
.spt-widget {
    background: var(--dt-bg-tertiary);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-top: 4px solid #000;
}

.spt-widget-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.spt-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}

.spt-table th {
    text-align: left;
    padding: .5rem;
    border-bottom: 2px solid #ddd;
    font-weight: 700;
}

.spt-table td {
    padding: .8rem .5rem;
    border-bottom: 1px solid #eee;
}

.spt-team-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
    border: 1px solid #ddd;
}

.spt-link-more {
    display: block;
    margin-top: 1rem;
    text-align: right;
    font-size: .85rem;
    font-weight: 700;
    color: #e31b23;
    text-decoration: none;
}

/* Video Widget */
.spt-video-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
}

.spt-video-card img {
    width: 100%;
    display: block;
    filter: brightness(0.7);
}

.spt-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #000;
}

.spt-video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, #000, transparent);
    color: #fff;
}

.spt-video-info h4 {
    font-size: .95rem;
    margin: 0 0 .2rem;
}

.spt-video-info span {
    font-size: .75rem;
    opacity: 0.8;
}

/* Dark Mode Overrides */
[data-theme="dark"] .spt-ticker-wrap {
    background: #111;
    border-color: #ffab00;
}

[data-theme="dark"] .spt-hero {
    background: #111;
}

[data-theme="dark"] .spt-card {
    background: #1e1e1e;
}

[data-theme="dark"] .spt-section-header h2,
[data-theme="dark"] .spt-card-body h3 a {
    color: #fff;
}

[data-theme="dark"] .spt-card-body p {
    color: #aaa;
}

[data-theme="dark"] .spt-widget {
    background: #1e1e1e;
    border-top-color: #fff;
}

[data-theme="dark"] .spt-table td {
    border-bottom-color: #333;
}

[data-theme="dark"] .spt-table th {
    border-bottom-color: #444;
}

/* Responsive */
@media (max-width: 1024px) {
    .spt-layout-grid {
        grid-template-columns: 1fr;
    }

    .spt-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .spt-hero {
        min-height: 400px;
    }

    .spt-hero-title {
        font-size: 2rem;
    }

    .spt-hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .spt-news-grid {
        grid-template-columns: 1fr;
    }

    .spt-ticker-label {
        padding-right: 1rem;
        font-size: .8rem;
    }
}

/* ================================================================
   TECHNOLOGY PAGE
================================================================ */

.tec-page-wrapper {
    background-color: #0f172a;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)),
        linear-gradient(90deg, rgba(6, 182, 212, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(6, 182, 212, 0.05) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    /* Tech Grid Pattern */
    color: #e2e8f0;
    min-height: 100vh;
}

/* Immersive Hero */
.tec-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: url('../../asset/images/blog7.jpg') no-repeat center center/cover;
    /* VR Headset Image */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.tec-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4), #0f172a);
    z-index: 1;
}

.tec-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1rem;
}

.tec-label {
    display: inline-block;
    padding: .5rem 1rem;
    border: 1px solid #06b6d4;
    /* Cyan */
    color: #06b6d4;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-radius: 50px;
    background: rgba(6, 182, 212, 0.1);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
}

.tec-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.tec-cursor {
    display: inline-block;
    width: 3px;
    background: #06b6d4;
    animation: tecBlink 1s step-end infinite;
    vertical-align: middle;
}

@keyframes tecBlink {
    50% {
        opacity: 0;
    }
}

.tec-hero-desc {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.tec-btn-glow {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #06b6d4, #3b82f6);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 2px;
    transition: all .3s;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tec-btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.6);
}

/* Container */
.tec-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.tec-section-head {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.tec-section-head h2 {
    font-family: 'Roboto Mono', monospace;
    font-size: 1.5rem;
    color: #fff;
    white-space: nowrap;
}

.tec-line {
    height: 1px;
    background: linear-gradient(90deg, #334155, transparent);
    width: 100%;
}

/* Bento Grid */
.tec-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.tec-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all .3s ease;
    cursor: pointer;
}

.tec-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.5);
}

.tec-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity .4s;
}

.tec-card:hover .tec-card-bg {
    opacity: 0.8;
}

.tec-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, #0f172a, transparent);
    z-index: 2;
}

.tec-card-lg {
    grid-column: span 2;
    grid-row: span 2;
}

.tec-card-wide {
    grid-column: span 2;
}

.tec-tag {
    color: #06b6d4;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: .5rem;
    display: block;
}

.tec-card h3 {
    margin: 0;
    line-height: 1.3;
}

.tec-card h3 a {
    color: #fff;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
}

.tec-card-lg h3 a {
    font-size: 2rem;
}

.tec-card p {
    color: #cbd5e1;
    font-size: .95rem;
    margin-top: .8rem;
    display: none;
    /* Hide snippet on small cards */
}

.tec-card-lg p {
    display: block;
}

/* Gadget Scroll */
.tec-scroll-wrap {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding-bottom: 2rem;
    scrollbar-width: thin;
    scrollbar-color: #334155 #0f172a;
}

.tec-review-card {
    min-width: 250px;
    background: #1e293b;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tec-review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #06b6d4;
}

.tec-score {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
}

.tec-review-card h4 {
    color: #06b6d4;
    margin-bottom: .5rem;
    font-family: 'Roboto Mono', monospace;
}

.tec-review-card p {
    color: #94a3b8;
    font-size: .9rem;
    font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .tec-hero-title {
        font-size: 3rem;
    }

    .tec-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .tec-card-lg {
        grid-column: span 2;
        height: 350px;
    }

    .tec-card-wide {
        grid-column: span 2;
        height: 250px;
    }

    .tec-card {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .tec-hero-title {
        font-size: 2.2rem;
    }

    .tec-bento-grid {
        display: flex;
        flex-direction: column;
    }

    .tec-card,
    .tec-card-lg,
    .tec-card-wide {
        height: 280px;
        width: 100%;
    }
}

.biz-nl-content h2 {
    margin-bottom: .5rem;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
}

.biz-nl-form {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: .5rem;
    border-radius: 4px;
}

.biz-nl-form input {
    background: none;
    border: none;
    color: #fff;
    padding: .8rem;
    font-size: 1rem;
    outline: none;
}

.biz-nl-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.biz-nl-form button {
    background: #fff;
    color: #1e3c72;
    border: none;
    padding: .8rem 1.5rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 2px;
}

/* Dark Mode Overrides */
[data-theme="dark"] .biz-hero {
    background: var(--dt-bg-secondary);
}

[data-theme="dark"] .biz-divider span {
    background: var(--dt-bg-primary);
}

[data-theme="dark"] .biz-card--dark {
    background: #252a34;
}

/* Responsive */
@media (max-width: 1024px) {
    .biz-hero {
        grid-template-columns: 1fr;
    }

    .biz-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .biz-newsletter {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .biz-page-container {
        padding: 1rem;
    }

    .biz-hero-title {
        font-size: 2rem;
    }

    .biz-grid {
        grid-template-columns: 1fr;
    }

    .biz-nl-form {
        flex-direction: column;
        width: 100%;
    }
}

/* ================================================================
   ENTERTAINMENT PAGE — WHITE & GOLD THEME
================================================================ */

.ent-page-wrapper {
    background: #ffffff;
    color: #2c2c2c;
    min-height: 100vh;
    font-family: 'Merriweather', serif;
}

/* Spotlight Hero */
.ent-hero {
    height: 70vh;
    min-height: 500px;
    background: url('../../asset/images/blog9.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 3rem;
}

.ent-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    /* Light overlay */
}

.ent-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid #e5e5e5;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.ent-spotlight-tag {
    color: var(--dt-accent-primary);
    /* Muted Gold */
    font-family: 'Cinzel', serif;
    letter-spacing: 4px;
    font-size: .9rem;
    display: block;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.ent-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.1;
    font-style: italic;
}

.ent-hero-desc {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
}

.ent-btn-gold {
    display: inline-block;
    padding: 1rem 3rem;
    background: #1a1a1a;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
    text-decoration: none;
    transition: all .4s ease;
    letter-spacing: 2px;
}

.ent-btn-gold:hover {
    background: var(--dt-accent-primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Container */
.ent-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.ent-section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.ent-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    display: inline-block;
    background: #fff;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.ent-line {
    height: 1px;
    background: #e5e5e5;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
}

/* Layout */
.ent-layout-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 4rem;
}

/* Gallery */
.ent-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 2rem;
}

.ent-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background: #fff;
    transition: transform 0.4s ease;
}

.ent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ent-card-lg {
    grid-column: span 2;
    height: 450px;
}

.ent-img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.ent-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.ent-card:hover .ent-img-wrap img {
    transform: scale(1.05);
}

.ent-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: #fff;
    padding: 1.5rem;
    z-index: 2;
    text-align: center;
    transition: bottom .3s;
}

.ent-card:hover .ent-overlay {
    bottom: 2.5rem;
}

.ent-cat {
    color: #bfa15f;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: .5rem;
    font-family: 'Cinzel', serif;
}

.ent-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 0;
    font-weight: 400;
}

/* Sidebar */
.ent-widget {
    border: 1px solid #eee;
    padding: 2.5rem;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.ent-widget-title {
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
    font-style: italic;
}

.ent-review-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 1.5rem;
}

.ent-review-item:last-child {
    border-bottom: none;
}

.ent-poster {
    width: 70px;
    height: 100px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.ent-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ent-review-info h4 {
    margin: 0 0 .5rem;
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    color: #1a1a1a;
    line-height: 1.4;
    font-weight: 700;
}

.ent-stars {
    color: #bfa15f;
    font-size: .8rem;
    margin-bottom: .5rem;
}

.ent-verdict {
    font-size: .75rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.ent-link-more {
    display: block;
    text-align: center;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: .8rem;
    margin-top: 1rem;
    border: 1px solid #eee;
    padding: 1rem;
    transition: background .3s;
}

.ent-link-more:hover {
    background: #f9f9f9;
}

/* Invert overrides for main dark mode toggler if present */
[data-theme="dark"] .ent-page-wrapper {
    background: #111;
    color: #fff;
}

[data-theme="dark"] .ent-hero-content {
    background: rgba(0, 0, 0, 0.8);
    border-color: #333;
}

[data-theme="dark"] .ent-hero-title,
[data-theme="dark"] .ent-section-header h2,
[data-theme="dark"] .ent-overlay h3,
[data-theme="dark"] .ent-widget-title,
[data-theme="dark"] .ent-review-info h4 {
    color: #fff;
}

[data-theme="dark"] .ent-section-header h2 {
    background: #111;
}

[data-theme="dark"] .ent-line {
    background: #333;
}

[data-theme="dark"] .ent-card {
    background: #1e1e1e;
}

[data-theme="dark"] .ent-overlay {
    background: #1e1e1e;
}

[data-theme="dark"] .ent-widget {
    background: #1e1e1e;
    border-color: #333;
}

[data-theme="dark"] .ent-link-more {
    color: #fff;
    border-color: #333;
}

[data-theme="dark"] .ent-link-more:hover {
    background: #222;
}

/* Responsive */
@media (max-width: 1024px) {
    .ent-layout-grid {
        grid-template-columns: 1fr;
    }

    .ent-gallery {
        grid-template-columns: 1fr;
    }

    .ent-card-lg {
        grid-column: span 1;
        height: 350px;
    }
}

@media (max-width: 767px) {
    .ent-hero-title {
        font-size: 2.2rem;
    }

    .ent-hero-content {
        padding: 2rem;
        max-width: 90%;
    }

    .ent-overlay {
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1rem;
    }

    .ent-card:hover .ent-overlay {
        bottom: 0;
    }
}

/* ================================================================
   HOME 2 - VISUAL EDITION
================================================================ */

.h2-main-wrapper {
    overflow-x: hidden;
    background: #f8f9fa;
    color: #333;
    font-family: 'Inter', sans-serif;
}

/* 1. Split Hero */
.h2-hero {
    height: 90vh;
    min-height: 600px;
    background: #fff;
    overflow: hidden;
}

.h2-hero-split {
    display: flex;
    height: 100%;
}

.h2-hero-img {
    flex: 1.2;
    position: relative;
    overflow: hidden;
}

.h2-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 7s ease;
}

.h2-hero-img:hover img {
    transform: scale(1.1);
}

.h2-hero-tag {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: #000;
    color: #fff;
    padding: .5rem 1rem;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.h2-hero-text {
    flex: 0.8;
    background: #fff;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.h2-date {
    font-size: .9rem;
    color: #666;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.h2-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #111;
}

.h2-lead {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 90%;
}

.h2-btn-arrow {
    font-weight: 600;
    color: #111;
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    transition: gap .3s;
}

.h2-btn-arrow:hover {
    gap: 1rem;
}

/* 2. Trending Strip */
.h2-trending {
    background: #000;
    color: #fff;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.h2-trending-label {
    background: #ff3c00;
    color: #fff;
    padding: .5rem 1.5rem;
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase;
    margin-right: 2rem;
    white-space: nowrap;
}

.h2-ticker-wrap {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}

.h2-ticker-track {
    display: inline-block;
    animation: h2Ticker 20s linear infinite;
}

.h2-tick-item {
    display: inline-block;
    padding-right: 3rem;
    font-size: 1rem;
    font-weight: 500;
}

@keyframes h2Ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* 3. Deep Dive Mosaic */
.h2-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.h2-section-head {
    margin-bottom: 3rem;
    text-align: center;
}

.h2-section-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: .5rem;
}

.h2-section-head p {
    color: #666;
}

.h2-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 300px 300px;
    gap: 1.5rem;
}

.h2-mosaic-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.h2-mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.h2-mosaic-item:hover img {
    transform: scale(1.05);
}

.h2-mosaic-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
}

.h2-cat {
    font-size: .7rem;
    text-transform: uppercase;
    color: #ff3c00;
    font-weight: 700;
    margin-bottom: .5rem;
    display: block;
}

.h2-mosaic-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 0;
    line-height: 1.2;
}

.h2-big {
    grid-row: span 2;
}

.h2-wide {
    grid-column: span 2;
}

/* 4. Voices */
.h2-voices {
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.h2-voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.h2-voice-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    transition: box-shadow .3s;
}

.h2-voice-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.h2-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ff3c00;
}

.h2-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.h2-voice-body blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #333;
}

.h2-voice-body cite {
    display: block;
    font-weight: 700;
    font-style: normal;
    color: #111;
}

.h2-role {
    font-size: .8rem;
    color: #666;
    text-transform: uppercase;
}

/* 5. Visual Stories */
.h2-visuals {
    background: #111;
    color: #fff;
}

.h2-section-head.light h2 {
    color: #fff;
}

.h2-video-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.h2-main-video {
    position: relative;
    cursor: pointer;
}

.h2-vid-thumb {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.h2-vid-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity .3s;
}

.h2-main-video:hover .h2-vid-thumb img {
    opacity: 1;
}

.h2-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform .3s;
}

.h2-main-video:hover .h2-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.h2-vid-info {
    padding-top: 1rem;
}

.h2-vid-info h3 {
    font-size: 1.5rem;
    margin-bottom: .5rem;
}

.h2-vid-info p {
    color: #aaa;
}

.h2-sub-videos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.h2-sub-vid {
    display: flex;
    gap: 1rem;
    align-items: center;
    cursor: pointer;
    padding: .5rem;
    border-radius: 4px;
    transition: background .2s;
}

.h2-sub-vid:hover {
    background: #222;
}

.h2-sub-vid img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.h2-sub-vid span {
    font-weight: 500;
}

/* 6. Testimonials */
.h2-testimonials {
    background: #f4f4f4;
}

.h2-testi-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.h2-testi-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform .3s;
}

.h2-testi-card:hover {
    transform: translateY(-5px);
}

.h2-testi-quote {
    font-size: 4rem;
    color: #ff3c00;
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: serif;
    line-height: 1;
}

.h2-testi-text {
    position: relative;
    z-index: 2;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #333;
}

.h2-testi-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.h2-testi-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.h2-testi-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.h2-testi-meta strong {
    display: block;
    color: #111;
}

.h2-testi-meta span {
    font-size: .8rem;
    color: #777;
}

/* Responsive Home 2 */
@media (max-width: 1024px) {
    .h2-hero-split {
        flex-direction: column;
    }

    .h2-hero-img,
    .h2-hero-text {
        flex: 1;
    }

    .h2-hero {
        height: auto;
    }

    .h2-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .h2-big {
        grid-row: span 1;
        grid-column: span 2;
    }

    .h2-wide {
        grid-column: span 2;
    }

    .h2-video-showcase {
        grid-template-columns: 1fr;
    }

    .h2-testi-wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .h2-hero-text h1 {
        font-size: 2.2rem;
    }

    .h2-hero-text {
        padding: 2rem;
    }

    .h2-mosaic {
        display: flex;
        flex-direction: column;
    }

    .h2-voice-grid {
        grid-template-columns: 1fr;
    }
}

/* Dark Mode Support for Home 2 */
[data-theme="dark"] .h2-main-wrapper {
    background: #111;
}

[data-theme="dark"] .h2-hero-text,
[data-theme="dark"] .h2-voices,
[data-theme="dark"] .h2-testimonials {
    background: #1a1a1a;
    border-color: #333;
}

[data-theme="dark"] .h2-hero-text h1,
[data-theme="dark"] .h2-section-head h2,
[data-theme="dark"] .h2-voice-body blockquote,
[data-theme="dark"] .h2-voice-body cite,
[data-theme="dark"] .h2-testi-text,
[data-theme="dark"] .h2-testi-meta strong {
    color: #fff;
}

[data-theme="dark"] .h2-lead,
[data-theme="dark"] .h2-section-head p {
    color: #aaa;
}

[data-theme="dark"] .h2-btn-arrow {
    color: #fff;
}

[data-theme="dark"] .h2-voice-card,
[data-theme="dark"] .h2-testi-card {
    background: #252a34;
    border-color: #333;
}

/* ================================================================
   404 ERROR PAGE STYLES
================================================================ */

.error-page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    background-color: #f8f9fa;
    text-align: center;
}

.error-container {
    max-width: 600px;
    padding: 3rem;
    background: #fff;
    border: 1px solid var(--dt-border-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    animation: fadeIn 0.8s ease-out;
}

.error-code {
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    font-weight: 900;
    color: var(--dt-accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    cursor: default;
}

.error-code:hover {
    transform: scale(1.05) rotate(-2deg);
    text-shadow: 6px 6px 0px rgba(0, 0, 0, 0.15);
}

.error-title {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    color: var(--dt-text-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.error-message {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: var(--dt-text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-btn-primary,
.error-btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-family: 'Merriweather', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;



}

.error-btn-primary {
    background-color: var(--dt-accent-primary);
    color: #fff;
    border: 2px solid var(--dt-accent-color);
}

.error-btn-primary:hover {
    background-color: #b91c1c;
    border-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.error-btn-secondary {
    background-color: var(--dt-text-primary);
    color: var(--dt-bg-primary);
    border: 2px solid var(--dt-border-color);
}

.error-btn-secondary:hover {
    background-color: var(--dt-text-primary);
    color: #fff;
    border-color: var(--dt-text-primary);
    transform: translateY(-2px);
}

/* 404 Dark Mode */
body.dark-mode .error-page-wrapper {
    background-color: #1a1a1a;
}

body.dark-mode .error-container {
    background-color: #2c2c2c;
    border-color: #444;
}

body.dark-mode .error-title {
    color: #e5e5e5;
}

body.dark-mode .error-message {
    color: #a3a3a3;
}

body.dark-mode .error-btn-secondary {
    color: #e5e5e5;
    border-color: #555;
}

body.dark-mode .error-btn-secondary:hover {
    background-color: #e5e5e5;
    color: #1a1a1a;
}

/* 404 Responsive */
@media (max-width: 1024px) {
    .error-code {
        font-size: 6rem;
    }

    .error-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .error-page-wrapper {
        padding: 2rem 1rem;
    }

    .error-container {
        padding: 2rem 1rem;
    }

    .error-code {
        font-size: 5rem;
    }

    .error-title {
        font-size: 1.5rem;
    }

    .error-actions {
        flex-direction: column;
        width: 100%;
    }

    .error-btn-primary,
    .error-btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* ================================================================
   COMING SOON PAGE STYLES (REDESIGNED)
================================================================ */

.cs-split-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
    background-color: var(--dt-bg-primary);
    overflow: hidden;
}

/* --- Left Side: Content --- */
.cs-content-side {
    flex: 1;
    padding: 4rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    position: relative;
    z-index: 2;
    max-width: 50%;
}

.cs-brand-logo {
    margin-bottom: 2rem;
}

.cs-logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    color: var(--dt-header-bg);
}

.cs-main-body {
    max-width: 580px;
    animation: fadeIn 0.8s ease-out;
}

.cs-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--dt-accent-light);
    color: var(--dt-accent-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.cs-headline {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    color: var(--dt-text-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cs-headline em {
    font-style: italic;
    color: var(--dt-accent-primary);
}

.cs-desc {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--dt-text-secondary);
    margin-bottom: 3rem;
    max-width: 90%;
}

/* Form Styles */
.cs-notify-form {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    max-width: 480px;
    position: relative;
}

.cs-email-input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: 2px solid var(--dt-border-light);
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: var(--dt-bg-secondary);
    transition: all 0.3s ease;
    color: var(--dt-text-primary);
}

.cs-email-input:focus {
    outline: none;
    border-color: var(--dt-accent-primary);
    background: #fff;
}

.cs-submit-btn {
    padding: 0 2rem;
    background: var(--dt-header-bg);
    color: #fff;
    border: none;
    border-radius: 0 8px 8px 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cs-submit-btn:hover {
    background: var(--dt-accent-primary);
}

/* Back Link */
.cs-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dt-text-tertiary);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.cs-back-link:hover {
    color: var(--dt-accent-primary);
}

/* Footer Section */
.cs-footer-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--dt-border-light);
}

.cs-socials {
    display: flex;
    gap: 1.5rem;
}

.cs-socials a {
    color: var(--dt-text-tertiary);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.cs-socials a:hover {
    color: var(--dt-accent-primary);
    transform: translateY(-2px);
}

.cs-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--dt-text-tertiary);
}

/* --- Right Side: Image --- */
.cs-image-side {
    flex: 1;
    position: relative;
    background: #000;
    overflow: hidden;
}

.cs-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 10s ease;
    animation: zoomEffect 20s infinite alternate;
}

.cs-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.cs-quote-box {
    position: absolute;
    bottom: 4rem;
    left: 4rem;
    right: 4rem;
    z-index: 2;
    color: #fff;
    border-left: 4px solid var(--dt-accent-primary);
    padding-left: 1.5rem;
}

.cs-quote-box p {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.cs-quote-box cite {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* Animations */
@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dark Mode Overrides */
[data-theme="dark"] .cs-content-side {
    background: var(--dt-bg-primary);
}

[data-theme="dark"] .cs-logo-text {
    color: #fff;
}

[data-theme="dark"] .cs-headline {
    color: #fff;
}

[data-theme="dark"] .cs-desc {
    color: var(--dt-text-secondary);
}

[data-theme="dark"] .cs-email-input {
    background: var(--dt-bg-secondary);
    border-color: var(--dt-border-light);
    color: #fff;
}

[data-theme="dark"] .cs-email-input:focus {
    border-color: var(--dt-accent-primary);
}

[data-theme="dark"] .cs-submit-btn {
    background: #fff;
    color: #000;
}

[data-theme="dark"] .cs-submit-btn:hover {
    background: var(--dt-accent-primary);
    color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .cs-headline {
        font-size: 3.5rem;
    }

    .cs-content-side {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .cs-split-wrapper {
        flex-direction: column;
    }

    .cs-content-side {
        max-width: 100%;
        padding: 3rem 1.5rem;
        order: 2;
        min-height: auto;
    }

    .cs-image-side {
        height: 40vh;
        order: 1;
        min-height: 300px;
    }

    .cs-quote-box {
        display: none;
    }

    /* Hide quote on mobile to save space */
    .cs-headline {
        font-size: 2.8rem;
    }

    .cs-desc {
        font-size: 1.1rem;
    }

    .cs-content-side {
        flex: auto;
    }
}

/* ================================================================
   LOGIN PAGE STYLES
================================================================ */

/* --- UNIFIED PAGE WRAPPERS --- */
.login-page-wrapper,
.register-page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem 1rem;
    background: #f8f9fa;
    /* Consistent off-white background */
    overflow: hidden;
}

.design-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(0, 0, 0, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 0, 0, 0.02) 0%, transparent 40%);
}

.login-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    max-width: 450px;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeIn 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.register-container {
    max-width: 500px;
    background: rgba(255, 255, 255, 0.9);
}

.login-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--dt-header-bg);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
    transition: transform 0.3s;
}

.login-logo:hover {
    transform: scale(1.05);
}

.login-title {
    font-family: 'Merriweather', serif;
    font-size: 1.8rem;
    color: var(--dt-text-primary);
    margin-bottom: 0.5rem;
}

.login-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--dt-text-tertiary);
    margin-bottom: 2rem;
}

/* Form Styles */
.login-form {
    text-align: left;
}

.input-group {
    margin-bottom: 1.25rem;
}

.input-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dt-text-secondary);
    margin-bottom: 0.5rem;
}

.input-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--dt-border-medium);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--dt-bg-secondary);
}

.input-group input:focus {
    outline: none;
    border-color: var(--dt-accent-primary);
    background: #fff;
    box-shadow: 0 0 0 3px var(--dt-accent-light);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dt-text-secondary);
    cursor: pointer;
}

.forgot-password {
    color: var(--dt-accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.forgot-password:hover {
    color: var(--dt-accent-hover);
    text-decoration: underline;
}

.btn-login-submit {
    width: 100%;
    padding: 0.9rem;
    background: var(--dt-header-bg);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-login-submit:hover {
    background: var(--dt-accent-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Divider */
.login-divider {
    position: relative;
    margin: 2rem 0;
    text-align: center;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--dt-border-light);
}

.login-divider span {
    position: relative;
    background: #fff;
    padding: 0 1rem;
    color: var(--dt-text-tertiary);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Social Login */
.social-login {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.8rem;
    border: 1px solid var(--dt-border-medium);
    border-radius: 6px;
    background: #fff;
    color: var(--dt-text-primary);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-social:hover {
    background: var(--dt-bg-secondary);
    border-color: var(--dt-text-secondary);
}

.btn-social.google i {
    color: #DB4437;
}

.btn-social.apple i {
    color: #000;
}

.login-footer {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--dt-text-secondary);
}

.login-footer a {
    color: var(--dt-accent-primary);
    text-decoration: none;
    font-weight: 600;
}

.login-footer a:hover {
    text-decoration: underline;
}

/* Toggles */
.login-toggles {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.login-toggles .dt-btn-icon {
    color: var(--dt-text-primary);
}

[data-theme="dark"] .login-toggles .dt-btn-icon {
    color: #FFFFFF;
}

/* Dark Mode Login & Register */
[data-theme="dark"] .login-page-wrapper,
[data-theme="dark"] .register-page-wrapper {
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
}

[data-theme="dark"] .login-container {
    background: rgba(30, 34, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

[data-theme="dark"] .login-logo {
    color: #fff;
}

[data-theme="dark"] .login-title {
    color: #fff;
}

[data-theme="dark"] .login-subtitle {
    color: #aaa;
}

[data-theme="dark"] .login-divider span {
    background: #252a34;
    color: #777;
}

[data-theme="dark"] .input-group label {
    color: #ccc;
}

[data-theme="dark"] .input-group input {
    background: #1a1a1a;
    border-color: #444;
    color: #fff;
}

[data-theme="dark"] .input-group input:focus {
    border-color: var(--dt-accent-primary);
}

[data-theme="dark"] .btn-login-submit {
    background: #fff;
    color: #000;
}

[data-theme="dark"] .btn-login-submit:hover {
    background: var(--dt-accent-primary);
    color: #fff;
}

[data-theme="dark"] .btn-social {
    background: #1a1a1a;
    border-color: #444;
    color: #fff;
}

[data-theme="dark"] .btn-social:hover {
    background: #222;
}

[data-theme="dark"] .login-footer {
    color: #aaa;
}

[data-theme="dark"] .btn-social.apple i {
    color: #fff;
}

/* Responsive Login & Register */
@media (max-width: 768px) {
    .login-container {
        padding: 2.5rem 2rem;
        max-width: 90%;
    }
}

@media (max-width: 480px) {

    .login-page-wrapper,
    .register-page-wrapper {
        padding: 1rem;
        align-items: flex-start;
        /* Better for long forms on small screens */
        overflow-y: auto;
    }

    .login-container {
        padding: 2rem 1.5rem;
        max-width: 100%;
        border-radius: 15px;
    }

    .login-logo {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .login-title {
        font-size: 1.6rem;
    }
}

/* ================================================================
   REGISTER PAGE SPECIFIC STYLES
================================================================ */

.register-container {
    max-width: 500px;
}

.privacy-policy {
    font-size: 0.85rem;
    color: var(--dt-text-secondary);
}

.privacy-policy a {
    color: var(--dt-accent-primary);
    text-decoration: none;
    font-weight: 600;
}

.privacy-policy a:hover {
    text-decoration: underline;
}

/* Dark Mode Register Overrides */
[data-theme="dark"] .privacy-policy {
    color: #aaa;
}

/* ================================================================
   ADMIN DASHBOARD STYLES
================================================================ */

:root {
    --admin-sidebar-width: 280px;
    --admin-header-height: 70px;
    --admin-bg: #f8f9fa;
    --admin-card-bg: #ffffff;
    --admin-sidebar-bg: #1c1c1c;
    --admin-border: #e0e0e0;
}

[data-theme="dark"] {
    --admin-bg: #121212;
    --admin-card-bg: #1e1e1e;
    --admin-sidebar-bg: #000000;
    --admin-border: #333333;
}

.admin-dashboard-body {
    background-color: var(--admin-bg);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* --- SIDEBAR --- */
.admin-sidebar {
    width: var(--admin-sidebar-width);
    height: 100vh;
    background: var(--admin-sidebar-bg);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-header {
    height: var(--admin-header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.25rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.sidebar-close {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.sidebar-nav {
    flex: 1;
    padding: 1.5rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s;
}

.nav-item:hover,
.nav-item.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-item.active i {
    color: var(--dt-accent-primary);
}

.sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.theme-toggle,
.rtl-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.2s;
}

.theme-toggle:hover,
.rtl-toggle:hover {
    color: #fff;
}

/* --- MAIN CONTENT --- */
.admin-main {
    margin-left: var(--admin-sidebar-width);
    min-height: 100vh;
    transition: margin 0.3s;
}

.admin-header {
    height: var(--admin-header-height);
    background: var(--admin-card-bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    border-bottom: 1px solid var(--admin-border);
    position: sticky;
    top: 0;
    z-index: 900;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    color: var(--dt-text-primary);
    font-size: 1.25rem;
    cursor: pointer;
}

.page-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dt-text-primary);
    margin: 0;
}

.admin-header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Header Toggles */
.header-toggles {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 1.5rem;
    padding-right: 1.5rem;
    border-right: 1px solid var(--admin-border);
}

[dir="rtl"] .header-toggles {
    margin-right: 0;
    margin-left: 1.5rem;
    padding-right: 0;
    padding-left: 1.5rem;
    border-right: none;
    border-left: 1px solid var(--admin-border);
}

.header-toggles .dt-btn-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dt-bg-tertiary);
    border: 1px solid var(--admin-border);
    border-radius: 8px;
    color: var(--dt-text-primary);
    cursor: pointer;
    transition: all 0.2s;
}

.header-toggles .dt-btn-icon:hover {
    background: var(--dt-accent-light);
    color: var(--dt-accent-primary);
}

/* Profile Dropdown */
.admin-profile-dropdown {
    position: relative;
    z-index: 910;
}

/* Hover Animations & Premium Effects */
.stat-card,
.content-card,
.newsletter-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.stat-card:hover,
.content-card:hover,
.newsletter-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px var(--dt-shadow-lg);
    border-color: var(--dt-accent-primary);
}

.stat-card::after,
.content-card::after,
.newsletter-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    box-shadow: 0 5px 15px var(--dt-shadow-md);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.stat-card:hover::after,
.content-card:hover::after,
.newsletter-card:hover::after {
    opacity: 1;
}


.profile-trigger {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.2s;
}

.profile-trigger:hover {
    background: var(--dt-bg-tertiary);
}

.avatar-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.admin-name {
    font-weight: 600;
    color: var(--dt-text-primary);
    font-size: 0.95rem;
}

.profile-trigger i {
    font-size: 0.75rem;
    color: var(--dt-text-tertiary);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 220px;
    background: var(--admin-card-bg);
    border: 1px solid var(--admin-border);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s;
    padding: 0.5rem;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--dt-text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background: var(--dt-bg-tertiary);
    color: var(--dt-text-primary);
}

.dropdown-menu .divider {
    height: 1px;
    background: var(--admin-border);
    margin: 0.5rem 0;
}

.dropdown-menu .logout {
    color: var(--dt-accent-primary);
}

/* --- DASHBOARD SECTIONS --- */
.dashboard-content {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-section {
    display: none;
    animation: dtFadeIn 0.4s ease-out;
}

.dashboard-section.active {
    display: block;
}

.section-header {
    margin-bottom: 2rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dt-text-primary);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--dt-text-tertiary);
    margin: 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--admin-card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--admin-border);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--dt-shadow-sm);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--dt-accent-light);
    color: var(--dt-accent-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-info h3 {
    font-size: 1.5rem;
    margin: 0 0 0.25rem;
    color: var(--dt-text-primary);
}

.stat-info p {
    margin: 0;
    color: var(--dt-text-secondary);
    font-size: 0.9rem;
}

/* Content Cards */
.content-card {
    background: var(--admin-card-bg);
    border: 1px solid var(--admin-border);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--dt-shadow-sm);
}

.card-list {
    display: flex;
    flex-direction: column;
}

.list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--admin-border);
}

.list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.list-item:first-child {
    padding-top: 0;
}

.item-text strong {
    display: block;
    color: var(--dt-text-primary);
    margin-bottom: 0.25rem;
}

.item-text p {
    margin: 0;
    color: var(--dt-text-tertiary);
    font-size: 0.9rem;
}

.status-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-badge.active {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.btn-outline {
    background: none;
    border: 1px solid var(--dt-accent-primary);
    color: var(--dt-accent-primary);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: var(--dt-accent-primary);
    color: #fff;
}

/* Newsletter Grid */
.newsletter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.newsletter-card {
    background: var(--admin-card-bg);
    border: 1px solid var(--admin-border);
    border-radius: 12px;
    padding: 2rem;
}

.n-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.n-card-content h4 {
    margin: 0;
    color: var(--dt-text-primary);
    font-size: 1.1rem;
}

.n-card-content p {
    color: var(--dt-text-tertiary);
    font-size: 0.9rem;
    margin: 0 0 1rem;
}

/* Switch Styles */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--dt-border-light);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--dt-accent-primary);
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Table Styles */
.overflow-x-auto {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.data-table th {
    padding: 1rem;
    border-bottom: 2px solid var(--admin-border);
    color: var(--dt-text-secondary);
    font-weight: 600;
}

.data-table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--admin-border);
    color: var(--dt-text-primary);
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.dot.paid {
    background: #22c55e;
}

.table-link {
    color: var(--dt-accent-primary);
    text-decoration: none;
    font-weight: 600;
}

/* Settings Form */
.settings-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--dt-text-secondary);
    font-size: 0.9rem;
}

.form-group input {
    padding: 0.75rem 1rem;
    border: 1px solid var(--admin-border);
    border-radius: 6px;
    background: var(--admin-bg);
    color: var(--dt-text-primary);
}

.btn-primary {
    background: var(--dt-header-bg);
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--dt-accent-primary);
    transform: scale(1.02);
}

/* --- READING GRAPH STYLES --- */
.reading-activity-card {
    margin-top: 2rem;
}

.reading-activity-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.graph-legend {
    display: flex;
    gap: 1.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--dt-text-secondary);
}

.legend-item .dot.articles {
    background: var(--dt-accent-primary);
}

.legend-item .dot.e-paper {
    background: var(--dt-text-tertiary);
    opacity: 0.5;
}

.reading-graph-container {
    height: 300px;
    padding: 1rem 0;
    display: flex;
    align-items: flex-end;
}

.reading-graph {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    gap: 1rem;
    border-bottom: 2px solid var(--admin-border);
    padding-bottom: 2.5rem;
}

.graph-bar {
    flex: 1;
    height: var(--height);
    background: var(--dt-accent-light);
    border-radius: 8px 8px 0 0;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.graph-bar:hover {
    background: var(--dt-accent-primary);
    filter: brightness(1.1);
}

.graph-bar .bar-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    /* Example mixed data */
    background: var(--dt-accent-primary);
    border-radius: 8px 8px 0 0;
    opacity: 0.8;
}

.bar-label {
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dt-text-tertiary);
}

/* Tooltip appearance simulation on hover */
.graph-bar:hover::before {
    content: attr(data-label) ": " var(--height);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dt-header-bg);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    z-index: 10;
}

/* --- FORM UTILITIES --- */
.dt-select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--admin-border);
    border-radius: 6px;
    background: var(--admin-bg);
    color: var(--dt-text-primary);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 2rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--dt-text-secondary);
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.25rem;
    width: 1.25rem;
    background-color: var(--dt-border-light);
    border-radius: 4px;
}

.checkbox-container:hover input~.checkmark {
    background-color: #ccc;
}

.checkbox-container input:checked~.checkmark {
    background-color: var(--dt-accent-primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.mt-1 {
    margin-top: 1rem;
}

.btn-text {
    background: none;
    border: none;
    color: var(--dt-accent-primary);
    font-weight: 600;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background 0.2s;
}

.btn-text:hover {
    background: var(--dt-accent-light);
}

.btn-text.danger {
    color: var(--dt-error);
}

.btn-text.danger:hover {
    background: var(--dt-error-light);
}

.item-icon {
    width: 40px;
    height: 40px;
    background: var(--dt-bg-tertiary);
    color: var(--dt-text-secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.small {
    font-size: 0.8rem;
}

.text-secondary {
    color: var(--dt-text-tertiary);
}

/* --- PREMIUM BENEFITS HUB --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.benefit-card {
    background: var(--admin-card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--admin-border);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--dt-accent-primary);
}

.benefit-card.gold {
    background: linear-gradient(135deg, #FFF9EB 0%, #FFF1D1 100%);
    border-color: #F8D381;
}

[data-theme="dark"] .benefit-card.gold {
    background: linear-gradient(135deg, #2D2412 0%, #1A1408 100%);
    border-color: #614D23;
}

.benefit-icon {
    width: 44px;
    height: 44px;
    background: var(--dt-accent-light);
    color: var(--dt-accent-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
}

.benefit-card h4 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    color: var(--dt-text-primary);
}

.benefit-card p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--dt-text-tertiary);
    line-height: 1.4;
}

.mt-3 {
    margin-top: 3rem;
}

.mb-3 {
    margin-bottom: 3rem;
}



/* --- SECTION DIVIDER --- */
.section-divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--dt-text-tertiary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-divider hr {
    flex: 1;
    border: none;
    border-top: 2px solid var(--admin-border);
}

.mt-4 {
    margin-top: 4rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

/* --- OVERLAY --- */
.admin-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 950;
    display: none;
    backdrop-filter: blur(2px);
}

/* --- RESPONSIVE DASHBOARD --- */
@media (max-width: 1024px) {
    .admin-sidebar {
        transform: translateX(-100%);
    }

    .admin-sidebar.is-open,
    .admin-sidebar.active {
        transform: translateX(0);
    }

    .admin-main {
        margin-left: 0;
    }

    .hamburger-menu {
        display: block;
    }

    .sidebar-close {
        display: block;
    }

    .admin-overlay.is-visible,
    .admin-overlay.active {
        display: block;
    }
}

@media (max-width: 768px) {
    .admin-header {
        padding: 0 1rem;
    }

    .dashboard-content {
        padding: 1.5rem 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .admin-header {
        gap: 0.5rem;
    }

    .header-right {
        gap: 0.5rem;
    }

    .header-toggles {
        margin-right: 0.5rem;
        padding-right: 0.5rem;
        gap: 0.25rem;
    }

    [dir="rtl"] .header-toggles {
        margin-left: 0.5rem;
        padding-left: 0.5rem;
    }

    .admin-name {
        display: none;
    }

    .page-title {
        font-size: 1.1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 12ch;
    }

    .newsletter-grid {
        grid-template-columns: 1fr !important;
    }
}

/* --- DASHBOARD RTL --- */
[dir="rtl"] .admin-sidebar {
    left: auto;
    right: 0;
    transform: translateX(0);
    /* Visible on desktop RTL */
}

[dir="rtl"] .admin-sidebar.is-open {
    transform: translateX(0);
}

[dir="rtl"] .admin-main {
    margin-left: 0;
    margin-right: var(--admin-sidebar-width);
}

@media (max-width: 1024px) {
    [dir="rtl"] .admin-main {
        margin-right: 0;
    }

    /* Off-canvas behavior for RTL mobile/tablet */
    [dir="rtl"] .admin-sidebar {
        transform: translateX(100%);
    }

    [dir="rtl"] .admin-sidebar.is-open,
    [dir="rtl"] .admin-sidebar.active {
        transform: translateX(0);
    }
}

/* Ensure hamburger is HIDDEN on desktop in both modes */
@media (min-width: 1025px) {
    .hamburger-menu {
        display: none !important;
    }
}

[dir="rtl"] .dropdown-menu {
    right: auto;
    left: 0;
}

[dir="rtl"] .stat-card {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-item {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .nav-item i {
    margin-left: 0;
}

[dir="rtl"] .sidebar-header {
    flex-direction: row-reverse;
}

[dir="rtl"] .profile-trigger {
    flex-direction: row-reverse;
}

[dir="rtl"] .dot {
    margin-right: 0;
    margin-left: 0.5rem;
}

[dir="rtl"] .n-card-content {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.admin-overlay.active {
    display: block;
    opacity: 1;
}

/* Premium Hover Transitions for Cards */
.stat-card,
.content-card,
.newsletter-card {
    cursor: default;
}

.btn-primary:active,
.btn-outline:active {
    transform: scale(0.95);
}

/* ================================================================
   USER DASHBOARD SPECIFIC REFINEMENTS
================================================================ */

.perks-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--dt-bg-secondary);
    border-radius: 8px;
    border-left: 4px solid var(--dt-accent-primary);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.perk-item:hover {
    transform: translateX(10px);
    background: var(--dt-accent-light);
    box-shadow: var(--dt-shadow-sm);
}

[dir='rtl'] .perk-item {
    border-left: none;
    border-right: 4px solid var(--dt-accent-primary);
}

[dir='rtl'] .perk-item:hover {
    transform: translateX(-10px);
}

.perk-item i {
    font-size: 1.25rem;
    color: var(--dt-accent-primary);
}

.perk-item span {
    font-weight: 500;
    color: var(--dt-text-primary);
}

/* User Sidebar Specifics */
@media (max-width: 1024px) {
    #userSidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    #userSidebar.active {
        transform: translateX(0);
    }

    #userSidebarOverlay.active {
        display: block !important;
        opacity: 1 !important;
    }
}