/* ================================================================
   ARTICLE PAGE — Premium Animated Stylesheet
   Design System: Standard Light Theme matching inner pages
   ================================================================ */

/* ---- CSS Variables ---- */
:root {
  --art-bg: #FFFFFF; /* Matches standard page-inner background */
  --art-surface: #ffffff;
  --art-surface-2: #f8f8f8;
  --art-border: rgba(17,17,17,0.08);
  --art-orange: #FF6A3A;
  --art-text-dark: #111111;
  --art-muted: #555555;
  --art-muted-2: #999999;
  --art-gradient: linear-gradient(135deg, #FF6A3A 0%, #ff9a3a 50%, #ffb347 100%);
  --art-radius: 20px;
  --art-radius-sm: 10px;
  --art-transition: 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
  --art-font: 'Instrument Sans', 'Inter', sans-serif;
  --art-serif: 'Playfair Display', Georgia, serif;
}

/* ---- Base ---- */
.art-page {
  background: var(--art-bg) !important;
  color: var(--art-text-dark) !important;
}

/* ================================================================
   HEADER (NAVBAR) OVERRIDES
   ================================================================ */
/* We keep standard light-themed navbar styling, matching all inner pages */
.art-header {
  border-bottom: 1px solid rgba(17, 17, 17, 0.05) !important;
}

/* ================================================================
   READING PROGRESS BAR
   ================================================================ */
.art-reading-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--art-gradient);
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px rgba(255,106,58,0.6);
}

/* ================================================================
   REVEAL ANIMATIONS
   ================================================================ */
.art-reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.art-reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

.art-reveal-card {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}

.art-reveal-card.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.art-card-hidden {
  opacity: 0 !important;
  transform: scale(0.95) !important;
  pointer-events: none;
}

/* ================================================================
   CATEGORIES FILTER
   ================================================================ */
.art-categories-section {
  padding: 0;
  position: sticky;
  top: 80px; /* Offset for sticky header height */
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--art-border);
  transition: top 0.4s ease;
}

.art-categories-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.art-categories-inner::-webkit-scrollbar { display: none; }

.art-categories-label {
  font-size: 12px;
  color: var(--art-muted);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.art-categories-list {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
}

.art-cat-btn {
  background: transparent;
  border: 1px solid var(--art-border);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--art-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.art-cat-btn:hover {
  border-color: var(--art-orange);
  color: var(--art-orange);
}

.art-cat-btn.active {
  background: var(--art-orange);
  border-color: var(--art-orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,106,58,0.3);
}

/* ================================================================
   SECTION LABELS
   ================================================================ */
.art-section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--art-orange);
      margin-bottom: 33px;
    margin-top: 20px;
}

.art-section-label-line {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--art-orange);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ================================================================
   FEATURED ARTICLE
   ================================================================ */
.art-featured-section {
  padding: 100px 0;
}

.art-featured-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border-radius: var(--art-radius);
  overflow: hidden;
  background: var(--art-surface) !important;
  border: 1px solid var(--art-border);
  text-decoration: none;
  position: relative;
  transition: box-shadow 0.4s, transform 0.4s;
  box-shadow: 0 15px 40px rgba(0,0,0,0.03);
}

.art-featured-card:hover {
  box-shadow: 0 30px 60px rgba(0,0,0,0.06), 0 0 0 1px rgba(255,106,58,0.15);
  transform: translateY(-8px);
  text-decoration: none;
}

.art-featured-img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.art-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.art-featured-card:hover .art-featured-img {
  transform: scale(1.06);
}

.art-featured-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.05), transparent 60%);
}

.art-featured-category-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--art-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
}

.art-featured-read-time {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(17,17,17,0.85);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.95);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
}

.art-featured-read-time svg {
  width: 14px;
  height: 14px;
}

/* Featured Content */
.art-featured-content {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.art-featured-content::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,106,58,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.art-featured-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.art-author-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--art-orange);
}

