/*
 * Theme Name: OkazNews Child
 * Theme URI: https://okaznews.net
 * Template: kadence
 * Description: Custom child theme for OkazNews.net — عكاظ اليوم
 * Version: 1.0.8
 * Author: ArabDijital
 * Text Domain: okaznews-child
 */

/* ==============================================
   TABLE OF CONTENTS
   1. CSS Variables & Reset
   2. Typography
   3. Skip Link & Accessibility
   4. Header — Topbar
   5. Header — Logo Bar
   6. Header — Navbar & Mega Menu
   7. Mobile Menu Overlay
   8. Search Overlay
   9. Homepage — Hero Slider
   10. Homepage — Four-Category Strip
   11. Homepage — Most Read Tabs
   12. Homepage — Category Tabbed Switcher
   13. Homepage — Sports + Economy Split
   14. Homepage — Visual Stories
   15. Homepage — Editor's Picks Ribbon
   16. Homepage — Latest News Grid
   17. Reusable Card Component
   18. Single Post
   19. Archive / Category
   20. Footer
   21. FAB Menu
   22. Scroll Reveal Animations
   23. Breaking News Ticker
   24. Share Buttons
   25. Pagination
   26. Utility Classes
   27. Kadence Overrides
   28. Print Styles
   ============================================== */

/* ==============================================
   1. CSS VARIABLES & RESET
   ============================================== */
:root {
  /* Brand */
  --okz-primary: #1A8FB8;
  --okz-primary-dark: #116B8A;
  --okz-primary-light: #E6F4FA;
  --okz-secondary: #2F4858;
  --okz-secondary-light: #3D5C6E;
  --okz-accent: #D4940A;
  --okz-accent-dark: #B07A08;
  --okz-breaking: #CC2929;

  /* Text */
  --okz-text: #1A1E22;
  --okz-text-muted: #6B7880;
  --okz-text-inverse: #FFFFFF;

  /* Surfaces */
  --okz-surface: #F3F5F7;
  --okz-surface-card: #FFFFFF;
  --okz-border: #E2E6E9;
  --okz-border-light: #F0F2F4;

  /* Footer */
  --okz-footer-bg: #1A2A36;
  --okz-footer-dark: #141F28;
  --okz-footer-text: #C8D0D6;

  /* Category Colors */
  --okz-cat-local: #1A6B3C;
  --okz-cat-sports: #B84A00;
  --okz-cat-mix: #7A2E68;
  --okz-cat-economy: #1B4D6E;
  --okz-cat-international: #1B3E7A;
  --okz-cat-tourism: #1A6472;
  --okz-cat-technology: #3B2E8A;
  --okz-cat-entertainment: #7A1E3A;

  /* Typography Scale */
  --okz-fs-xs: 0.75rem;
  --okz-fs-sm: 0.8125rem;
  --okz-fs-base: 0.9375rem;
  --okz-fs-md: 1rem;
  --okz-fs-lg: 1.125rem;
  --okz-fs-xl: 1.3125rem;
  --okz-fs-2xl: 1.5rem;
  --okz-fs-3xl: 1.875rem;
  --okz-fs-4xl: 2.25rem;

  /* Font — override Kadence's --global-body-font-family */
  --okz-font: 'Noto Kufi Arabic', 'Segoe UI', Tahoma, sans-serif;
  --global-body-font-family: 'Noto Kufi Arabic', 'Segoe UI', Tahoma, sans-serif;
  --global-heading-font-family: 'Noto Kufi Arabic', 'Segoe UI', Tahoma, sans-serif;

  /* Spacing */
  --okz-gap: 1.5rem;
  --okz-gap-sm: 1rem;
  --okz-gap-lg: 2rem;
  --okz-gap-xl: 3rem;
  --okz-container: 1200px;

  /* Shadows */
  --okz-shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --okz-shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --okz-shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --okz-shadow-sticky: 0 2px 8px rgba(0,0,0,0.15);

  /* Transitions */
  --okz-transition: 0.25s ease;
  --okz-transition-fast: 0.15s ease;

  /* Radius */
  --okz-radius: 8px;
  --okz-radius-sm: 4px;
  --okz-radius-lg: 12px;
}

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

body {
  font-family: var(--okz-font);
  color: var(--okz-text);
  background: var(--okz-surface);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ==============================================
   2. TYPOGRAPHY
   ============================================== */
.okz-container {
  max-width: var(--okz-container);
  margin: 0 auto;
  padding: 0 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.4;
}

/* Section headings */
.okz-section-title {
  font-size: var(--okz-fs-2xl);
  font-weight: 700;
  color: var(--okz-secondary);
  margin: 0 0 var(--okz-gap);
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--okz-primary);
  display: inline-block;
}

.okz-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--okz-accent);
  margin-top: 0.5rem;
}

/* ==============================================
   3. SKIP LINK & ACCESSIBILITY
   ============================================== */
.okz-skip-link {
  position: absolute;
  top: -100%;
  right: 0;
  background: var(--okz-primary);
  color: var(--okz-text-inverse);
  padding: 0.75rem 1.5rem;
  z-index: 10000;
  font-weight: 600;
  border-radius: 0 0 0 var(--okz-radius);
  transition: top var(--okz-transition-fast);
}

.okz-skip-link:focus {
  top: 0;
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--okz-primary);
  outline-offset: 2px;
}

/* 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;
  }
}

/* Screen reader only */
.okz-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;
}

/* ==============================================
   4. HEADER — TOPBAR
   ============================================== */
.okz-topbar {
  background: var(--okz-secondary);
  color: var(--okz-text-inverse);
  height: 36px;
  font-size: var(--okz-fs-xs);
  position: relative;
  z-index: 100;
}

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

.okz-topbar-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-weight: 500;
}

