/* =========================================================
   BLOG SINGLE
   ========================================================= */

.bs-wrap {
  /* Yatay padding .container'dan gelir; burada ezilmesin */
  padding-top: 20px;
  padding-bottom: 72px;
}

.bs-layout {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  grid-template-areas: "side main";
  gap: clamp(32px, 4vw, 48px);
  align-items: start;
}

.bs-article {
  grid-area: main;
  min-width: 0;
  width: 100%;
}

.bs-side {
  grid-area: side;
  position: sticky;
  top: calc(var(--header-h) + 16px);
  align-self: start;
  display: grid;
  gap: 18px;
  align-content: start;
  /* İç scroll yok — yalnızca sayfa scroll; sticky ana içerikle birlikte */
  max-height: none;
  overflow: visible;
}

/* ----- Article head / featured ----- */
.bs-article-head {
  position: relative;
  margin: 0 0 8px;
}

.bs-article-head .bs-breadcrumb {
  margin: 0 0 18px;
}

.bs-article-head h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--ink);
}

/* ----- Sticky sidebar ----- */

.bs-toc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.bs-toc-head h2,
.bs-share h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.bs-share h2 {
  margin-bottom: 12px;
}

.bs-toc-close,
.bs-toc-fab,
.bs-toc-backdrop {
  display: none;
}

.bs-toc-list {
  list-style: none;
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  border-left: 1px solid rgba(27, 36, 32, 0.1);
}

.bs-toc-list a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 12px;
  margin-left: -1px;
  border-left: 2px solid transparent;
  border-radius: 0 10px 10px 0;
  font-size: 0.84rem;
  line-height: 1.35;
  color: var(--ink-soft);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.bs-toc-list a:hover {
  color: var(--ink);
}

.bs-toc-list a.is-active {
  background: rgba(27, 36, 32, 0.06);
  border-left-color: var(--ink);
  color: var(--ink);
  font-weight: 650;
}

.bs-toc-list .num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  color: var(--ink-soft);
  flex: none;
}

.bs-pdf {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(27, 36, 32, 0.1);
  background: rgba(255, 255, 255, 0.65);
}

.bs-pdf-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--ochre-wash);
  color: var(--ochre);
  display: grid;
  place-items: center;
  flex: none;
}

.bs-pdf-icon svg {
  width: 20px;
  height: 20px;
}

.bs-pdf p {
  margin: 0;
  flex: 1;
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.35;
  color: var(--ink);
}

.bs-pdf button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--surface-ink);
  color: #f4f1eb;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex: none;
}

.bs-pdf button svg {
  width: 16px;
  height: 16px;
}

.bs-author {
  padding: 20px 16px;
  border-radius: 20px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  text-align: center;
}

.bs-author img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 15%;
  display: block;
  margin: 0 auto 12px;
  background: #ddd6cb;
  box-shadow: 0 10px 24px -16px rgba(27, 36, 32, 0.55);
}

.bs-author-label {
  margin: 0 0 4px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
}

.bs-author strong {
  display: block;
  font-size: 0.98rem;
  color: var(--ink);
}

.bs-author-role {
  display: block;
  margin-top: 2px;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.bs-author-bio {
  margin: 12px 0 14px;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--ink-soft);
  text-align: left;
}

.bs-author-points {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 8px;
  text-align: left;
}

.bs-author-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 650;
  color: var(--ink);
}

.bs-author-points .ico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--ochre-wash);
  color: var(--ochre);
  display: grid;
  place-items: center;
  flex: none;
}

.bs-author-points svg {
  width: 14px;
  height: 14px;
}

.bs-author-cta {
  width: 100%;
  margin-bottom: 12px;
  padding: 11px 16px;
  font-size: 0.84rem;
}

.bs-author-social {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.bs-author-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(27, 36, 32, 0.12);
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease);
}

.bs-author-social a:hover {
  border-color: rgba(27, 36, 32, 0.28);
  background: #fff;
  color: var(--ochre);
}

.bs-author-social svg {
  width: 14px;
  height: 14px;
}

.bs-share-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.bs-share-list a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(27, 36, 32, 0.12);
  background: rgba(255, 255, 255, 0.55);
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

