/* =============================================
   BLOG SAYFASI — STYLES
   ============================================= */

:root {
  --navy: #0a1628;
  --navy-mid: #132240;
  --navy-light: #1e3a5f;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-pale: rgba(201, 168, 76, 0.12);
  --white: #ffffff;
  --off-white: #f7f5f0;
  --gray-100: #f4f4f6;
  --gray-200: #e8e8ed;
  --gray-300: #d0d0d8;
  --gray-500: #8a8a9a;
  --gray-700: #4a4a5a;
  --black: #080d14;
  --shadow-sm: 0 2px 12px rgba(10,22,40,0.07);
  --shadow-md: 0 8px 32px rgba(10,22,40,0.11);
  --shadow-lg: 0 20px 60px rgba(10,22,40,0.17);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Poppins', sans-serif;

  /* Category colors */
  --cat-ceza: #c0392b;
  --cat-aile: #8e44ad;
  --cat-is: #2980b9;
  --cat-ticaret: #27ae60;
  --cat-gayrimenkul: #d35400;
  --cat-miras: #7f8c8d;
  --cat-vergi: #16a085;
}

[data-theme="dark"] {
  --white: #0f1923;
  --off-white: #111d2c;
  --gray-100: #162035;
  --gray-200: #1e2d45;
  --gray-300: #2a3d5c;
  --gray-500: #7a8a9a;
  --gray-700: #b0bac9;
  --black: #e8edf5;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background 0.4s, color 0.4s;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Scroll Progress ---- */
#scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 9998;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.1s;
}

/* ---- Custom Cursor ---- */
#cursor {
  width: 10px; height: 10px;
  background: var(--gold); border-radius: 50%;
  position: fixed; z-index: 9997; pointer-events: none;
  transform: translate(-50%, -50%); transition: transform 0.1s;
}
#cursor-follower {
  width: 38px; height: 38px;
  border: 1.5px solid var(--gold); border-radius: 50%;
  position: fixed; z-index: 9996; pointer-events: none;
  transform: translate(-50%, -50%);
  transition: all 0.14s ease; opacity: 0.55;
}
@media (max-width: 768px) { #cursor, #cursor-follower { display: none; } }

/* ========================================
   NAVBAR
   ======================================== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(10, 22, 40, 0.94);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.nav-container {
  max-width: 1400px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.logo-text { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: #fff; letter-spacing: 0.05em; }
.logo-amp { color: var(--gold); }
.logo-sub { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }
.nav-menu { display: flex; gap: 0.2rem; align-items: center; }
.nav-link { color: rgba(255,255,255,0.78); font-size: 0.82rem; font-weight: 500; padding: 0.5rem 0.85rem; border-radius: 8px; transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--gold); background: rgba(201,168,76,0.1); }
.nav-actions { display: flex; align-items: center; gap: 0.8rem; }
.nav-phone { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.7); font-size: 0.82rem; transition: var(--transition); }
.nav-phone:hover { color: var(--gold); }
.nav-phone i { color: var(--gold); }
.btn-whatsapp-nav { width: 38px; height: 38px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.1rem; transition: var(--transition); }
.btn-whatsapp-nav:hover { transform: scale(1.1); }
.btn-cta { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); font-size: 0.8rem; font-weight: 600; padding: 0.65rem 1.4rem; border-radius: 100px; transition: var(--transition); white-space: nowrap; }
.btn-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
#dark-mode-toggle { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); font-size: 0.9rem; transition: var(--transition); display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; }
#dark-mode-toggle:hover { color: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; border: none; background: none; border-radius: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,0.9); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================================
   BLOG HERO
   ======================================== */
.blog-hero {
  min-height: 52vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #080d14 0%, #0a1628 50%, #132240 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 60%, rgba(201,168,76,0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 30%, rgba(30,58,95,0.4) 0%, transparent 55%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center; padding: 3rem 2rem;
  max-width: 780px; width: 100%;
}
.breadcrumb {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.45); font-size: 0.78rem;
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--gold); transition: var(--transition); }
.breadcrumb a:hover { opacity: 0.8; }
.breadcrumb i { font-size: 0.6rem; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600; color: #fff; line-height: 1.15;
  margin-bottom: 1rem;
}
.hero-title .gold { color: var(--gold); font-style: italic; }
.hero-subtitle { color: rgba(255,255,255,0.55); font-size: 1rem; margin-bottom: 2.5rem; }
.hero-search { max-width: 560px; margin: 0 auto; }
.search-wrap {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 0.4rem 0.4rem 0.4rem 1.4rem;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}
.search-wrap:focus-within { border-color: var(--gold); background: rgba(255,255,255,0.1); }
.search-wrap i { color: rgba(255,255,255,0.4); font-size: 0.9rem; margin-right: 0.7rem; flex-shrink: 0; }
.search-wrap input {
  flex: 1; background: none; border: none; outline: none;
  color: #fff; font-family: var(--font-body); font-size: 0.88rem;
}
.search-wrap input::placeholder { color: rgba(255,255,255,0.35); }
.search-wrap button {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); border: none; cursor: pointer;
  padding: 0.65rem 1.4rem; border-radius: 100px;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  transition: var(--transition); white-space: nowrap;
}
.search-wrap button:hover { transform: scale(1.03); }