.okz-topbar-date svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.okz-topbar-ticker {
  flex: 1;
  margin: 0 1rem;
  overflow: hidden;
  position: relative;
}

.okz-topbar-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.okz-topbar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--okz-text-inverse);
  transition: background var(--okz-transition-fast);
}

.okz-topbar-social a:hover {
  background: var(--okz-primary);
}

.okz-topbar-social svg {
  width: 14px;
  height: 14px;
}

/* ==============================================
   5. HEADER — LOGO BAR
   ============================================== */
.okz-logobar {
  background: var(--okz-surface-card);
  height: 104px;
  border-bottom: 1px solid var(--okz-border);
  position: relative;
  z-index: 99;
}

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

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

.okz-logo img {
  height: 88px;
  width: auto;
}

.okz-logobar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Button label — hidden on hamburger (desktop), shown on search */
.okz-hamburger .okz-btn-label {
  display: none;
}

.okz-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 40px;
  padding: 0 1.1rem;
  border-radius: 9999px;
  border: none;
  background: var(--okz-primary-light);
  color: var(--okz-primary-dark);
  cursor: pointer;
  transition: all var(--okz-transition-fast);
}

.okz-search-btn:hover {
  background: var(--okz-primary);
  color: var(--okz-text-inverse);
}

.okz-search-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.okz-search-btn .okz-btn-label {
  display: inline;
  font-size: var(--okz-fs-sm);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.okz-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--okz-radius-sm);
  border: 1px solid var(--okz-border);
  background: transparent;
  color: var(--okz-secondary);
  cursor: pointer;
}

.okz-hamburger svg {
  width: 22px;
  height: 22px;
}

/* ==============================================
   6. HEADER — NAVBAR & MEGA MENU
   ============================================== */
.okz-navbar {
  background: var(--okz-primary);
  height: 48px;
  position: relative;
  z-index: 98;
  transition: box-shadow var(--okz-transition);
}

.okz-navbar--stuck {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: var(--okz-shadow-sticky);
  z-index: 1000;
}

.okz-navbar .okz-container {
  display: flex;
  align-items: center;
  height: 100%;
}

.okz-nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  gap: 0;
  width: 100%;
}

.okz-nav-item {
  height: 100%;
  display: flex;
  align-items: center;
}

.okz-nav-link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 1.125rem;
  color: var(--okz-text-inverse);
  font-size: var(--okz-fs-base);
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--okz-transition-fast);
  border-bottom: 3px solid transparent;
}

.okz-nav-link:hover,
.okz-nav-item:hover .okz-nav-link {
  background: rgba(255,255,255,0.12);
}

.okz-nav-link--active {
  border-bottom-color: var(--okz-accent);
}

/* Mega Menu */
.okz-mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: var(--okz-container);
  max-width: calc(100vw - 2rem);
  background: var(--okz-surface-card);
  border-radius: 0 0 var(--okz-radius) var(--okz-radius);
  box-shadow: var(--okz-shadow-lg);
  padding: var(--okz-gap);
  opacity: 0;
  visibility: hidden;
  transition: all var(--okz-transition);
  z-index: 1001;
}

.okz-mega-menu--open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.okz-mega-menu::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
}

/* Category-specific top border colors */
.okz-mega-menu[data-cat="local"]::before { background: var(--okz-cat-local); }
.okz-mega-menu[data-cat="sports"]::before { background: var(--okz-cat-sports); }
.okz-mega-menu[data-cat="mix"]::before { background: var(--okz-cat-mix); }
.okz-mega-menu[data-cat="economy"]::before { background: var(--okz-cat-economy); }
.okz-mega-menu[data-cat="international"]::before { background: var(--okz-cat-international); }
.okz-mega-menu[data-cat="tourism"]::before { background: var(--okz-cat-tourism); }
.okz-mega-menu[data-cat="technology"]::before { background: var(--okz-cat-technology); }
.okz-mega-menu[data-cat="entertainment"]::before { background: var(--okz-cat-entertainment); }

.okz-mega-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--okz-gap);
}

.okz-mega-featured {
  position: relative;
  border-radius: var(--okz-radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.okz-mega-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.okz-mega-featured-title {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--okz-text-inverse);
  font-size: var(--okz-fs-base);
  font-weight: 600;
  line-height: 1.5;
}

.okz-mega-featured-title a:hover {
  color: var(--okz-primary-light);
}

.okz-mega-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.okz-mega-list-item {
  padding-bottom: 0;
  border-bottom: none;
}

.okz-mega-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.okz-mega-list-item a {
  font-size: var(--okz-fs-sm);
  font-weight: 500;
  color: var(--okz-text);
  line-height: 1.6;
  display: block;
  transition: color var(--okz-transition-fast);
}

.okz-mega-list-item a:hover {
  color: var(--okz-primary);
}

.okz-mega-list-item time {
  font-size: var(--okz-fs-xs);
  color: var(--okz-text-muted);
  margin-top: 0.25rem;
  display: block;
}

.okz-mega-more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
  font-size: var(--okz-fs-sm);
  font-weight: 600;
  color: var(--okz-primary);
  transition: color var(--okz-transition-fast);
}

.okz-mega-more:hover {
  color: var(--okz-primary-dark);
}

/* ==============================================
   7. MOBILE MENU OVERLAY
   ============================================== */
.okz-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--okz-transition);
  backdrop-filter: blur(4px);
}

.okz-mobile-overlay--open {
  opacity: 1;
  visibility: visible;
}

.okz-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 380px;
  height: 100%;
  background: var(--okz-surface-card);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--okz-transition);
  box-shadow: var(--okz-shadow-lg);
}

.okz-mobile-overlay--open .okz-mobile-panel {
  transform: translateX(0);
}

