/* ABP News Static Clean Theme (NO ANIMATIONS, TIGHT COMPACT SPACING) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

:root {
    --abp-red: #e11b22;
    --abp-dark: #111111;
    --abp-gray-bg: #f4f5f7;
    --abp-card-bg: #ffffff;
    --abp-border: #e2e8f0;
    --text-main: #111827;
    --text-muted: #4b5563;
    --font-heading: 'Poppins', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: none !important;
    animation: none !important;
}

body {
    font-family: var(--font-body);
    background-color: var(--abp-gray-bg);
    color: var(--text-main);
    line-height: 1.35;
    -webkit-font-smoothing: antialiased;
}

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

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

/* Utility Container */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 12px;
}

/* 1. ABP STYLE TOP UTILITY BAR (Dark Red) */
.abp-top-bar {
    background: #5C070C;
    color: #ffffff;
    font-size: 13px;
    padding: 10px 0;
    font-family: var(--font-body);
}

.abp-top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.abp-top-left {
    font-weight: 500;
}

.abp-top-center-langs {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.lang-link {
    color: #ffffff;
    text-decoration: none;
}

.lang-link:hover {
    color: #facc15;
}

.lang-active {
    color: #facc15;
}

.abp-top-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.abp-socials {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.abp-socials a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abp-socials a:hover {
    background: rgba(255, 255, 255, 0.3);
}

.abp-advertise {
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
}

.abp-advertise:hover {
    color: #facc15;
}

/* 2. ABP STYLE MAIN NAVIGATION (White Bg) */
.abp-main-nav {
    background: #ffffff;
    border-bottom: 2px solid var(--abp-border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.abp-nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
}

.abp-brand-area {
    display: flex;
    align-items: center;
    gap: 16px;
}

.abp-logo-link {
    display: flex;
    align-items: center;
}

.abp-logo-img {
    height: 48px;
    width: auto;
}

.abp-nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 16px;
    margin: 0;
    height: 100%;
}

.abp-nav-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: #222222;
    text-transform: uppercase;
    text-decoration: none;
    padding: 24px 0;
    display: flex;
    align-items: center;
}

.abp-nav-link:hover,
.abp-nav-link.active {
    color: var(--abp-red);
}

.abp-more-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.abp-more-link i {
    color: var(--abp-red);
    font-size: 12px;
}

/* BASIC DROPDOWN (For MORE link) */
.nav-item-dropdown-basic {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-menu-basic {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 180px;
    border-top: 3px solid var(--abp-red);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    list-style: none;
    z-index: 101;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.dropdown-menu-basic.show-dropdown {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu-basic li {
    border-bottom: 1px solid var(--abp-border);
}

.dropdown-menu-basic li:last-child {
    border-bottom: none;
}

.dropdown-menu-basic a {
    display: block;
    padding: 12px 16px;
    color: #222222;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.dropdown-menu-basic a:hover {
    color: var(--abp-red);
    background: #fafafa;
}

/* MEGA MENU STYLES */
.nav-item-has-mega {
    height: 100%;
    display: flex;
    align-items: center;
}

.mega-menu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 3px solid var(--abp-red);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    padding: 24px;
    z-index: 101;
}

.nav-item-has-mega:hover .mega-menu-dropdown {
    opacity: 1;
    visibility: visible;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mega-menu-card {
    text-decoration: none;
    display: block;
}

.mega-menu-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}

.mega-menu-card h5 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mega-menu-card:hover h5 {
    color: var(--abp-red);
}

.abp-nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    color: #444444;
}

.abp-nav-icons i {
    cursor: pointer;
}

.abp-nav-icons i:hover {
    color: var(--abp-red);
}

.nav-signin-btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--abp-red, #e11b22);
    color: white !important;
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-signin-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.nav-user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid #e2e8f0;
    transition: border-color 0.2s;
}

.nav-user-avatar:hover {
    border-color: var(--abp-red);
}

.abp-nav-backdrop {
    display: none;
}

.mobile-bottom-nav {
    display: none;
}

.hide-desktop {
    display: none !important;
}

.user-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 44px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
    min-width: 180px;
    z-index: 999;
    overflow: hidden;
}

.user-dropdown.show {
    display: block;
}

.user-dropdown a:hover {
    background: #f8fafc;
}

/* 3. ABP STYLE TICKER / TRENDING CARDS ROW */
.abp-ticker-bar {
    background: #ffffff;
    border-bottom: 3px solid var(--abp-red);
    padding: 10px 0 12px;
}

.abp-ticker-flex {
    display: flex;
    align-items: stretch;
    gap: 20px;
}

.abp-ticker-left-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 70px;
    padding-right: 14px;
    border-right: 1px solid var(--abp-border);
    justify-content: center;
}

.abp-ticker-left-links a {
    font-family: var(--font-heading);
    color: var(--abp-red);
    font-size: 11px;
    font-weight: 800;
}

.abp-ticker-left-links a:hover {
    text-decoration: underline;
}

.abp-ticker-cards-wrapper {
    display: flex;
    gap: 14px;
    flex: 1;
    overflow-x: hidden;
}

.abp-ticker-card {
    width: 25%;
    display: flex;
    flex-direction: column;
}

.t-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    padding: 0 2px;
}

.t-cat-name {
    color: var(--abp-red);
    font-family: var(--font-heading);
    font-size: 10.5px;
    font-weight: 800;
}

.t-zap-icon {
    color: var(--abp-red);
    font-size: 12px;
}

.t-card-link-wrap {
    text-decoration: none;
    display: block;
}

.t-card-img-box {
    position: relative;
    width: 100%;
    height: 85px;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 6px;
}

.t-card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.t-live-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(225, 27, 34, 0.9) 0%, rgba(225, 27, 34, 0) 100%);
    padding: 16px 8px 4px;
}

.t-live-badge {
    color: white;
    font-weight: 800;
    font-size: 9.5px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: var(--abp-red);
    padding: 2px 6px;
    border-radius: 2px;
}

.t-dot {
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
}