.art-author-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--art-text-dark) !important;
}

.art-meta-sep {
  color: var(--art-muted-2);
}

.art-pub-date {
  font-size: 12px;
  color: var(--art-muted) !important;
}

.art-featured-title {
  font-family: var(--art-serif);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--art-text-dark) !important;
  line-height: 1.25;
  margin: 0 0 20px;
  transition: color 0.3s;
}

.art-featured-card:hover .art-featured-title { color: var(--art-orange) !important; }

.art-featured-excerpt {
  font-size: 15px;
  line-height: 1.75;
  color: var(--art-muted) !important;
  margin: 0 0 32px;
  font-weight: 300;
}

.art-featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.art-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.art-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--art-orange);
  background: rgba(255,106,58,0.06);
  border: 1px solid rgba(255,106,58,0.15);
  padding: 4px 12px;
  border-radius: 50px;
  transition: all 0.3s;
}

.art-tag:hover {
  background: rgba(255,106,58,0.15);
}

.art-featured-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--art-orange);
  white-space: nowrap;
  transition: gap 0.3s;
}

.art-featured-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.art-featured-card:hover .art-featured-cta { gap: 14px; }
.art-featured-card:hover .art-featured-cta svg { transform: translateX(4px); }

/* ================================================================
   ARTICLES GRID & SEARCH BAR
   ================================================================ */
.art-grid-section {
  padding: 0 0 100px;
}

.art-grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

/* Light Search Box inline in header */
.art-search-box-wrap {
  flex: 1;
  max-width: 400px;
}

.art-search-box {
  display: flex;
  align-items: center;
  background: #f8f8f8;
  border: 1px solid var(--art-border);
  border-radius: 50px;
  padding: 8px 16px;
  transition: border-color 0.3s, background 0.3s;
}

.art-search-box:focus-within {
  border-color: var(--art-orange);
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.art-search-icon {
  width: 16px;
  height: 16px;
  color: var(--art-muted);
  margin-right: 10px;
}

.art-search-input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-size: 14px;
  color: var(--art-text-dark);
}

.art-search-input::placeholder {
  color: var(--art-muted-2);
}

.art-grid-count {
  font-size: 13px;
  color: var(--art-muted);
  font-weight: 500;
}

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

/* Article Card */
.art-card {
  background: var(--art-surface) !important;
  border-radius: var(--art-radius);
  border: 1px solid var(--art-border);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.art-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

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

/* Card Thumbnail */
.art-card-thumb {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.art-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

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

.art-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(248,248,248,0.4) 0%, transparent 50%);
  transition: opacity 0.4s;
}

.art-card:hover .art-card-overlay {
  background: linear-gradient(to top, rgba(255,106,58,0.05) 0%, transparent 100%);
}

.art-card-cat-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(17, 17, 17, 0.05);
  color: var(--art-text-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  transition: all 0.3s;
}

.art-card:hover .art-card-cat-badge {
  background: var(--art-orange);
  border-color: transparent;
  color: #fff;
}

/* Hover CTA overlay */
.art-card-hover-cta {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--art-orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s ease;
}

.art-card-hover-cta svg { width: 14px; height: 14px; }

.art-card:hover .art-card-hover-cta {
  transform: translateY(0);
  opacity: 1;
}

/* Card Body */
.art-card-body {
  padding: 28px;
}

.art-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.art-card-author {
  font-size: 12px;
  font-weight: 600;
  color: var(--art-orange);
}

.art-card-sep { color: var(--art-muted-2); font-size: 12px; }

.art-card-date,
.art-card-read {
  font-size: 12px;
  color: var(--art-muted);
}

.art-card-title {
  font-family: var(--art-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--art-text-dark) !important;
  line-height: 1.35;
  margin: 0 0 12px;
  transition: color 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.art-card:hover .art-card-title { color: var(--art-orange) !important; }

.art-card-excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: var(--art-muted);
  margin: 0 0 20px;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.art-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--art-border);
}

