/*
Theme Name: Balık Rehberi
Theme URI: https://balikrehberi.tr
Author: Balık Rehberi Ekibi
Description: Amatör ve profesyonel balıkçılar için özel tasarlanmış; spin, lrf, surfcasting, jigging, mera rehberleri, balık türleri ve av raporlarını içeren modern, hızlı ve mobil uyumlu WordPress blog teması.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: balik-rehberi
*/

:root {
  --primary-deep: #06182C;
  --primary: #0C3358;
  --primary-light: #1A5A96;
  --teal: #0891B2;
  --teal-light: #E0F2FE;
  --accent: #EA580C;
  --accent-hover: #C2410C;
  --accent-soft: #FFF7ED;
  --bg-page: #F4F7FB;
  --surface: #FFFFFF;
  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --shadow-sm: 0 2px 8px rgba(12, 51, 88, 0.05);
  --shadow-md: 0 8px 24px rgba(12, 51, 88, 0.08);
  --shadow-hover: 0 14px 30px rgba(12, 51, 88, 0.14);
  --transition: all 0.25s ease-in-out;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-page);
  line-height: 1.65;
  font-size: 15px;
  overflow-x: hidden;
}

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* TOP BAR */
.blog-top-bar {
  background: var(--primary-deep);
  color: #94A3B8;
  font-size: 13px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.blog-top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.top-bar-tip {
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-bar-badge {
  background: var(--accent);
  color: #FFF;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 11px;
}
.top-bar-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.top-bar-links a {
  color: #CBD5E1;
  font-size: 12px;
}
.top-bar-links a:hover {
  color: #FFF;
}

/* HEADER */
.site-header {
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-main {
  padding: 18px 0;
}
.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-branding {
  display: flex;
  flex-direction: column;
}
.site-title {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin: 0;
  line-height: 1.1;
}
.site-title a {
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-title span {
  color: var(--accent);
}
.site-tagline {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 3px;
}

/* SEARCH IN HEADER */
.blog-search-wrap {
  flex: 1;
  max-width: 440px;
}
.search-form {
  display: flex;
  position: relative;
  width: 100%;
}
.search-form input[type="search"] {
  width: 100%;
  padding: 11px 90px 11px 18px;
  border: 1.5px solid var(--border);
  border-radius: 25px;
  outline: none;
  font-size: 13.5px;
  background: var(--bg-page);
  transition: var(--transition);
}
.search-form input[type="search"]:focus {
  border-color: var(--primary);
  background: #FFF;
  box-shadow: 0 0 0 3px rgba(12, 51, 88, 0.12);
}
.search-form button {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  padding: 0 18px;
  border-radius: 20px;
  background: var(--primary);
  color: #FFF;
  border: none;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}
.search-form button:hover {
  background: var(--accent);
}

/* HEADER ACTION & CTA */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-subscribe-header {
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(234, 88, 12, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-subscribe-header:hover {
  background: var(--accent);
  color: #FFF;
}

/* MOBILE TOGGLES (PC'de Gizli) */
.mobile-nav-toggle,
.mobile-search-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
}

/* NAVIGATION */
.main-navigation {
  background: var(--primary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.nav-menu li {
  position: relative;
}
.nav-menu li a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  color: #E2E8F0;
  font-weight: 600;
  font-size: 14px;
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item > a {
  background: rgba(255, 255, 255, 0.12);
  color: #FFF;
}
/* Submenu */
.nav-menu ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  min-width: 220px;
  list-style: none;
  display: none;
  z-index: 100;
  border: 1px solid var(--border);
}
.nav-menu ul li a {
  color: var(--text-main);
  padding: 11px 18px;
  font-size: 13.5px;
  border-bottom: 1px solid var(--border-light);
}
.nav-menu ul li a:hover {
  background: var(--teal-light);
  color: var(--primary);
}
.nav-menu li:hover > ul {
  display: block;
}

/* BREAKING NEWS TICKER BAR (KAYAN YAZI) */
.breaking-ticker-bar {
  background: #041324;
  color: #E2E8F0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
  z-index: 99;
}
.ticker-container {
  display: flex;
  align-items: center;
  height: 42px;
  gap: 16px;
}
.ticker-badge {
  background: var(--accent);
  color: #FFF;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.4);
  position: relative;
  z-index: 5;
}
.ticker-badge-text {
  display: inline-block;
  white-space: nowrap;
}
.ticker-badge-icon {
  display: none;
}
.ticker-track-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,1) 2%, rgba(0,0,0,1) 98%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,1) 2%, rgba(0,0,0,1) 98%, transparent 100%);
}
.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: tickerSlide 35s linear infinite;
  will-change: transform;
}
.ticker-track:hover {
  animation-play-state: paused;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  font-size: 13.5px;
  font-weight: 600;
  color: #CBD5E1;
  padding: 0 4px;
}
.ticker-item a {
  color: #E2E8F0;
  transition: var(--transition);
}
.ticker-item a:hover {
  color: #FFB366;
  text-decoration: underline;
}
.ticker-dot {
  color: var(--accent);
  margin: 0 16px;
  font-size: 14px;
  font-weight: 900;
}

@keyframes tickerSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* HERO MAGAZINE SECTION */
.hero-magazine-wrap {
  padding: 30px 0 10px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 24px;
}

/* BIG LEAD CARD */
.hero-lead-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px;
  color: #FFF;
  box-shadow: var(--shadow-md);
  background-size: cover;
  background-position: center;
  background-color: var(--primary);
}
.hero-lead-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 24, 44, 0.1) 0%, rgba(6, 24, 44, 0.85) 70%, rgba(6, 24, 44, 0.98) 100%);
  z-index: 1;
}
.hero-lead-card > * {
  position: relative;
  z-index: 2;
}
.hero-lead-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  margin: 12px 0 10px;
}
.hero-lead-title a {
  color: #FFF;
}
.hero-lead-title a:hover {
  color: #FFB366;
}
.hero-lead-excerpt {
  color: #E2E8F0;
  font-size: 14.5px;
  margin-bottom: 15px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* HERO SIDE CARDS */
.hero-side-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-side-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #FFF;
  box-shadow: var(--shadow-sm);
  background-size: cover;
  background-position: center;
  background-color: var(--primary-light);
}
.hero-side-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 24, 44, 0.1) 0%, rgba(6, 24, 44, 0.85) 60%, rgba(6, 24, 44, 0.96) 100%);
  z-index: 1;
}
.hero-side-card > * {
  position: relative;
  z-index: 2;
}
.hero-side-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 8px;
}
.hero-side-title a {
  color: #FFF;
}
.hero-side-title a:hover {
  color: #FFB366;
}