.t-card-title {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.t-card-title i {
    color: var(--abp-red);
    font-size: 13px;
    vertical-align: middle;
}

.t-card-title:hover {
    color: var(--abp-red);
}

.mobile-toggle-btn {
    display: none;
    font-size: 22px;
    color: white;
    cursor: pointer;
}

/* 4. Breaking News Ticker (Tight Spacing) */
.breaking-ticker {
    background: var(--abp-card-bg);
    margin: 8px 0;
    border: 1px solid var(--abp-border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 34px;
}

.breaking-label {
    background: var(--abp-red);
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 10.5px;
    padding: 0 10px;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.ticker-text-wrapper {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.ticker-text-inner {
    font-size: 12px;
    font-weight: 700;
    color: var(--abp-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ticker-controls {
    display: flex;
    align-items: center;
    padding-right: 8px;
    gap: 3px;
    color: var(--text-muted);
}

.ticker-btn {
    border: 1px solid var(--abp-border);
    background: white;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 11px;
}

.ticker-btn:hover {
    background: var(--abp-red);
    color: white;
}

/* 5. Section Headings (Tight Spacing) */
.section-title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    border-bottom: 2px solid var(--abp-dark);
    padding-bottom: 3px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--abp-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.2px;
}

.view-all-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--abp-red);
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    transition: color 0.2s;
}

.view-all-link:hover {
    color: var(--abp-dark);
}

/* Badges & Tags */
.badge-tag {
    display: inline-block;
    background: var(--abp-red);
    color: white;
    font-size: 9.5px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 1px 5px;
    border-radius: 2px;
    letter-spacing: 0.4px;
    margin-bottom: 4px;
}

.cat-tag {
    font-size: 9.5px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--abp-red);
    letter-spacing: 0.4px;
    display: block;
    margin-bottom: 2px;
}

.meta-time {
    font-size: 10.5px;
    color: var(--text-muted);
    margin-top: 3px;
}

/* 5. ABP 3-COLUMN HERO LAYOUT */
.abp-3col-hero {
    display: grid;
    grid-template-columns: 45% 28% 27%;
    gap: 30px;
    margin-bottom: 30px;
}

.abp-cat-label {
    font-family: var(--font-heading);
    color: var(--abp-red);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

/* Col 1 */
.abp-hero-main-card {
    display: block;
    text-decoration: none;
    margin-bottom: 24px;
}

.abp-hero-main-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    margin-bottom: 12px;
}

.abp-hero-main-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    color: #222222;
    line-height: 1.3;
}

.abp-hero-main-card:hover .abp-hero-main-title {
    color: var(--abp-red);
}

.abp-hero-bottom-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.abp-small-list-card {
    text-decoration: none;
    display: block;
}

.abp-sl-flex {
    display: flex;
    gap: 12px;
}

.abp-sl-flex img {
    width: 90px;
    height: 60px;
    object-fit: cover;
    flex-shrink: 0;
}

.abp-sl-flex h3 {
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 500;
    color: #222222;
    line-height: 1.3;
}

.abp-small-list-card:hover h3 {
    color: var(--abp-red);
}

/* Col 2 */
.abp-mid-story-card {
    display: block;
    text-decoration: none;
    margin-bottom: 24px;
}

.abp-mid-story-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    margin-bottom: 12px;
}

.abp-mid-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    color: #222222;
    line-height: 1.3;
}

.abp-mid-story-card:hover .abp-mid-title {
    color: var(--abp-red);
}

.abp-text-only-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.abp-text-only-list a {
    text-decoration: none;
    display: block;
}

.abp-text-only-list h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    color: #222222;
    line-height: 1.35;
}

.abp-text-only-list a:hover h4 {
    color: var(--abp-red);
}

/* Col 3 */
.abp-section-header {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 16px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.abp-right-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.abp-videos-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.abp-video-card {
    position: relative;
    display: block;
    border: 2px solid var(--abp-red);
}

.abp-video-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.vid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 8px;
    background: linear-gradient(180deg, rgba(225, 27, 34, 0.9) 0%, rgba(225, 27, 34, 0) 100%);
}

.vid-badge {
    color: white;
    font-weight: 800;
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: white;
    color: var(--abp-red);
    padding: 2px 6px;
}

.vid-dot {
    width: 5px;
    height: 5px;
    background: var(--abp-red);
    border-radius: 50%;
}

.vid-play-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    color: white;
    font-size: 24px;
}

/* 7. 2-Column Main Layout (Spacious & Airy) */
.main-two-col {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 36px;
    margin-bottom: 40px;
}

/* Cards Grid */
.cards-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.standard-card {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s;
}

.standard-card:hover {
    transform: translateY(-2px);
}

.standard-card-thumb-wrap {
    width: 100%;
    height: 180px;
    background: #cbd5e1;
    border-radius: 6px;
    overflow: hidden;
}

.standard-card-thumb-wrap a {
    display: block;
    width: 100%;
    height: 100%;
}

.standard-card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.standard-card:hover .standard-card-thumb {
    transform: scale(1.05);
}

.standard-card-body {
    padding: 10px 0 0 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.standard-card-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--abp-dark);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.standard-card:hover .standard-card-title {
    color: var(--abp-red);
}

/* Sidebar Widgets (Tight Spacing) */
.sidebar-widget {
    background: var(--abp-card-bg);
    border: 1px solid var(--abp-border);
    border-radius: 4px;
    padding: 10px 12px;
    margin-bottom: 12px;
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--abp-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    border-bottom: 2px solid var(--abp-red);
    padding-bottom: 4px;
}

.trending-list {
    list-style: none;
}

.trending-item {
    display: flex;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid var(--abp-border);
}

.trending-item:last-child {
    border-bottom: none;
}

.trend-number {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: var(--abp-red);
    width: 14px;
    flex-shrink: 0;
}

.trend-title {
    font-size: 11.5px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--abp-dark);
}

.trending-item:hover .trend-title {
    color: var(--abp-red);
}

/* Newsletter Box */
.newsletter-box {
    background: #ffffff;
    border: 1px solid var(--abp-border);
    border-top: 3px solid var(--abp-red);
    border-radius: 4px;
    padding: 12px 14px;
}