/* ========================================
   FILTER BAR
   ======================================== */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky; top: 80px; z-index: 100;
  box-shadow: 0 2px 20px rgba(10,22,40,0.06);
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1340px; margin: 0 auto; padding: 0 2rem; }
.filter-scroll {
  display: flex; gap: 0.5rem;
  padding: 1rem 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-scroll::-webkit-scrollbar { display: none; }
.filter-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  border-radius: 100px;
  border: 1.5px solid var(--gray-200);
  background: transparent;
  color: var(--gray-700);
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 500;
  cursor: pointer; white-space: nowrap;
  transition: var(--transition);
}
.filter-btn i { font-size: 0.75rem; }
.filter-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-pale); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ========================================
   BLOG LAYOUT
   ======================================== */
.blog-main { padding: 3.5rem 0 5rem; }
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

/* ========================================
   FEATURED ARTICLE
   ======================================== */
.featured-article {
  display: grid; grid-template-columns: 1.1fr 1fr;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 2.5rem;
  transition: var(--transition);
}
.featured-article:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.featured-img { position: relative; min-height: 320px; }
.featured-img-ph {
  width: 100%; height: 100%; min-height: 320px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: rgba(201,168,76,0.25);
  position: relative; overflow: hidden;
}
.img-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.07) 1px, transparent 1px);
  background-size: 30px 30px;
}
.featured-badge {
  position: absolute; top: 1.2rem; left: 1.2rem;
  background: var(--gold);
  color: var(--navy); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3em 0.9em; border-radius: 100px;
}
.featured-cat {
  position: absolute; bottom: 1.2rem; left: 1.2rem;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.85); font-size: 0.75rem; font-weight: 500;
  padding: 0.4em 0.9em; border-radius: 100px;
  display: flex; align-items: center; gap: 0.4rem;
}
.featured-cat i { color: var(--gold); font-size: 0.7rem; }
.featured-body { padding: 2.2rem; display: flex; flex-direction: column; justify-content: space-between; }
.article-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.article-meta span { font-size: 0.75rem; color: var(--gray-500); display: flex; align-items: center; gap: 0.35rem; }
.article-meta i { color: var(--gold); font-size: 0.7rem; }
.featured-title {
  font-family: var(--font-display);
  font-size: 1.65rem; font-weight: 600; line-height: 1.3;
  color: var(--black); margin-bottom: 1rem;
}
.featured-excerpt { font-size: 0.88rem; color: var(--gray-500); line-height: 1.8; margin-bottom: 1.5rem; flex: 1; }
.featured-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-top: auto; }
.author-wrap { display: flex; align-items: center; gap: 0.75rem; }
/* .author-av {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
  border: 2px solid rgba(201,168,76,0.3);
}
  */
