/*
Theme Name: Kadence Child - الرياض 24
Theme URI: https://alriyadhnews.net
Template: kadence
Description: Custom child theme for الرياض 24 news portal
Author: Arab Dijital
Version: 3.0.0
Text Domain: kadence-child
*/

/* =============================================================================
   1. CSS VARIABLES — "Modern Riyadh Green"
   ============================================================================= */
:root {
    /* Primary greens */
    --arn-primary: #1A6B3C;
    --arn-primary-dark: #124D2B;
    --arn-primary-light: #268050;
    --arn-primary-ultra: #0D3B21;
    --arn-primary-bg: #EAF4EE;

    /* Secondary blues */
    --arn-secondary: #1B4D6E;
    --arn-secondary-dark: #133756;
    --arn-secondary-light: #25678F;

    /* Accent gold */
    --arn-accent: #C8842A;
    --arn-accent-dark: #A36A1E;

    /* Surfaces */
    --arn-white: #FFFFFF;
    --arn-surface-gray: #F4F6F4;
    --arn-surface-dark: #0D2B1A;
    --arn-surface-mid: #143D26;

    /* Text */
    --arn-text: #1A1F1C;
    --arn-text-heading: #0F1811;
    --arn-text-secondary: #3D4D42;
    --arn-text-muted: #5A6B5F;
    --arn-text-inverse: #FFFFFF;

    /* Semantic */
    --arn-breaking: #CC2929;
    --arn-border: #D6DDD8;
    --arn-shadow: 0 2px 12px rgba(0, 0, 0, 0.09);
    --arn-radius: 8px;
    --arn-container: 1200px;
    --arn-gap: 20px;
    --arn-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

    /* Font scale */
    --arn-fs-xs: 0.75rem;
    --arn-fs-sm: 0.8125rem;
    --arn-fs-base: 0.9375rem;
    --arn-fs-md: 1rem;
    --arn-fs-lg: 1.125rem;
    --arn-fs-xl: 1.3125rem;
    --arn-fs-2xl: 1.625rem;
    --arn-fs-3xl: 2rem;
    --arn-fs-4xl: 2.5rem;

    /* Category colors */
    --arn-cat-local: #1A6B3C;
    --arn-cat-international: #1B3E7A;
    --arn-cat-ecconomy: #1B4D6E;
    --arn-cat-sports: #B84A00;
    --arn-cat-cars: #3A3D44;
    --arn-cat-technology: #3B2E8A;
    --arn-cat-tourism: #1A6472;
    --arn-cat-mix: #7A2E68;
    --arn-cat-entertainment: #7A1E3A;
}


/* =============================================================================
   2. RESET & BASE
   ============================================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    direction: rtl;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Readex Pro', 'Segoe UI', Tahoma, sans-serif;
    font-size: var(--arn-fs-base);
    line-height: 1.7;
    color: var(--arn-text);
    background-color: var(--arn-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.35;
    color: var(--arn-text-heading);
}

h1 { font-size: var(--arn-fs-4xl); }
h2 { font-size: var(--arn-fs-3xl); }
h3 { font-size: var(--arn-fs-2xl); }
h4 { font-size: var(--arn-fs-xl); }
h5 { font-size: var(--arn-fs-lg); }
h6 { font-size: var(--arn-fs-md); }

/* Links */
a {
    color: var(--arn-primary);
    text-decoration: none;
    transition: color var(--arn-transition);
}

a:hover {
    color: var(--arn-primary-light);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: var(--arn-radius);
    display: block;
}

/* Lists */
ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Buttons base */
button {
    font-family: inherit;
    cursor: pointer;
}

/* Container */
.arn-container {
    max-width: var(--arn-container);
    margin: 0 auto;
    padding: 0 var(--arn-gap);
}


/* =============================================================================
   3. HIDE KADENCE DEFAULT
   ============================================================================= */

/* Hide the default Kadence blog loop on homepage */
body.home .site-main {
    display: none !important;
}

/* Hide the default Kadence site header — we render our own */
.site-header {
    display: none !important;
}


/* =============================================================================
   4. HEADER TIER 1 — TOP BAR (.arn-topbar)
   ============================================================================= */
.arn-topbar {
    height: 36px;
    background: linear-gradient(135deg, var(--arn-primary-ultra), var(--arn-primary-dark));
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 1001;
}

.arn-topbar .arn-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.arn-topbar__date {
    color: var(--arn-white);
    font-size: var(--arn-fs-xs);
    white-space: nowrap;
    flex-shrink: 0;
    opacity: 0.85;
}

/* Breaking news ticker */
.arn-ticker {
    overflow: hidden;
    flex: 1;
    margin-right: 20px;
    display: flex;
    align-items: center;
    height: 100%;
}

.arn-ticker__label {
    background-color: var(--arn-breaking);
    color: var(--arn-white);
    padding: 4px 12px;
    font-weight: 700;
    font-size: var(--arn-fs-sm);
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.arn-ticker__label::after {
    content: "";
    position: absolute;
    left: -6px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-right: 6px solid var(--arn-breaking);
}

.arn-ticker__wrap {
    overflow: hidden;
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
}

#arn-ticker-track {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    will-change: transform;
}

.arn-ticker__item {
    color: var(--arn-white);
    padding: 0 24px;
    font-size: var(--arn-fs-sm);
    border-left: 1px dashed rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
}

.arn-ticker__item a {
    color: var(--arn-white);
    text-decoration: none;
}

.arn-ticker__item a:hover {
    text-decoration: underline;
}


/* =============================================================================
   5. HEADER TIER 2 — MAIN HEADER (.arn-header)
   ============================================================================= */
.arn-header {
    height: 72px;
    background: var(--arn-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--arn-primary);
    transition: box-shadow var(--arn-transition);
}

.arn-header--scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

.arn-header .arn-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.arn-header__logo {
    flex-shrink: 0;
}

.arn-header__logo img {
    height: 60px;
    width: auto;
    transition: transform var(--arn-transition);
}

.arn-header__logo img:hover {
    transform: scale(1.03);
}

/* Navigation */
.arn-header__nav {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
}

.arn-header__nav-item {
    position: static;
    height: 100%;
}

.arn-header__nav a {
    padding: 0 14px;
    height: 72px;
    line-height: 72px;
    font-size: var(--arn-fs-base);
    font-weight: 500;
    color: var(--arn-text);
    position: relative;
    display: inline-flex;
    align-items: center;
    transition: color var(--arn-transition), background-color var(--arn-transition);
    white-space: nowrap;
}

.arn-header__nav a:hover,
.arn-header__nav a.active {
    color: var(--arn-primary);
    background-color: var(--arn-primary-bg);
}

.arn-header__nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background-color: var(--arn-primary);
    transition: width var(--arn-transition);
}

.arn-header__nav a:hover::after,
.arn-header__nav a.active::after {
    width: 100%;
}

/* Search button */
.arn-header__search {
    width: 44px;
    height: 44px;
    background-color: var(--arn-surface-gray);
    color: var(--arn-text-secondary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--arn-fs-lg);
    transition: background-color var(--arn-transition), color var(--arn-transition);
    margin-right: 12px;
    flex-shrink: 0;
}

.arn-header__search:hover {
    background-color: var(--arn-primary);
    color: var(--arn-white);
}


/* =============================================================================
   6. MEGA MENU (.arn-mega)
   ============================================================================= */
.arn-mega {
    position: absolute;
    top: 72px;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    width: calc(100vw - 48px);
    max-width: var(--arn-container);
    background: var(--arn-white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 999;
    padding: 24px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    border-top: 2px solid var(--arn-primary);
    border-radius: 0 0 var(--arn-radius) var(--arn-radius);
}

.arn-header__nav-item:hover .arn-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.arn-mega__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.arn-mega__featured {
    aspect-ratio: 16 / 9;
    border-radius: var(--arn-radius);
    overflow: hidden;
    position: relative;
}

.arn-mega__featured img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.arn-mega__featured-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--arn-white);
    padding: 16px;
    font-size: var(--arn-fs-lg);
    font-weight: 600;
    line-height: 1.4;
}