.newsletter-box .widget-title {
    border-bottom: none;
    margin-bottom: 4px;
    padding-bottom: 0;
}

.newsletter-desc {
    font-size: 11px;
    color: #475569;
    line-height: 1.35;
    margin-bottom: 10px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.newsletter-input-wrap {
    display: flex;
    gap: 4px;
    width: 100%;
}

.newsletter-input {
    flex: 1;
    padding: 7px 10px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-size: 11px;
    color: var(--abp-dark);
    outline: none;
    background: #f8fafc;
}

.newsletter-input:focus {
    border-color: var(--abp-red);
    background: #ffffff;
}

.newsletter-btn {
    padding: 7px 12px;
    background: var(--abp-red);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 11px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    white-space: nowrap;
}

.newsletter-privacy {
    font-size: 10px;
    color: #94a3b8;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 3px;
    justify-content: center;
}

/* Featured Layout */
.featured-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.featured-main-card {
    background: #000000;
    color: white;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 260px;
}

.featured-main-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.featured-main-content {
    position: relative;
    z-index: 2;
    padding: 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
}

.featured-main-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    color: white;
    margin: 3px 0;
}

.featured-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.horizontal-card {
    background: var(--abp-card-bg);
    border: 1px solid var(--abp-border);
    border-radius: 8px;
    padding: 12px 14px;
    display: flex;
    gap: 16px;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.horizontal-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.horizontal-card-thumb {
    width: 120px;
    height: 85px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    background: #cbd5e1;
}

/* Category Page Styles (Spacious & Clean) */
.category-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 12px;
    margin-bottom: 18px;
}

.cat-header-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    color: var(--abp-dark);
    text-transform: uppercase;
    letter-spacing: -0.2px;
    line-height: 1.1;
}

.cat-header-subtitle {
    font-size: 13px;
    color: #64748b;
    margin-top: 6px;
    font-weight: 400;
}

.btn-follow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border: 1px solid var(--abp-border);
    background: white;
    border-radius: 16px;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--abp-dark);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-follow:hover {
    border-color: var(--abp-red);
    color: var(--abp-red);
}

.subcat-tabs-bar {
    display: flex;
    align-items: center;
    gap: 22px;
    border-bottom: 1px solid var(--abp-border);
    margin-bottom: 24px;
    padding-bottom: 6px;
    overflow-x: auto;
}

.subcat-tab {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
    white-space: nowrap;
}

.subcat-tab.active,
.subcat-tab:hover {
    color: var(--abp-red);
}

.subcat-tab.active::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--abp-red);
    border-radius: 2px;
}

.cat-lead-card {
    background: white;
    border: 1px solid var(--abp-border);
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 22px;
    padding: 16px;
    margin-bottom: 24px;
    transition: box-shadow 0.2s;
}

.cat-lead-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.cat-lead-img-wrap {
    width: 100%;
    height: 220px;
    border-radius: 6px;
    overflow: hidden;
    background: #cbd5e1;
}

.cat-lead-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-lead-title {
    font-family: var(--font-heading);
    font-size: 18.5px;
    font-weight: 500;
    line-height: 1.4;
    color: #0f172a;
    margin: 6px 0 10px;
}

.cat-list-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 16px 0;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 0;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
    transition: transform 0.2s;
}

.cat-list-card:hover {
    transform: translateY(-1px);
}

.cat-list-thumb {
    width: 145px;
    height: 94px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    background: #cbd5e1;
}

.cat-list-content {
    flex: 1;
}

.cat-list-title {
    font-family: var(--font-heading);
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.42;
    color: #0f172a;
    margin: 4px 0 6px;
}

.bookmark-icon {
    font-size: 18px;
    color: var(--text-muted);
    cursor: pointer;
    position: absolute;
    right: 14px;
    bottom: 14px;
    transition: color 0.2s;
}

.bookmark-icon:hover {
    color: var(--abp-red);
}

.btn-load-more {
    width: 100%;
    padding: 8px;
    background: white;
    border: 1px solid var(--abp-red);
    color: var(--abp-red);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    margin: 12px 0 24px;
    text-align: center;
}

/* Single Article Styles */
.read-article-card {
    background: #ffffff;
    border: 1px solid var(--abp-border);
    border-radius: 4px;
    padding: 20px;
}

.read-headline {
    font-family: var(--font-heading);
    font-size: 25px;
    font-weight: 900;
    line-height: 1.25;
    color: #111827;
    margin: 6px 0 10px;
}

.read-subheadline {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 14px;
    font-weight: 500;
}

.author-meta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid var(--abp-border);
    border-bottom: 1px solid var(--abp-border);
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}

.author-info-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #000;
    color: white;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    /* Prevent squishing inside flex containers */
}

.verified-icon {
    color: var(--abp-red);
    font-size: 13px;
    margin-left: 2px;
}

.circle-action-btns {
    display: flex;
    align-items: center;
    gap: 6px;
}

.circle-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--abp-border);
    background: #f8fafc;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
}

.main-featured-image-wrap {
    width: 100%;
    margin-bottom: 4px;
    border-radius: 4px;
    overflow: hidden;
    background: #e2e8f0;
}

