/* ====== BLOG SAYFASI ====== */

.blog-hero {
  background: var(--ink-900, #18181b);
  background-image:
    radial-gradient(ellipse 50% 80% at 10% 120%, rgba(212,87,10,.12) 0%, transparent 55%),
    radial-gradient(ellipse 30% 50% at 85% 5%,  rgba(212,87,10,.06) 0%, transparent 45%);
  color: white;
  padding: 64px 0 56px;
  text-align: center;
}
.blog-hero h1 {
  color: white;
  margin: 16px 0 12px;
  font-size: clamp(26px, 4vw, 44px);
}
.blog-hero p { color: rgba(255,255,255,.55); font-size: 17px; max-width: 560px; margin: 0 auto; }

/* TOC bar */
.blog-toc-bar {
  background: var(--ink-800, #27272a);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 10px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.blog-toc-bar::-webkit-scrollbar { display: none; }
.blog-toc-bar__inner {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  flex-wrap: nowrap;
  padding: 0 24px;
  max-width: 1140px;
  margin: 0 auto;
}
.blog-toc-bar__inner span { color: rgba(255,255,255,.35); font-size: 11.5px; font-weight: 700; margin-right: 8px; flex-shrink: 0; text-transform: uppercase; letter-spacing: .5px; }
.blog-toc-bar__inner a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 100px;
  transition: all .15s;
  flex-shrink: 0;
}
.blog-toc-bar__inner a:hover { background: rgba(212,87,10,.15); border-color: rgba(212,87,10,.3); color: #fff; }

/* Layout */
.blog-main { padding: 64px 0 80px; background: var(--ink-50, #fafafa); }

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

/* Articles */
.blog-content { display: flex; flex-direction: column; gap: 0; }

.article {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 40px 44px;
  margin-bottom: 24px;
  scroll-margin-top: 90px;
  box-shadow: 0 1px 3px rgba(0,0,0,.05), 0 4px 12px rgba(0,0,0,.05);
}

.article__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.article__cat {
  background: #fdf0e8;
  color: #d4570a;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .5px;
  border: 1px solid #f5cba8;
}
.article__date, .article__read { font-size: 13px; color: var(--gray-400); }

.article h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  margin-bottom: 20px;
  line-height: 1.25;
  letter-spacing: -0.5px;
}
.article h3 { font-size: 18px; margin: 28px 0 12px; color: var(--gray-800); }

.article p { font-size: 15.5px; color: var(--gray-700); line-height: 1.75; margin-bottom: 16px; }
.article ul, .article ol { padding-left: 24px; margin: 12px 0 20px; display: flex; flex-direction: column; gap: 8px; }
.article li { font-size: 15px; color: var(--gray-700); line-height: 1.65; }
.article li strong { color: var(--gray-900); }

.tips-list { list-style: none; padding: 0; counter-reset: tips; }
.tips-list li {
  counter-increment: tips;
  padding: 16px 20px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  padding-left: 52px;
}
.tips-list li::before {
  content: counter(tips);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 24px;
  height: 24px;
  background: var(--orange-500);
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tips-list li p { margin: 0; font-size: 14px; }

/* Price table */
.price-table {
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
  margin: 16px 0;
}
.price-table table { width: 100%; border-collapse: collapse; }
.price-table th {
  background: var(--orange-500);
  color: white;
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
}
.price-table td { padding: 11px 16px; font-size: 14px; border-bottom: 1px solid var(--gray-200); }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: var(--gray-50); }

.price-note { font-size: 12px; color: var(--gray-400); font-style: italic; margin-top: 8px; }

.article__cta {
  background: #fdf0e8;
  border: 1px solid #f5cba8;
  border-radius: 14px;
  padding: 24px 28px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.article__cta p { font-size: 15.5px; font-weight: 600; color: #18181b; margin: 0; }

.article-divider { border: none; border-top: 2px dashed var(--gray-200); margin: 0 0 32px; }

/* Sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 88px; }

.sidebar-widget {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,.05), 0 4px 12px rgba(0,0,0,.04);
}
.sidebar-widget h3 { font-size: 15px; margin-bottom: 10px; color: #18181b; }
.sidebar-widget p { font-size: 13.5px; color: #71717a; }

.sidebar-widget--orange {
  background: #fdf0e8;
  border-color: #f5cba8;
}

.sidebar-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.sidebar-links li a {
  font-size: 14px;
  color: var(--gray-700);
  text-decoration: none;
  padding: 6px 0;
  display: block;
  border-bottom: 1px solid var(--gray-100);
  transition: color .15s;
}
.sidebar-links li a:hover { color: var(--orange-600); }
.sidebar-links li:last-child a { border-bottom: none; }

.region-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.region-tags span {
  background: #fdf0e8;
  color: #d4570a;
  border: 1px solid #f5cba8;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
}

@media (max-width: 640px) {
  .article { padding: 24px 20px; }
  .article__cta { flex-direction: column; }
  .blog-hero { padding: 48px 0 40px; }
}