.bs-share-list a:hover {
  border-color: rgba(27, 36, 32, 0.28);
  background: #fff;
  color: var(--ochre);
  transform: translateY(-1px);
}

.bs-share-list svg {
  width: 18px;
  height: 18px;
}

/* ----- Article ----- */
.bs-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: 0 0 14px;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.bs-cat {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
}

.bs-lede {
  margin: 0 0 28px;
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.bs-hero-img {
  margin: 0 0 28px;
  border-radius: 22px;
  overflow: hidden;
  width: 100%;
  /* Okunabilir hero: tam 16/9 kadar değil, biraz daha yüksek */
  height: min(440px, 48vh);
  background: #ddd6cb;
}

.bs-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.bs-quote {
  position: relative;
  margin: 0 0 40px;
  padding: 8px 12px 8px 0;
  text-align: center;
}

.bs-quote::before,
.bs-quote::after {
  font-family: "Newsreader", serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--ochre);
  opacity: 0.85;
}

.bs-quote::before {
  content: "“";
  display: block;
  margin-bottom: 4px;
}

.bs-quote p {
  margin: 0 0 12px;
  font-family: "Newsreader", serif;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  max-width: 36ch;
  margin-inline: auto;
}

.bs-quote cite {
  font-style: normal;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.bs-section {
  margin: 0 0 42px;
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.bs-section > h2 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--ink);
}

.bs-section > h2 .num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ochre);
  flex: none;
}

.bs-section > p {
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.bs-section > p:last-child {
  margin-bottom: 0;
}

/* Dynamic WP content (seeded / editor posts) */
.bs-content {
  margin: 0 0 8px;
}

.bs-content > *:first-child {
  margin-top: 0;
}

.bs-content > p,
.bs-content > ul,
.bs-content > ol {
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.bs-content > ul,
.bs-content > ol {
  padding-left: 1.2em;
}

.bs-content > h2 {
  margin: 36px 0 16px;
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--ink);
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.bs-content > h3 {
  margin: 28px 0 12px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.bs-content > blockquote {
  position: relative;
  margin: 28px 0 36px;
  padding: 8px 12px;
  text-align: center;
  border: 0;
}

.bs-content > blockquote p {
  margin: 0 0 12px;
  font-family: "Newsreader", serif;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  max-width: 36ch;
  margin-inline: auto;
}

.bs-content .wp-block-image,
.bs-content > figure {
  margin: 24px 0 32px;
  border-radius: 18px;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  background: #ddd6cb;
}

.bs-content .wp-block-image img,
.bs-content > figure img,
.bs-content > p > img {
  width: 100%;
  max-width: 100%;
  height: min(380px, 42vh);
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Gömülü videolar (YouTube/Vimeo embed bloğu) tam genişlikte, 16:9 oranında */
.bs-content > figure.wp-block-embed,
.bs-content .wp-block-embed {
  background: #111815;
}

.bs-content .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
}

.bs-content > figure iframe,
.bs-content .wp-block-embed__wrapper iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
}

/* Sunucu tarafında (bkz. inc/blog.php fizyohol_prepare_blog_content_videos)
   YouTube embed'inin yerine geçen kapak görselli oynat linki — ana
   sayfadaki video modalını açar; JS kapalıysa doğrudan YouTube'a gider. */
.bs-content .bs-video-embed {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 24px 0 32px;
  border-radius: 18px;
  overflow: hidden;
  background: #111815;
  text-decoration: none;
  transition: transform 0.25s var(--ease, ease);
}

.bs-content .bs-video-embed:hover {
  transform: scale(1.005);
}

.bs-content .bs-video-embed img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bs-content .bs-video-embed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 21, 0.1) 0%, rgba(17, 24, 21, 0.6) 100%);
}

.bs-content .bs-video-embed .video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(60px, 8vw, 84px);
  height: clamp(60px, 8vw, 84px);
  pointer-events: none;
  z-index: 1;
}

.bs-content .bs-video-embed:hover .video-play {
  transform: translate(-50%, -50%) scale(1.04);
}

/* Figure yoksa doğrudan img (editor) */
.bs-content > p:has(> img:only-child) {
  margin: 24px 0 32px;
  border-radius: 18px;
  overflow: hidden;
  background: #ddd6cb;
}