.arn-mega__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.arn-mega__list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--arn-border);
}

.arn-mega__list li:last-child {
    border-bottom: none;
}

.arn-mega__list li a {
    font-size: var(--arn-fs-base);
    color: var(--arn-text);
    transition: color var(--arn-transition);
    display: block;
    line-height: 1.5;
}

.arn-mega__list li a:hover {
    color: var(--arn-primary);
}


/* =============================================================================
   7. SECTION HEADER (.arn-section-header)
   ============================================================================= */
.arn-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--arn-border);
}

.arn-section-header__title {
    font-size: var(--arn-fs-xl);
    font-weight: 700;
    color: var(--arn-text-heading);
    position: relative;
    padding-right: 14px;
    margin: 0;
}

.arn-section-header__title::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background-color: var(--arn-primary);
    border-radius: 2px;
}

.arn-section-header__link {
    font-size: var(--arn-fs-sm);
    color: var(--arn-primary);
    font-weight: 500;
    transition: text-decoration var(--arn-transition);
}

.arn-section-header__link:hover {
    text-decoration: underline;
}

/* Inverse variant for dark sections */
.arn-section-header--inverse .arn-section-header__title {
    color: var(--arn-white);
}

.arn-section-header--inverse .arn-section-header__title::before {
    background-color: var(--arn-accent);
}

.arn-section-header--inverse .arn-section-header__link {
    color: rgba(255, 255, 255, 0.7);
}

.arn-section-header--inverse .arn-section-header__link:hover {
    color: var(--arn-white);
}

.arn-section-header--inverse {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}


/* =============================================================================
   8. HOMEPAGE BLOCK 1 — HERO SLIDER + SIDE LIST (.arn-hero)
   ============================================================================= */
.arn-hero {
    background: var(--arn-white);
    padding: 32px 0;
}

.arn-hero__grid {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: var(--arn-gap);
}

/* Slider */
.arn-hero__slider {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--arn-radius);
    overflow: hidden;
}

.arn-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.arn-hero__slide.active {
    opacity: 1;
    z-index: 1;
}

.arn-hero__slide img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 0;
}

/* Slider overlay */
.arn-hero__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    z-index: 2;
}

.arn-hero__cat {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 4px;
    font-size: var(--arn-fs-xs);
    font-weight: 700;
    color: var(--arn-white);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Category-specific badge colors */
.arn-cat-badge--local { background-color: var(--arn-cat-local); }
.arn-cat-badge--international { background-color: var(--arn-cat-international); }
.arn-cat-badge--ecconomy { background-color: var(--arn-cat-ecconomy); }
.arn-cat-badge--sports { background-color: var(--arn-cat-sports); }
.arn-cat-badge--cars { background-color: var(--arn-cat-cars); }
.arn-cat-badge--technology { background-color: var(--arn-cat-technology); }
.arn-cat-badge--tourism { background-color: var(--arn-cat-tourism); }
.arn-cat-badge--mix { background-color: var(--arn-cat-mix); }
.arn-cat-badge--entertainment { background-color: var(--arn-cat-entertainment); }

.arn-hero__title {
    font-size: var(--arn-fs-3xl);
    font-weight: 700;
    color: var(--arn-white);
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.arn-hero__title a {
    color: var(--arn-white);
}

.arn-hero__title a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.arn-hero__meta {
    margin-top: 8px;
    font-size: var(--arn-fs-sm);
    color: rgba(255, 255, 255, 0.7);
}

/* Slider dots */
.arn-hero__dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
}

.arn-hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--arn-transition);
    border: none;
    padding: 0;
}

.arn-hero__dot.active {
    background: var(--arn-white);
    width: 24px;
    border-radius: 5px;
}

/* Slider arrows */
.arn-hero__arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 12px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 3;
}

.arn-hero__arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--arn-text);
    pointer-events: auto;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: var(--arn-fs-xl);
    transition: all var(--arn-transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.arn-hero__arrow:hover {
    background: var(--arn-primary);
    color: var(--arn-white);
}

/* Sidebar list */
.arn-hero__sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.arn-hero__sidebar-item {
    display: grid;
    grid-template-columns: 1fr 100px;
    gap: 12px;
    padding: 12px;
    background: var(--arn-surface-gray);
    border-radius: var(--arn-radius);
    transition: box-shadow var(--arn-transition);
    align-items: center;
}

.arn-hero__sidebar-item:hover {
    box-shadow: var(--arn-shadow);
}

.arn-hero__sidebar-item img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    order: 2;
}

.arn-hero__sidebar-text {
    order: 1;
}

.arn-hero__sidebar-cat {
    display: inline-block;
    font-size: var(--arn-fs-xs);
    font-weight: 700;
    color: var(--arn-primary);
    margin-bottom: 4px;
}

.arn-hero__sidebar-title {
    font-size: var(--arn-fs-base);
    font-weight: 600;
    color: var(--arn-text-heading);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.arn-hero__sidebar-title a {
    color: var(--arn-text-heading);
}

.arn-hero__sidebar-title a:hover {
    color: var(--arn-primary);
}

.arn-hero__sidebar-date {
    font-size: var(--arn-fs-xs);
    color: var(--arn-text-muted);
    margin-top: 4px;
}


/* =============================================================================
   9. HOMEPAGE BLOCK 2 — FOUR-CATEGORY STRIP (.arn-categories-strip)
   ============================================================================= */
.arn-categories-strip {
    background: var(--arn-surface-gray);
    padding: 48px 0;
}

.arn-categories-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--arn-gap);
}

/* Category column card */
.arn-cat-column {
    background: var(--arn-white);
    border-radius: var(--arn-radius);
    overflow: hidden;
    box-shadow: var(--arn-shadow);
}

.arn-cat-column__header {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-bottom: 2px solid transparent;
}

.arn-cat-column__header-link {
    font-size: var(--arn-fs-xs);
    color: var(--arn-primary);
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.arn-cat-column__header-link:hover {
    text-decoration: underline;
}

/* Per-category header border colors */
.arn-cat-column--local .arn-cat-column__header {
    border-bottom-color: var(--arn-cat-local);
}

.arn-cat-column--world .arn-cat-column__header {
    border-bottom-color: var(--arn-cat-international);
}

.arn-cat-column--economy .arn-cat-column__header {
    border-bottom-color: var(--arn-cat-ecconomy);
}

.arn-cat-column--sports .arn-cat-column__header {
    border-bottom-color: var(--arn-cat-sports);
}

.arn-cat-column--cars .arn-cat-column__header {
    border-bottom-color: var(--arn-cat-cars);
}

.arn-cat-column--tech .arn-cat-column__header {
    border-bottom-color: var(--arn-cat-technology);
}

.arn-cat-column--tourism .arn-cat-column__header {
    border-bottom-color: var(--arn-cat-tourism);
}

.arn-cat-column--variety .arn-cat-column__header {
    border-bottom-color: var(--arn-cat-mix);
}

.arn-cat-column--arts .arn-cat-column__header {
    border-bottom-color: var(--arn-cat-entertainment);
}

.arn-cat-column__header-icon {
    font-size: var(--arn-fs-lg);
    flex-shrink: 0;
}

.arn-cat-column__header-title {
    font-size: var(--arn-fs-md);
    font-weight: 700;
    color: var(--arn-text-heading);
    margin: 0;
}

/* Category column hero image */
.arn-cat-column__hero {
    aspect-ratio: 16 / 10;
    position: relative;
    overflow: hidden;
    display: block;
    background: linear-gradient(135deg, var(--arn-primary-dark), var(--arn-primary));
}

.arn-cat-column__hero img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform var(--arn-transition);
    border-radius: 0;
}

.arn-cat-column__hero:hover img {
    transform: scale(1.05);
}

.arn-cat-column__hero-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: var(--arn-white);
    font-size: var(--arn-fs-base);
    font-weight: 600;
    line-height: 1.4;
}

.arn-cat-column__hero-title a {
    color: var(--arn-white);
}