.okz-mobile-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--okz-border);
}

.okz-mobile-panel-header img {
  height: 36px;
  width: auto;
}

.okz-mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--okz-surface);
  color: var(--okz-text);
  cursor: pointer;
  font-size: 1.25rem;
}

.okz-mobile-close:hover {
  background: var(--okz-border);
}

/* 3x3 Category Grid */
.okz-mobile-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0.5rem;
}

.okz-mobile-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem 0.5rem;
  text-align: center;
  border-radius: var(--okz-radius);
  transition: background var(--okz-transition-fast);
  min-height: 90px;
}

.okz-mobile-cat:hover {
  background: var(--okz-surface);
}

.okz-mobile-cat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.okz-mobile-cat-icon svg {
  width: 22px;
  height: 22px;
  color: #FFFFFF;
}

.okz-mobile-cat span {
  font-size: var(--okz-fs-sm);
  font-weight: 600;
  color: var(--okz-text);
}

/* ==============================================
   8. SEARCH OVERLAY
   ============================================== */
.okz-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20vh;
  opacity: 0;
  visibility: hidden;
  transition: all var(--okz-transition);
  backdrop-filter: blur(8px);
}

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

.okz-search-inner {
  width: 100%;
  max-width: 640px;
  padding: 0 1rem;
}

.okz-search-close {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: transparent;
  color: var(--okz-text-inverse);
  cursor: pointer;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--okz-transition-fast);
}

.okz-search-close:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.okz-search-form {
  display: flex;
  border-radius: var(--okz-radius-lg);
  overflow: hidden;
  box-shadow: var(--okz-shadow-lg);
}

.okz-search-form input[type="search"] {
  flex: 1;
  height: 56px;
  padding: 0 1.25rem;
  border: none;
  font-family: var(--okz-font);
  font-size: var(--okz-fs-lg);
  background: var(--okz-surface-card);
  color: var(--okz-text);
  direction: rtl;
}

.okz-search-form input[type="search"]::placeholder {
  color: var(--okz-text-muted);
}

.okz-search-form input[type="search"]:focus {
  outline: none;
}

.okz-search-form button[type="submit"] {
  width: 56px;
  height: 56px;
  border: none;
  background: var(--okz-primary);
  color: var(--okz-text-inverse);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--okz-transition-fast);
}

.okz-search-form button[type="submit"]:hover {
  background: var(--okz-primary-dark);
}

.okz-search-form button[type="submit"] svg {
  width: 22px;
  height: 22px;
}

/* ==============================================
   9. HOMEPAGE — HERO SLIDER
   ============================================== */
.okz-hero {
  padding: var(--okz-gap-lg) 0;
  background: var(--okz-surface-card);
}

.okz-hero-grid {
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: var(--okz-gap);
  min-height: 420px;
}

.okz-hero-slider {
  position: relative;
  border-radius: var(--okz-radius-lg);
  overflow: hidden;
  background: var(--okz-secondary);
  height: 420px;
}

.okz-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.okz-hero-slide--active {
  opacity: 1;
}

.okz-hero-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.okz-hero-slide-content {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 4rem 2rem 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  color: var(--okz-text-inverse);
}

.okz-hero-cat-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--okz-radius-sm);
  font-size: var(--okz-fs-xs);
  font-weight: 700;
  color: var(--okz-text-inverse);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.okz-hero-slide-title {
  font-size: var(--okz-fs-3xl);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 0.5rem;
}

.okz-hero-slide-title a {
  color: var(--okz-text-inverse);
  transition: color var(--okz-transition-fast);
}

.okz-hero-slide-title a:hover {
  color: var(--okz-primary-light);
}

.okz-hero-slide-date {
  font-size: var(--okz-fs-xs);
  opacity: 0.8;
}

/* Slider controls */
.okz-hero-arrows {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}

.okz-hero-prev,
.okz-hero-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.3);
  color: var(--okz-text-inverse);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--okz-transition-fast);
}

.okz-hero-prev:hover,
.okz-hero-next:hover {
  background: var(--okz-primary);
  border-color: var(--okz-primary);
}

.okz-hero-prev svg,
.okz-hero-next svg {
  width: 18px;
  height: 18px;
}

.okz-hero-dots {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}

.okz-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  transition: all var(--okz-transition-fast);
  padding: 0;
}

.okz-hero-dot--active {
  background: var(--okz-text-inverse);
  border-color: var(--okz-text-inverse);
}

/* Hero Sidebar */
.okz-hero-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--okz-gap-sm);
}

.okz-hero-side-item {
  display: flex;
  gap: 0.75rem;
  padding-bottom: var(--okz-gap-sm);
  border-bottom: 1px solid var(--okz-border);
}

.okz-hero-side-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.okz-hero-side-thumb {
  width: 100px;
  min-width: 100px;
  height: 75px;
  border-radius: var(--okz-radius-sm);
  overflow: hidden;
}

.okz-hero-side-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--okz-transition);
}

.okz-hero-side-item:hover .okz-hero-side-thumb img {
  transform: scale(1.05);
}

.okz-hero-side-content {
  flex: 1;
  min-width: 0;
}

.okz-hero-side-content h3 {
  font-size: var(--okz-fs-sm);
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.okz-hero-side-content h3 a {
  transition: color var(--okz-transition-fast);
}

.okz-hero-side-content h3 a:hover {
  color: var(--okz-primary);
}

.okz-hero-side-content time {
  font-size: var(--okz-fs-xs);
  color: var(--okz-text-muted);
}

/* ==============================================
   10. HOMEPAGE — FOUR-CATEGORY STRIP
   ============================================== */
.okz-cat-strip {
  padding: var(--okz-gap-xl) 0;
}

.okz-cat-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--okz-gap);
}