/* CATEGORY BADGES */
.cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--accent);
  color: #FFF !important;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 20px;
}
.cat-badge.spin { background: #0284C7; }
.cat-badge.mera { background: #059669; }
.cat-badge.lrf  { background: #7C3AED; }
.cat-badge.ekipman { background: #D97706; }

/* POST META */
.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.85);
  flex-wrap: wrap;
}
.post-meta.dark {
  color: var(--text-muted);
}
.post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* QUICK TOPICS / CHIPS */
.topics-bar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  margin: 30px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  box-shadow: var(--shadow-sm);
}
.topics-label {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--primary);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.topic-chip {
  background: var(--bg-page);
  color: var(--text-main);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.topic-chip:hover {
  background: var(--primary);
  color: #FFF;
  border-color: var(--primary);
}

/* MAIN CONTENT WITH SIDEBAR LAYOUT */
.main-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 35px;
  margin: 35px 0 60px;
}
.content-area {
  min-width: 0;
}

/* SECTION HEADER */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.section-title {
  font-size: 21px;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background: var(--accent);
  border-radius: 2px;
}

/* BLOG FEED (LIST & GRID) */
.blog-feed {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* HORIZONTAL BLOG CARD */
.blog-feed-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 280px 1fr;
  transition: var(--transition);
}
.blog-feed-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: #CBD5E1;
}
.feed-thumb {
  position: relative;
  background: #E2E8F0;
  overflow: hidden;
  height: 100%;
  min-height: 190px;
}
.feed-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.blog-feed-card:hover .feed-thumb img {
  transform: scale(1.06);
}
.feed-thumb .cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}
.feed-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.feed-title {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
  margin: 8px 0 10px;
}
.feed-title a {
  color: var(--primary);
}
.feed-title a:hover {
  color: var(--accent);
}
.feed-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.feed-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
  font-size: 12.5px;
}
.read-more-link {
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
}
.read-more-link:hover {
  color: var(--accent);
  gap: 8px;
}

/* SIDEBAR WIDGETS */
.sidebar-area {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.widget-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.widget-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--teal-light);
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