.arn-cat-column__hero-title a:hover {
    opacity: 0.9;
}

/* Category column list */
.arn-cat-column__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.arn-cat-column__list li {
    padding: 10px 18px;
    border-bottom: 1px solid var(--arn-border);
    font-size: var(--arn-fs-sm);
    display: flex;
    gap: 8px;
    align-items: flex-start;
    line-height: 1.5;
}

.arn-cat-column__list li:last-child {
    border-bottom: none;
}

.arn-cat-column__list li::before {
    content: "\25C2";
    color: var(--arn-primary);
    flex-shrink: 0;
    line-height: 1.5;
}

.arn-cat-column__list li a {
    color: var(--arn-text);
    transition: color var(--arn-transition);
    line-height: 1.5;
}

.arn-cat-column__list li a:hover {
    color: var(--arn-primary);
}


/* =============================================================================
   10. HOMEPAGE BLOCK 3 — TABBED SWITCHER (.arn-tabs)
   ============================================================================= */
.arn-tabs {
    background: var(--arn-white);
    padding: 48px 0;
}

.arn-tabs__nav {
    display: flex;
    gap: 0;
    background: var(--arn-surface-gray);
    border-radius: var(--arn-radius);
    overflow: hidden;
    margin-bottom: 24px;
}

.arn-tabs__btn {
    flex: 1;
    padding: 12px 8px;
    text-align: center;
    background: transparent;
    border: none;
    font-size: var(--arn-fs-base);
    font-weight: 500;
    color: var(--arn-text-secondary);
    cursor: pointer;
    transition: all var(--arn-transition);
    border-bottom: 3px solid transparent;
    font-family: inherit;
    white-space: nowrap;
}

.arn-tabs__btn.active {
    color: var(--arn-primary);
    background: var(--arn-white);
    border-bottom-color: var(--arn-primary);
    font-weight: 700;
}

.arn-tabs__btn:hover:not(.active) {
    background: rgba(26, 107, 60, 0.05);
    color: var(--arn-primary);
}

.arn-tabs__panel {
    display: none;
}

.arn-tabs__panel.active {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--arn-gap);
}

/* Tab cards */
.arn-tabs__card {
    background: var(--arn-white);
    border-radius: var(--arn-radius);
    overflow: hidden;
    border: 1px solid var(--arn-border);
    transition: box-shadow var(--arn-transition), border-color var(--arn-transition);
}

.arn-tabs__card:hover {
    box-shadow: var(--arn-shadow);
    border-color: var(--arn-primary-light);
}

.arn-tabs__card-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.arn-tabs__card-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform var(--arn-transition);
    border-radius: 0;
}

.arn-tabs__card:hover .arn-tabs__card-img img {
    transform: scale(1.05);
}

.arn-tabs__card-body {
    padding: 16px;
}

.arn-tabs__card-cat {
    font-size: var(--arn-fs-xs);
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}

/* Tab card category-specific text colors */
.arn-tabs__card-cat--local { color: var(--arn-cat-local); }
.arn-tabs__card-cat--world { color: var(--arn-cat-international); }
.arn-tabs__card-cat--economy { color: var(--arn-cat-ecconomy); }
.arn-tabs__card-cat--sports { color: var(--arn-cat-sports); }
.arn-tabs__card-cat--cars { color: var(--arn-cat-cars); }
.arn-tabs__card-cat--tech { color: var(--arn-cat-technology); }
.arn-tabs__card-cat--tourism { color: var(--arn-cat-tourism); }
.arn-tabs__card-cat--variety { color: var(--arn-cat-mix); }
.arn-tabs__card-cat--arts { color: var(--arn-cat-entertainment); }

.arn-tabs__card-title {
    font-size: var(--arn-fs-md);
    font-weight: 600;
    color: var(--arn-text-heading);
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.arn-tabs__card-title a {
    color: var(--arn-text-heading);
}

.arn-tabs__card-title a:hover {
    color: var(--arn-primary);
}

.arn-tabs__card-date {
    font-size: var(--arn-fs-xs);
    color: var(--arn-text-muted);
    margin-top: 8px;
    display: block;
}


/* =============================================================================
   11. HOMEPAGE BLOCK 4 — SPORTS + ECONOMY SPLIT (.arn-split)
   ============================================================================= */
.arn-split {
    background: var(--arn-surface-gray);
    padding: 48px 0;
}

.arn-split__grid {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 24px;
}

/* Sports main side */
.arn-split__main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* Reuse tab card styles for split cards */
.arn-split__card {
    background: var(--arn-white);
    border-radius: var(--arn-radius);
    overflow: hidden;
    border: 1px solid var(--arn-border);
    transition: box-shadow var(--arn-transition), border-color var(--arn-transition);
}

.arn-split__card:hover {
    box-shadow: var(--arn-shadow);
    border-color: var(--arn-primary-light);
}

.arn-split__card-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.arn-split__card-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform var(--arn-transition);
    border-radius: 0;
}

.arn-split__card:hover .arn-split__card-img img {
    transform: scale(1.05);
}

.arn-split__card-body {
    padding: 14px;
}

.arn-split__card-cat {
    font-size: var(--arn-fs-xs);
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
    color: var(--arn-cat-sports);
}

.arn-split__card-title {
    font-size: var(--arn-fs-base);
    font-weight: 600;
    color: var(--arn-text-heading);
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.arn-split__card-title a {
    color: var(--arn-text-heading);
}

.arn-split__card-title a:hover {
    color: var(--arn-primary);
}

.arn-split__card-date {
    font-size: var(--arn-fs-xs);
    color: var(--arn-text-muted);
    margin-top: 6px;
    display: block;
}

/* Economy sidebar */
.arn-split__sidebar-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--arn-border);
    align-items: center;
}

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

.arn-split__sidebar-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.arn-split__sidebar-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.arn-split__sidebar-cat {
    font-size: var(--arn-fs-xs);
    font-weight: 700;
    color: var(--arn-cat-ecconomy);
}

.arn-split__sidebar-title {
    font-size: var(--arn-fs-sm);
    font-weight: 600;
    color: var(--arn-text-heading);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.arn-split__sidebar-title a {
    color: var(--arn-text-heading);
}

.arn-split__sidebar-title a:hover {
    color: var(--arn-primary);
}

.arn-split__sidebar-date {
    font-size: var(--arn-fs-xs);
    color: var(--arn-text-muted);
}


/* =============================================================================
   12. HOMEPAGE BLOCK 5 — VISUAL STORIES (.arn-stories)
   ============================================================================= */
.arn-stories {
    background: var(--arn-white);
    padding: 48px 0;
}

.arn-stories__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--arn-gap);
}

.arn-story {
    aspect-ratio: 4 / 5;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.arn-story img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
    border-radius: 0;
}

.arn-story:hover img {
    transform: scale(1.08);
}

.arn-story__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.arn-story__cat {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: var(--arn-fs-xs);
    font-weight: 700;
    color: var(--arn-white);
    z-index: 2;
}

.arn-story__title {
    font-size: var(--arn-fs-lg);
    font-weight: 700;
    color: var(--arn-white);
    line-height: 1.4;
    margin: 0;
}

.arn-story__title a {
    color: var(--arn-white);
}

.arn-story__title a:hover {
    opacity: 0.9;
}

.arn-story__date {
    font-size: var(--arn-fs-xs);
    color: rgba(255, 255, 255, 0.65);
    margin-top: 6px;
}


/* =============================================================================
   13. HOMEPAGE BLOCK 6 — EDITOR'S PICKS RIBBON (.arn-ribbon)
   ============================================================================= */
.arn-ribbon {
    background: var(--arn-surface-dark);
    padding: 48px 0;
}

.arn-ribbon__scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
}

.arn-ribbon__scroll::-webkit-scrollbar {
    height: 4px;
}

.arn-ribbon__scroll::-webkit-scrollbar-track {
    background: transparent;
}