.art-card-tags { display: flex; gap: 6px; }

.art-card-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--art-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--art-muted);
  transition: all 0.3s;
  flex-shrink: 0;
}

.art-card-arrow svg { width: 14px; height: 14px; }

.art-card:hover .art-card-arrow {
  background: var(--art-orange);
  border-color: var(--art-orange);
  color: #fff;
  transform: scale(1.1);
}

/* Load More */
.art-load-more-wrap {
  text-align: center;
  padding-top: 60px;
}

.art-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 1px solid var(--art-border);
  border-radius: 50px;
  padding: 16px 40px;
  color: var(--art-text-dark);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  letter-spacing: 0.5px;
}

.art-load-more-btn:hover {
  background: var(--art-orange);
  border-color: var(--art-orange);
  color: #ffffff;
  box-shadow: 0 12px 40px rgba(255,106,58,0.3);
}

.art-load-more-icon svg { width: 16px; height: 16px; transition: transform 0.3s; }
.art-load-more-btn:hover .art-load-more-icon svg { transform: translateY(4px); }

/* ================================================================
   MARQUEE DIVIDER
   ================================================================ */
.art-marquee-section {
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid var(--art-border);
  border-bottom: 1px solid var(--art-border);
  background: var(--art-surface);
}

.art-marquee-track {
  overflow: hidden;
  white-space: nowrap;
}

.art-marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  animation: artMarqueeScroll 25s linear infinite;
}

.art-marquee-content span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--art-muted);
  white-space: nowrap;
  transition: color 0.3s;
}

.art-marquee-content span:hover { color: var(--art-text-dark); }

.art-marquee-dot {
  color: var(--art-orange) !important;
  font-size: 10px !important;
}

@keyframes artMarqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================================================================
   TRENDING SECTION
   ================================================================ */
.art-trending-section {
  padding: 100px 0;
}

.art-trending-header { margin-bottom: 60px; }

.art-trending-title {
  font-family: var(--art-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--art-text-dark) !important;
  margin: 0;
  letter-spacing: -1px;
}

.art-accent {
  color: var(--art-orange);
  font-style: italic;
}

.art-trending-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--art-border);
}

.art-trend-item {
  display: grid;
  grid-template-columns: 80px 1fr 50px;
  align-items: center;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--art-border);
  cursor: pointer;
  transition: background 0.3s, padding-left 0.3s;
  position: relative;
}

.art-trend-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0%;
  background: var(--art-orange);
  transition: height 0.4s ease;
  border-radius: 0 2px 2px 0;
}

.art-trend-item:hover::before { height: 100%; }

.art-trend-item:hover { padding-left: 20px; background: rgba(0,0,0,0.01); }

.art-trend-number {
  font-size: 48px;
  font-weight: 900;
      color: rgb(17 17 17 / 54%);
  line-height: 1;
  transition: color 0.3s, transform 0.3s;
  letter-spacing: -2px;
}

.art-trend-item:hover .art-trend-number {
  color: rgba(255,106,58,0.15);
  transform: scale(1.05);
}

.art-trend-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--art-orange);
  margin-bottom: 10px;
}

.art-trend-title {
  font-family: var(--art-serif);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.3;
}

.art-trend-title a {
  color: var(--art-text-dark) !important;
  text-decoration: none;
  transition: color 0.3s;
}

.art-trend-title a:hover { color: var(--art-orange) !important; }

.art-trend-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--art-muted);
}

.art-trend-sep { color: var(--art-muted-2); }

.art-trend-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--art-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--art-muted);
  transition: all 0.3s;
  flex-shrink: 0;
}

.art-trend-arrow svg { width: 18px; height: 18px; }

.art-trend-item:hover .art-trend-arrow {
  background: var(--art-orange);
  border-color: var(--art-orange);
  color: #fff;
  transform: rotate(-45deg);
}

/* ================================================================
   NEWSLETTER SECTION
   ================================================================ */
