/*
Theme Name: Bida Blog
Theme URI: https://bida.com.tr
Author: Bida Teknoloji Hizmetleri A.Ş.
Description: Kurumsal blog teması - Bida Teknoloji
Version: 1.0.0
Text Domain: bida-blog
*/

/* =============================================
   VARIABLES
   ============================================= */
:root {
  --orange:      #f96e4e;
  --orange-dark: #e05535;
  --orange-bg:   #fff4f1;
  --black:       #1a1a1a;
  --dark:        #2d2d2d;
  --gray:        #6b7280;
  --gray-light:  #f5f5f7;
  --gray-mid:    #e5e7eb;
  --white:       #ffffff;
  --border:      #e8e8e8;

  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius:    8px;
  --radius-lg: 14px;
  --shadow:    0 2px 16px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);

  --max-width: 1240px;
  --header-h:  76px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color .2s; }
a:hover { color: var(--orange-dark); }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}
p { margin-bottom: 1.2rem; }
ul,ol { padding-left: 1.5rem; margin-bottom: 1rem; }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}
.site-wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.site-main { flex: 1; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.site-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.site-logo img { height: 44px; width: auto; }
.site-logo-text {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--black);
}
.site-logo-text span { color: var(--orange); }

/* PRIMARY NAV */
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav ul { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; gap: 2px; }
.site-nav ul li { position: relative; }
.site-nav ul li > a {
  display: block;
  padding: 9px 16px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: var(--radius);
  transition: background .2s, color .2s;
}
.site-nav ul li > a:hover,
.site-nav ul li.current-menu-item > a,
.site-nav ul li.current-menu-ancestor > a {
  color: var(--orange);
  background: var(--orange-bg);
}

/* NAV CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--orange);
  color: var(--white) !important;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .875rem;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; color: var(--white) !important; }

/* LANG SWITCHER */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 12px;
  padding-left: 16px;
  border-left: 1px solid var(--border);
}
.lang-switcher a {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gray);
  padding: 5px 9px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.lang-switcher a:hover,
.lang-switcher a.active { color: var(--orange); background: var(--orange-bg); }

/* HAMBURGER */
.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--dark); border-radius: 2px; transition: .3s; }

/* =============================================
   HERO BANNER (ana sayfa & kategori)
   ============================================= */
.hero-banner {
  background: var(--gray-light);
  padding: 0;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: stretch;
}
.hero-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 420px;
}
.hero-left {
  display: flex;
  align-items: center;
  padding: 64px 64px 64px 0;
}
.hero-left-content { max-width: 520px; }
.hero-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-desc {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-checks { list-style: none; padding: 0; margin: 0 0 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.hero-checks li {
  font-size: .875rem;
  color: var(--dark);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.hero-checks li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  transition: .2s;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); color: var(--white); }
.btn-ghost {
  background: var(--white);
  color: var(--dark);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

/* HERO RIGHT — görsel panel */
.hero-right {
  position: relative;
  background: var(--orange);
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.hero-right::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.hero-image-wrap {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Floating badges */
.hero-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  z-index: 2;
  white-space: nowrap;
}
.hero-badge .badge-icon {
  width: 32px;
  height: 32px;
  background: var(--orange-bg);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.badge-1 { top: 10%; right: 6%; }
.badge-2 { top: 47%; left: -6%; }
.badge-3 { bottom: 14%; right: 6%; }

/* =============================================
   POSTS SECTION
   ============================================= */
.posts-section { padding: 64px 0; }

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 26px;
  background: var(--orange);
  border-radius: 3px;
}
.section-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--orange);
}
.section-link:hover { color: var(--orange-dark); }

/* =============================================
   POST CARDS GRID
   ============================================= */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.post-card-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-light);
}
.post-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.post-card:hover .post-card-thumb img { transform: scale(1.05); }
.post-card-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #fff4f1, #ffe0d8);
  font-size: 3rem;
}
.post-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.post-card-cat {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-bg);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.post-card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 10px;
  color: var(--black);
  flex: 1;
}
.post-card-title a { color: inherit; }
.post-card-title a:hover { color: var(--orange); }
.post-card-excerpt {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--gray);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: auto;
}
.read-more {
  font-size: .8rem;
  font-weight: 600;
  color: var(--orange);
}
.read-more:hover { color: var(--orange-dark); }

/* =============================================
   CATEGORY CARDS (Blog listesi sayfası)
   ============================================= */
.cat-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  text-decoration: none;
}
.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.cat-card-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.cat-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}
.cat-card-desc {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
}
.cat-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
}
.cat-card-count {
  background: var(--gray-light);
  color: var(--gray);
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 600;
}
.cat-card-arrow { color: var(--orange); font-size: 1.1rem; font-weight: 700; }

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--gray);
  padding: 20px 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: var(--gray-mid); }
.breadcrumb .current { color: var(--dark); font-weight: 500; }

/* =============================================
   CONTENT + SIDEBAR
   ============================================= */
.content-area { padding: 48px 0 80px; }
.content-sidebar-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.sidebar { position: sticky; top: calc(var(--header-h) + 24px); }
.widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.widget-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
}
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget ul li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .875rem; }
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: var(--dark); font-weight: 500; }
.widget ul li a:hover { color: var(--orange); }
.widget-cat li { display: flex; justify-content: space-between; align-items: center; }
.cat-count {
  background: var(--orange-bg);
  color: var(--orange);
  font-size: .72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
}