.arn-ribbon__scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.arn-ribbon__scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.arn-ribbon__card {
    min-width: 220px;
    flex-shrink: 0;
    scroll-snap-align: start;
    background: var(--arn-surface-mid);
    border-radius: var(--arn-radius);
    overflow: hidden;
    transition: transform var(--arn-transition);
}

.arn-ribbon__card:hover {
    transform: translateY(-4px);
}

.arn-ribbon__card-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.arn-ribbon__card-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.arn-ribbon__card-body {
    padding: 14px;
}

.arn-ribbon__card-cat {
    font-size: var(--arn-fs-xs);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.65) !important;
    margin-bottom: 6px;
    display: block;
}

.arn-ribbon__card-title {
    font-size: var(--arn-fs-sm);
    font-weight: 600;
    color: var(--arn-white);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.arn-ribbon__card-title a {
    color: var(--arn-white);
}

.arn-ribbon__card-title a:hover {
    color: var(--arn-accent);
}

.arn-ribbon__card-date {
    font-size: var(--arn-fs-xs);
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
    display: block;
}


/* =============================================================================
   14. HOMEPAGE BLOCK 7 — LATEST NEWS GRID (.arn-latest)
   ============================================================================= */
.arn-latest {
    background: var(--arn-white);
    padding: 48px 0 64px;
}

.arn-latest__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--arn-gap);
}

/* Latest cards — slightly larger than tab cards */
.arn-latest__card {
    background: var(--arn-white);
    border-radius: var(--arn-radius);
    overflow: hidden;
    border: 1px solid var(--arn-border);
    transition: box-shadow var(--arn-transition), border-color var(--arn-transition);
}

.arn-latest__card:hover {
    box-shadow: var(--arn-shadow);
    border-color: var(--arn-primary-light);
}

.arn-latest__card-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.arn-latest__card-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform var(--arn-transition);
    border-radius: 0;
}

.arn-latest__card:hover .arn-latest__card-img img {
    transform: scale(1.05);
}

.arn-latest__card-body {
    padding: 18px;
}

.arn-latest__card-cat {
    font-size: var(--arn-fs-xs);
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.arn-latest__card-cat--local { color: var(--arn-cat-local); }
.arn-latest__card-cat--world { color: var(--arn-cat-international); }
.arn-latest__card-cat--economy { color: var(--arn-cat-ecconomy); }
.arn-latest__card-cat--sports { color: var(--arn-cat-sports); }
.arn-latest__card-cat--cars { color: var(--arn-cat-cars); }
.arn-latest__card-cat--tech { color: var(--arn-cat-technology); }
.arn-latest__card-cat--tourism { color: var(--arn-cat-tourism); }
.arn-latest__card-cat--variety { color: var(--arn-cat-mix); }
.arn-latest__card-cat--arts { color: var(--arn-cat-entertainment); }

.arn-latest__card-title {
    font-size: var(--arn-fs-lg);
    font-weight: 600;
    color: var(--arn-text-heading);
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.arn-latest__card-title a {
    color: var(--arn-text-heading);
}

.arn-latest__card-title a:hover {
    color: var(--arn-primary);
}

.arn-latest__card-excerpt {
    font-size: var(--arn-fs-sm);
    color: var(--arn-text-secondary);
    line-height: 1.6;
    margin-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.arn-latest__card-date {
    font-size: var(--arn-fs-xs);
    color: var(--arn-text-muted);
    margin-top: 10px;
    display: block;
}

/* Load more button */
.arn-latest__more {
    display: block;
    width: fit-content;
    margin: 32px auto 0;
    padding: 14px 40px;
    background: var(--arn-primary);
    color: var(--arn-white);
    border-radius: var(--arn-radius);
    font-size: var(--arn-fs-md);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--arn-transition);
    font-family: inherit;
}

.arn-latest__more:hover {
    background: var(--arn-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(26, 107, 60, 0.3);
}


/* =============================================================================
   15. SINGLE POST — BREADCRUMB (.arn-breadcrumb)
   ============================================================================= */
.arn-breadcrumb {
    background: var(--arn-surface-gray);
    padding: 12px 0;
    font-size: var(--arn-fs-sm);
    color: var(--arn-text-muted);
}

.arn-breadcrumb a {
    color: var(--arn-text-secondary);
    transition: color var(--arn-transition);
}

.arn-breadcrumb a:hover {
    color: var(--arn-primary);
}

.arn-breadcrumb__sep {
    margin: 0 8px;
    color: var(--arn-text-muted);
}

.arn-breadcrumb__current {
    color: var(--arn-text-muted);
    font-weight: 500;
}


/* =============================================================================
   16. SINGLE POST — MAIN LAYOUT (.arn-single)
   ============================================================================= */
.arn-single__grid {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 32px;
    padding: 40px 0;
}

/* Article badge */
.arn-single__badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 4px;
    font-size: var(--arn-fs-xs);
    font-weight: 700;
    color: var(--arn-white);
    margin-bottom: 12px;
}

/* Article title */
.arn-single h1 {
    font-size: var(--arn-fs-3xl);
    font-weight: 700;
    color: var(--arn-text-heading);
    line-height: 1.35;
    margin: 0 0 16px;
}

/* Article meta */
.arn-single__meta {
    display: flex;
    gap: 16px;
    font-size: var(--arn-fs-sm);
    color: var(--arn-text-muted);
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--arn-border);
    flex-wrap: wrap;
}

.arn-single__meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.arn-single__meta-item svg,
.arn-single__meta-item i {
    font-size: var(--arn-fs-base);
    opacity: 0.7;
}

/* Share buttons */
.arn-single__share {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    align-items: center;
}

.arn-single__share .arn-single__share-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #FFFFFF !important;
    fill: #FFFFFF !important;
    transition: transform var(--arn-transition), opacity var(--arn-transition);
    font-size: var(--arn-fs-base);
    border: none;
    cursor: pointer;
    padding: 0;
    text-decoration: none !important;
    line-height: 1;
}

.arn-single__share .arn-single__share-btn svg {
    width: 18px;
    height: 18px;
    fill: #FFFFFF;
    color: #FFFFFF;
    stroke: #FFFFFF;
    flex-shrink: 0;
}

.arn-single__share .arn-single__share-btn:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.arn-single__share .arn-single__share-btn--twitter { background-color: #1A1A1A !important; }
.arn-single__share .arn-single__share-btn--facebook { background-color: #1877F2 !important; }

/* Hide Kadence built-in social share buttons */
.kt_simple_share_container,
.kt_share_beforecontent,
.kt_share_aftercontent {
    display: none !important;
}

/* Featured image */
.arn-single__featured {
    aspect-ratio: 16 / 9;
    border-radius: var(--arn-radius);
    overflow: hidden;
    margin-bottom: 24px;
}

.arn-single__featured img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 0;
}

/* Article body */
.arn-single__body {
    font-size: 17px;
    line-height: 1.85;
    color: var(--arn-text);
}

.arn-single__body p {
    margin-bottom: 1.2em;
}

.arn-single__body h2 {
    font-size: var(--arn-fs-2xl);
    margin: 1.5em 0 0.75em;
    font-weight: 700;
    color: var(--arn-text-heading);
}

.arn-single__body h3 {
    font-size: var(--arn-fs-xl);
    margin: 1.5em 0 0.75em;
    font-weight: 700;
    color: var(--arn-text-heading);
}

.arn-single__body h4 {
    font-size: var(--arn-fs-lg);
    margin: 1.5em 0 0.75em;
    font-weight: 700;
    color: var(--arn-text-heading);
}

.arn-single__body blockquote {
    border-right: 4px solid var(--arn-primary);
    border-left: none;
    background: var(--arn-primary-bg);
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: 0 var(--arn-radius) var(--arn-radius) 0;
    font-style: italic;
    color: var(--arn-text-secondary);
}

.arn-single__body blockquote p:last-child {
    margin-bottom: 0;
}

.arn-single__body img {
    border-radius: var(--arn-radius);
    margin: 20px 0;
}

.arn-single__body ul,
.arn-single__body ol {
    margin: 1em 0;
    padding-right: 24px;
    list-style-position: inside;
}

.arn-single__body ul {
    list-style-type: disc;
}

.arn-single__body ol {
    list-style-type: decimal;
}

.arn-single__body li {
    margin-bottom: 0.5em;
    line-height: 1.7;
}

.arn-single__body a {
    color: var(--arn-primary);
    text-decoration: underline;
    text-decoration-color: rgba(26, 107, 60, 0.3);
    text-underline-offset: 2px;
    transition: text-decoration-color var(--arn-transition);
}

.arn-single__body a:hover {
    text-decoration-color: var(--arn-primary);
}

.arn-single__body figure {
    margin: 24px 0;
}

.arn-single__body figcaption {
    font-size: var(--arn-fs-sm);
    color: var(--arn-text-muted);
    text-align: center;
    margin-top: 8px;
}

.arn-single__body table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.arn-single__body th,
.arn-single__body td {
    padding: 10px 14px;
    border: 1px solid var(--arn-border);
    text-align: right;
}

.arn-single__body th {
    background: var(--arn-surface-gray);
    font-weight: 700;
}

/* After-content Kadence Element */
.arn-single__after-content {
    margin-top: 32px;
    padding: 20px 24px;
    background: var(--arn-surface-gray);
    border-radius: var(--arn-radius);
    border-right: 4px solid var(--arn-primary);
    font-size: var(--arn-fs-base);
    line-height: 1.75;
    color: var(--arn-text-secondary);
}

.arn-single__after-content p:last-child {
    margin-bottom: 0;
}

.arn-single__after-content a {
    color: var(--arn-primary);
    font-weight: 600;
}

.arn-single__after-content a:hover {
    text-decoration: underline;
}

/* Tags */
.arn-single__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--arn-border);
}