.okz-cat-strip-col {
  min-width: 0;
  overflow: hidden;
}

.okz-cat-strip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--okz-gap);
  padding-bottom: 0.75rem;
  border-bottom: 3px solid;
}

.okz-cat-strip-header h2 {
  font-size: var(--okz-fs-lg);
  font-weight: 700;
  margin: 0;
}

.okz-cat-strip-header a {
  font-size: var(--okz-fs-xs);
  font-weight: 600;
  transition: color var(--okz-transition-fast);
}

.okz-cat-strip-hero {
  position: relative;
  border-radius: var(--okz-radius);
  overflow: hidden;
  margin-bottom: var(--okz-gap-sm);
  aspect-ratio: 16 / 10;
}

.okz-cat-strip-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--okz-transition);
}

.okz-cat-strip-hero:hover img {
  transform: scale(1.05);
}

.okz-cat-strip-hero-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 2rem 0.75rem 0.75rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.okz-cat-strip-hero-overlay h3 {
  font-size: var(--okz-fs-base);
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}

.okz-cat-strip-hero-overlay h3 a {
  color: var(--okz-text-inverse);
}

.okz-cat-strip-hero-overlay h3 a:hover {
  color: var(--okz-primary-light);
}

.okz-cat-strip-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.okz-cat-strip-list-item {
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--okz-border-light);
}

.okz-cat-strip-list-item:last-child {
  border-bottom: none;
}

.okz-cat-strip-list-item a {
  font-size: var(--okz-fs-sm);
  font-weight: 500;
  color: var(--okz-text);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--okz-transition-fast);
}

.okz-cat-strip-list-item a:hover {
  color: var(--okz-primary);
}

/* ==============================================
   11. HOMEPAGE — MOST READ TABS
   ============================================== */
.okz-most-read {
  padding: var(--okz-gap-xl) 0;
  background: var(--okz-surface-card);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.okz-most-read-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--okz-gap);
  flex-wrap: wrap;
  gap: 1rem;
}

.okz-tabs {
  display: flex;
  gap: 0;
  border-radius: var(--okz-radius);
  overflow: hidden;
  border: 1px solid var(--okz-border);
}

.okz-tab {
  padding: 0.5rem 1.25rem;
  font-size: var(--okz-fs-sm);
  font-weight: 600;
  color: var(--okz-text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--okz-transition-fast);
  white-space: nowrap;
  font-family: var(--okz-font);
}

.okz-tab:not(:last-child) {
  border-left: 1px solid var(--okz-border);
}

.okz-tab--active {
  background: var(--okz-primary);
  color: var(--okz-text-inverse);
}

.okz-tab:hover:not(.okz-tab--active) {
  background: var(--okz-surface);
}

.okz-most-read-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem var(--okz-gap-lg);
}

.okz-most-read-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--okz-border-light);
}

.okz-most-read-rank {
  font-size: var(--okz-fs-2xl);
  font-weight: 800;
  color: var(--okz-primary);
  min-width: 40px;
  flex-shrink: 0;
  text-align: center;
  line-height: 1;
  padding-top: 0.125rem;
}

.okz-most-read-content {
  flex: 1;
  min-width: 0;
}

.okz-most-read-content h3 {
  font-size: var(--okz-fs-base);
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.okz-most-read-content h3 a {
  transition: color var(--okz-transition-fast);
}

.okz-most-read-content h3 a:hover {
  color: var(--okz-primary);
}

.okz-most-read-content time {
  font-size: var(--okz-fs-xs);
  color: var(--okz-text-muted);
}

/* ==============================================
   12. HOMEPAGE — CATEGORY TABBED SWITCHER
   ============================================== */
.okz-cat-tabs {
  padding: var(--okz-gap-xl) 0;
}

.okz-cat-tabs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--okz-gap);
  flex-wrap: wrap;
  gap: 1rem;
}

.okz-cat-tabs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--okz-gap);
}

/* ==============================================
   13. HOMEPAGE — SPORTS + ECONOMY SPLIT
   ============================================== */
.okz-split {
  padding: var(--okz-gap-xl) 0;
  background: var(--okz-surface-card);
}

.okz-split-grid {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: var(--okz-gap-lg);
}

.okz-split-main-header,
.okz-split-side-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--okz-gap);
  padding-bottom: 0.75rem;
  border-bottom: 3px solid;
}

.okz-split-main-header h2,
.okz-split-side-header h2 {
  font-size: var(--okz-fs-xl);
  font-weight: 700;
  margin: 0;
}

.okz-split-main-header a,
.okz-split-side-header a {
  font-size: var(--okz-fs-xs);
  font-weight: 600;
  transition: color var(--okz-transition-fast);
}

.okz-split-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--okz-gap);
}

.okz-split-side-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.okz-split-side-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--okz-border-light);
}

.okz-split-side-item:last-child {
  border-bottom: none;
}

.okz-split-side-thumb {
  width: 80px;
  min-width: 80px;
  height: 60px;
  border-radius: var(--okz-radius-sm);
  overflow: hidden;
}