.bs-content > *:last-child {
  margin-bottom: 0;
}

.bs-disclaimer {
  margin: 40px 0 0;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(27, 36, 32, 0.12);
  background: rgba(27, 36, 32, 0.04);
}

.bs-disclaimer strong {
  display: block;
  margin: 0 0 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
}

.bs-disclaimer p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Cause / treatment icon grids */
.bs-icon-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px 12px;
  margin-top: 22px;
  list-style: none;
  padding: 0;
}

.bs-icon-grid li {
  text-align: center;
}

.bs-icon-grid .ico {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  border-radius: 14px;
  background: var(--ochre-wash);
  color: var(--ochre);
  display: grid;
  place-items: center;
}

.bs-icon-grid .ico svg {
  width: 24px;
  height: 24px;
}

.bs-icon-grid strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink);
}

.bs-icon-grid span {
  display: block;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--ink-soft);
}

/* Symptoms + callout */
.bs-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: start;
  margin-top: 8px;
}

.bs-bullets {
  margin: 0;
  padding: 0 0 0 1.15rem;
  display: grid;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.bs-callout {
  padding: 18px 16px;
  border-radius: 18px;
  background: var(--surface-warm);
}

.bs-callout-top {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.bs-callout-top .ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface-ink);
  color: #f4f1eb;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex: none;
}

.bs-callout p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink);
}

.bs-callout .btn {
  width: 100%;
  justify-content: center;
}

/* Exercise thumbs */
.bs-ex-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
  list-style: none;
  padding: 0;
}

.bs-ex-grid li {
  min-width: 0;
}

.bs-ex-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  background: #ddd6cb;
  margin-bottom: 8px;
}

.bs-ex-grid strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.bs-ex-grid span {
  font-size: 0.74rem;
  color: var(--ink-soft);
}

/* FAQ in article — accordion behavior from main.css */
.bs-faq {
  margin-top: 8px;
  border-top: 1px solid rgba(27, 36, 32, 0.1);
}

.page-blog-single .faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 4px;
  font-size: 1rem;
  font-weight: 700;
}

/* ----- Native blog comments ----- */
.bs-comments {
  margin: 58px 0 48px;
  padding-top: 34px;
  border-top: 1px solid rgba(27, 36, 32, 0.1);
}

.bs-comments-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.bs-comments-kicker {
  margin: 0 0 7px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
}

.bs-comments-head h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 1.8rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.bs-comments-count {
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--ochre-wash);
  color: var(--ochre);
  display: inline-grid;
  place-items: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
}

.bs-comments-intro {
  max-width: 34ch;
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--ink-soft);
  text-align: right;
}

.bs-comment-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.bs-comment {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bs-comment-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.bs-comment-avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--surface-ink);
  color: #f4f1eb;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.bs-comment-main {
  min-width: 0;
  flex: 1;
}

.bs-comment-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.bs-comment-head strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.bs-comment-head time {
  flex: none;
  font-size: 0.72rem;
  color: var(--ink-soft);
}

.bs-comment-content {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}

.bs-comment-content p {
  margin: 0 0 8px;
}

.bs-comment-content p:last-child {
  margin-bottom: 0;
}

.bs-comments-empty {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px dashed rgba(27, 36, 32, 0.18);
  border-radius: 16px;
  color: var(--ink-soft);
}

.bs-comments-empty p,
.bs-comments-closed,
.bs-comment-noscript {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
}

.bs-comments-empty-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 11px;
  background: var(--ochre-wash);
  color: var(--ochre);
}

.bs-comments-empty-icon svg {
  width: 18px;
  height: 18px;
}

.bs-comment-form-wrap {
  margin-top: 24px;
  padding: 24px;
  border-radius: 20px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
}

.bs-comment-form-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.bs-comment-form-head h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.bs-comment-form-head p {
  margin: 0;
  font-size: 0.76rem;
  color: var(--ink-soft);
  text-align: right;
}

.bs-comment-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 15px;
}

.bs-comment-form .comment-form-author,
.bs-comment-form .comment-form-email,
.bs-comment-form .comment-form-comment {
  margin: 0;
}