.arn-single__tags-label {
    font-size: var(--arn-fs-sm);
    font-weight: 700;
    color: var(--arn-text-heading);
    display: flex;
    align-items: center;
    margin-left: 8px;
}

.arn-single__tags a {
    padding: 6px 14px;
    background: var(--arn-surface-gray);
    color: var(--arn-text-secondary);
    border-radius: 20px;
    font-size: var(--arn-fs-xs);
    transition: all var(--arn-transition);
    display: inline-block;
}

.arn-single__tags a:hover {
    background: var(--arn-primary);
    color: var(--arn-white);
}

/* Related posts */
.arn-single__related {
    margin-top: 48px;
}

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

.arn-single__related-card {
    background: var(--arn-white);
    border-radius: var(--arn-radius);
    overflow: hidden;
    border: 1px solid var(--arn-border);
    transition: box-shadow var(--arn-transition), border-color var(--arn-transition);
}

.arn-single__related-card:hover {
    box-shadow: var(--arn-shadow);
    border-color: var(--arn-primary-light);
}

.arn-single__related-card-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.arn-single__related-card-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform var(--arn-transition);
    border-radius: 0;
}

.arn-single__related-card:hover .arn-single__related-card-img img {
    transform: scale(1.05);
}

.arn-single__related-card-body {
    padding: 14px;
}

.arn-single__related-card-cat {
    font-size: var(--arn-fs-xs);
    font-weight: 700;
    color: var(--arn-primary);
    margin-bottom: 6px;
    display: block;
}

.arn-single__related-card-title {
    font-size: var(--arn-fs-base);
    font-weight: 600;
    color: var(--arn-text-heading);
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.arn-single__related-card-title a {
    color: var(--arn-text-heading);
}

.arn-single__related-card-title a:hover {
    color: var(--arn-primary);
}

.arn-single__related-card-date {
    font-size: var(--arn-fs-xs);
    color: var(--arn-text-muted);
    margin-top: 6px;
    display: block;
}


/* =============================================================================
   17. SIDEBAR (.arn-sidebar)
   ============================================================================= */
.arn-sidebar__widget {
    background: var(--arn-white);
    border-radius: var(--arn-radius);
    border: 1px solid var(--arn-border);
    overflow: hidden;
    margin-bottom: 20px;
}

.arn-sidebar__widget-header {
    padding: 14px 18px;
    background: var(--arn-primary);
    color: var(--arn-white);
    font-size: var(--arn-fs-md);
    font-weight: 700;
}

.arn-sidebar__widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: sidebar-counter;
}

.arn-sidebar__widget-list li {
    padding: 12px 18px;
    border-bottom: 1px solid var(--arn-border);
    display: flex;
    gap: 8px;
    align-items: flex-start;
    counter-increment: sidebar-counter;
}

.arn-sidebar__widget-list li:last-child {
    border-bottom: none;
}

.arn-sidebar__widget-list li::before {
    content: counter(sidebar-counter);
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--arn-primary-bg);
    color: var(--arn-primary);
    border-radius: 50%;
    font-size: var(--arn-fs-xs);
    font-weight: 700;
    flex-shrink: 0;
}

.arn-sidebar__widget-list li a {
    font-size: var(--arn-fs-sm);
    color: var(--arn-text);
    font-weight: 500;
    line-height: 1.5;
    transition: color var(--arn-transition);
}

.arn-sidebar__widget-list li a:hover {
    color: var(--arn-primary);
}

/* Sidebar ad placeholder */
.arn-sidebar__ad {
    background: var(--arn-surface-gray);
    border-radius: var(--arn-radius);
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.arn-sidebar__ad img {
    max-width: 100%;
    height: auto;
    border-radius: var(--arn-radius);
}


/* =============================================================================
   18. CATEGORY / ARCHIVE PAGE (.arn-archive)
   ============================================================================= */
.arn-archive__header {
    height: 140px;
    background: linear-gradient(135deg, var(--arn-primary-ultra), var(--arn-primary-dark));
    display: flex;
    align-items: center;
}

.arn-archive__header h1 {
    font-size: var(--arn-fs-3xl);
    color: var(--arn-white);
    font-weight: 700;
    margin: 0;
}

.arn-archive__header span {
    font-size: var(--arn-fs-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-right: 12px;
}

.arn-archive__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--arn-gap);
    padding: 40px 0;
}

/* Archive cards — reuse latest card styles */
.arn-archive__card {
    background: var(--arn-white);
    border-radius: var(--arn-radius);
    overflow: hidden;
    border: 1px solid var(--arn-border);
    transition: box-shadow var(--arn-transition), border-color var(--arn-transition);
}

.arn-archive__card:hover {
    box-shadow: var(--arn-shadow);
    border-color: var(--arn-primary-light);
}

.arn-archive__card-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.arn-archive__card-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform var(--arn-transition);
    border-radius: 0;
}

.arn-archive__card:hover .arn-archive__card-img img {
    transform: scale(1.05);
}

.arn-archive__card-body {
    padding: 18px;
}

.arn-archive__card-cat {
    font-size: var(--arn-fs-xs);
    font-weight: 700;
    color: var(--arn-primary);
    margin-bottom: 8px;
    display: block;
}

.arn-archive__card-title {
    font-size: var(--arn-fs-lg);
    font-weight: 600;
    color: var(--arn-text-heading);
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.arn-archive__card-title a {
    color: var(--arn-text-heading);
}

.arn-archive__card-title a:hover {
    color: var(--arn-primary);
}

.arn-archive__card-excerpt {
    font-size: var(--arn-fs-sm);
    color: var(--arn-text-secondary);
    line-height: 1.6;
    margin-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.arn-archive__card-date {
    font-size: var(--arn-fs-xs);
    color: var(--arn-text-muted);
    margin-top: 10px;
    display: block;
}

/* Pagination */
.arn-archive__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 40px;
    padding-bottom: 48px;
}

.arn-archive__pagination a,
.arn-archive__pagination span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--arn-radius);
    font-size: var(--arn-fs-sm);
    font-weight: 600;
    transition: all var(--arn-transition);
    text-decoration: none;
}

.arn-archive__pagination a {
    background: var(--arn-surface-gray);
    color: var(--arn-text);
}

.arn-archive__pagination a:hover {
    background: var(--arn-primary);
    color: var(--arn-white);
}

