/* Blog detay - FOUC: sync critical CSS while style.css loads async. */
:root {
  --primary: #2563eb;
  --primary-d: #1d4ed8;
  --primary-l: #dbeafe;
  --primary-xl: #eff6ff;
  --accent: #06b6d4;
  --dark: #0f172a;
  --dark2: #1e293b;
  --dark3: #334155;
  --muted: #64748b;
  --border: #e2e8f0;
  --light: #f8fafc;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 16px;
  --nav-h: 64px;
  --nav-bg: rgba(255,255,255,0.97);
  --nav-border: #e2e8f0;
  --drop-bg: #ffffff;
  --drop-border: #e2e8f0;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --ease: cubic-bezier(0.16,1,0.3,1);
}

html { scroll-padding-top: 80px; scroll-behavior: smooth; }

/* Slim nav chrome */
.ik-nav { position: -webkit-sticky; position: sticky; top: 0; z-index: 9000; width: 100%; height: var(--nav-h); background: var(--nav-bg); backdrop-filter: blur(14px) saturate(1.4); -webkit-backdrop-filter: blur(14px) saturate(1.4); border-bottom: 1px solid var(--nav-border); display: flex; align-items: center; overflow: visible; }
.ik-nav-inner { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 24px; height: 100%; display: flex; align-items: center; }
.ik-logo { flex-shrink: 0; margin-right: 28px; display: flex; align-items: center; gap: 9px; text-decoration: none; }
.ik-logo img { display: block; height: 40px; width: auto; }
.ik-nav-links { display: flex; align-items: center; gap: 2px; flex: 1; list-style: none; margin: 0; padding: 0; align-self: stretch; }
.ik-nav-item { position: relative; display: flex; align-items: center; height: 100%; }
.ik-nav-btn { display: flex; align-items: center; gap: 5px; padding: 7px 13px; font-size: 15px; font-weight: 600; color: #374151; background: none; border: none; cursor: pointer; border-radius: var(--r-sm); white-space: nowrap; font-family: inherit; text-decoration: none; }
.ik-nav-right { display: flex; align-items: center; gap: 8px; margin-left: auto; flex-shrink: 0; padding-left: 16px; align-self: stretch; }
/* Mega menu + mobile drawer FOUC: hide until style.css (async) arrives */
.ik-drop { position: absolute; top: 100%; left: 50%; padding-top: 10px; transform: translateX(-50%) translateY(-8px); opacity: 0; pointer-events: none; z-index: 9001; }
.ik-nav-item.open > .ik-drop { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.ik-overlay { display: none; position: fixed; inset: 0; z-index: 8998; }
.ik-overlay.show { display: block; }
.ik-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(100vw, 360px); z-index: 8999; transform: translateX(100%); display: flex; flex-direction: column; overflow: hidden; }
.ik-drawer.open { transform: translateX(0); }
.ik-hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 38px; height: 38px; background: none; border: none; cursor: pointer; border-radius: var(--r-sm); padding: 8px; }
.ik-hamburger span { display: block; width: 20px; height: 1.5px; background: var(--muted); border-radius: 2px; }
@media (max-width: 960px) {
  .ik-nav-links { display: none; }
  .ik-hamburger { display: flex; }
}