/* AUTHOR PROFILE WIDGET */
.author-widget-avatar {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  margin-bottom: 12px;
  object-fit: cover;
}
.author-widget-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--primary);
}
.author-widget-title {
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.author-widget-bio {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 15px;
}

/* NEWSLETTER / SUBSCRIBE BOX */
.newsletter-widget {
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #FFF;
  border: none;
}
.newsletter-widget .widget-title {
  color: #FFF;
  border-bottom-color: rgba(255, 255, 255, 0.15);
}
.newsletter-widget p {
  font-size: 13.5px;
  color: #CBD5E1;
  margin-bottom: 15px;
  line-height: 1.5;
}
.newsletter-form input[type="email"] {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 10px;
  font-size: 13px;
  outline: none;
}
.newsletter-form button {
  width: 100%;
  background: var(--accent);
  color: #FFF;
  border: none;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-form button:hover {
  background: var(--accent-hover);
}

/* POPULAR POSTS LIST IN SIDEBAR */
.side-post-item {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-light);
}
.side-post-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.side-post-thumb {
  width: 70px;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: #E2E8F0;
}
.side-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.side-post-info h5 {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
}
.side-post-info h5 a {
  color: var(--text-main);
}
.side-post-info h5 a:hover {
  color: var(--accent);
}
.side-post-date {
  font-size: 11.5px;
  color: var(--text-light);
}

/* CATEGORY LIST WIDGET */
.widget-cat-list {
  list-style: none;
}
.widget-cat-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}
.widget-cat-list li a {
  color: var(--text-main);
  font-weight: 600;
}
.widget-cat-list li a:hover {
  color: var(--accent);
  padding-left: 4px;
}
.widget-cat-count {
  background: var(--bg-page);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 700;
}

/* SINGLE POST STYLING */
.single-post-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 35px;
}
.single-post-header {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.single-post-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.25;
  margin: 14px 0 15px;
}
.single-featured-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}
.article-body {
  font-size: 16px;
  line-height: 1.85;
  color: #1E293B;
}
.article-body p {
  margin-bottom: 1.4em;
}
.article-body h2 {
  font-size: 24px;
  color: var(--primary);
  margin: 1.8em 0 0.8em;
  font-weight: 800;
}
.article-body h3 {
  font-size: 20px;
  color: var(--primary-light);
  margin: 1.5em 0 0.6em;
  font-weight: 700;
}
.article-body blockquote {
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
  padding: 16px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 25px 0;
  font-style: italic;
  color: #7C2D12;
}
.article-body .callout-tip {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 25px 0;
  font-size: 14.5px;
}