.author-wrap strong { display: block; font-size: 0.85rem; }
.author-wrap span { font-size: 0.75rem; color: var(--gray-500); }
.btn-read-more {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); font-weight: 600; font-size: 0.82rem;
  padding: 0.7rem 1.4rem; border-radius: 100px;
  transition: var(--transition);
}
.btn-read-more:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-read-more i { transition: transform 0.3s; }
.btn-read-more:hover i { transform: translateX(4px); }

/* ========================================
   SORT BAR
   ======================================== */
.sort-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0; margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}
.results-count { font-size: 0.85rem; color: var(--gray-500); }
.results-count span { font-weight: 700; color: var(--gold); font-size: 1rem; }
.sort-options { display: flex; align-items: center; gap: 0.7rem; font-size: 0.82rem; color: var(--gray-500); }
.sort-options select {
  background: var(--gray-100); border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); padding: 0.45rem 0.9rem;
  font-family: var(--font-body); font-size: 0.82rem; color: var(--black);
  cursor: pointer; outline: none; transition: var(--transition);
}
.sort-options select:focus { border-color: var(--gold); }

/* ========================================
   ARTICLES GRID
   ======================================== */
.articles-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}
.article-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201,168,76,0.25); }
.article-card.hidden { display: none; }
.card-img {
    position: relative;
    overflow: hidden;
    height: 190px; /* KRİTİK */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.card-img-ph {
  width: 100%; height: 190px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem; transition: transform 0.5s;
  
}
.article-card:hover .card-img-ph { transform: scale(1.06); }
.cat-ceza { background: linear-gradient(135deg, #1a0a09, #3d1210); color: rgba(192,57,43,0.35); }
.cat-aile { background: linear-gradient(135deg, #1a0e25, #2e1645); color: rgba(142,68,173,0.35); }
.cat-is { background: linear-gradient(135deg, #091626, #0f2d4a); color: rgba(41,128,185,0.35); }
.cat-ticaret { background: linear-gradient(135deg, #091a10, #102e1a); color: rgba(39,174,96,0.35); }
.cat-gayrimenkul { background: linear-gradient(135deg, #1f1008, #3d2010); color: rgba(211,84,0,0.35); }
.cat-miras { background: linear-gradient(135deg, #111214, #1f2224); color: rgba(127,140,141,0.35); }
.cat-vergi { background: linear-gradient(135deg, #06181a, #0e2e30); color: rgba(22,160,133,0.35); }
.card-cat {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3em 0.8em; border-radius: 100px;
  background: rgba(10,22,40,0.82); backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.85);
}
.card-body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.card-meta { display: flex; gap: 0.8rem; margin-bottom: 0.7rem; }
.card-meta span { font-size: 0.72rem; color: var(--gray-500); display: flex; align-items: center; gap: 0.3rem; }
.card-meta i { color: var(--gold); font-size: 0.65rem; }
.card-body h3 { font-size: 0.95rem; font-weight: 600; line-height: 1.5; margin-bottom: 0.7rem; color: var(--black); }
.card-body p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.75; margin-bottom: 1.2rem; flex: 1; }
.card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.card-author { display: flex; align-items: center; gap: 0.55rem; }
.auth-av {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.7rem;
}
.auth-av.female { background: linear-gradient(135deg, #2a1f3d, #3d2a5a); }
.card-author span { font-size: 0.75rem; font-weight: 500; color: var(--gray-700); }
.card-link {
  font-size: 0.78rem; font-weight: 600; color: var(--navy-light);
  display: inline-flex; align-items: center; gap: 0.35rem;
  transition: var(--transition);
}
.card-link:hover { color: var(--gold); gap: 0.65rem; }

/* ========================================
   NO RESULTS
   ======================================== */
.no-results {
  text-align: center; padding: 4rem 2rem;
  color: var(--gray-500);
}
.no-results i { font-size: 3rem; color: var(--gray-300); margin-bottom: 1rem; display: block; }
.no-results h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--gray-700); }
.no-results.hidden { display: none; }

/* ========================================
   PAGINATION
   ======================================== */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; margin-top: 3rem;
}
.page-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: var(--white); color: var(--gray-700);
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 500;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.page-btn:hover { border-color: var(--gold); color: var(--gold); }
.page-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.page-dots { color: var(--gray-500); padding: 0 0.3rem; }
.page-next {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0 1.2rem; height: 42px;
  border-radius: 100px;
  border: 1.5px solid var(--gray-200);
  background: var(--white); color: var(--gray-700);
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 500;
  cursor: pointer; transition: var(--transition);
}
.page-next:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ========================================
   SIDEBAR
   ======================================== */
.blog-sidebar { display: flex; flex-direction: column; gap: 1.8rem; position: sticky; top: 140px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
}
.widget-title {
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--black); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.widget-title i { color: var(--gold); }

/* Author Widget */
.author-widget { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); border-color: rgba(201,168,76,0.2); }
.author-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.9rem; }
.author-big-av {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: rgba(201,168,76,0.15);
  border: 2px solid rgba(201,168,76,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.3rem;
}
.author-header h3 { color: #fff; font-size: 1rem; font-weight: 600; }
.author-header span { font-size: 0.75rem; color: var(--gold); }
.author-widget p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 1.2rem; }
.author-stats { display: flex; justify-content: space-around; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1rem; }
.author-stats div { text-align: center; }
.author-stats strong { display: block; font-size: 1.2rem; color: var(--gold); font-family: var(--font-display); }
.author-stats span { font-size: 0.72rem; color: rgba(255,255,255,0.4); }

/* Newsletter Widget */
.newsletter-widget { background: var(--gold-pale); border-color: rgba(201,168,76,0.25); }
.widget-icon { font-size: 2rem; color: var(--gold); margin-bottom: 0.8rem; }
.newsletter-widget h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }
.newsletter-widget p { font-size: 0.82rem; color: var(--gray-500); margin-bottom: 1rem; line-height: 1.7; }
.newsletter-form { display: flex; gap: 0.5rem; }
.newsletter-form input {
  flex: 1; background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); padding: 0.65rem 0.9rem;
  font-family: var(--font-body); font-size: 0.82rem; color: var(--black);
  outline: none; transition: var(--transition);
}
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  width: 44px; height: 44px; border-radius: var(--radius-sm); flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: var(--transition);
}
.newsletter-form button:hover { transform: scale(1.07); }
.newsletter-note { font-size: 0.75rem; color: var(--gold); margin-top: 0.6rem; }

/* Popular Posts */
.popular-list { display: flex; flex-direction: column; gap: 0.9rem; }
.popular-item { display: flex; align-items: flex-start; gap: 0.8rem; transition: var(--transition); padding: 0.6rem; border-radius: var(--radius-sm); }
.popular-item:hover { background: var(--gold-pale); }
.popular-num {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  color: var(--gray-300); line-height: 1; flex-shrink: 0;
  transition: var(--transition); min-width: 28px;
}
.popular-item:hover .popular-num { color: var(--gold); }
.popular-item strong { display: block; font-size: 0.8rem; font-weight: 600; line-height: 1.4; margin-bottom: 0.25rem; color: var(--black); }
.popular-item span { font-size: 0.72rem; color: var(--gray-500); display: flex; align-items: center; gap: 0.3rem; }
.popular-item span i { color: var(--gold); font-size: 0.65rem; }

/* Tags Cloud */
.tags-cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag-item {
  font-size: 0.75rem; font-weight: 500;
  padding: 0.35em 0.9em; border-radius: 100px;
  background: var(--gray-100); border: 1px solid var(--gray-200);
  color: var(--gray-700); transition: var(--transition); cursor: pointer;
}
.tag-item:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* CTA Widget */
.cta-widget {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-color: rgba(201,168,76,0.25);
  text-align: center;
}
.cta-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 0.8rem; }
.cta-widget h4 { color: #fff; font-size: 1.1rem; margin-bottom: 0.5rem; }
.cta-widget p { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 1.2rem; line-height: 1.7; }
.btn-cta-widget {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); font-weight: 600; font-size: 0.82rem;
  padding: 0.75rem 1.2rem; border-radius: 100px;
  transition: var(--transition); margin-bottom: 0.8rem;
}
.btn-cta-widget:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.phone-cta {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  color: rgba(255,255,255,0.55); font-size: 0.82rem;
  transition: var(--transition);
}
.phone-cta:hover { color: var(--gold); }
.phone-cta i { color: var(--gold); }

/* ========================================
   FOOTER
   ======================================== */
.footer { background: var(--navy); color: rgba(255,255,255,0.65); }
.footer-top { padding: 4rem 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; }
.footer-logo { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.6rem; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); font-size: 0.85rem; transition: var(--transition); }
.footer-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-col h4 { color: #fff; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-info > div { display: flex; align-items: flex-start; gap: 0.7rem; margin-bottom: 0.8rem; font-size: 0.85rem; }
.footer-contact-info i { color: var(--gold); width: 16px; flex-shrink: 0; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.8rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-legal a:hover { color: var(--gold); }

/* ========================================
   FLOATING BUTTONS
   ======================================== */
.whatsapp-float { position: fixed; bottom: 6rem; right: 1.8rem; z-index: 900; width: 56px; height: 56px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); }
.wa-pulse { position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(37,211,102,0.6); animation: wa-pulse 2s ease-in-out infinite; }
@keyframes wa-pulse { 0%,100%{transform:scale(1);opacity:0.8} 50%{transform:scale(1.25);opacity:0} }
.back-to-top { position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 900; width: 46px; height: 46px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); border: 1px solid rgba(201,168,76,0.3); font-size: 0.9rem; box-shadow: var(--shadow-md); transition: var(--transition); opacity: 0; visibility: hidden; transform: translateY(20px); cursor: pointer; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--navy); }

/* ========================================
   DARK MODE
   ======================================== */
[data-theme="dark"] .article-card,
[data-theme="dark"] .featured-article,
[data-theme="dark"] .sidebar-widget,
[data-theme="dark"] .sort-options select { background: var(--gray-100); border-color: var(--gray-200); }
[data-theme="dark"] .filter-bar { background: var(--gray-100); border-color: var(--gray-200); }
[data-theme="dark"] .newsletter-form input { background: var(--gray-200); border-color: var(--gray-300); }
[data-theme="dark"] .page-btn, [data-theme="dark"] .page-next { background: var(--gray-100); border-color: var(--gray-200); }
[data-theme="dark"] .tag-item { background: var(--gray-200); border-color: var(--gray-300); }
[data-theme="dark"] .author-widget,
[data-theme="dark"] .cta-widget { background: linear-gradient(135deg, #162035, #1e3255); }
[data-theme="dark"] .newsletter-widget { background: rgba(201,168,76,0.07); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1100px) {
  .blog-layout { grid-template-columns: 1fr 300px; gap: 2rem; }
}
@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .featured-article { grid-template-columns: 1fr; }
  .featured-img { min-height: 240px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav-menu, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .nav-menu.mobile-open { display: flex; flex-direction: column; position: fixed; top: 80px; left: 0; right: 0; background: rgba(10,22,40,0.98); backdrop-filter: blur(20px); padding: 2rem; gap: 0.5rem; border-bottom: 1px solid rgba(201,168,76,0.2); }
  .nav-menu.mobile-open .nav-link { color: rgba(255,255,255,0.8); padding: 0.8rem 1rem; border-radius: 10px; font-size: 1rem; }
}
@media (max-width: 640px) {
  .articles-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-cta { display: none; }
  .container-wide { padding: 0 1rem; }
}