.art-newsletter-section {
  padding: 100px 0;
}

.art-newsletter-inner {
  background: #111111 !important;
  color: #ffffff !important;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
}

.art-newsletter-glow {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,106,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.art-newsletter-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,106,58,0.1);
  border: 1px solid rgba(255,106,58,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--art-orange);
}

.art-newsletter-icon svg { width: 28px; height: 28px; }

.art-newsletter-title {
  font-family: var(--art-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  color: #ffffff !important;
  margin: 0 0 16px;
  line-height: 1.15;
  letter-spacing: -1px;
}

.art-newsletter-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6) !important;
  margin: 0 0 28px;
  max-width: 480px;
}

.art-newsletter-perks {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.art-newsletter-perks span {
  font-size: 13px;
  color: rgba(255,255,255,0.7) !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.art-newsletter-perks .fas.fa-check {
  color: var(--art-orange);
  font-size: 11px;
}

/* Newsletter Form */
.art-newsletter-form { position: relative; }

.art-newsletter-field {
  display: flex;
  gap: 12px;
  max-width: 520px;
}

.art-newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 16px 24px;
  color: #ffffff !important;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
}

.art-newsletter-input::placeholder { color: rgba(255,255,255,0.4); }

.art-newsletter-input:focus {
  border-color: var(--art-orange);
  background: rgba(255,106,58,0.04);
}

.art-newsletter-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--art-orange);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.art-newsletter-btn:hover {
  background: #ff5520;
  box-shadow: 0 12px 40px rgba(255,106,58,0.4);
}

.art-newsletter-btn svg { width: 16px; height: 16px; transition: transform 0.3s; }
.art-newsletter-btn:hover svg { transform: translateX(4px); }

/* Success */
.art-newsletter-success {
  display: none;
  align-items: center;
  gap: 12px;
  color: #4ade80;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 24px;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 12px;
  animation: artSuccessFade 0.5s ease;
}

.art-newsletter-success.visible { display: flex; }

.art-newsletter-success .fas { font-size: 20px; }

.art-newsletter-privacy {
  font-size: 12px;
  color: rgba(255,255,255,0.4) !important;
  margin-top: 16px;
}

.art-newsletter-privacy a {
  color: var(--art-orange);
  text-decoration: none;
}

/* Newsletter Visual */
.art-newsletter-visual {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.art-nl-visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,106,58,0.15);
  animation: artRingPulse 4s ease-in-out infinite;
}

.art-nl-ring-1 { width: 200px; height: 200px; animation-delay: 0s; }
.art-nl-ring-2 { width: 150px; height: 150px; animation-delay: 0.8s; }
.art-nl-ring-3 { width: 100px; height: 100px; animation-delay: 1.6s; border-color: rgba(255,106,58,0.25); }

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

.art-nl-visual-center {
  width: 64px;
  height: 64px;
  background: var(--art-orange);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 32px rgba(255,106,58,0.4);
  animation: artCenterBob 3s ease-in-out infinite;
}

.art-nl-visual-center svg { width: 32px; height: 32px; }

/* ================================================================
   CTA SECTION
   ================================================================ */
.art-cta-section {
  padding: 0;
  overflow: hidden;
}

.art-cta-inner {
  background: var(--art-surface);
  border-top: 1px solid var(--art-border);
  padding: 120px 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.art-cta-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(100px, 20vw, 220px);
  font-weight: 900;
  color: rgba(17, 17, 17, 0.02);
  letter-spacing: -10px;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

.art-cta-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--art-orange);
  margin-bottom: 24px;
}

.art-cta-title {
  font-family: var(--art-serif);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  color: var(--art-text-dark) !important;
  margin: 0 0 24px;
  line-height: 1.0;
  letter-spacing: -3px;
}

.art-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--art-orange);
  text-decoration: none;
  position: relative;
  transition: gap 0.4s;
}

