/* Blog iç sayfa — clone chrome + okuma düzeni */

.page-blog-post .bp-masthead {
  background: var(--navy);
  color: #fff;
  padding: 108px 0 clamp(40px, 5vh, 56px);
}

.page-blog-post .bp-masthead .grid-12 {
  align-items: end;
  row-gap: 0;
}

.bp-crumbs {
  grid-column: 1 / span 12;
  margin: 0 0 28px;
}

.bp-crumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.bp-crumbs li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
}

.bp-crumbs li:not(:last-child)::after {
  content: "→";
  font-size: 11px;
  color: rgba(255, 255, 255, 0.32);
}

.bp-crumbs a {
  color: rgba(212, 238, 255, 0.9);
}

.bp-crumbs a:hover {
  color: #fff;
}

.bp-crumbs [aria-current="page"] {
  color: rgba(255, 255, 255, 0.72);
  max-width: 28em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bp-masthead-copy {
  grid-column: 1 / span 8;
}

.bp-cat {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(212, 238, 255, 0.72);
}

.bp-masthead h1 {
  margin: 0 0 16px;
  max-width: 16em;
  font-family: var(--font);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 500;
  letter-spacing: -1.1px;
  line-height: 1.14;
  color: #fff;
}

.bp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
}

.bp-meta span + span::before {
  content: "·";
  margin-right: 14px;
  color: rgba(255, 255, 255, 0.35);
}

.bp-layout {
  padding: clamp(40px, 5vw, 64px) 0 clamp(64px, 7vw, 96px);
}

.bp-layout-inner {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 180px;
  column-gap: 24px;
  align-items: start;
}

.bp-toc {
  position: sticky;
  top: 100px;
  grid-column: 1;
  padding-top: 8px;
}

.bp-toc-label {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.bp-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 1px solid var(--line);
}

.bp-toc a {
  display: block;
  padding: 8px 0 8px 14px;
  margin-left: -1px;
  border-left: 2px solid transparent;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.bp-toc a:hover {
  color: var(--navy);
  border-left-color: var(--navy);
}

.bp-article {
  grid-column: 2;
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}

.bp-cover {
  margin: 0 0 36px;
  overflow: hidden;
  background: #0b1c2c;
  aspect-ratio: 16 / 10;
}

.bp-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bp-dek {
  margin: 0 0 36px;
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 400;
  letter-spacing: -0.25px;
  line-height: 1.55;
  color: var(--ink);
}

.bp-article h2 {
  margin: 44px 0 14px;
  scroll-margin-top: 100px;
  font-family: var(--font);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.5px;
  color: var(--ink);
}

.bp-article h2:first-of-type {
  margin-top: 0;
}

.bp-article h3 {
  margin: 28px 0 10px;
  font-family: var(--font);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--navy);
}

.bp-article p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--body);
}

.bp-article ul {
  margin: 0 0 20px;
  padding: 0 0 0 1.15em;
}

.bp-article li {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
}

.bp-article li strong {
  color: var(--ink);
  font-weight: 600;
}

.bp-faq {
  margin: 48px 0 0;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.bp-faq h2 {
  margin-top: 0;
}

.bp-faq details {
  border-bottom: 1px solid var(--line);
}

.bp-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--ink);
}

.bp-faq summary::-webkit-details-marker {
  display: none;
}

.bp-faq summary::after {
  content: "+";
  float: right;
  color: var(--navy);
  font-weight: 500;
}

.bp-faq details[open] summary::after {
  content: "–";
}

.bp-faq details p {
  margin: 0 0 18px;
  padding-right: 28px;
}

.bp-cta {
  margin: 48px 0 0;
  padding: clamp(28px, 3vw, 36px);
  background: var(--ice);
}

.bp-cta p {
  margin: 0 0 16px;
  max-width: 28em;
  font-size: 16px;
  line-height: 1.6;
  color: #3f6280;
}

.bp-cta .btn {
  display: inline-flex;
}

.bp-related {
  padding: 0 0 clamp(64px, 7vw, 96px);
}

.bp-related .team-head {
  margin-bottom: 28px;
}

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

@media (max-width: 1100px) {
  .bp-layout-inner {
    grid-template-columns: 1fr;
  }

  .bp-toc {
    position: static;
    grid-column: 1;
    margin-bottom: 28px;
  }

  .bp-toc ol {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 0;
    border-left: 0;
  }

  .bp-toc a {
    border-left: 0;
    padding: 6px 12px 6px 0;
    margin: 0;
  }

  .bp-toc a::after {
    content: "·";
    margin-left: 12px;
    color: var(--line);
  }

  .bp-toc li:last-child a::after {
    content: none;
  }

  .bp-article {
    grid-column: 1;
  }

  .bp-masthead-copy {
    grid-column: 1 / span 12;
  }
}

@media (max-width: 900px) {
  .bp-related-grid {
    grid-template-columns: 1fr;
  }
}