.okz-split-side-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.okz-split-side-content h3 {
  font-size: var(--okz-fs-sm);
  font-weight: 600;
  margin: 0 0 0.25rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.okz-split-side-content h3 a {
  transition: color var(--okz-transition-fast);
}

.okz-split-side-content h3 a:hover {
  color: var(--okz-primary);
}

.okz-split-side-content time {
  font-size: var(--okz-fs-xs);
  color: var(--okz-text-muted);
}

/* ==============================================
   14. HOMEPAGE — VISUAL STORIES
   ============================================== */
.okz-stories {
  padding: var(--okz-gap-xl) 0;
}

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

.okz-story-card {
  position: relative;
  border-radius: var(--okz-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  cursor: pointer;
}

.okz-story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.okz-story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}

.okz-story-badge {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: var(--okz-radius-sm);
  font-size: var(--okz-fs-xs);
  font-weight: 700;
  color: var(--okz-text-inverse);
  margin-bottom: 0.5rem;
  align-self: flex-start;
}

.okz-story-title {
  font-size: var(--okz-fs-base);
  font-weight: 600;
  color: var(--okz-text-inverse);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.okz-story-title a {
  color: var(--okz-text-inverse);
}

.okz-story-title a:hover {
  color: var(--okz-primary-light);
}

/* ==============================================
   15. HOMEPAGE — EDITOR'S PICKS RIBBON
   ============================================== */
.okz-picks {
  padding: var(--okz-gap-xl) 0;
  background: var(--okz-secondary);
  color: var(--okz-text-inverse);
}

.okz-picks .okz-section-title {
  color: var(--okz-text-inverse);
  border-bottom-color: var(--okz-accent);
}

.okz-picks-scroll {
  display: flex;
  gap: var(--okz-gap);
  overflow-x: auto;
  padding-bottom: var(--okz-gap-sm);
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.3) transparent;
  -webkit-overflow-scrolling: touch;
}

.okz-picks-scroll::-webkit-scrollbar {
  height: 6px;
}

.okz-picks-scroll::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.3);
  border-radius: 3px;
}

.okz-picks-card {
  min-width: 240px;
  max-width: 240px;
  flex-shrink: 0;
  scroll-snap-align: start;
  border-radius: var(--okz-radius);
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  transition: background var(--okz-transition-fast);
}

.okz-picks-card:hover {
  background: rgba(255,255,255,0.14);
}

.okz-picks-card-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.okz-picks-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--okz-transition);
}

.okz-picks-card:hover .okz-picks-card-thumb img {
  transform: scale(1.05);
}

.okz-picks-card-body {
  padding: 0.75rem;
}

.okz-picks-card-body h3 {
  font-size: var(--okz-fs-sm);
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.okz-picks-card-body h3 a {
  color: var(--okz-text-inverse);
}

.okz-picks-card-body h3 a:hover {
  color: var(--okz-primary-light);
}

.okz-picks-card-body time {
  font-size: var(--okz-fs-xs);
  opacity: 0.6;
}

/* ==============================================
   16. HOMEPAGE — LATEST NEWS GRID
   ============================================== */
.okz-latest {
  padding: var(--okz-gap-xl) 0;
}

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

.okz-load-more {
  text-align: center;
  margin-top: var(--okz-gap-lg);
}

.okz-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background: var(--okz-primary);
  color: var(--okz-text-inverse);
  border: none;
  border-radius: var(--okz-radius);
  font-family: var(--okz-font);
  font-size: var(--okz-fs-base);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--okz-transition-fast);
}

.okz-load-more-btn:hover {
  background: var(--okz-primary-dark);
}

.okz-load-more-btn--loading {
  opacity: 0.7;
  cursor: wait;
}

/* ==============================================
   17. REUSABLE CARD COMPONENT
   ============================================== */
.okz-card {
  background: var(--okz-surface-card);
  border-radius: var(--okz-radius);
  overflow: hidden;
  box-shadow: var(--okz-shadow-sm);
  transition: box-shadow var(--okz-transition), transform var(--okz-transition);
}

.okz-card:hover {
  box-shadow: var(--okz-shadow-md);
  transform: translateY(-2px);
}

.okz-card-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.okz-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--okz-transition);
}

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

.okz-card-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--okz-radius-sm);
  font-size: var(--okz-fs-xs);
  font-weight: 700;
  color: var(--okz-text-inverse);
}

.okz-card-body {
  padding: 1rem;
}

.okz-card-body h3 {
  font-size: var(--okz-fs-base);
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.okz-card-body h3 a {
  color: var(--okz-text);
  transition: color var(--okz-transition-fast);
}

.okz-card-body h3 a:hover {
  color: var(--okz-primary);
}

.okz-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--okz-fs-xs);
  color: var(--okz-text-muted);
}

.okz-card-meta svg {
  width: 12px;
  height: 12px;
  opacity: 0.6;
}

/* ==============================================
   18. SINGLE POST
   ============================================== */
.okz-single {
  padding: var(--okz-gap-lg) 0;
}

.okz-single-grid {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: var(--okz-gap-lg);
}

/* Breadcrumb */
.okz-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  font-size: var(--okz-fs-xs);
  color: var(--okz-text-muted);
  margin-bottom: var(--okz-gap);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--okz-border);
}

.okz-breadcrumb a {
  color: var(--okz-text-muted);
  transition: color var(--okz-transition-fast);
}

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

.okz-breadcrumb-sep {
  margin: 0 0.25rem;
  opacity: 0.5;
}

.okz-breadcrumb-current {
  color: var(--okz-text);
  font-weight: 600;
}

/* Article Header */
.okz-article-header {
  margin-bottom: var(--okz-gap);
}

.okz-article-cat-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--okz-radius-sm);
  font-size: var(--okz-fs-xs);
  font-weight: 700;
  color: var(--okz-text-inverse);
  margin-bottom: 0.75rem;
}

.okz-article-title {
  font-size: var(--okz-fs-4xl);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 1rem;
  color: var(--okz-text);
}

.okz-article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: var(--okz-fs-sm);
  color: var(--okz-text-muted);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--okz-border);
}

.okz-article-meta-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.okz-article-meta svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

/* Featured Image */
.okz-article-featured {
  border-radius: var(--okz-radius-lg);
  overflow: hidden;
  margin-bottom: var(--okz-gap);
}

.okz-article-featured img {
  width: 100%;
  height: auto;
}