.art-cta-link-text {
  font-style: italic;
  border-bottom: 3px solid var(--art-orange);
  transition: letter-spacing 0.4s;
}

.art-cta-link-arrow {
  width: 56px;
  height: 56px;
  border: 2px solid var(--art-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}

.art-cta-link-arrow svg { width: 22px; height: 22px; }

.art-cta-link:hover .art-cta-link-arrow {
  background: var(--art-orange);
  color: #fff;
  transform: rotate(45deg) scale(1.1);
}

.art-cta-sub {
  font-size: 15px;
  color: var(--art-muted);
}


/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1200px) {
  .art-featured-card {
    grid-template-columns: 1fr;
  }

  .art-featured-img-wrap {
    min-height: 360px;
  }

  .art-featured-content {
    padding: 48px 40px;
  }

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

  .art-newsletter-inner {
    grid-template-columns: 1fr;
    padding: 60px;
    gap: 40px;
  }

  .art-newsletter-visual {
    display: none;
  }
}

@media (max-width: 900px) {
  .art-grid-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .art-search-box-wrap {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .art-categories-section {
    top: 70px;
  }

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

  .art-newsletter-inner {
    padding: 40px 28px;
  }

  .art-newsletter-field {
    flex-direction: column;
  }

  .art-newsletter-btn {
    width: 100%;
    justify-content: center;
  }

  .art-trend-item {
    grid-template-columns: 50px 1fr;
    gap: 16px;
  }

  .art-trend-arrow { display: none; }

  .art-categories-inner {
    padding: 16px 0;
  }

  .art-featured-content {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .art-trending-section { padding: 60px 0; }
  .art-newsletter-section { padding: 60px 0; }
  .art-grid-section { padding: 0 0 60px; }
  .art-featured-section { padding: 60px 0; }
  .art-cta-inner { padding: 80px 0; }
  .art-newsletter-perks { flex-direction: column; gap: 10px; }
}

/* ================================================================
   ARTICLE DETAILS — HEADER SECTION
   ================================================================ */
.art-det-header-section {
  padding: 60px 0 40px;
}

.art-det-header-inner {
  max-width: 860px;
}

/* Breadcrumb */
.art-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--art-muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.art-breadcrumb a {
  color: var(--art-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.art-breadcrumb a:hover { color: var(--art-orange); }

.art-breadcrumb-sep {
  display: flex;
  align-items: center;
  color: var(--art-muted-2);
}

.art-breadcrumb-sep svg { width: 14px; height: 14px; }

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

/* Category + Read Time badge row */
.art-det-badge-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.art-det-cat {
  background: var(--art-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}

.art-det-meta-sep { color: var(--art-muted-2); }

.art-det-readtime {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--art-muted);
}

.art-det-readtime svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Article Big Title */
.art-det-title {
  font-family: var(--art-serif);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: var(--art-text-dark) !important;
  margin: 0 0 32px;
}

/* Author bar */
.art-det-author-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--art-border);
  border-bottom: 1px solid var(--art-border);
  flex-wrap: wrap;
}

.art-det-author-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.art-det-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,106,58,0.3);
}

.art-det-author-name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--art-text-dark);
}

.art-det-author-role {
  display: block;
  font-size: 12px;
  color: var(--art-muted);
  margin-top: 2px;
}

.art-det-date {
  font-size: 13px;
  color: var(--art-muted);
}

.art-det-date strong { color: var(--art-text-dark); }

/* ================================================================
   ARTICLE DETAILS — HERO IMAGE
   ================================================================ */
.art-det-hero-section {
  padding: 40px 0;
}

.art-det-hero-wrapper {
  position: relative;
  border-radius: var(--art-radius);
  overflow: hidden;
  height: clamp(300px, 55vw, 620px);
  /* background: #eee; */
}

.art-det-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.1s linear;
  transform-origin: center top;
}

.art-det-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
}

/* ================================================================
   ARTICLE DETAILS — CONTENT BODY
   ================================================================ */