.arn-archive__pagination .current {
    background: var(--arn-primary);
    color: var(--arn-white);
}

.arn-archive__pagination .dots {
    background: transparent;
    color: var(--arn-text-muted);
}


/* =============================================================================
   19. FOOTER CTA BAND (.arn-footer-cta)
   ============================================================================= */
.arn-footer-cta {
    background: linear-gradient(135deg, var(--arn-primary), var(--arn-primary-light));
    padding: 48px 0;
    position: relative;
    clip-path: polygon(0 24px, 100% 0, 100% 100%, 0 100%);
}

.arn-footer-cta__inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding-top: 16px;
}

.arn-footer-cta h3 {
    font-size: var(--arn-fs-2xl);
    color: var(--arn-white);
    font-weight: 700;
    margin-bottom: 12px;
}

.arn-footer-cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    font-size: var(--arn-fs-base);
    line-height: 1.6;
}

.arn-footer-cta__form {
    display: flex;
    gap: 8px;
    max-width: 480px;
    margin: 0 auto;
}

.arn-footer-cta__input {
    flex: 1;
    padding: 12px 18px;
    border-radius: var(--arn-radius);
    border: none;
    font-size: var(--arn-fs-base);
    font-family: inherit;
    outline: none;
}

.arn-footer-cta__input::placeholder {
    color: var(--arn-text-muted);
}

.arn-footer-cta__btn {
    padding: 12px 28px;
    background: var(--arn-accent);
    color: var(--arn-white);
    border: none;
    border-radius: var(--arn-radius);
    font-weight: 700;
    cursor: pointer;
    transition: background-color var(--arn-transition);
    font-family: inherit;
    font-size: var(--arn-fs-base);
    white-space: nowrap;
}

.arn-footer-cta__btn:hover {
    background: var(--arn-accent-dark);
}


/* =============================================================================
   20. FOOTER (.arn-footer)
   ============================================================================= */
.arn-footer {
    background: var(--arn-surface-dark);
    padding: 48px 0 24px;
    color: rgba(255, 255, 255, 0.7);
}

.arn-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
}

.arn-footer__col h4 {
    font-size: var(--arn-fs-md);
    color: var(--arn-white);
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* About column */
.arn-footer__about-logo img {
    height: 48px;
    width: auto;
    margin-bottom: 12px;
}

.arn-footer__about-text {
    font-size: var(--arn-fs-sm);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.arn-footer__social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.arn-footer__social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--arn-transition);
    font-size: var(--arn-fs-base);
}

.arn-footer__social a:hover {
    background: var(--arn-primary);
    color: var(--arn-white);
}

/* Footer links */
.arn-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.arn-footer__links li {
    padding: 6px 0;
}

.arn-footer__links a {
    font-size: var(--arn-fs-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--arn-transition);
}

.arn-footer__links a:hover {
    color: var(--arn-white);
}

/* Copyright bar */
.arn-footer__copyright {
    background: var(--arn-primary-ultra);
    padding: 16px 0;
    text-align: center;
    font-size: var(--arn-fs-xs);
    color: rgba(255, 255, 255, 0.5);
}

.arn-footer__copyright a {
    color: rgba(255, 255, 255, 0.5);
}

.arn-footer__copyright a:hover {
    color: var(--arn-white);
}


/* =============================================================================
   21. MOBILE SLIDE-IN DRAWER (.arn-mobile-menu)
   ============================================================================= */

/* Backdrop */
.arn-mobile-menu__backdrop {
    position: fixed;
    inset: 0;
    z-index: 1049;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.arn-mobile-menu__backdrop.open {
    opacity: 1;
    visibility: visible;
}

/* Drawer */
.arn-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85%;
    max-width: 360px;
    z-index: 1050;
    background: var(--arn-white);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.arn-mobile-menu.open {
    transform: translateX(0);
}

/* Header */
.arn-mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--arn-border);
    flex-shrink: 0;
}

.arn-mobile-menu__header-title {
    font-size: var(--arn-fs-lg);
    font-weight: 700;
    color: var(--arn-text-heading);
}

.arn-mobile-menu__close {
    width: 36px;
    height: 36px;
    background: var(--arn-surface-gray);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--arn-text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--arn-transition);
}

.arn-mobile-menu__close:hover {
    background: var(--arn-border);
}

/* Search bar */
.arn-mobile-menu__search {
    padding: 16px 20px;
    border-bottom: 1px solid var(--arn-border);
    flex-shrink: 0;
}

.arn-mobile-menu__search-form {
    display: flex;
    background: var(--arn-surface-gray);
    border-radius: var(--arn-radius);
    overflow: hidden;
}

.arn-mobile-menu__search-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    font-size: var(--arn-fs-base);
    font-family: inherit;
    color: var(--arn-text);
    outline: none;
    direction: rtl;
    min-width: 0;
}

.arn-mobile-menu__search-input::placeholder {
    color: var(--arn-text-muted);
}

.arn-mobile-menu__search-btn {
    width: 44px;
    flex-shrink: 0;
    border: none;
    background: var(--arn-primary);
    color: var(--arn-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--arn-transition);
}

.arn-mobile-menu__search-btn:hover {
    background: var(--arn-primary-dark);
}

/* Category list */
.arn-mobile-menu__nav {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}

.arn-mobile-menu__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 20px;
    min-height: 52px;
    text-decoration: none;
    color: var(--arn-text);
    transition: background-color var(--arn-transition);
}

.arn-mobile-menu__item:active,
.arn-mobile-menu__item:hover {
    background: var(--arn-surface-gray);
}

.arn-mobile-menu__item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--arn-white);
    flex-shrink: 0;
}

/* Category-specific icon backgrounds */
.arn-mobile-menu__item--local .arn-mobile-menu__item-icon { background-color: var(--arn-cat-local); }
.arn-mobile-menu__item--world .arn-mobile-menu__item-icon { background-color: var(--arn-cat-international); }
.arn-mobile-menu__item--economy .arn-mobile-menu__item-icon { background-color: var(--arn-cat-ecconomy); }
.arn-mobile-menu__item--sports .arn-mobile-menu__item-icon { background-color: var(--arn-cat-sports); }
.arn-mobile-menu__item--cars .arn-mobile-menu__item-icon { background-color: var(--arn-cat-cars); }
.arn-mobile-menu__item--tech .arn-mobile-menu__item-icon { background-color: var(--arn-cat-technology); }
.arn-mobile-menu__item--tourism .arn-mobile-menu__item-icon { background-color: var(--arn-cat-tourism); }
.arn-mobile-menu__item--variety .arn-mobile-menu__item-icon { background-color: var(--arn-cat-mix); }
.arn-mobile-menu__item--arts .arn-mobile-menu__item-icon { background-color: var(--arn-cat-entertainment); }

.arn-mobile-menu__item-label {
    flex: 1;
    font-size: var(--arn-fs-base);
    font-weight: 600;
    color: var(--arn-text-heading);
}

.arn-mobile-menu__item-arrow {
    color: var(--arn-text-muted);
    flex-shrink: 0;
}

/* Footer */
.arn-mobile-menu__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-top: 1px solid var(--arn-border);
    flex-shrink: 0;
}

.arn-mobile-menu__home {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--arn-primary);
    font-size: var(--arn-fs-sm);
    font-weight: 600;
    text-decoration: none;
}

.arn-mobile-menu__home:hover {
    color: var(--arn-primary-dark);
}

.arn-mobile-menu__social {
    display: flex;
    gap: 16px;
}

.arn-mobile-menu__social a {
    color: var(--arn-text-muted);
    display: flex;
    align-items: center;
    transition: color var(--arn-transition);
}

.arn-mobile-menu__social a:hover {
    color: var(--arn-primary);
}


/* =============================================================================
   23. SEARCH OVERLAY (.arn-search-overlay)
   ============================================================================= */
.arn-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.arn-search-overlay.open {
    opacity: 1;
    visibility: visible;
}

.arn-search-overlay__inner {
    width: 90%;
    max-width: 600px;
    padding: 24px;
    position: relative;
}