/* Article Body */
.okz-article-body {
  font-size: var(--okz-fs-lg);
  line-height: 1.9;
  color: var(--okz-text);
}

.okz-article-body p {
  margin: 0 0 1.25rem;
}

.okz-article-body h2 {
  font-size: var(--okz-fs-2xl);
  margin: 2rem 0 1rem;
}

.okz-article-body h3 {
  font-size: var(--okz-fs-xl);
  margin: 1.5rem 0 0.75rem;
}

.okz-article-body img {
  border-radius: var(--okz-radius);
  margin: 1.5rem 0;
}

.okz-article-body blockquote {
  border-right: 4px solid var(--okz-primary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--okz-primary-light);
  border-radius: 0 var(--okz-radius) var(--okz-radius) 0;
  font-style: italic;
  color: var(--okz-secondary);
}

.okz-article-body ul,
.okz-article-body ol {
  padding-right: 1.5rem;
  margin: 1rem 0;
}

.okz-article-body li {
  margin-bottom: 0.5rem;
}

.okz-article-body a {
  color: var(--okz-primary);
  text-decoration: underline;
  text-decoration-color: rgba(26,143,184,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--okz-transition-fast);
}

.okz-article-body a:hover {
  text-decoration-color: var(--okz-primary);
}

/* Tags */
.okz-article-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--okz-gap);
  padding-top: var(--okz-gap);
  border-top: 1px solid var(--okz-border);
}

.okz-article-tags-label {
  font-size: var(--okz-fs-sm);
  font-weight: 700;
  color: var(--okz-secondary);
}

.okz-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--okz-surface);
  border-radius: var(--okz-radius-sm);
  font-size: var(--okz-fs-xs);
  font-weight: 500;
  color: var(--okz-text-muted);
  transition: all var(--okz-transition-fast);
}

.okz-tag:hover {
  background: var(--okz-primary-light);
  color: var(--okz-primary-dark);
}

/* Related Posts */
.okz-related {
  margin-top: var(--okz-gap-xl);
}

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

/* Sidebar */
.okz-sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
}

.okz-sidebar-widget {
  background: var(--okz-surface-card);
  border-radius: var(--okz-radius);
  padding: var(--okz-gap);
  margin-bottom: var(--okz-gap);
  box-shadow: var(--okz-shadow-sm);
}

.okz-sidebar-title {
  font-size: var(--okz-fs-md);
  font-weight: 700;
  color: var(--okz-secondary);
  margin: 0 0 var(--okz-gap-sm);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--okz-primary);
}

.okz-sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.okz-sidebar-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--okz-border-light);
}

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

.okz-sidebar-item-thumb {
  width: 72px;
  min-width: 72px;
  height: 54px;
  border-radius: var(--okz-radius-sm);
  overflow: hidden;
}

.okz-sidebar-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.okz-sidebar-item h4 {
  font-size: var(--okz-fs-sm);
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.okz-sidebar-item h4 a {
  transition: color var(--okz-transition-fast);
}

.okz-sidebar-item h4 a:hover {
  color: var(--okz-primary);
}


/* ==============================================
   19. ARCHIVE / CATEGORY
   ============================================== */
.okz-archive-header {
  padding: var(--okz-gap-lg) 0;
  background: linear-gradient(135deg, var(--okz-secondary) 0%, var(--okz-primary-dark) 100%);
  color: var(--okz-text-inverse);
  margin-bottom: var(--okz-gap-lg);
}

.okz-archive-header h1 {
  font-size: var(--okz-fs-3xl);
  margin: 0 0 0.25rem;
}

.okz-archive-count {
  font-size: var(--okz-fs-sm);
  opacity: 0.8;
}

.okz-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--okz-gap);
  padding: 0 0 var(--okz-gap-xl);
}

/* ==============================================
   20. FOOTER
   ============================================== */
/* CTA Band */
.okz-cta-band {
  background: var(--okz-primary);
  padding: var(--okz-gap-xl) 0 calc(var(--okz-gap-xl) + 2rem);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3rem), 0 100%);
  color: var(--okz-text-inverse);
  text-align: center;
}

.okz-cta-title {
  font-size: var(--okz-fs-2xl);
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.okz-cta-desc {
  font-size: var(--okz-fs-base);
  opacity: 0.85;
  margin: 0 0 var(--okz-gap);
}

.okz-cta-form {
  display: flex;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
  border-radius: var(--okz-radius);
  overflow: hidden;
  box-shadow: var(--okz-shadow-md);
}

.okz-cta-form input[type="email"] {
  flex: 1;
  height: 48px;
  padding: 0 1rem;
  border: none;
  font-family: var(--okz-font);
  font-size: var(--okz-fs-base);
  direction: rtl;
}

.okz-cta-form input[type="email"]:focus {
  outline: none;
}

.okz-cta-form button {
  height: 48px;
  padding: 0 1.5rem;
  border: none;
  background: var(--okz-accent);
  color: var(--okz-text-inverse);
  font-family: var(--okz-font);
  font-size: var(--okz-fs-base);
  font-weight: 700;
  cursor: pointer;
  transition: background var(--okz-transition-fast);
  white-space: nowrap;
}

.okz-cta-form button:hover {
  background: var(--okz-accent-dark);
}

/* Main Footer */
.okz-footer {
  background: var(--okz-footer-bg);
  color: var(--okz-footer-text);
  padding: var(--okz-gap-xl) 0;
  margin-top: -3rem;
}

.okz-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--okz-gap-lg);
}

.okz-footer-about img {
  height: 75px;
  width: auto;
  margin-bottom: var(--okz-gap-sm);
}

.okz-footer-about p {
  font-size: var(--okz-fs-sm);
  line-height: 1.8;
  opacity: 0.85;
  margin: 0 0 var(--okz-gap-sm);
}