.art-det-content-section {
  padding: 60px 0;
}

.art-det-content-inner {
  font-family: var(--art-font);
}

.art-det-content-inner p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--art-muted);
  margin-bottom: 28px;
}

/* Drop Cap for first paragraph */
.art-dropcap::first-letter {
  float: left;
  font-family: var(--art-serif);
  font-size: 88px;
  font-weight: 900;
  line-height: 0.75;
  margin: 8px 16px 0 0;
  color: var(--art-orange);
}

/* Sub section headings */
.art-det-sub-section {
  margin: 48px 0;
}

.art-det-sub-title {
  font-family: var(--art-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--art-text-dark) !important;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(255,106,58,0.15);
}

/* Bulleted list */
.art-det-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.art-det-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16px;
  color: var(--art-muted);
  line-height: 1.7;
  padding: 16px 20px;
  background: rgba(255,106,58,0.03);
  border: 1px solid rgba(255,106,58,0.1);
  border-radius: 12px;
  transition: background 0.3s, border-color 0.3s;
}

.art-det-list li:hover {
  background: rgba(255,106,58,0.06);
  border-color: rgba(255,106,58,0.2);
}

.art-det-list li span {
  color: var(--art-orange);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Pull Quote */
.art-pullquote {
  margin: 48px 0;
  padding: 36px 48px;
  border-left: 4px solid var(--art-orange);
  background: linear-gradient(135deg, rgba(255,106,58,0.04) 0%, rgba(255,106,58,0.02) 100%);
  border-radius: 0 var(--art-radius) var(--art-radius) 0;
  position: relative;
}

.art-pullquote::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 32px;
  font-family: var(--art-serif);
  font-size: 120px;
  line-height: 1;
  color: rgba(255,106,58,0.15);
  pointer-events: none;
}

.art-pullquote-quote {
  font-family: var(--art-serif);
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  font-weight: 700;
  color: var(--art-text-dark);
  line-height: 1.5;
  margin-bottom: 16px;
}

.art-pullquote-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--art-orange);
  letter-spacing: 0.5px;
  font-style: normal;
}

/* Inline gallery */
.art-det-gallery {
  margin: 48px 0;
}

.art-det-gallery-thumb {
  position: relative;
  border-radius: var(--art-radius-sm);
  overflow: hidden;
  background: #f0f0f0;
}

.art-det-gallery-thumb img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.art-det-gallery-thumb:hover img { transform: scale(1.05); }

.art-det-gallery-caption {
  display: block;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--art-muted);
  font-style: italic;
  background: #f8f8f8;
  border-top: 1px solid var(--art-border);
}

/* Tags + Share footer */
.art-det-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 32px 0;
  margin-top: 40px;
  border-top: 1px solid var(--art-border);
  border-bottom: 1px solid var(--art-border);
}

.art-det-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.art-det-share {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--art-muted);
  font-weight: 600;
}

.share-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--art-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--art-muted);
  text-decoration: none;
  transition: all 0.3s;
}

.share-icon:hover {
  background: var(--art-orange);
  border-color: var(--art-orange);
  color: #fff;
  transform: scale(1.1);
}

/* Author Bio Card */
.art-author-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 36px 40px;
  margin-top: 40px;
  background: #f8f8f8;
  border-radius: var(--art-radius);
  border: 1px solid var(--art-border);
}

.art-author-card-avatar-wrap { flex-shrink: 0; }

.art-author-card-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,106,58,0.25);
}

.art-author-card-name {
  font-family: var(--art-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--art-text-dark);
  margin: 0 0 8px;
}

.art-author-card-bio {
  font-size: 14px;
  color: var(--art-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.art-author-card-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.art-author-card-socials a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--art-text-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.art-author-card-socials a:hover { color: var(--art-orange); }


/* ================================================================
   COMMENTS SECTION
   ================================================================ */
.art-comments-section {
  padding: 80px 0;
  border-top: 1px solid var(--art-border);
  background: var(--art-surface-2);
}

.art-comments-title {
  font-family: var(--art-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--art-text-dark);
  margin-bottom: 40px;
}

.art-comment-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--art-border);
}