.arn-search-overlay__form {
    display: flex;
    background: var(--arn-white);
    border-radius: var(--arn-radius);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.arn-search-overlay__input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    font-size: var(--arn-fs-lg);
    font-family: inherit;
    outline: none;
    direction: rtl;
}

.arn-search-overlay__input::placeholder {
    color: var(--arn-text-muted);
}

.arn-search-overlay__btn {
    padding: 16px 24px;
    background: var(--arn-primary);
    color: var(--arn-white);
    border: none;
    cursor: pointer;
    font-size: var(--arn-fs-lg);
    transition: background-color var(--arn-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.arn-search-overlay__btn:hover {
    background: var(--arn-primary-dark);
}

.arn-search-overlay__close {
    position: absolute;
    top: -40px;
    left: 0;
    color: var(--arn-white);
    font-size: var(--arn-fs-2xl);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: opacity var(--arn-transition);
}

.arn-search-overlay__close:hover {
    opacity: 0.7;
}


/* =============================================================================
   24. SCROLL REVEAL ANIMATIONS
   ============================================================================= */
.arn-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.arn-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal for grid children */
.arn-reveal-stagger > * {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.arn-reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.arn-reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.05s; }
.arn-reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.1s; }
.arn-reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.15s; }
.arn-reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.2s; }
.arn-reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.25s; }

.arn-reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}


/* =============================================================================
   25. HAMBURGER ANIMATION (.arn-header__hamburger)
   ============================================================================= */
.arn-header__hamburger {
    display: none;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.arn-header__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--arn-text);
    position: absolute;
    left: 9px;
    transition: all var(--arn-transition);
}

.arn-header__hamburger span:nth-child(1) {
    top: 12px;
}

.arn-header__hamburger span:nth-child(2) {
    top: 19px;
}

.arn-header__hamburger span:nth-child(3) {
    top: 26px;
}

.arn-header__hamburger.open span:nth-child(1) {
    top: 19px;
    transform: rotate(45deg);
}

.arn-header__hamburger.open span:nth-child(2) {
    opacity: 0;
}

.arn-header__hamburger.open span:nth-child(3) {
    top: 19px;
    transform: rotate(-45deg);
}


/* =============================================================================
   27. UTILITY CLASSES
   ============================================================================= */

/* Screen reader only */
.arn-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Text alignment */
.arn-text-center {
    text-align: center;
}

.arn-text-right {
    text-align: right;
}

.arn-text-left {
    text-align: left;
}

/* Display */
.arn-d-none {
    display: none;
}

.arn-d-block {
    display: block;
}

.arn-d-flex {
    display: flex;
}