.main-featured-image-wrap img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.image-caption {
    font-size: 10.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.key-highlights-box {
    background: #fff5f5;
    border-left: 4px solid var(--abp-red);
    border-radius: 4px;
    padding: 14px 16px;
    margin: 18px 0;
}

.key-highlights-title {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    color: var(--abp-red);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 8px;
}

.key-highlights-list {
    list-style: none;
}

.key-highlights-list li {
    font-size: 12px;
    color: #334155;
    margin-bottom: 4px;
    position: relative;
    padding-left: 12px;
    line-height: 1.45;
}

.key-highlights-list li::before {
    content: '•';
    color: var(--abp-red);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.article-body-content p {
    font-size: 14px;
    line-height: 1.65;
    color: #334155;
    margin-bottom: 14px;
}

.tags-section {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin: 18px 0;
    padding-top: 12px;
    border-top: 1px solid var(--abp-border);
}

.tag-pill {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    color: #475569;
    padding: 3px 10px;
    border-radius: 14px;
    font-size: 10.5px;
    font-weight: 600;
}

.author-bio-box {
    background: #f8fafc;
    border: 1px solid var(--abp-border);
    border-radius: 4px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.follow-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.follow-box {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    border-radius: 4px;
    color: white;
    font-size: 10.5px;
    font-weight: 700;
}

.follow-fb {
    background: #1877f2;
}

.follow-x {
    background: #000000;
}

.follow-yt {
    background: #ff0000;
}

.follow-insta {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.categories-icon-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 6px;
}

.cat-icon-box {
    background: var(--abp-card-bg);
    border: 1px solid var(--abp-border);
    border-radius: 4px;
    padding: 8px 4px;
    text-align: center;
}

.cat-icon-box i {
    font-size: 20px;
    color: var(--abp-red);
    margin-bottom: 2px;
    display: block;
}

.cat-icon-box span {
    font-family: var(--font-heading);
    font-size: 10.5px;
    font-weight: 700;
    color: var(--abp-dark);
}

.rich-footer {
    background: #0d0708;
    color: #94a3b8;
    padding: 70px 0 24px;
    font-size: 13px;
    border-top: 1px solid rgba(225, 27, 34, 0.3);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.rich-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--abp-red), #ff4b4b, var(--abp-red));
}

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

/* Careers Wide Banner Layout */
.footer-careers-banner {
    background: #080809;
    border: 1px solid rgba(225, 27, 34, 0.45);
    border-radius: 12px;
    padding: 28px 48px;
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: visible;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.55), inset 0 0 20px rgba(225, 27, 34, 0.03);
}

.banner-chair-wrapper {
    position: relative;
    width: 180px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.banner-chair-wrapper img {
    height: 220px !important;
    width: auto !important;
    max-height: none !important;
    object-fit: contain;
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%) scale(2.4);
    transform-origin: bottom center;
    z-index: 2;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.65));
}

.banner-text-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.banner-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid #e11b22;
    background: rgba(225, 27, 34, 0.05);
    box-shadow: 0 0 15px rgba(225, 27, 34, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff3e46;
    font-size: 20px;
    flex-shrink: 0;
}

.banner-tag {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #e11b22;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 2px;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 12.5px;
    color: #94a3b8;
    line-height: 1.5;
    font-weight: 500;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e11b22 0%, #b91218 100%);
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 800;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(225, 27, 34, 0.4);
    z-index: 1;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}

.banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 27, 34, 0.55);
    color: #ffffff;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
}

.footer-bio {
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 13px;
    color: #94a3b8;
    padding-right: 20px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--abp-red);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(6px);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.footer-socials {
    display: flex;
    gap: 12px;
    font-size: 16px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--abp-red);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgba(225, 27, 34, 0.4);
    border-color: var(--abp-red);
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-app {
    background: rgba(255, 255, 255, 0.03);
    color: white;
    padding: 10px 14px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.btn-app:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-app i {
    font-size: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: #64748b;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   ARTICLE READING PAGE ENHANCEMENTS
   ========================================================================== */

/* Reading Scroll Progress Bar */
.reading-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 99999;
}

.reading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--abp-red), #ff4b4b);
    width: 0%;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(225, 27, 34, 0.7);
}

/* Article Reading Controls */
.article-reading-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid var(--abp-border);
    border-bottom: 1px solid var(--abp-border);
    margin: 16px 0;
}

.font-size-ctrls {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
}

.btn-font-scale {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    padding: 4px 10px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    color: var(--abp-dark);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-font-scale:hover {
    background: var(--abp-red);
    color: white;
    border-color: var(--abp-red);
}

/* Article Typography & Editorial Serif */
.serif-font {
    font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
}

.read-headline {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
    color: #111111;
    margin: 8px 0 14px;
    letter-spacing: -0.3px;
}

.read-subheadline {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 16px;
    line-height: 1.55;
    color: #4b5563;
    font-weight: 400;
    margin-bottom: 20px;
}

.article-body-text {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 15.5px;
    line-height: 1.85;
    color: #1f2937;
    transition: font-size 0.2s ease;
}

.article-body-text p {
    margin-bottom: 22px;
}

/* Key Highlights Box */
.key-highlights-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--abp-red);
    border-radius: 6px;
    padding: 18px 22px;
    margin: 26px 0;
}