/* SEARCH */
.search-form { display: flex; }
.search-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: .875rem;
  font-family: var(--font-body);
}
.search-form input:focus { outline: none; border-color: var(--orange); }
.search-form button {
  padding: 10px 14px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  font-size: .9rem;
  transition: .2s;
}
.search-form button:hover { background: var(--orange-dark); }

/* RECENT POSTS */
.recent-post-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.recent-post-item:last-child { border-bottom: none; }
.recent-post-thumb {
  width: 64px; height: 64px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gray-light);
}
.recent-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.recent-post-info { flex: 1; }
.recent-post-title { font-size: .82rem; font-weight: 600; color: var(--black); line-height: 1.4; margin-bottom: 4px; }
.recent-post-title a { color: inherit; }
.recent-post-title a:hover { color: var(--orange); }
.recent-post-date { font-size: .75rem; color: var(--gray); }

/* =============================================
   SINGLE POST
   ============================================= */
.single-post-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.single-post-cat {
  background: var(--orange);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.single-post-title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); line-height: 1.2; margin-bottom: 20px; }
.single-post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: .85rem;
  color: var(--gray);
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.single-post-meta span { display: flex; align-items: center; gap: 6px; }
.single-post-thumb {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  aspect-ratio: 16/7;
}
.single-post-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* CONTENT */
.post-content h2 { font-size: 1.5rem; margin: 2.2rem 0 1rem; }
.post-content h3 { font-size: 1.2rem; margin: 1.75rem 0 .75rem; }
.post-content p { margin-bottom: 1.4rem; }
.post-content blockquote {
  border-left: 4px solid var(--orange);
  padding: 16px 24px;
  margin: 2rem 0;
  background: var(--orange-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
}
.post-content code {
  background: var(--gray-light);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: .875em;
}
.post-content pre {
  background: var(--black);
  color: #e5e7eb;
  padding: 20px 24px;
  border-radius: var(--radius);
  overflow-x: auto;
  margin: 1.5rem 0;
}
.post-content pre code { background: none; padding: 0; }
.post-content ul li, .post-content ol li { margin-bottom: .4rem; }

/* POST TAGS */
.post-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
.post-tag {
  padding: 5px 14px;
  background: var(--gray-light);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .78rem;
  color: var(--dark);
}
.post-tag:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* POST NAV */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.post-nav-item { padding: 20px; border: 1.5px solid var(--border); border-radius: var(--radius); transition: .2s; }
.post-nav-item:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.post-nav-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gray); font-weight: 700; margin-bottom: 6px; }
.post-nav-title { font-size: .9rem; font-weight: 700; color: var(--black); }

/* =============================================
   PAGINATION
   ============================================= */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius);
  font-size: .875rem; font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--dark); transition: .2s;
}
.pagination a:hover { border-color: var(--orange); color: var(--orange); }
.pagination .current { background: var(--orange); border-color: var(--orange); color: var(--white); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1a14 100%);
  padding: 80px 0;
  text-align: center;
}
.about-hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 16px; }
.about-hero p { color: rgba(255,255,255,.65); font-size: 1rem; max-width: 560px; margin: 0 auto; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin: 60px 0;
}
.stat-card { text-align: center; padding: 32px 20px; border: 1.5px solid var(--border); border-radius: var(--radius-lg); transition: .2s; }
.stat-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.stat-number { font-size: 2.4rem; font-weight: 800; color: var(--orange); font-family: var(--font-head); }
.stat-label { font-size: .875rem; color: var(--gray); margin-top: 6px; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info-card { background: var(--black); border-radius: var(--radius-lg); padding: 40px; color: var(--white); }
.contact-info-card h2 { color: var(--white); margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,.6); margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
.contact-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-icon { width: 44px; height: 44px; background: rgba(249,110,78,0.15); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.contact-item-label { font-size: .72rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.contact-item-value { color: var(--white); font-weight: 500; }
.contact-item-value a { color: rgba(255,255,255,.75); }
.contact-item-value a:hover { color: var(--white); }
.contact-form-wrap { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.contact-form-wrap h2 { margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--gray); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: .9rem; color: var(--black);
  transition: border-color .2s; background: var(--white);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,110,78,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--black); color: rgba(255,255,255,.6); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-logo { height: 40px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand-name { font-family: var(--font-head); font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.footer-brand-name span { color: var(--orange); }
.footer-desc { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.45); margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: .85rem; font-weight: 700;
  transition: .2s; text-decoration: none;
}
.footer-social a:hover { background: var(--orange); color: var(--white); }
.footer-col-title {
  font-family: var(--font-head);
  font-size: .78rem; font-weight: 700;
  color: var(--white); text-transform: uppercase;
  letter-spacing: .12em; margin-bottom: 20px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: .85rem; align-items: flex-start; }
.footer-contact-item .fci-icon { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.45); }
.footer-contact-item a:hover { color: var(--white); }
.footer-contact-item span:last-child { color: rgba(255,255,255,.45); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .8rem; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.3); }
.footer-bottom-links a:hover { color: var(--white); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .content-sidebar-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .hero-banner-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { min-height: 300px; display: none; }
  .hero-left { padding: 48px 0; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .site-nav { display: none; }
  .site-nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: var(--white); padding: 24px;
    overflow-y: auto; z-index: 199;
  }
  .site-nav.open ul { flex-direction: column; width: 100%; }
  .menu-toggle { display: flex; }
  .posts-grid { grid-template-columns: 1fr; }
  .cat-cards-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .post-nav { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .hero-checks { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
