/* =========================================================
   blog-post.css
   Blog article (detail) page — "Blog inside page" from Figma.
   Shared classes (.site-header, .site-footer, .btn, .container)
   live in style.css.
   ========================================================= */

/* ---------- breadcrumb ---------- */
.bp-breadcrumb {
  background: #e5e9ee;
  padding: 4px 0;
}

.bp-breadcrumb .container {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.56);
}

.bp-breadcrumb a {
  color: rgba(0, 0, 0, 0.56);
}

.bp-breadcrumb a:hover {
  color: var(--color-deep-blue);
}

.bp-breadcrumb__current {
  color: var(--color-black);
}

/* ---------- hero ---------- */
.bp-hero {
  background: #f6f6f6;
}

.bp-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 607px) minmax(0, 607px);
  justify-content: space-between;
  align-items: center;
  min-height: 500px;
}

.bp-hero__title {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-black);
  margin: 0;
  max-width: 607px;
}

.bp-hero__media {
  align-self: stretch;
  min-height: 500px;
  overflow: hidden;
}

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

/* ---------- article layout ---------- */
.bp-article {
  padding: 64px 0 80px;
}

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

.bp-body {
  max-width: 842px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

/* ---------- prose blocks ---------- */
.bp-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bp-block h2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #1c62cb;
  margin: 0;
}

.bp-block h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-black);
  margin: 4px 0 0;
}

.bp-body p {
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-black);
  margin: 0;
}

.bp-lead {
  margin: 0;
}

/* ---------- bullet lists with chevron marker ---------- */
.bp-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bp-list li {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 8px;
  align-items: start;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-black);
}

.bp-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin: 6px 0 0;
  border-radius: 50%;
  background: #2b3990;
  flex-shrink: 0;
}

.bp-list--detail {
  gap: 16px;
}

.bp-list--detail li {
  gap: 12px;
}

.bp-list strong {
  font-weight: 700;
  color: var(--color-black);
}

/* ---------- sticky share sidebar ---------- */
.bp-aside {
  position: sticky;
  top: 110px;
}

.bp-share {
  border-top: 1px solid #d9d9d9;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bp-share__label {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-black);
  margin: 0;
}

.bp-share__links {
  display: flex;
  gap: 12px;
}

.bp-share__links a {
  width: 33px;
  height: 33px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.bp-share__links a:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.bp-share__links img {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .bp-hero__inner {
    grid-template-columns: 1fr;
  }

  .bp-hero__title {
    padding: 40px 0;
    font-size: 32px;
    max-width: none;
  }

  .bp-hero__media {
    min-height: 320px;
    max-height: 360px;
  }

  .bp-article__inner {
    grid-template-columns: 1fr;
  }

  .bp-aside {
    position: static;
    order: -1;
  }
}