.key-highlights-title {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.key-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.key-highlights-list li {
    font-family: var(--font-heading);
    font-size: 12.5px;
    color: #334155;
    margin-bottom: 8px;
    position: relative;
    padding-left: 14px;
    line-height: 1.5;
}

.key-highlights-list li::before {
    content: '•';
    color: var(--abp-red);
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: -1px;
}

/* Read More Button */
.btn-read-more {
    background: #ffffff;
    border: 1px solid var(--abp-red);
    color: var(--abp-red);
    padding: 8px 24px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.btn-read-more:hover {
    background: var(--abp-red);
    color: #ffffff;
}

/* Follow Us Colored Boxes */
.follow-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.follow-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    color: white !important;
    text-decoration: none;
    transition: transform 0.2s;
}

.follow-box:hover {
    transform: translateY(-2px);
}

.follow-fb {
    background: #3b5998;
}

.follow-x {
    background: #0f1419;
}

.follow-yt {
    background: #e62117;
}

.follow-insta {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.follow-box-text {
    display: flex;
    flex-direction: column;
}

.follow-box-title {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
}

.follow-box-sub {
    font-size: 9.5px;
    opacity: 0.85;
}

/* Sidebar Editorial Headlines */
.sidebar-serif-title {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    color: #111111;
}

.sidebar-serif-title:hover {
    color: var(--abp-red);
}

/* Newsletter Box */
.newsletter-box-card {
    background: #fafafa;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
}

.breaking-ticker {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--abp-border);
    border-radius: 4px;
    margin-bottom: 16px;
    height: 38px;
    overflow: hidden;
}

.breaking-label {
    background: var(--abp-red);
    color: white;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    padding: 0 12px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticker-text-wrapper {
    flex: 1;
    padding: 0 14px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.ticker-item {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.ticker-item.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.ticker-item a:hover {
    color: var(--abp-red);
}

.ticker-cat-tag {
    background: #1e293b;
    color: white;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 3px;
    margin-right: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Featured Posts Slider Module Desktop Styles */
.featured-slider-module {
    margin-bottom: 56px;
    /* Increased bottom margin between featured and politics */
    background-color: #f3f6f9;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e2e8f0;
}

.fs-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.newsletter-box-card .newsletter-btn-full {
    width: 100%;
    padding: 12px;
    background: var(--abp-red);
    color: white;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-box-card .newsletter-btn-full:hover {
    background: #b91218;
}

/* Views and Metadata Badges */
.article-meta-info {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: #64748b;
    flex-wrap: wrap;
}

.meta-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 4px 10px;
    border-radius: 14px;
    font-weight: 600;
}

/* Related Articles Grid */
.related-articles-section {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 2px solid var(--abp-red);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
}

/* Base Layout Classes Extracted from Inline Styles */
.home-main-layout {
    display: grid;
    grid-template-columns: 72% 25%;
    justify-content: space-between;
    margin-bottom: 40px;
}

.home-left-split {
    display: grid;
    grid-template-columns: 61% 36%;
    justify-content: space-between;
    margin-bottom: 40px;
}

.cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cards-grid-2-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.fs-bottom-bar {
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.fs-snippets {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
    width: 100%;
}

.fs-controls {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-left: 24px;
    flex-shrink: 0;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* ==========================================================================
   MOBILE & TABLET FULL RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
    }

    .main-two-col {
        grid-template-columns: 1fr;
    }

    .home-main-layout {
        grid-template-columns: 1fr;
    }

    .home-left-split {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cards-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }

    .cards-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .cards-grid-2-large {
        grid-template-columns: 1fr;
    }

    .categories-icon-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cat-lead-card {
        grid-template-columns: 1fr;
    }

    .ad-banner-header {
        display: none;
    }
}

@media (max-width: 768px) {
    .abp-main-nav {
        background: #8c1017 !important;
        /* Premium rich deep crimson red, not bright red */
        border-bottom: none !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    }

    .abp-nav-flex {
        height: 52px !important;
        /* Slim down the main header container */
        padding: 0 10px !important;
    }

    .abp-logo-img {
        height: 26px !important;
        /* Make logo smaller and minimal */
        width: auto !important;
        filter: brightness(0) invert(1) !important;
    }

    .mobile-toggle-btn {
        display: none !important;
    }

    /* Hide top bar language selection links on mobile */
    .abp-top-center-langs {
        display: none !important;
    }

    .abp-nav-icons {
        color: #ffffff !important;
        gap: 12px !important;
        display: flex !important;
        align-items: center !important;
    }

    .abp-nav-icons i {
        color: #ffffff !important;
        font-size: 16px !important;
    }

    /* Hide user profile elements from header on mobile */
    .abp-nav-icons .bx-user,
    .abp-nav-icons .user-dropdown-wrap {
        display: none !important;
    }

    .abp-mobile-lang {
        display: flex !important;
        align-items: center;
        gap: 4px;
        font-family: var(--font-heading);
        font-size: 13px;
        font-weight: 600;
        color: #ffffff;
        cursor: pointer;
    }

    .abp-mobile-lang span {
        font-size: 13px !important;
    }

    .abp-nav-menu {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: auto !important;
        /* Unset top */
        bottom: -100%;
        /* Hide offscreen at the bottom */
        left: 0;
        width: 100%;
        height: auto !important;
        max-height: 70vh;
        /* Limit height to 70% of screen */
        background: #ffffff;
        padding: 20px 0 80px 0;
        margin: 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        transition: bottom 0.3s ease-in-out !important;
        /* Smooth slide up transition */
        border-radius: 20px 20px 0 0;
        /* Rounded top corners */
        overflow-y: auto;
    }

    .abp-nav-menu li {
        width: 100%;
    }

    .abp-nav-link {
        padding: 16px 24px;
        border-bottom: 1px solid #f1f5f9;
        display: block;
        font-size: 15px;
        font-weight: 600;
        color: #0f172a;
        letter-spacing: -0.1px;
    }

    .abp-nav-link:hover {
        background: #f8fafc;
        color: var(--abp-red);
    }

    .dropdown-menu-basic {
        position: static;
        box-shadow: none;
        border-radius: 0;
        border: none;
        padding-left: 20px;
        background: #f8fafc;
        display: none;
        /* Hide by default on mobile unless toggled */
    }

    .dropdown-menu-basic.show {
        display: block;
    }

    .abp-nav-menu.mobile-active {
        bottom: 0 !important;
    }

    .abp-nav-backdrop {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.4);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out !important;
    }

    .abp-nav-menu.mobile-active~.abp-nav-backdrop {
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Mobile Bottom Navigation Bar Styles */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 64px;
        background: #ffffff;
        border-top: 1px solid #e2e8f0;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
        z-index: 1001;
        /* Above drawer backdrop */
        justify-content: space-around;
        align-items: center;
        padding: 4px 0;
        box-sizing: border-box;
    }

    body {
        padding-bottom: 74px !important;
        /* Prevent bottom nav from covering content */
    }

    .bot-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #64748b;
        font-family: var(--font-heading);
        font-size: 11px;
        font-weight: 600;
        text-decoration: none;
        width: 20%;
        cursor: pointer;
        transition: color 0.2s ease;
    }

    .bot-nav-item i {
        font-size: 22px;
        margin-bottom: 2px;
        color: inherit;
    }

    .bot-nav-item:hover,
    .bot-nav-item.active {
        color: var(--abp-red);
    }

    /* Center Menu Button (Red Circle) */
    .bot-nav-menu-btn {
        position: relative;
    }

    .bot-menu-circle {
        background: var(--abp-red);
        color: #ffffff;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(225, 27, 34, 0.3);
        margin-top: -24px;
        /* Float slightly above bottom nav */
        border: 4px solid #ffffff;
        transition: transform 0.2s ease;
    }

    .bot-nav-menu-btn:hover .bot-menu-circle {
        transform: scale(1.05);
    }

    .bot-menu-circle i {
        font-size: 22px !important;
        margin: 0 !important;
        color: #ffffff !important;
    }

    .bot-nav-menu-btn span {
        margin-top: 4px;
    }

    .abp-logo-img {
        height: 34px;
    }

    .utility-right {
        display: none;
    }

    /* Top Bar Fixes */
    .abp-top-flex {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .abp-top-right {
        display: none;
    }

    /* Ticker Fixes - Minimal Card Style for Mobile */
    .breaking-ticker {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: 12px;
        position: relative;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        margin-bottom: 20px;
    }

    .breaking-label {
        height: auto;
        padding: 4px 8px;
        background: #fee2e2 !important;
        /* Soft premium red bg */
        color: #dc2626 !important;
        /* Deep modern red text */
        border-radius: 20px;
        /* Rounded pill */
        font-family: var(--font-heading);
        font-size: 9.5px;
        font-weight: 700;
        letter-spacing: 0.5px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 4px;
        width: max-content;
        text-transform: uppercase;
    }

    .ticker-text-wrapper {
        padding: 0;
        width: 100%;
        white-space: normal;
        position: relative;
        min-height: 38px;
        /* Prevent height jumping */
    }

    .ticker-item {
        white-space: normal;
        line-height: 1.45;
        padding: 0;
        padding-right: 60px;
        /* Leave space for controls */
    }

    .ticker-item a {
        display: block;
        font-family: var(--font-body);
        font-size: 12.5px;
        font-weight: 500;
        color: #1e293b;
        line-height: 1.4;
        text-decoration: none;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        /* Limit to 2 lines */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .ticker-cat-tag {
        display: inline-block;
        background: #eff6ff !important;
        /* Soft blue bg */
        color: #1e40af !important;
        /* Deep blue text */
        padding: 2px 6px;
        border-radius: 4px;
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 0.3px;
        margin-right: 6px;
        text-transform: uppercase;
        margin-bottom: 2px;
        vertical-align: middle;
    }

    .ticker-controls {
        position: absolute;
        top: 12px;
        right: 12px;
        bottom: auto;
        display: flex;
        gap: 6px;
        background: transparent;
        height: auto;
    }

    .ticker-btn {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        border: 1px solid #cbd5e1;
        background: #ffffff;
        color: #64748b;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.2s ease;
        padding: 0;
        line-height: 1;
    }

    .ticker-btn:hover {
        background: #f1f5f9;
        color: #0f172a;
        border-color: #94a3b8;
    }

    /* Grids & Cards */
    .cards-grid-4,
    .cards-grid-3 {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .abp-hero-bottom-list {
        grid-template-columns: 1fr;
    }

    .featured-layout {
        grid-template-columns: 1fr;
    }

    .categories-icon-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-header-bar {
        flex-direction: column;
        gap: 8px;
    }

    .cat-header-title {
        font-size: 24px;
    }

    /* Premium Full-Width Vertical Cards for Category Cards */
    .cat-list-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        overflow: visible !important;
        position: relative !important;
        border-bottom: 1px solid #e2e8f0 !important;
        margin-bottom: 20px !important;
        padding-bottom: 12px !important;
    }

    .cat-list-card>a {
        width: 100% !important;
        height: 190px !important;
        flex-shrink: 0 !important;
        display: block !important;
    }

    .cat-list-thumb {
        width: 100% !important;
        height: 100% !important;
        border-radius: 8px !important;
        object-fit: cover !important;
    }

    .cat-list-content {
        padding: 12px 0 0 0 !important;
        flex: 1 !important;
    }

    .cat-list-content p {
        display: none !important;
    }

    .cat-list-title {
        font-size: 14px !important;
        font-weight: 600 !important;
        line-height: 1.4 !important;
        margin-top: 4px !important;
        margin-bottom: 6px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        color: #0f172a !important;
        text-decoration: none !important;
    }

    /* Premium Full-Width Vertical Layout for Standard Cards */
    .standard-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        overflow: visible !important;
        margin-bottom: 1px !important;
    }

    .standard-card-thumb-wrap {
        width: 100% !important;
        height: 190px !important;
        flex-shrink: 0 !important;
        border-radius: 8px !important;
        overflow: hidden !important;
        display: block !important;
    }

    .standard-card-thumb {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .standard-card-body {
        padding: 12px 0 0 0 !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }

    .standard-card-title {
        font-size: 14px !important;
        font-weight: 600 !important;
        line-height: 1.4 !important;
        margin-top: 4px !important;
        margin-bottom: 6px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        color: #0f172a !important;
        text-decoration: none !important;
    }

    /* Don't Miss Layout Override for Mobile (Horizontal) */
    .dont-miss-grid .standard-card {
        flex-direction: row !important;
        align-items: center !important;
        gap: 12px !important;
        padding-bottom: 12px !important;
        border-bottom: 1px solid #e2e8f0 !important;
        margin-bottom: 12px !important;
    }

    .dont-miss-grid .standard-card-thumb-wrap {
        width: 110px !important;
        height: 75px !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        border-radius: 6px !important;
    }

    .dont-miss-grid .standard-card-body {
        padding: 0 !important;
        margin: 0 !important;
    }

    .dont-miss-grid .standard-card-title {
        font-size: 13.5px !important;
        margin-top: 0 !important;
        margin-bottom: 4px !important;
    }

    .pc-only-tag {
        display: none !important;
    }

    .bookmark-icon {
        top: 8px;
        right: 8px;
        bottom: auto;
    }

    .read-headline {
        font-size: 20px;
    }

    .read-article-card {
        padding: 14px;
    }

    .author-meta-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .circle-action-btns {
        flex-wrap: wrap;
    }

    .hero-main-img-wrap {
        height: 200px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-careers-banner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 12px;
        text-align: left;
        overflow: visible;
        position: relative;
        min-height: 180px;
    }

    .banner-text-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: calc(100% - 105px);
        z-index: 2;
    }

    .banner-icon-circle {
        display: none !important;
    }

    .banner-tag {
        font-size: 9.5px;
        margin-bottom: 2px;
    }

    .banner-title {
        font-size: 17px;
        font-weight: 800;
        margin-bottom: 4px;
        line-height: 1.25;
    }

    .banner-subtitle {
        font-size: 11.5px;
        line-height: 1.4;
        color: #94a3b8;
    }

    .banner-btn {
        width: fit-content;
        padding: 8px 16px;
        font-size: 12px;
        z-index: 2;
        margin-top: 4px;
    }

    .banner-chair-wrapper {
        position: absolute;
        right: 0;
        bottom: -30px;
        width: 100px;
        height: 120px;
        z-index: 1;
        margin: 0;
    }

    .banner-chair-wrapper img {
        height: 170px !important;
        width: auto !important;
        max-height: none !important;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%) scale(1.35);
        transform-origin: bottom center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        align-items: center;
    }

    .newsletter-input-wrap {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }
}

/* Sticky Sidebar Utility */
.sticky-sidebar {
    position: sticky !important;
    top: 20px !important;
    align-self: start !important;
    z-index: 10;
}

/* Inline "Also Read" Callout Box */
.also-read-box {
    background: #fff5f5 !important;
    border-left: 4px solid var(--abp-red) !important;
    padding: 12px 18px !important;
    margin: 22px 0 !important;
    border-radius: 0 6px 6px 0 !important;
    font-family: var(--font-heading) !important;
    font-size: 14.5px !important;
    line-height: 1.4 !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    clear: both !important;
}

.also-read-label {
    font-weight: 700 !important;
    color: #0f172a !important;
    white-space: nowrap !important;
}

.also-read-link {
    color: var(--abp-red) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: text-decoration 0.2s !important;
}

.also-read-link:hover {
    text-decoration: underline !important;
}

/* Inline Article "STORIES YOU MAY LIKE" Widget */
.stories-you-may-like-box {
    margin: 28px 0;
    padding: 20px 0;
    border-top: 1px dashed #cbd5e1;
    border-bottom: 1px dashed #cbd5e1;
    clear: both;
}

.stories-like-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #0f172a;
    text-transform: uppercase;
}

.stories-like-header::before {
    content: '::::::';
    letter-spacing: 1.5px;
    color: #64748b;
    font-weight: 700;
}

.stories-like-header::after {
    content: '';
    flex: 1;
    border-bottom: 2px dotted #cbd5e1;
    height: 1px;
    margin-left: 4px;
}

.stories-like-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.story-like-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.story-like-thumb-wrap {
    display: block;
    width: 100%;
    height: 115px;
    border-radius: 8px;
    overflow: hidden;
    background: #e2e8f0;
}

.story-like-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.story-like-card:hover .story-like-thumb-wrap img {
    transform: scale(1.04);
}

.story-like-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    color: #0f172a;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
    margin: 0;
}

.story-like-title:hover {
    color: var(--abp-red);
    text-decoration: underline;
}

/* Mobile Language Selector Dropdown Menu styles */
.lang-dropdown-menu {
    display: none;
    position: absolute;
    top: 32px;
    right: 0;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1002;
    width: 110px;
    overflow: hidden;
    border: 1px solid #cbd5e1;
}

.lang-dropdown-menu.show {
    display: block;
}

.lang-dropdown-menu a {
    display: block;
    padding: 10px 14px;
    color: #1e293b !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    text-align: left;
}

.lang-dropdown-menu a:last-child {
    border-bottom: none;
}

.lang-dropdown-menu a:hover {
    background: #f8fafc;
    color: var(--abp-red, #e11b22) !important;
}

/* Ensure Search Modal is always on very top when active and styled beautifully on mobile */
#search-modal {
    z-index: 20000 !important;
}

@media (max-width: 640px) {
    #search-modal>div {
        width: 90% !important;
        padding: 20px !important;
        box-sizing: border-box !important;
    }

    #search-modal form {
        flex-direction: column !important;
        gap: 12px !important;
    }

    #search-modal input {
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    #search-modal button {
        width: 100% !important;
        padding: 12px !important;
        box-sizing: border-box !important;
    }
}