/* Skeleton loading animation */
.arn-skeleton {
    background: linear-gradient(90deg, var(--arn-surface-gray) 25%, #e8ece9 50%, var(--arn-surface-gray) 75%);
    background-size: 200% 100%;
    animation: arn-skeleton-pulse 1.5s ease-in-out infinite;
    border-radius: var(--arn-radius);
}

@keyframes arn-skeleton-pulse {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Truncation */
.arn-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.arn-line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.arn-line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* =============================================================================
   28. ENGLISH / LTR OVERRIDES
   ============================================================================= */
html[lang="en"] body,
body.arn-en {
    direction: ltr;
}

html[lang="en"] .arn-section-header__title,
body.arn-en .arn-section-header__title {
    padding-right: 0;
    padding-left: 14px;
}

html[lang="en"] .arn-section-header__title::before,
body.arn-en .arn-section-header__title::before {
    right: auto;
    left: 0;
}

html[lang="en"] .arn-single__body blockquote,
body.arn-en .arn-single__body blockquote {
    border-right: none;
    border-left: 4px solid var(--arn-primary);
    border-radius: var(--arn-radius) 0 0 var(--arn-radius);
}

html[lang="en"] .arn-cat-column__list li::before,
body.arn-en .arn-cat-column__list li::before {
    content: "\25B8";
}

html[lang="en"] .arn-ticker,
body.arn-en .arn-ticker {
    margin-right: 0;
    margin-left: 20px;
}

html[lang="en"] .arn-header__search,
body.arn-en .arn-header__search {
    margin-right: 0;
    margin-left: 12px;
}

html[lang="en"] .arn-single__body ul,
html[lang="en"] .arn-single__body ol,
body.arn-en .arn-single__body ul,
body.arn-en .arn-single__body ol {
    padding-right: 0;
    padding-left: 24px;
}

html[lang="en"] .arn-single__body th,
html[lang="en"] .arn-single__body td,
body.arn-en .arn-single__body th,
body.arn-en .arn-single__body td {
    text-align: left;
}


/* =============================================================================
   29. RESPONSIVE — LARGE TABLETS & SMALL DESKTOPS (max-width: 1199px)
   ============================================================================= */
@media (max-width: 1199px) {
    .arn-container {
        padding: 0 24px;
    }

    .arn-mega {
        width: calc(100vw - 48px);
        padding: 20px;
    }

    .arn-header__nav a {
        padding: 0 10px;
        font-size: var(--arn-fs-sm);
    }

    .arn-hero__title {
        font-size: var(--arn-fs-2xl);
    }

    .arn-split__grid {
        gap: 20px;
    }

    .arn-footer__grid {
        gap: 24px;
    }
}


/* =============================================================================
   30. RESPONSIVE — TABLETS (max-width: 991px)
   ============================================================================= */
@media (max-width: 991px) {
    /* Header navigation → hamburger */
    .arn-header__nav {
        display: none;
    }

    /* Search button hidden — search is in the mobile menu drawer */
    .arn-header__search {
        display: none;
    }

    .arn-header__hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Mega menu hidden on tablet */
    .arn-mega {
        display: none;
    }

    /* Hero */
    .arn-hero__grid {
        grid-template-columns: 1fr;
    }

    .arn-hero__sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Categories strip */
    .arn-categories-strip__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Tabs */
    .arn-tabs__panel.active {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Split */
    .arn-split__grid {
        grid-template-columns: 1fr;
    }

    .arn-split__sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .arn-split__sidebar-item {
        border-bottom: none;
        background: var(--arn-white);
        padding: 12px;
        border-radius: var(--arn-radius);
        border: 1px solid var(--arn-border);
    }

    /* Stories */
    .arn-stories__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Single post */
    .arn-single__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .arn-sidebar {
        order: 2;
    }

    /* Archive */
    .arn-archive__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .arn-footer__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .arn-footer__col {
        text-align: center;
    }

    .arn-footer__social {
        justify-content: center;
    }

    .arn-footer__about-logo {
        display: flex;
        justify-content: center;
    }

    .arn-footer__links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .arn-footer__links li {
        padding: 4px 8px;
    }
}


/* =============================================================================
   31. RESPONSIVE — MOBILE (max-width: 767px)
   ============================================================================= */
@media (max-width: 767px) {
    /* Header */
    .arn-header {
        height: 56px;
    }

    .arn-header .arn-container {
        height: 56px;
    }

    .arn-header__logo img {
        height: 42px;
    }

    .arn-header__nav a {
        height: 56px;
        line-height: 56px;
    }

    .arn-header__nav a::after {
        bottom: 0;
    }

    /* Top bar */
    .arn-topbar__date {
        display: none;
    }

    .arn-ticker {
        margin-right: 0;
    }

    /* Hero */
    .arn-hero {
        padding: 20px 0;
    }

    .arn-hero__title {
        font-size: var(--arn-fs-2xl);
    }

    .arn-hero__overlay {
        padding: 24px 16px 16px;
    }

    .arn-hero__sidebar {
        grid-template-columns: 1fr;
    }

    /* Section headers */
    .arn-section-header {
        margin-bottom: 16px;
    }

    .arn-section-header__title {
        font-size: var(--arn-fs-lg);
    }

    /* Tabs navigation scrollable */
    .arn-tabs__nav {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        border-radius: var(--arn-radius);
    }

    .arn-tabs__btn {
        flex: none;
        padding: 10px 16px;
        font-size: var(--arn-fs-sm);
    }

    .arn-tabs__panel.active {
        grid-template-columns: 1fr;
    }

    /* Split */
    .arn-split__main-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .arn-split__sidebar {
        grid-template-columns: 1fr;
    }

    /* Stories */
    .arn-stories__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Latest */
    .arn-latest__grid {
        grid-template-columns: 1fr;
    }

    /* Ribbon */
    .arn-ribbon__card {
        min-width: 180px;
    }

    /* Single post */
    .arn-single h1 {
        font-size: var(--arn-fs-2xl);
    }

    .arn-single__meta {
        flex-wrap: wrap;
        gap: 8px;
    }

    .arn-single__related-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .arn-single__body {
        font-size: 16px;
    }

    /* Archive */
    .arn-archive__grid {
        grid-template-columns: 1fr;
    }

    .arn-archive__header {
        height: 100px;
    }

    .arn-archive__header h1 {
        font-size: var(--arn-fs-2xl);
    }

    /* Footer CTA */
    .arn-footer-cta {
        padding: 40px 0 32px;
    }

    .arn-footer-cta__form {
        flex-direction: column;
    }

    .arn-footer-cta__btn {
        width: 100%;
        text-align: center;
    }

    .arn-footer-cta h3 {
        font-size: var(--arn-fs-xl);
    }

    /* Reduce section paddings */
    .arn-categories-strip,
    .arn-tabs,
    .arn-split,
    .arn-stories,
    .arn-ribbon,
    .arn-latest {
        padding: 32px 0;
    }

    /* Footer */
    .arn-footer {
        padding: 32px 0 16px;
    }

    .arn-footer__copyright {
        padding: 12px 0;
    }
}


/* =============================================================================
   32. RESPONSIVE — SMALL MOBILE (max-width: 575px)
   ============================================================================= */
@media (max-width: 575px) {
    .arn-container {
        padding: 0 16px;
    }

    /* Categories strip */
    .arn-categories-strip__grid {
        grid-template-columns: 1fr;
    }

    /* Split */
    .arn-split__main-grid {
        grid-template-columns: 1fr;
    }

    /* Hero sidebar items stack */
    .arn-hero__sidebar-item {
        grid-template-columns: 1fr;
    }

    .arn-hero__sidebar-item img {
        width: 100%;
        height: 160px;
        order: 1;
    }

    .arn-hero__sidebar-text {
        order: 2;
    }

    /* Stories taller on small screens */
    .arn-stories__grid {
        gap: 12px;
    }

    .arn-story__title {
        font-size: var(--arn-fs-base);
    }

    /* Ribbon */
    .arn-ribbon__card {
        min-width: 160px;
    }

    /* Reduce gaps */
    .arn-hero__grid,
    .arn-categories-strip__grid,
    .arn-latest__grid,
    .arn-archive__grid {
        gap: 12px;
    }

    /* Single post adjustments */
    .arn-single__grid {
        padding: 24px 0;
        gap: 20px;
    }

    .arn-single h1 {
        font-size: var(--arn-fs-xl);
    }

    .arn-single__share-btn {
        width: 32px;
        height: 32px;
        font-size: var(--arn-fs-sm);
    }

    .arn-single__body blockquote {
        padding: 14px 16px;
        margin: 16px 0;
    }

    .arn-single__tags a {
        padding: 4px 10px;
    }

    /* Archive header */
    .arn-archive__header {
        height: 80px;
    }

    .arn-archive__header h1 {
        font-size: var(--arn-fs-xl);
    }

    .arn-archive__pagination a,
    .arn-archive__pagination span {
        width: 34px;
        height: 34px;
        font-size: var(--arn-fs-xs);
    }

    /* Footer */
    .arn-footer__about-text {
        font-size: var(--arn-fs-xs);
    }

    .arn-footer-cta {
        clip-path: polygon(0 12px, 100% 0, 100% 100%, 0 100%);
    }

    /* Mobile menu drawer — wider on small screens */
    .arn-mobile-menu {
        width: 90%;
    }

    /* All sections reduced padding */
    .arn-categories-strip,
    .arn-tabs,
    .arn-split,
    .arn-stories,
    .arn-ribbon,
    .arn-latest {
        padding: 24px 0;
    }

    .arn-footer {
        padding: 24px 0 12px;
    }

    /* Topbar */
    .arn-topbar {
        height: 32px;
    }

    .arn-ticker__label {
        padding: 2px 8px;
        font-size: var(--arn-fs-xs);
    }

    .arn-ticker__item {
        padding: 0 16px;
        font-size: var(--arn-fs-xs);
    }
}


/* =============================================================================
   33. PRINT STYLES
   ============================================================================= */
@media print {
    .arn-topbar,
    .arn-header,
    .arn-footer-cta,
    .arn-footer,
    .arn-footer__copyright,
    .arn-mobile-menu,
    .arn-search-overlay,
    .arn-single__share,
    .arn-sidebar,
    .arn-single__related,
    .arn-hero__arrows,
    .arn-hero__dots {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }

    .arn-single__grid {
        grid-template-columns: 1fr;
    }

    .arn-single__body {
        font-size: 12pt;
    }

    .arn-single__body a {
        color: #000;
        text-decoration: underline;
    }

    .arn-single__body img {
        max-width: 100%;
        page-break-inside: avoid;
    }

    h1, h2, h3, h4 {
        page-break-after: avoid;
    }
}


/* =============================================================================
   34. ACCESSIBILITY — FOCUS STYLES
   ============================================================================= */
*:focus-visible {
    outline: 2px solid var(--arn-primary);
    outline-offset: 2px;
}

/* Skip link */
.arn-skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--arn-primary);
    color: var(--arn-white);
    padding: 12px 24px;
    border-radius: 0 0 var(--arn-radius) var(--arn-radius);
    font-weight: 700;
    z-index: 9999;
    transition: top 0.2s ease;
}

.arn-skip-link:focus {
    top: 0;
    color: var(--arn-white);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .arn-reveal {
        opacity: 1;
        transform: none;
    }

    .arn-reveal-stagger > * {
        opacity: 1;
        transform: none;
    }
}


/* =============================================================================
   35. KADENCE & WORDPRESS OVERRIDES
   ============================================================================= */

/* Override Kadence default max-width */
.site-container {
    max-width: 100%;
    padding: 0;
}

/* Override Kadence footer */
.site-footer {
    display: none !important;
}

/* Override Kadence inner content */
.site-main .entry-content {
    max-width: 100%;
}

/* WP Block alignment */
.alignfull {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.alignwide {
    max-width: var(--arn-container);
    margin-left: auto;
    margin-right: auto;
}

/* Override WP admin bar offset */
body.admin-bar .arn-header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .arn-header {
        top: 46px;
    }
}

/* Hide Kadence Elements — we use our own blocks */
body.home .entry-content > .wp-block-kadence-rowlayout {
    display: none;
}

/* WP Rocket lazy load placeholder */
img[data-lazy-src] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.lazyloaded {
    opacity: 1;
}

/* Rank Math breadcrumb override — if used instead of custom breadcrumb */
.rank-math-breadcrumb {
    font-size: var(--arn-fs-sm);
    color: var(--arn-text-muted);
    padding: 12px 0;
}

.rank-math-breadcrumb a {
    color: var(--arn-text-secondary);
}

.rank-math-breadcrumb a:hover {
    color: var(--arn-primary);
}

/* WP image captions */
.wp-caption {
    max-width: 100%;
    margin: 20px 0;
}

.wp-caption-text {
    font-size: var(--arn-fs-sm);
    color: var(--arn-text-muted);
    text-align: center;
    margin-top: 8px;
}

/* WP gallery */
.wp-block-gallery {
    margin: 24px 0;
}

.wp-block-gallery .wp-block-image {
    margin: 0;
}

/* Gravatar in comments */
.avatar {
    border-radius: 50%;
}

/* Override any inherited Kadence font */
body,
.site,
.entry-content,
.widget {
    font-family: 'Readex Pro', 'Segoe UI', Tahoma, sans-serif;
}