.bs-comment-form .comment-form-author,
.bs-comment-form .comment-form-email {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.bs-comment-form .comment-form-author,
.bs-comment-form .comment-form-email {
  width: auto;
}

.bs-comment-form .comment-form-email {
  margin-left: 0;
}

.bs-comment-form .comment-form-comment,
.bs-comment-form .comment-form-cookies-consent,
.bs-comment-form .bs-comment-form-meta,
.bs-comment-form .bs-comment-consent,
.bs-comment-form .bs-comment-honeypot,
.bs-comment-form .form-submit {
  grid-column: 1 / -1;
}

.bs-comment-form label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
}

.bs-comment-form label span {
  color: var(--ochre);
}

.bs-comment-form input[type="text"],
.bs-comment-form input[type="email"],
.bs-comment-form textarea {
  width: 100%;
  border: 1px solid rgba(27, 36, 32, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}

.bs-comment-form input[type="text"],
.bs-comment-form input[type="email"] {
  min-height: 44px;
  padding: 10px 12px;
}

.bs-comment-form textarea {
  display: block;
  min-height: 142px;
  resize: vertical;
  padding: 12px;
  line-height: 1.55;
}

.bs-comment-form input:focus,
.bs-comment-form textarea:focus {
  border-color: var(--ochre);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(176, 125, 54, 0.13);
}

.bs-comment-form .comment-form-comment {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 1px;
}

.bs-comment-field-note {
  display: block;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.bs-comment-form .comment-form-cookies-consent,
.bs-comment-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.bs-comment-form input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex: none;
  margin: 1px 0 0;
  accent-color: var(--ochre);
}

.bs-comment-consent a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(176, 125, 54, 0.55);
  text-underline-offset: 2px;
}

.bs-comment-form-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 2px;
  font-size: 0.72rem;
  color: var(--ink-soft);
}

.bs-comment-form-meta a {
  color: var(--ink);
  font-weight: 700;
}

.bs-comment-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.bs-comment-form .form-submit {
  display: flex;
  justify-content: flex-end;
  margin: 0;
}

.bs-comment-submit {
  gap: 10px;
  padding: 11px 16px;
  font-size: 0.82rem;
}

.bs-comment-submit svg {
  width: 15px;
  height: 15px;
}

.bs-comment-submit:hover svg {
  transform: translateX(2px);
}

.bs-comments-closed,
.bs-comment-noscript {
  margin-top: 18px;
  color: var(--ink-soft);
}

/* Prev / next */
.bs-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 48px 0 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(27, 36, 32, 0.1);
}

.bs-post-nav-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 16px;
  border-radius: 18px;
  border: 1px solid var(--panel-border);
  background: var(--panel);
  color: inherit;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}

.bs-post-nav-item:hover {
  border-color: rgba(27, 36, 32, 0.18);
  background: #fff;
  transform: translateY(-2px);
}

.bs-post-nav-item--next {
  text-align: right;
  align-items: flex-end;
}

.bs-post-nav-dir {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 650;
  color: var(--ink-soft);
}

.bs-post-nav-dir svg {
  width: 14px;
  height: 14px;
}

.bs-post-nav-item strong {
  font-family: "Newsreader", serif;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
}

/* Related posts */
.bs-related {
  margin: 0 0 8px;
}

.bs-related-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.bs-related-head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 500;
  letter-spacing: -0.015em;
}

.bs-related-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}

.bs-related-all svg {
  width: 14px;
  height: 14px;
}

.bs-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bs-related-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: inherit;
  transition: transform 0.3s var(--ease);
}

.bs-related-card:hover {
  transform: translateY(-3px);
}

.bs-related-media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: #ddd6cb;
}

.bs-related-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.bs-related-card:hover .bs-related-media img {
  transform: scale(1.04);
}

.bs-related-cat {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
}

.bs-related-card h3 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
}