/* AUTHOR BIO BOX IN SINGLE POST */
.post-author-box {
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 35px 0;
}
.author-box-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  object-fit: cover;
  flex-shrink: 0;
}
.author-box-info h4 {
  font-size: 18px;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 4px;
}
.author-box-info p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* COMMENTS */
.comments-area {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-sm);
}
.comments-title {
  font-size: 21px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.comment-list {
  list-style: none;
  margin-bottom: 30px;
}
.comment-list .comment {
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
}
.comment-author {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.comment-metadata {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* PAGINATION */
.pagination, .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 35px 0;
}
.pagination .page-numbers, .nav-links .page-numbers {
  padding: 9px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-weight: 700;
  font-size: 14px;
}
.pagination .page-numbers.current, .nav-links .page-numbers.current {
  background: var(--primary);
  color: #FFF;
  border-color: var(--primary);
}
.pagination .page-numbers:hover, .nav-links .page-numbers:hover {
  background: var(--accent);
  color: #FFF;
  border-color: var(--accent);
}

/* FOOTER */
.site-footer {
  background: var(--primary-deep);
  color: #94A3B8;
  padding: 60px 0 25px;
  margin-top: 60px;
  border-top: 4px solid var(--accent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 35px;
  margin-bottom: 40px;
}
.footer-widget-title {
  color: #FFF;
  font-size: 16.5px;
  font-weight: 800;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}
.footer-widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2.5px;
  background: var(--accent);
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 9px;
}
.footer-links li a {
  color: #94A3B8;
  font-size: 14px;
}
.footer-links li a:hover {
  color: var(--accent);
  padding-left: 4px;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  font-size: 13px;
  color: #64748B;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-side-grid {
    flex-direction: row;
  }
  .hero-side-card {
    flex: 1;
  }
  .main-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .blog-top-bar {
    display: none;
  }
  
  /* MOBİL HEADER DÜZENİ: SOLDA MENÜ İKONU | YANINDA LOGO | EN SAĞDA ARAMA */
  .header-main {
    padding: 10px 0;
  }
  .header-main .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 8px;
    position: relative;
  }
  .mobile-nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    order: 1;
    font-size: 24px;
    padding: 4px 6px;
    border: none;
    background: transparent;
    color: var(--primary);
    cursor: pointer;
  }
  .site-branding {
    order: 2;
    margin-right: auto;
    margin-left: 6px;
  }
  .site-branding .site-title {
    font-size: 19px;
    white-space: nowrap;
  }
  .site-branding .site-tagline {
    display: none;
  }
  .header-actions {
    order: 3;
    display: flex;
    align-items: center;
  }
  .header-actions .btn-subscribe-header {
    display: none !important;
  }
  .mobile-search-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-page);
    border: 1px solid var(--border);
    cursor: pointer;
    color: var(--primary);
    transition: var(--transition);
  }
  .mobile-search-toggle:hover {
    background: var(--primary);
    color: #FFF;
  }
  .blog-search-wrap {
    display: none;
    order: 4;
  }
  .blog-search-wrap.is-active {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    padding: 12px 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    z-index: 1001;
    border-top: 1px solid var(--border);
  }
  .blog-search-wrap.is-active .search-form input[type="search"] {
    width: 100%;
  }

  .main-navigation {
    display: none;
    width: 100%;
  }
  .main-navigation.is-active {
    display: block;
  }
  .nav-menu {
    flex-direction: column;
  }
  .nav-menu li a {
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-menu ul {
    position: static;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    border-radius: 0;
  }
  .nav-menu ul li a {
    color: #FFF;
    padding-left: 32px;
  }

  /* MOBİLDE ÇAPA İŞARETİ (TICKER) */
  .ticker-badge {
    padding: 4px 10px;
    font-size: 16px;
  }
  .ticker-badge-text {
    display: none !important;
  }
  .ticker-badge-icon {
    display: inline-block !important;
    font-size: 16px;
    line-height: 1;
  }
  .ticker-container {
    height: 38px;
    gap: 10px;
  }
  .ticker-item {
    font-size: 12.5px;
  }
  .ticker-dot {
    margin: 0 10px;
  }

  .hero-side-grid {
    flex-direction: column;
  }
  .hero-lead-card {
    min-height: 340px;
    padding: 22px;
  }
  .hero-lead-title {
    font-size: 22px;
  }
  .blog-feed-card {
    grid-template-columns: 1fr;
  }
  .feed-thumb {
    height: 180px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .single-post-card {
    padding: 22px;
  }
  .single-post-title {
    font-size: 24px;
  }
}

/* ==========================================================================
   PC SAĞ & SOL KULE REKLAM ALANLARI (160x600)
   ========================================================================== */
.desktop-ad-skyscraper {
  display: none;
  position: fixed;
  top: 130px;
  width: 160px;
  height: 600px;
  z-index: 999;
}

@media (min-width: 1640px) {
  .desktop-ad-skyscraper {
    display: block;
  }
  .ad-skyscraper-left {
    left: calc(50% - 630px - 170px);
  }
  .ad-skyscraper-right {
    right: calc(50% - 630px - 170px);
  }
}

@media (min-width: 1360px) and (max-width: 1639px) {
  .desktop-ad-skyscraper {
    display: block;
    width: 140px;
    height: 600px;
  }
  .ad-skyscraper-left {
    left: 8px;
  }
  .ad-skyscraper-right {
    right: 8px;
  }
}

.ad-inner-160x600 {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: var(--transition);
}

.ad-inner-160x600:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.ad-banner-link {
  display: block;
  width: 100%;
  height: 100%;
}

.ad-inner-160x600 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ad-placeholder-160x600 {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0C3358 0%, #06182C 100%);
  border: 2px dashed rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 10px;
  text-align: center;
  color: #FFF;
  cursor: pointer;
  transition: var(--transition);
}

.ad-placeholder-160x600:hover {
  border-color: var(--accent);
  background: linear-gradient(180deg, #1A5A96 0%, #0C3358 100%);
}

.ad-placeholder-160x600 .ad-badge-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 8px;
  border-radius: 20px;
  color: #BAE6FD;
  margin-bottom: 15px;
}

.ad-placeholder-160x600 .ad-dimension-tag {
  font-size: 14px;
  font-weight: 800;
  color: #FDBA74;
  margin-bottom: 12px;
}

.ad-placeholder-160x600 p {
  font-size: 12px;
  line-height: 1.4;
  color: #E2E8F0;
  margin-bottom: 20px;
}

.ad-placeholder-160x600 .ad-cta-btn {
  font-size: 11px;
  font-weight: 700;
  color: #FFF;
  background: var(--accent);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.4);
  transition: var(--transition);
}

.ad-placeholder-160x600:hover .ad-cta-btn {
  background: var(--accent-hover);
  transform: scale(1.05);
}