.art-comment-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.art-comment-content { flex: 1; }

.art-comment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}

.art-comment-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--art-text-dark);
  margin: 0;
}

.art-comment-date {
  font-size: 12px;
  color: var(--art-muted-2);
}

.art-comment-text {
  font-size: 15px;
  color: var(--art-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.art-comment-reply {
  background: transparent;
  border: none;
  color: var(--art-orange);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.3s;
  letter-spacing: 0.3px;
}

.art-comment-reply:hover { opacity: 0.75; }

.art-comment-form-wrap {
  margin-top: 56px;
  background: #fff;
  padding: 40px;
  border-radius: var(--art-radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  border: 1px solid var(--art-border);
}

.art-comment-input,
.art-comment-textarea {
  width: 100%;
  background: var(--art-surface-2);
  border: 1px solid var(--art-border);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 15px;
  color: var(--art-text-dark);
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: var(--art-font);
  resize: none;
}

.art-comment-input:focus,
.art-comment-textarea:focus {
  outline: none;
  border-color: var(--art-orange);
  box-shadow: 0 0 0 3px rgba(255,106,58,0.08);
}

/* ================================================================
   RELATED ARTICLES SECTION
   ================================================================ */
.art-related-section {
  padding: 80px 0 100px;
  background: #fff;
}

.art-related-section .art-grid-header {
  margin-bottom: 48px;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
}

.art-related-section .art-trending-title {
  font-size: clamp(28px, 4vw, 48px);
  margin-top: 10px;
}

.art-related-swiper {
  padding-bottom: 56px !important;
  overflow: visible !important;
}

.art-related-swiper .swiper-wrapper {
  align-items: stretch;
}

.art-related-swiper .swiper-slide {
  height: auto;
}

.art-related-swiper .art-card {
  height: 100%;
}

.art-related-swiper .swiper-pagination {
  bottom: 0;
}

.art-related-swiper .swiper-pagination-bullet {
  background: var(--art-muted-2);
  opacity: 0.4;
  width: 8px;
  height: 8px;
  transition: all 0.35s;
}

.art-related-swiper .swiper-pagination-bullet-active {
  background: var(--art-orange);
  opacity: 1;
  width: 28px;
  border-radius: 4px;
}

/* ================================================================
   RESPONSIVE � ARTICLE DETAILS
   ================================================================ */
@media (max-width: 1024px) {
  .art-det-hero-wrapper { height: clamp(260px, 45vw, 500px); }
}

@media (max-width: 768px) {
  .art-det-header-section { padding: 40px 0 24px; }
  .art-det-title { letter-spacing: -0.5px; }
  .art-pullquote { padding: 28px 28px; }
  .art-author-card { flex-direction: column; padding: 28px 24px; }
  .art-det-gallery-thumb img { height: 200px; }
  .art-det-hero-wrapper { height: 260px; }
  .art-det-footer { flex-direction: column; align-items: flex-start; }
  .art-comment-form-wrap { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .art-dropcap::first-letter { font-size: 60px; margin: 6px 10px 0 0; }
  .art-det-badge-meta { flex-wrap: wrap; }
  .art-related-section { padding: 60px 0 80px; }
  .art-comments-section { padding: 60px 0; }
}


/* Force black text in content area - override all inline colors */
.art-det-content-inner [style*="color"] {
  color: #111111 !important;
}
.art-det-content-inner p, .art-det-content-inner span, .art-det-content-inner div, .art-det-content-inner li, .art-det-content-inner h1, .art-det-content-inner h2, .art-det-content-inner h3, .art-det-content-inner h4, .art-det-content-inner h5, .art-det-content-inner h6, .art-det-content-inner blockquote {
  color: #111111 !important;
}