@media (max-width: 640px) {
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

    .container {
        padding: 0 12px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .abp-nav-flex {
        height: 58px;
        padding: 0 4px;
    }

    .abp-logo-img {
        height: 32px;
    }


    .stories-like-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .story-like-card {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 12px !important;
        background: #ffffff !important;
        padding: 8px !important;
        border-radius: 8px !important;
        border: 1px solid rgba(0, 0, 0, 0.05) !important;
    }

    .story-like-thumb-wrap {
        width: 80px !important;
        height: 60px !important;
        flex-shrink: 0 !important;
        border-radius: 6px !important;
        overflow: hidden !important;
        display: block !important;
    }

    .story-like-thumb-wrap img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .story-like-title {
        font-size: 12.5px !important;
        font-weight: 600 !important;
        line-height: 1.35 !important;
        color: #1e293b !important;
        flex: 1 !important;
        margin: 0 !important;
        text-align: left !important;
    }

    .cards-grid-4,
    .cards-grid-3,
    .cards-grid-2-large,
    .home-main-layout,
    .home-left-split,
    .abp-hero-bottom-list {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* FEATURED POSTS - HORIZONTALLY SCROLLABLE SWIPE CAROUSEL FOR MOBILE */
    .fs-cards-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 14px !important;
        padding-bottom: 10px !important;
        margin-bottom: 16px !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Hide scrollbar Firefox */
    }

    .fs-cards-grid::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar Chrome/Safari */
    }

    .fs-card {
        flex: 0 0 85% !important;
        width: 85% !important;
        max-width: 320px !important;
        scroll-snap-align: start !important;
        border-radius: 14px !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05) !important;
        border: 1px solid rgba(0, 0, 0, 0.05) !important;
        background: #ffffff !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
        text-decoration: none !important;
    }

    .fs-card img {
        width: 100% !important;
        height: 155px !important;
        object-fit: cover !important;
        display: block !important;
    }

    .fs-card>div {
        padding: 12px 14px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        flex: 1 !important;
    }

    .fs-card h3 {
        font-family: var(--font-body) !important;
        font-size: 13.5px !important;
        font-weight: 600 !important;
        color: #0f172a !important;
        line-height: 1.4 !important;
        margin-top: 2px !important;
        margin-bottom: 4px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .fs-mobile-only-meta {
        display: inline-block !important;
    }

    .fs-mobile-only-meta.meta-time {
        display: block !important;
        margin-top: 4px !important;
    }

    /* Clean Horizontal Story Cards on Mobile */
    .abp-sl-flex {
        display: flex !important;
        gap: 12px !important;
        align-items: center !important;
    }

    .abp-sl-flex img {
        width: 100px !important;
        height: 70px !important;
        border-radius: 8px !important;
        object-fit: cover !important;
        flex-shrink: 0 !important;
    }

    .abp-sl-flex h3 {
        font-size: 13.5px !important;
        line-height: 1.35 !important;
        margin: 0 !important;
        color: #1e293b !important;
    }

    /* HIDE CRAMPED BOTTOM BAR OF FEATURED POSTS ON MOBILE */
    .fs-bottom-bar {
        display: none !important;
    }

    /* PREMIUM MINIMAL TYPOGRAPHY FOR MOBILE */
    .section-title {
        font-size: 16px !important;
        font-weight: 700 !important;
        letter-spacing: -0.2px !important;
    }

    .section-title i {
        font-size: 20px !important;
    }

    .view-all-link {
        font-size: 11px !important;
        font-weight: 700 !important;
    }

    .section-title-wrap {
        margin-bottom: 12px !important;
        padding-bottom: 6px !important;
        border-bottom-width: 2px !important;
    }

    .abp-hero-main-title {
        font-size: 19px !important;
        line-height: 1.35 !important;
        font-weight: 700 !important;
        color: #0f172a !important;
        margin-top: 6px !important;
    }

    .standard-card-title {
        font-size: 14px !important;
        line-height: 1.38 !important;
        font-weight: 600 !important;
        color: #0f172a !important;
    }

    .abp-section-header,
    .widget-title {
        font-size: 15px !important;
        font-weight: 700 !important;
        letter-spacing: -0.2px !important;
    }

    .cat-tag,
    .abp-cat-label {
        font-size: 9.5px !important;
        font-weight: 700 !important;
        letter-spacing: 0.5px !important;
        margin-bottom: 4px !important;
        color: var(--abp-red, #e11b22) !important;
        background: transparent !important;
        padding: 0 !important;
        display: inline-block !important;
        text-transform: uppercase !important;
        width: max-content !important;
    }

    .cat-icon-box {
        padding: 10px 6px !important;
        font-size: 11px !important;
    }

    .featured-slider-module {
        padding: 16px 12px !important;
        margin-bottom: 24px !important;
        border-radius: 12px !important;
    }

    /* Premium Category Lead Card Redesign */
    .cat-lead-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
        padding: 0 !important;
        background: #ffffff !important;
        border-radius: 12px !important;
        border: 1px solid rgba(0, 0, 0, 0.05) !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04) !important;
        overflow: hidden !important;
        margin-bottom: 20px !important;
    }

    .cat-lead-img-wrap {
        width: 100% !important;
        height: 200px !important;
        border-radius: 12px 12px 0 0 !important;
    }

    .cat-lead-img-wrap img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .cat-lead-card>div:last-child {
        padding: 16px !important;
    }

    /* Category Header Title Mobile Style */
    .cat-header-title {
        font-size: 22px !important;
        font-weight: 700 !important;
        border-left: 3px solid var(--abp-red) !important;
        padding-left: 10px !important;
        line-height: 1.15 !important;
        color: #0f172a !important;
    }

    .cat-header-subtitle {
        font-size: 12.5px !important;
        line-height: 1.4 !important;
        color: #64748b !important;
    }

    /* Horizontal Subcategories Scroll Pills */
    .subcategory-pills {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 8px !important;
        padding: 4px 0 !important;
        margin-top: -6px !important;
        margin-bottom: 24px !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        scrollbar-width: none !important;
    }

    .subcategory-pills::-webkit-scrollbar {
        display: none !important;
    }

    .subcategory-pills span {
        display: none !important;
    }

    .sub-pill-link {
        flex-shrink: 0 !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        padding: 6px 14px !important;
        border-radius: 20px !important;
    }

    .article-header h1,
    .read-headline,
    .article-body-text h1 {
        font-size: 19px !important;
        line-height: 1.3 !important;
        font-weight: 700 !important;
        color: #0f172a !important;
    }

    .article-header p,
    .read-subheadline {
        font-size: 13.5px !important;
        line-height: 1.45 !important;
    }

    .main-two-col {
        gap: 20px;
    }

    .also-read-box {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: baseline !important;
        text-align: left !important;
        padding: 10px 14px !important;
        background: #fff5f5 !important;
        border-left: 4px solid var(--abp-red, #e11b22) !important;
        gap: 6px !important;
    }

    .also-read-box a {
        text-align: left !important;
        margin-top: 0 !important;
        display: inline !important;
        font-size: 13.5px !important;
    }

    .fs-slider-container {
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .fs-snippets-track {
        display: flex;
        gap: 12px;
        width: max-content;
        transform: none !important;
    }

    .fs-snippet-card {
        width: 240px;
        flex-shrink: 0;
    }

    .fs-dots-container {
        display: none;
    }

    .cat-list-thumb {
        height: 160px;
    }

    .tradingview-widget-container {
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .auth-drawer {
        width: 100%;
        right: -100%;
    }

    .auth-drawer.open {
        right: 0;
    }

    /* Full-Width Article and Sponsored Article Pages on Mobile (Remove Card Enclosure) */
    .read-article-card,
    .sponsored-card {
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin-bottom: 0 !important;
    }

    .sponsored-container {
        padding: 0 12px !important;
        margin: 12px auto !important;
    }
}