.okz-footer-social {
  display: flex;
  gap: 0.5rem;
}

.okz-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--okz-footer-text);
  transition: all var(--okz-transition-fast);
}

.okz-footer-social a:hover {
  background: var(--okz-primary);
  color: var(--okz-text-inverse);
}

.okz-footer-social svg {
  width: 16px;
  height: 16px;
}

.okz-footer-heading {
  font-size: var(--okz-fs-md);
  font-weight: 700;
  color: var(--okz-text-inverse);
  margin: 0 0 var(--okz-gap-sm);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--okz-primary);
  display: inline-block;
}

.okz-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.okz-footer-links li {
  padding: 0.375rem 0;
}

.okz-footer-links a {
  font-size: var(--okz-fs-sm);
  color: var(--okz-footer-text);
  transition: color var(--okz-transition-fast);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.okz-footer-links a::before {
  content: '‹';
  opacity: 0.5;
  transition: opacity var(--okz-transition-fast);
}

.okz-footer-links a:hover {
  color: var(--okz-primary-light);
}

.okz-footer-links a:hover::before {
  opacity: 1;
}

/* Copyright Bar */
.okz-copyright {
  background: var(--okz-footer-dark);
  padding: 1rem 0;
  text-align: center;
  font-size: var(--okz-fs-xs);
  color: var(--okz-footer-text);
  opacity: 0.7;
}


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

.okz-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .okz-reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==============================================
   23. BREAKING NEWS TICKER
   ============================================== */
.okz-ticker {
  display: flex;
  align-items: center;
  height: 100%;
  overflow: hidden;
}

.okz-ticker-label {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.2rem 0.625rem;
  background: var(--okz-breaking);
  color: var(--okz-text-inverse);
  font-weight: 700;
  font-size: var(--okz-fs-xs);
  border-radius: var(--okz-radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
}

.okz-ticker-label svg {
  width: 12px;
  height: 12px;
}

.okz-ticker-wrap {
  flex: 1;
  overflow: hidden;
  margin-right: 0.75rem;
}

.okz-ticker-track {
  display: flex;
  direction: ltr;
  gap: 3rem;
  white-space: nowrap;
  will-change: transform;
}

.okz-ticker-track a {
  color: var(--okz-text-inverse);
  font-size: var(--okz-fs-xs);
  font-weight: 500;
  opacity: 0.9;
  transition: opacity var(--okz-transition-fast);
  flex-shrink: 0;
}

.okz-ticker-track a:hover {
  opacity: 1;
}


/* ==============================================
   25. PAGINATION
   ============================================== */
.okz-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: var(--okz-gap-lg) 0;
}

.okz-pagination a,
.okz-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.5rem;
  border-radius: var(--okz-radius-sm);
  font-size: var(--okz-fs-sm);
  font-weight: 600;
  transition: all var(--okz-transition-fast);
}

.okz-pagination a {
  background: var(--okz-surface-card);
  color: var(--okz-text);
  border: 1px solid var(--okz-border);
}

.okz-pagination a:hover {
  background: var(--okz-primary);
  color: var(--okz-text-inverse);
  border-color: var(--okz-primary);
}

.okz-pagination .current {
  background: var(--okz-primary);
  color: var(--okz-text-inverse);
  border: 1px solid var(--okz-primary);
}

.okz-pagination .dots {
  border: none;
  background: transparent;
  color: var(--okz-text-muted);
}

/* ==============================================
   26. UTILITY CLASSES
   ============================================== */
.okz-text-center { text-align: center; }
.okz-text-muted { color: var(--okz-text-muted); }
.okz-mt-0 { margin-top: 0; }
.okz-mb-0 { margin-bottom: 0; }

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

/* Border colors for category headers */
.okz-border-local { border-color: var(--okz-cat-local); }
.okz-border-sports { border-color: var(--okz-cat-sports); }
.okz-border-mix { border-color: var(--okz-cat-mix); }
.okz-border-economy { border-color: var(--okz-cat-economy); }
.okz-border-international { border-color: var(--okz-cat-international); }
.okz-border-tourism { border-color: var(--okz-cat-tourism); }
.okz-border-technology { border-color: var(--okz-cat-technology); }
.okz-border-entertainment { border-color: var(--okz-cat-entertainment); }

/* Text colors for category links */
.okz-color-local { color: var(--okz-cat-local); }
.okz-color-sports { color: var(--okz-cat-sports); }
.okz-color-mix { color: var(--okz-cat-mix); }
.okz-color-economy { color: var(--okz-cat-economy); }
.okz-color-international { color: var(--okz-cat-international); }
.okz-color-tourism { color: var(--okz-cat-tourism); }
.okz-color-technology { color: var(--okz-cat-technology); }
.okz-color-entertainment { color: var(--okz-cat-entertainment); }

/* ==============================================
   27. KADENCE OVERRIDES
   ============================================== */
.site-header {
  display: none !important;
}

.site-main {
  display: none !important;
}

.site-footer {
  display: none !important;
}

/* Hide Kadence breadcrumb */
.kadence-breadcrumbs {
  display: none !important;
}

/* Hide any Kadence entry header in single */
.entry-hero-layout-default {
  display: none !important;
}

/* ==============================================
   28. PRINT STYLES
   ============================================== */
@media print {
  .okz-topbar,
  .okz-logobar,
  .okz-navbar,
  .okz-sidebar,
  .okz-share,
  .okz-mobile-share,
  .okz-fab,
  .okz-cta-band,
  .okz-footer,
  .okz-copyright,
  .okz-related,
  .okz-mobile-overlay,
  .okz-search-overlay {
    display: none !important;
  }

  .okz-single-grid {
    grid-template-columns: 1fr;
  }

  .okz-article-body {
    font-size: 12pt;
  }

  body {
    background: white;
    color: black;
  }
}