/* Blog card + badge (related) */
.blog-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow .3s, transform .3s; height: 100%; display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: 0 12px 40px rgba(37,99,235,.13); transform: translateY(-5px); }
.blog-card-visual { height: 160px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.visual-blue   { background: linear-gradient(135deg, #eff6ff, #dbeafe); }
.visual-orange { background: linear-gradient(135deg, #fff7ed, #fed7aa); }
.visual-cyan   { background: linear-gradient(135deg, #ecfeff, #cffafe); }
.visual-green  { background: linear-gradient(135deg, #f0fdf4, #dcfce7); }
.visual-purple { background: linear-gradient(135deg, #f5f3ff, #ede9fe); }
.visual-amber  { background: linear-gradient(135deg, #fffbeb, #fef3c7); }
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-cat-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .68rem; font-weight: 700; letter-spacing: .04em;
  padding: 3px 11px; border-radius: 999px; text-transform: uppercase;
}
.badge-blue   { background: #eff6ff; color: var(--primary); }
.badge-green  { background: #f0fdf4; color: #16a34a; }
.badge-orange { background: #fff7ed; color: #ea580c; }
.badge-cyan   { background: #ecfeff; color: #0891b2; }
.badge-red    { background: #fef2f2; color: #dc2626; }
.badge-purple { background: #f5f3ff; color: #7c3aed; }
.badge-amber  { background: #fffbeb; color: #d97706; }
.blog-card-title   { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.45; }
.blog-card-title a { color: inherit; transition: color .2s; }
.blog-card-title a:hover { color: var(--primary); }
.blog-card-excerpt { font-size: .855rem; color: var(--muted); line-height: 1.72; flex: 1; margin-bottom: 16px; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; font-size: .77rem; color: var(--muted); padding-top: 14px; border-top: 1px solid var(--border); margin-top: auto; }
.blog-read-more { display: inline-flex; align-items: center; gap: 5px; font-size: .82rem; font-weight: 700; color: var(--primary); margin-top: 10px; transition: gap .2s; }
.blog-card:hover .blog-read-more { gap: 9px; }


/* Blog visual */
/* ---- Blog Visual (blog page cards) ------------------------------------- */
.blog-visual {
  height: 180px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.blog-visual--blue   { background: linear-gradient(135deg, #eff6ff, #dbeafe); }
.blog-visual--green  { background: linear-gradient(135deg, #f0fdf4, #dcfce7); }
.blog-visual--amber  { background: linear-gradient(135deg, #fffbeb, #fef3c7); }
.blog-visual--orange { background: linear-gradient(135deg, #fff7ed, #fed7aa); }
.blog-visual--cyan   { background: linear-gradient(135deg, #ecfeff, #cffafe); }
.blog-visual--purple { background: linear-gradient(135deg, #f5f3ff, #ede9fe); }
.blog-visual-icon {
  position: relative; z-index: 1;
  font-size: 3rem; opacity: .35;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .3s;
}
.blog-visual--blue .blog-visual-icon   { color: var(--primary); }
.blog-visual--green .blog-visual-icon  { color: #16a34a; }
.blog-visual--amber .blog-visual-icon  { color: #d97706; }
.blog-visual--orange .blog-visual-icon { color: #ea580c; }
.blog-visual--cyan .blog-visual-icon   { color: #0891b2; }
.blog-visual--purple .blog-visual-icon { color: #7c3aed; }
.blog-card:hover .blog-visual-icon { transform: scale(1.15); opacity: .5; }
.blog-visual-glow {
  position: absolute; width: 140px; height: 140px;
  border-radius: 50%; opacity: .25; filter: blur(40px);
}
.blog-visual-glow--blue   { background: var(--primary); }
.blog-visual-glow--green  { background: #16a34a; }
.blog-visual-glow--amber  { background: #d97706; }
.blog-visual-glow--orange { background: #ea580c; }
.blog-visual-glow--cyan   { background: #0891b2; }
.blog-visual-glow--purple { background: #7c3aed; }


/* Blog post bp-* part 1 */
/* ======================================================================
   BLOG POST / DETAY SAYFASI  bp-*
   ====================================================================== */

/* --- Hero ---------------------------------------------------------------- */
.bp-hero {
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
  padding: 52px 0 44px;
}
.bp-breadcrumb { --bs-breadcrumb-divider-color: var(--muted); }
.bp-breadcrumb a { color: var(--primary); text-decoration: none; font-size: .82rem; }
.bp-breadcrumb a:hover { color: var(--primary); text-decoration: underline; }
.bp-breadcrumb .breadcrumb-item.active { font-size: .82rem; color: var(--muted); }
.bp-hero-category {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.bp-read-time { font-size: .82rem; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.bp-hero-title {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 900; color: var(--dark); line-height: 1.2; margin-bottom: 16px;
}
.bp-title-accent {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bp-hero-lead {
  font-size: 1.05rem; color: var(--muted); line-height: 1.72;
  max-width: 720px; margin-bottom: 28px;
}
.bp-meta-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px; padding: 18px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}
.bp-author-mini { display: flex; align-items: center; gap: 12px; }
.bp-author-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--primary-l); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: .95rem;
}
.bp-author-name { display: block; font-size: .88rem; font-weight: 700; color: var(--dark); }
.bp-author-date { display: block; font-size: .77rem; color: var(--muted); margin-top: 2px; }
.bp-share-row { display: flex; align-items: center; gap: 8px; }
.bp-share-lbl { font-size: .78rem; color: var(--muted); font-weight: 600; }
.bp-share-btn {
  width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: .82rem; text-decoration: none;
  border: 1.5px solid var(--border); color: var(--dark3);
  background: #fff; transition: background .2s, color .2s, border-color .2s;
  cursor: pointer;
}
.bp-share-btn:hover, .bp-share--twitter:hover { background: #000; color: #fff; border-color: #000; }
.bp-share--linkedin:hover { background: #0a66c2; color: #fff; border-color: #0a66c2; }
.bp-share--copy:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.bp-stats-strip {
  display: flex; flex-wrap: wrap; gap: 6px 24px;
  font-size: .78rem; color: var(--muted); padding-top: 14px;
}
.bp-stats-strip i { color: var(--primary); }

/* --- Body layout --------------------------------------------------------- */
.bp-body { padding: 52px 0 80px; background: #fff; }

/* --- Article typography -------------------------------------------------- */
.bp-article { color: var(--dark3); }
.bp-article h1,
.bp-article h2 {
  font-size: 1.35rem; font-weight: 800; color: var(--dark);
  margin: 40px 0 14px; padding-top: 8px;
  border-top: 2px solid var(--border); padding-bottom: 0;
  scroll-margin-top: calc(var(--nav-h) + 16px);
}
.bp-article h1:first-child,
.bp-article h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.bp-article h3 {
  font-size: 1.1rem; font-weight: 700; color: var(--dark); margin: 28px 0 10px;
  scroll-margin-top: calc(var(--nav-h) + 16px);
}
.bp-article p { font-size: .97rem; line-height: 1.82; margin-bottom: 18px; color: #374151; }
.bp-article ul, .bp-article ol { padding-left: 22px; margin-bottom: 20px; }
.bp-article li { font-size: .96rem; line-height: 1.78; color: #374151; margin-bottom: 6px; }
.bp-article strong { color: var(--dark); }
.bp-article a { color: var(--primary); }
.bp-article img {
  max-width: 100%;
  height: auto;
}

/* CKEditor 5 image alignment */
.bp-article figure.image {
  display: table;
  clear: both;
  text-align: center;
  margin: 1.25em auto;
  max-width: 100%;
}
.bp-article figure.image img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.bp-article figure.image.image-style-align-left,
.bp-article figure.image.image-style-align-block-left {
  float: left;
  clear: none;
  margin: 0.35em 1.25em 1em 0;
  max-width: min(50%, 420px);
}
.bp-article figure.image.image-style-align-right,
.bp-article figure.image.image-style-align-block-right,
.bp-article figure.image.image-style-side,
.bp-article figure.image.image-style-wrap-text {
  float: right;
  clear: none;
  margin: 0.35em 0 1em 1.25em;
  max-width: min(50%, 420px);
}
.bp-article figure.image.image-style-align-center,
.bp-article figure.image.image-style-block-align-center,
.bp-article figure.image.image-style-break-text,
.bp-article figure.image.image-style-block {
  float: none;
  clear: both;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
.bp-article p[style*="text-align:center"] img,
.bp-article p[style*="text-align: center"] img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.bp-article::after {
  content: "";
  display: table;
  clear: both;
}
@media (max-width: 767.98px) {
  .bp-article figure.image.image-style-align-left,
  .bp-article figure.image.image-style-align-block-left,
  .bp-article figure.image.image-style-align-right,
  .bp-article figure.image.image-style-align-block-right,
  .bp-article figure.image.image-style-side,
  .bp-article figure.image.image-style-wrap-text {
    float: none;
    clear: both;
    margin: 1.25em auto;
    max-width: 100%;
  }
}

/* Visual banner */
.bp-visual-banner {
  height: 200px; border-radius: 18px; margin-bottom: 36px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.bp-visual-banner--media,
.bp-visual-banner:has(figure),
.bp-visual-banner:has(> img) {
  height: auto;
  max-height: none;
  display: block;
  padding: 0;
  background: #0f172a !important;
  aspect-ratio: 16 / 6;
}
.bp-visual-banner--media.bp-visual-banner--auto {
  aspect-ratio: auto;
  background: #eef2f7 !important;
}
.bp-article .bp-visual-banner--media figure,
.bp-article .bp-visual-banner:has(figure) figure,
.bp-visual-banner--media figure,
.bp-visual-banner:has(figure) figure {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: 0;
  float: none;
  clear: both;
}
.bp-article .bp-visual-banner--media img,
.bp-article .bp-visual-banner:has(figure) img,
.bp-visual-banner--media img,
.bp-visual-banner:has(figure) img,
.bp-visual-banner:has(> img) > img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0;
  object-fit: contain;
  object-position: center;
}
.bp-visual-banner--media.bp-visual-banner--auto img,
.bp-visual-banner--media.bp-visual-banner--auto > img {
  height: auto;
}
.bp-visual-banner--media .bp-visual-icon,
.bp-visual-banner--media .bp-visual-glow,
.bp-visual-banner:has(figure) .bp-visual-icon,
.bp-visual-banner:has(figure) .bp-visual-glow {
  display: none;
}
.bp-visual-icon {
  font-size: 4rem; opacity: .2; position: absolute;
  transition: transform .3s;
}
.bp-visual-label {
  position: absolute; bottom: 12px; left: 14px;
  background: rgba(0,0,0,.4); color: rgba(255,255,255,.9);
  font-size: .62rem; font-weight: 700; letter-spacing: .04em;
  padding: 3px 9px; border-radius: 999px; text-transform: uppercase;
  backdrop-filter: blur(6px); line-height: 1.2;
}
.bp-visual-banner--media .bp-visual-label,
.bp-visual-banner:has(figure) .bp-visual-label {
  bottom: 10px; left: 12px;
}

/* CKEditor blockquote / callout (same as admin preview) */
.bp-article blockquote {
  border-left: 4px solid #3b82f6;
  background: linear-gradient(135deg, #eff6ff 0%, #f8fbff 100%);
  margin: 1.75em 0;
  padding: 0.875rem 1.125rem;
  border-radius: 0 0.5rem 0.5rem 0;
  color: #1e3a5f;
  font-style: normal;
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.12);
}
.bp-article blockquote p { margin: 0 0 0.6em; color: inherit; }
.bp-article blockquote p:last-child { margin-bottom: 0; }
.bp-article blockquote.warning {
  border-left-color: #f59e0b;
  background: #fffbeb;
  color: #78350f;
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.15);
}
.bp-article blockquote.success {
  border-left-color: #10b981;
  background: #f0fdf4;
  color: #14532d;
  box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.15);
}
.bp-article blockquote.danger {
  border-left-color: #ef4444;
  background: #fef2f2;
  color: #7f1d1d;
  box-shadow: inset 0 0 0 1px rgba(239, 68, 68, 0.15);
}
.bp-article .content-lead {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #475569;
  background: linear-gradient(135deg, #eff6ff 0%, #f8fbff 100%);
  border-left: 5px solid #1d4ed8;
  border-radius: 0.8rem;
  padding: 1rem 1.1rem;
  margin: 1.5em 0;
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.12);
}
.bp-article .content-lead p { margin: 0.75em 0; }
.bp-article .content-lead p:first-child { margin-top: 0; }
.bp-article .content-lead p:last-child { margin-bottom: 0; }

/* Callout boxes */
.bp-callout {
  display: flex; gap: 14px; border-radius: 12px;
  padding: 18px 20px; margin: 28px 0; align-items: flex-start;
  font-size: .92rem; line-height: 1.7;
}
.bp-callout--info   { background: #eff6ff; border-left: 4px solid #2563eb; color: #1e40af; }
.bp-callout--warn   { background: #fffbeb; border-left: 4px solid #d97706; color: #92400e; }
.bp-callout--success { background: #f0fdf4; border-left: 4px solid #16a34a; color: #14532d; }
.bp-callout-icon    { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.bp-callout--info .bp-callout-icon   { color: #2563eb; }
.bp-callout--warn .bp-callout-icon   { color: #d97706; }
.bp-callout--success .bp-callout-icon { color: #16a34a; }

/* Comparison table */
.bp-compare-table {
  border: 1.5px solid var(--border); border-radius: 14px;
  overflow: hidden; margin: 28px 0;
}
@media (max-width: 767px) {
  .bp-compare-table th { font-size: .7rem; padding: 8px 8px; }
  .bp-compare-table td { font-size: .78rem; padding: 8px 8px; }
  .bp-compare-header { padding: 10px 12px; font-size: .75rem; }
}
@media (max-width: 575px) {
  /* Wrapper scrolls horizontally, no visible scrollbar */
  .bp-compare-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .bp-compare-table::-webkit-scrollbar { display: none; }
  .bp-compare-table table { min-width: 340px; border-collapse: separate; border-spacing: 0; }

  /* Sticky first column — feature names stay fixed */
  .bp-compare-table th:first-child,
  .bp-compare-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    background: #fff;
    box-shadow: 2px 0 8px rgba(15,23,42,.07);
    min-width: 100px;
    max-width: 110px;
  }
  .bp-compare-table th:first-child {
    background: var(--light, #f8fafc);
  }
  /* Right-edge fade hint — tells user content continues */
  .bp-compare-table::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 28px;
    background: linear-gradient(to left, rgba(255,255,255,.9), transparent);
    pointer-events: none;
    border-radius: 0 14px 14px 0;
  }
  .bp-compare-table { position: relative; }
}
.bp-compare-header {
  background: var(--light); padding: 12px 18px;
  font-size: .82rem; font-weight: 700; color: var(--dark3);
  border-bottom: 1px solid var(--border); text-transform: uppercase; letter-spacing: .05em;
}
.bp-compare-table table { width: 100%; border-collapse: collapse; }
.bp-compare-table th {
  font-size: .8rem; font-weight: 700; color: var(--dark3);
  padding: 11px 16px; background: var(--light);
  border-bottom: 1px solid var(--border); text-align: left;
}
.bp-compare-table td {
  font-size: .88rem; color: var(--dark3);
  padding: 10px 16px; border-bottom: 1px solid var(--border);
}
.bp-compare-table tr:last-child td { border-bottom: none; }
.bp-col-highlight { background: rgba(37,99,235,.04) !important; font-weight: 700; }
.bp-yes  { color: #16a34a; }
.bp-no   { color: #dc2626; }
.bp-mid  { color: #d97706; }

/* Blog / duyuru / içerik tables — scroll on mobile */
.ik-table-wrap,
.bp-table-wrap,
.dd-table-outer {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  max-width: 100%;
}
.bp-article .ik-table-wrap,
.dd-prose .ik-table-wrap,
.yd-prose .ik-table-wrap { display: block; }
.bp-table,
.ik-content-table,
.dd-table,
.bp-article table,
.dd-prose table,
.yd-prose table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  margin: 0;
  font-size: .9rem;
}
.bp-table th,
.ik-content-table th,
.dd-table th,
.bp-article table th,
.dd-prose table th,
.yd-prose table th {
  background: #f8fafc;
  font-size: .8rem;
  font-weight: 700;
  color: #475569;
  padding: 11px 16px;
  border-bottom: 2px solid #e2e8f0;
  text-align: left;
  white-space: nowrap;
  vertical-align: middle;
}
.bp-table td,
.ik-content-table td,
.dd-table td,
.bp-article table td,
.dd-prose table td,
.yd-prose table td {
  font-size: .88rem;
  color: #374151;
  padding: 11px 16px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: top;
}
.bp-table tr:last-child td,
.ik-content-table tr:last-child td,
.dd-table tr:last-child td,
.bp-article table tr:last-child td,
.dd-prose table tr:last-child td,
.yd-prose table tr:last-child td { border-bottom: none; }
.bp-table td strong,
.ik-content-table td strong,
.bp-article table td strong { color: #1e293b; }
.bp-table tbody tr:hover,
.ik-content-table tbody tr:hover,
.bp-article table tbody tr:hover,
.dd-prose table tbody tr:hover { background: #f8fafc; }
/* İçerikteki ikonlar hizalı ve görünür kalsın */
.bp-article i[class*="fa-"],
.dd-prose i[class*="fa-"],
.yd-prose i[class*="fa-"],
.bp-article span[class*="fa-"],
.dd-prose span[class*="fa-"] {
  display: inline-block;
  line-height: 1;
  vertical-align: -0.05em;
}
@media (max-width: 767px) {
  .bp-table,
  .ik-content-table,
  .dd-table,
  .bp-article table,
  .dd-prose table,
  .yd-prose table { min-width: 420px; font-size: .84rem; }
  .bp-table th, .bp-table td,
  .ik-content-table th, .ik-content-table td,
  .dd-table th, .dd-table td,
  .bp-article table th, .bp-article table td,
  .dd-prose table th, .dd-prose table td,
  .yd-prose table th, .yd-prose table td { padding: 9px 12px; }
}

/* Checklist */
.bp-checklist { display: flex; flex-direction: column; gap: 14px; margin: 20px 0 28px; }

/* Blog post bp-* part 2 (after index sections) */
.bp-checklist-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--light); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 16px; font-size: .9rem; line-height: 1.65; color: #374151;
}
.bp-check-icon {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: .72rem;
}
.bp-check--green { background: #dcfce7; color: #16a34a; }

/* Code block */
.bp-code-block {
  background: #0f172a; border-radius: 12px; overflow: hidden; margin: 24px 0;
}
.bp-code-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 18px; background: rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.bp-code-lang { font-size: .75rem; color: rgba(255,255,255,.55); font-weight: 600; }
.bp-code-copy {
  background: none; border: 1.5px solid rgba(255,255,255,.2); border-radius: 6px;
  color: rgba(255,255,255,.6); font-size: .78rem; padding: 3px 10px;
  cursor: pointer; transition: background .2s, color .2s;
}
.bp-code-copy:hover { background: rgba(255,255,255,.1); color: #fff; }
.bp-code-block pre {
  margin: 0; padding: 20px 22px; overflow-x: auto;
  font-family: 'Fira Code', 'Cascadia Code', 'JetBrains Mono', monospace;
  font-size: .82rem; line-height: 1.75; color: #e2e8f0;
  white-space: pre; word-break: normal; overflow-wrap: normal;
}
@media (max-width: 767px) {
  .bp-code-block pre { font-size: .75rem; padding: 16px 14px; }
}
.bp-code-block code { font-family: inherit; }
.bp-c-comment { color: #64748b; }
.bp-c-val     { color: #fbbf24; }
.bp-c-str     { color: #a3e635; }

/* Panel grid */
.bp-panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0 28px; }
.bp-panel-card {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--light); border: 1px solid var(--border); border-radius: 10px;
  padding: 14px 16px;
}
.bp-panel-icon {
  width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
}
.bp-panel-card strong { display: block; font-size: .88rem; font-weight: 700; color: var(--dark); }
.bp-panel-card span   { display: block; font-size: .78rem; color: var(--muted); margin-top: 3px; line-height: 1.5; }

/* Feat list */
.bp-feat-list { display: flex; flex-direction: column; gap: 14px; margin: 18px 0 28px; }
.bp-feat-item { display: flex; gap: 14px; align-items: flex-start; }
.bp-feat-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: .95rem;
}
.bp-feat-icon--blue   { background: #eff6ff; color: #2563eb; }
.bp-feat-icon--green  { background: #f0fdf4; color: #16a34a; }
.bp-feat-icon--amber  { background: #fffbeb; color: #d97706; }
.bp-feat-icon--purple { background: #f5f3ff; color: #7c3aed; }
.bp-feat-icon--red    { background: #fef2f2; color: #dc2626; }
.bp-feat-icon i { line-height: 1; }
.bp-feat-item strong { display: block; font-size: .92rem; font-weight: 700; color: #0f172a; margin-bottom: 4px; }
.bp-feat-item p { font-size: .85rem; color: #64748b; margin: 0; line-height: 1.6; }
.bp-feat-row  { display: flex; align-items: flex-start; gap: 12px; font-size: .92rem; color: #374151; line-height: 1.65; }
.bp-feat-dot  { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 7px; }

/* Tags */
.bp-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 32px 0 0; }
.bp-tag {
  background: var(--light); border: 1.5px solid var(--border); border-radius: 999px;
  color: var(--dark3); font-size: .78rem; font-weight: 600;
  padding: 5px 14px; text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}
a.bp-tag:hover { background: var(--primary-l); border-color: #bfdbfe; color: var(--primary); }

/* Share bottom */
.bp-share-bottom {
  display: flex; align-items: center; flex-wrap: wrap; gap: 12px;
  padding: 22px 0; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); margin: 28px 0;
  font-size: .88rem; font-weight: 600; color: var(--dark3);
}
.bp-share-bottom-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.bp-share-bottom .bp-share-btn {
  width: auto; border-radius: 8px; padding: 7px 16px; font-size: .8rem; font-weight: 700; gap: 6px;
  display: inline-flex; align-items: center;
}

/* Author bio */
.bp-author-bio {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--light); border: 1px solid var(--border); border-radius: 14px;
  padding: 22px 24px; margin: 28px 0;
}
.bp-author-bio-avatar {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
  background: rgba(37,99,235,.1); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.bp-author-bio-name  { display: block; font-size: 1rem; font-weight: 800; color: var(--dark); }
.bp-author-bio-role  { display: block; font-size: .78rem; color: var(--primary); font-weight: 600; margin-bottom: 10px; }
.bp-author-bio-text  { font-size: .87rem; color: var(--muted); line-height: 1.7; margin: 0; }

/* Post nav */
.bp-post-nav {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.bp-post-nav-btn {
  flex: 1; min-width: 180px; display: flex; align-items: center; gap: 14px;
  background: var(--light); border: 1.5px solid var(--border); border-radius: 12px;
  padding: 16px 20px; text-decoration: none; color: var(--dark);
  transition: border-color .2s, background .2s;
}
.bp-post-nav-btn:hover { border-color: var(--primary); background: var(--primary-l); color: var(--primary); }
.bp-post-nav-next { justify-content: flex-end; text-align: right; }
.bp-post-nav-btn span { display: flex; flex-direction: column; }
.bp-post-nav-btn em   { font-style: normal; font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; }
.bp-post-nav-btn strong { font-size: .9rem; }
.bp-post-nav-btn i { flex-shrink: 0; font-size: .9rem; color: var(--primary); }

/* --- Sidebar ------------------------------------------------------------- */
.bp-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 20px; }
.bp-widget {
  background: #fff; border: 1.5px solid var(--border); border-radius: 14px;
  overflow: hidden;
}
.bp-widget-header {
  font-size: .8rem; font-weight: 800; color: var(--dark3); text-transform: uppercase;
  letter-spacing: .07em; padding: 14px 18px;
  background: var(--light); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.bp-widget-header i { color: var(--primary); }

/* TOC */
.bp-toc { display: flex; flex-direction: column; padding: 10px 10px; gap: 2px; }
.bp-toc-link {
  font-size: .84rem; color: var(--muted); padding: 7px 10px; border-radius: 7px;
  text-decoration: none; font-weight: 500; transition: color .18s, background .18s;
  border-left: 2px solid transparent;
}
.bp-toc-link:hover { color: var(--primary); background: var(--primary-l); }
.bp-toc-link--active { color: var(--primary) !important; font-weight: 700; border-left-color: var(--primary); background: var(--primary-l); }

/* CTA widget */
.bp-cta-widget {
  background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 60%, #0369a1 100%);
  border: none; padding: 28px 24px;
}
.bp-cta-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,255,255,.18); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  margin-bottom: 16px;
}
.bp-cta-widget h3 { color: #fff; font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.bp-cta-widget p  { color: rgba(255,255,255,.72); font-size: .85rem; line-height: 1.6; margin-bottom: 16px; }
.bp-cta-spec {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px;
}
.bp-cta-spec span {
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.88); font-size: .76rem; font-weight: 600;
  padding: 4px 11px; border-radius: 999px;
  display: flex; align-items: center;
}
.bp-cta-btn {
  display: flex; align-items: center; justify-content: center;
  background: #fff; color: var(--primary); font-size: .88rem; font-weight: 700;
  padding: 11px; border-radius: 9px; text-decoration: none;
  transition: background .2s;
}
.bp-cta-btn:hover { background: #e0e7ff; color: var(--primary); }

/* Related list */
.bp-related-list { display: flex; flex-direction: column; padding: 10px; gap: 4px; }
.bp-related-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 10px; border-radius: 9px; text-decoration: none;
  transition: background .18s;
}
.bp-related-item:hover { background: var(--light); }
.bp-related-icon {
  width: 40px; height: 40px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: .88rem;
}
.bp-related-title { display: block; font-size: .83rem; font-weight: 700; color: var(--dark); line-height: 1.4; }
.bp-related-meta  { display: block; font-size: .73rem; color: var(--muted); margin-top: 2px; }
.bp-tags-widget { display: flex; flex-wrap: wrap; gap: 7px; padding: 14px 16px; }

/* Related section at bottom */
.bp-related-section { padding: 72px 0 88px; background: var(--light); }
.bp-related-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px;
}
.bp-related-header h2 { font-size: 1.3rem; font-weight: 800; margin: 0; }
.bp-all-link {
  font-size: .85rem; font-weight: 700; color: var(--primary); text-decoration: none;
  display: flex; align-items: center; gap: 5px; transition: gap .2s;
}
.bp-all-link:hover { gap: 9px; color: var(--primary); }

/* Responsive */
@media (max-width: 991px) {
  .bp-sidebar { position: static; }
  .bp-hero { padding: 36px 0 32px; }
  .bp-body { padding: 36px 0 56px; }
}
@media (max-width: 575px) {
  .bp-panel-grid { grid-template-columns: 1fr; }
  .bp-post-nav { flex-direction: column; }
  .bp-share-bottom { flex-direction: column; align-items: flex-start; }
  .bp-author-bio { flex-direction: column; }
}

/* Footer chrome */
/* ---- Footer ------------------------------------------------------------ */
footer.site-footer { background: var(--dark); color: rgba(255,255,255,.65); padding: 0 0 28px; }
footer.site-footer > .container { padding-top: 48px; }
.footer-brand { font-size: 1.4rem; font-weight: 800; color: #fff; display: inline-flex; align-items: center; gap: 10px; }
.footer-brand img { height: 32px; width: auto; filter: brightness(0) invert(1); opacity: .85; }
.footer-brand .brand-dot { color: var(--accent); }
.footer-desc { font-size: .88rem; margin: 12px 0 8px; max-width: 290px; line-height: 1.7; }

@keyframes tagline-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes tagline-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(1.2); }
}
.footer-tagline {
  font-size: .82rem; font-weight: 800; margin: 0 0 20px;
  letter-spacing: .06em; display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(90deg, #00c437 0%, #00a32a 25%, #00d444 50%, #00c437 75%, #009e28 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: tagline-shimmer 3s linear infinite;
  filter: drop-shadow(0 0 5px rgba(0,180,50,.35));
}
.footer-tagline i {
  font-size: .75rem;
  -webkit-text-fill-color: #00c437;
  animation: tagline-pulse 1.8s ease-in-out infinite;
  filter: drop-shadow(0 0 4px rgba(0,180,50,.5));
}
.footer-social a {
  display: inline-flex; width: 36px; height: 36px; background: rgba(255,255,255,.08);
  border-radius: 8px; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); font-size: .9rem; margin-right: 8px; transition: background .2s, color .2s;
  cursor: pointer;
}
@media (hover: hover) { .footer-social a:hover { background: var(--primary); color: #fff; } }
.footer-col-title { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #94a3b8; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.55); transition: color .2s; display: block; cursor: pointer; }
@media (hover: hover) { .footer-links a:hover { color: #fff; } }
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: .88rem; color: rgba(255,255,255,.55); }
.footer-contact-list i { color: rgba(255,255,255,.35); margin-top: 3px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,.55); transition: color .2s; cursor: pointer; }
@media (hover: hover) { .footer-contact-list a:hover { color: #fff; } }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 40px 0 20px; }
.footer-bottom { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.35); transition: color .2s; cursor: pointer; }
@media (hover: hover) { .footer-bottom a:hover { color: rgba(255,255,255,.7); } }
.footer-trust { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; margin-top: 8px; }
.trust-badge { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; color: rgba(255,255,255,.45); }
.trust-badge i { color: var(--accent); }

/* Footer bottom bar — copyright + legal links + KDV note */
.footer-bottom-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding-top: 4px;
}
.footer-bottom-copy {
  font-size: .82rem;
  color: #94a3b8;
}
.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 12px;
  font-size: .82rem;
}
.footer-bottom-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color .2s;
  cursor: pointer;
}
@media (hover: hover) { .footer-bottom-links a:hover { color: #fff; } }
.fbl-sep {
  color: rgba(255,255,255,.35);
  font-size: .75rem;
  user-select: none;
}
.footer-bottom-kdv {
  font-size: .8rem;
  color: #94a3b8;
}

/* Footer trust badge bar */
.footer-trust-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.bp-article h2[id], .bp-article h3[id] { scroll-margin-top: 80px; }
.blog-cat-badge.badge--blue { background: #eff6ff; color: var(--primary); }
.blog-cat-badge.badge--green { background: #f0fdf4; color: #16a34a; }
.blog-cat-badge.badge--orange { background: #fff7ed; color: #ea580c; }
.blog-cat-badge.badge--cyan { background: #ecfeff; color: #0891b2; }
.blog-cat-badge.badge--amber { background: #fffbeb; color: #d97706; }
.blog-cat-badge.badge--purple { background: #f5f3ff; color: #7c3aed; }