.bs-related-meta {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.page-blog-single .page-cta {
  padding-bottom: 80px;
}

/* Responsive */
@media (max-width: 1000px) {
  .bs-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "side";
  }

  .bs-side {
    position: static;
    max-height: none;
    overflow: visible;
  }

  .bs-icon-grid,
  .bs-ex-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .page-blog-single .bs-wrap.container {
    padding-top: 0;
    padding-bottom: 64px;
    padding-inline: 18px;
  }

  .bs-related-grid {
    display: flex;
    align-items: stretch;
    gap: 14px;
    margin-inline: -18px;
    padding-inline: 18px;
    padding-bottom: 4px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 18px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
	touch-action: pan-x pan-y pinch-zoom;
    scrollbar-width: none;
  }

  .bs-related-grid::-webkit-scrollbar {
    display: none;
  }

  .bs-related-card {
    flex: 0 0 min(78%, 280px);
    scroll-snap-align: start;
    min-width: 0;
  }

  .bs-related-card h3 {
    font-size: 1.02rem;
  }

  /* Featured image + breadcrumb → other subpages mobile hero pattern */
  .bs-article-head {
    display: flex;
    flex-direction: column;
    margin: 0 0 22px;
    margin-inline: -18px;
  }

  .bs-hero-img {
    order: 1;
    margin: 0;
    border-radius: 0;
    width: 100%;
    height: clamp(220px, 52vw, 300px);
  }

  .bs-hero-img img {
    object-position: 55% 28%;
  }

  .bs-article-head .bs-breadcrumb {
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    z-index: 5;
    margin: 0;
    padding: 0 18px;
  }

  .bs-article-head .bs-breadcrumb nav {
    font-size: 0.72rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
  }

  .bs-article-head .bs-breadcrumb nav,
  .bs-article-head .bs-breadcrumb a {
    color: rgba(244, 241, 235, 0.9);
  }

  .bs-article-head .bs-breadcrumb a:hover {
    color: #fff;
  }

  .bs-article-head .bs-breadcrumb [aria-current="page"] {
    color: #fff;
    font-weight: 600;
    max-width: 18ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .bs-article-head .bs-breadcrumb .sep {
    color: rgba(244, 241, 235, 0.5);
    opacity: 1;
  }

  .bs-hero-img::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(
        180deg,
        rgba(12, 18, 16, 0.58) 0%,
        rgba(12, 18, 16, 0.2) 32%,
        transparent 52%
      ),
      linear-gradient(
        180deg,
        transparent 58%,
        rgba(244, 241, 235, 0.4) 84%,
        var(--paper) 100%
      );
  }

  .bs-hero-img {
    position: relative;
  }

  .bs-meta,
  .bs-article-head h1,
  .bs-lede {
    order: 2;
    padding-inline: 18px;
  }

  .bs-author {
    padding: 20px 18px;
  }

  .bs-author-bio {
    padding-inline: 0;
  }

  .page-blog-single .faq-q {
    padding-inline: 2px;
  }

  .page-blog-single .page-cta .container {
    padding-inline: 18px;
  }

  .bs-meta {
    margin: 18px 0 12px;
  }

  .bs-article-head h1 {
    margin: 0 0 12px;
    font-size: clamp(1.75rem, 7vw, 2.2rem);
    line-height: 1.12;
  }

  .bs-lede {
    margin: 0;
    max-width: none;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .bs-article > .bs-quote,
  .bs-article > .bs-section,
  .bs-article > .bs-post-nav,
  .bs-article > .bs-related {
    max-width: none;
  }

  .bs-section > p,
  .bs-content > p,
  .bs-content > ul,
  .bs-content > ol,
  .bs-lede {
    max-width: none;
  }

  .bs-side {
    padding-top: 12px;
  }

  /* TOC: sticky left FAB + slide-in panel */
  .bs-side .bs-toc {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    width: min(320px, 86vw);
    height: 100%;
    margin: 0;
    padding: 18px 16px max(20px, env(safe-area-inset-bottom));
    background: #f8f5ef;
    border-right: 1px solid rgba(27, 36, 32, 0.08);
    box-shadow: 18px 0 40px -24px rgba(27, 36, 32, 0.45);
    transform: translateX(-105%);
    transition: transform 0.3s var(--ease);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .bs-side .bs-toc.is-open {
    transform: translateX(0);
  }

  .bs-toc-close {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(27, 36, 32, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    color: var(--ink);
    cursor: pointer;
    flex: none;
  }

  .bs-toc-close svg {
    width: 16px;
    height: 16px;
  }

  .bs-toc-fab {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: fixed;
    left: 0;
    top: 50%;
    z-index: 65;
    transform: translateY(-50%);
    margin: 0;
    padding: 14px 9px;
    border: 1px solid rgba(27, 36, 32, 0.12);
    border-left: 0;
    border-radius: 0 16px 16px 0;
    background: rgba(244, 241, 235, 0.96);
    color: var(--ink);
    box-shadow: 8px 12px 28px -16px rgba(27, 36, 32, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    font: inherit;
  }

  .bs-toc-fab svg {
    width: 18px;
    height: 18px;
    flex: none;
    color: var(--ochre);
  }

  .bs-toc-fab span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .bs-toc-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 75;
    background: rgba(18, 24, 21, 0.38);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
  }

  .bs-toc-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  body.bs-toc-open {
    overflow: hidden;
  }
}

@media (max-width: 700px) {
  .bs-comments-head,
  .bs-comment-form-head {
    display: block;
  }

  .bs-comments-intro,
  .bs-comment-form-head p {
    max-width: none;
    margin-top: 10px;
    text-align: left;
  }

  .bs-comment-form {
    grid-template-columns: 1fr;
  }

  .bs-comment-form .comment-form-author,
  .bs-comment-form .comment-form-email,
  .bs-comment-form .comment-form-comment,
  .bs-comment-form .comment-form-cookies-consent,
  .bs-comment-form .bs-comment-form-meta,
  .bs-comment-form .bs-comment-consent,
  .bs-comment-form .bs-comment-honeypot,
  .bs-comment-form .form-submit {
    grid-column: 1;
  }

  .bs-comment-form-wrap {
    padding: 20px 16px;
  }

  .bs-comment-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .bs-split {
    grid-template-columns: 1fr;
  }

  .bs-icon-grid,
  .bs-ex-grid {
    grid-template-columns: 1fr;
  }

  .bs-post-nav {
    grid-template-columns: 1fr;
  }

  .bs-post-nav-item--next {
    text-align: left;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bs-toc-list a,
  .bs-related-card,
  .bs-related-media img,
  .bs-post-nav-item,
  .bs-share-list a {
    transition: none;
  }

  .bs-related-card:hover,
  .bs-post-nav-item:hover,
  .bs-share-list a:hover {
    transform: none;
  }
}

@media print {
  .site-header,
  .mobile-menu,
  .bs-side,
  .bs-toc,
  .bs-toc-fab,
  .bs-toc-backdrop,
  .bs-pdf,
  .bs-author,
  .bs-share,
  .page-cta,
  .bs-related,
  .bs-post-nav,
  .bs-comments,
  .site-footer,
  .modal,
  .float-contact,
  [data-open-randevu] {
    display: none !important;
  }

  .bs-layout {
    display: block;
  }

  .page-blog-single {
    background: #fff;
  }

  /* Print sayfa genişliği mobil breakpoint’e düşer — flex/order/absolute’ü sıfırla */
  .bs-article-head {
    display: block !important;
    margin: 0 0 20px !important;
    margin-inline: 0 !important;
  }

  .bs-article-head .bs-breadcrumb {
    position: static !important;
    margin: 0 0 10px !important;
    padding: 0 !important;
  }

  .bs-article-head .bs-breadcrumb nav,
  .bs-article-head .bs-breadcrumb a,
  .bs-article-head .bs-breadcrumb [aria-current="page"],
  .bs-article-head .bs-breadcrumb .sep {
    color: #333 !important;
    text-shadow: none !important;
  }

  .bs-meta,
  .bs-article-head h1,
  .bs-lede {
    order: unset !important;
    padding-inline: 0 !important;
  }

  /* Featured: vh/vw print’te 0’a düşebiliyor — yüksekliği otomatik tut */
  .bs-hero-img {
    display: block !important;
    position: relative !important;
    order: unset !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    margin: 0 0 18px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .bs-hero-img::after {
    display: none !important;
  }

  .bs-hero-img img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: 320px !important;
    object-fit: cover !important;
    object-position: center !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