/* ==============================================
   RESPONSIVE — TABLET (991px)
   ============================================== */
@media (max-width: 991px) {
  /* Hero */
  .okz-hero-grid {
    grid-template-columns: 1fr;
  }

  .okz-hero-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--okz-gap);
  }

  .okz-hero-slider {
    height: 320px;
  }

  .okz-hero-slide img {
    height: 320px;
  }

  .okz-hero-slide-title {
    font-size: var(--okz-fs-2xl);
  }

  /* Category strip */
  .okz-cat-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Most read */
  .okz-most-read-list {
    grid-template-columns: 1fr;
  }

  /* Category tabs grid */
  .okz-cat-tabs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Split */
  .okz-split-grid {
    grid-template-columns: 1fr;
  }

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

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

  /* Latest */
  .okz-latest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* Single */
  .okz-single-grid {
    grid-template-columns: 1fr;
  }

  .okz-sidebar {
    position: static;
  }

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

  /* Footer */
  .okz-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .okz-footer-about {
    grid-column: span 2;
  }

  /* Nav */
  .okz-nav {
    display: none;
  }

  .okz-mega-menu {
    display: none !important;
  }

  /* Navbar sticky on mobile — just the bar itself */
  .okz-navbar .okz-container {
    justify-content: flex-end;
  }

  /* Hamburger — pill with label on mobile */
  .okz-hamburger {
    display: flex;
    width: auto;
    height: 40px;
    border-radius: 9999px;
    padding: 0 1rem;
    gap: 0.4rem;
    background: var(--okz-secondary);
    border-color: transparent;
    color: var(--okz-text-inverse);
  }

  .okz-hamburger .okz-btn-label {
    display: inline;
    font-size: var(--okz-fs-xs);
    font-weight: 600;
    line-height: 1;
  }

  .okz-hamburger svg {
    width: 18px;
    height: 18px;
  }

  .okz-article-title {
    font-size: var(--okz-fs-2xl);
  }
}

/* ==============================================
   RESPONSIVE — MOBILE (767px)
   ============================================== */
@media (max-width: 767px) {
  :root {
    --okz-gap: 1rem;
    --okz-gap-lg: 1.5rem;
    --okz-gap-xl: 2rem;
  }

  /* Topbar */
  .okz-topbar-social {
    display: none;
  }

  /* Logo bar */
  .okz-logobar {
    height: 84px;
  }

  .okz-logo img {
    height: 68px;
  }

  /* Hero */
  .okz-hero-sidebar {
    grid-template-columns: 1fr;
  }

  .okz-hero-slider {
    height: 260px;
  }

  .okz-hero-slide img {
    height: 260px;
  }

  .okz-hero-slide-title {
    font-size: var(--okz-fs-xl);
  }

  .okz-hero-slide-content {
    padding: 3rem 1rem 1.25rem;
  }

  /* Category strip — stack columns with spacing */
  .okz-cat-strip-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .okz-cat-strip-col {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--okz-border);
  }

  .okz-cat-strip-col:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .okz-cat-strip-list-item {
    padding: 0.75rem 0;
  }

  .okz-cat-strip-list-item a {
    font-size: var(--okz-fs-base);
    line-height: 1.7;
  }

  /* Split cards */
  .okz-split-cards {
    grid-template-columns: 1fr;
  }

  /* Split side list — more breathing room */
  .okz-split-side-item {
    padding: 0.875rem 0;
  }

  .okz-split-side-content h3 {
    line-height: 1.7;
  }

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

  /* Latest */
  .okz-latest-grid {
    grid-template-columns: 1fr;
  }

  /* Archive */
  .okz-archive-grid {
    grid-template-columns: 1fr;
  }

  /* Category tabs */
  .okz-cat-tabs-grid {
    grid-template-columns: 1fr;
  }

  /* Related */
  .okz-related-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .okz-footer-grid {
    grid-template-columns: 1fr;
  }

  .okz-footer-about {
    grid-column: span 1;
  }

  /* CTA form */
  .okz-cta-form {
    flex-direction: column;
    border-radius: var(--okz-radius);
  }

  .okz-cta-form input[type="email"],
  .okz-cta-form button {
    width: 100%;
    border-radius: 0;
  }

  .okz-cta-form input[type="email"] {
    border-radius: var(--okz-radius) var(--okz-radius) 0 0;
  }

  .okz-cta-form button {
    border-radius: 0 0 var(--okz-radius) var(--okz-radius);
  }

/* Article title */
  .okz-article-title {
    font-size: var(--okz-fs-xl);
  }

  /* Article body */
  .okz-article-body {
    font-size: var(--okz-fs-base);
  }

  /* Archive header */
  .okz-archive-header h1 {
    font-size: var(--okz-fs-2xl);
  }

  /* Picks cards */
  .okz-picks-card {
    min-width: 200px;
    max-width: 200px;
  }

  /* Pagination */
  .okz-pagination a,
  .okz-pagination span {
    min-width: 36px;
    height: 36px;
  }
}

/* ==============================================
   RESPONSIVE — SMALL MOBILE (575px)
   ============================================== */
@media (max-width: 575px) {
  .okz-hero-arrows {
    display: none;
  }

  .okz-hero-slide-title {
    font-size: var(--okz-fs-lg);
  }

  .okz-topbar-date {
    font-size: 0.6875rem;
  }

  .okz-stories-grid {
    grid-template-columns: 1fr;
  }

  .okz-picks-card {
    min-width: 180px;
    max-width: 180px;
  }

  .okz-tabs {
    flex-wrap: wrap;
  }

  .okz-tab {
    padding: 0.375rem 0.875rem;
    font-size: var(--okz-fs-xs);
  }
}
