/* ============================================================
   BLOG POST PAGE
   ============================================================ */

.blog-post {
  background-color: #f0efeb;
  padding-bottom: 7.5rem; /* 120px */
}

.blog-post__container {
  display: flex;
  flex-direction: column;
  gap: 2.625rem; /* 42px */
}

/* ----------------------------------------
   Post header
   ---------------------------------------- */
.blog-post__header {
  display: flex;
  flex-direction: column;
  gap: 1.25rem; /* 20px */
  margin-top: 2.875rem; /* 46px */
}

.blog-post__category {
  font-size: 0.875rem; /* 14px */
  font-weight: 700;
  color: #5b5b5b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-post__title {
  font-size: 3.5rem; /* 56px */
  font-weight: 600;
  color: #020617;
  line-height: 1.1;
  max-width: 75.5625rem; /* 1209px */
}

.blog-post__meta {
  display: flex;
  align-items: center;
}

.blog-post__share {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* 8px */
}

.blog-post__share-label {
  font-size: 1.0625rem; /* 17px */
  font-weight: 400;
  color: #020617;
}

.blog-post__share-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* 8px */
}

.blog-post__share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;  /* 36px */
  height: 2.25rem; /* 36px */
  background: #020617;
  border-radius: 50%;
  transition: opacity 0.2s;
}

.blog-post__share-btn:hover {
  opacity: 0.75;
}

/* ----------------------------------------
   Hero image
   ---------------------------------------- */
.blog-post__hero {
  width: 100%;
  height: 26.625rem; /* ~426px */
  border-radius: 0.5rem;
  overflow: hidden;
}

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

/* ----------------------------------------
   Article content — no classes on children
   ---------------------------------------- */
.blog-post__article {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* 24px */
  max-width: 46.75rem; /* 748px */
  margin-inline: auto;
}

.blog-post__article p {
  font-size: 1rem; /* 16px */
  font-weight: 400;
  color: #020617;
  line-height: 1.7;
  margin: 0;
}

.blog-post__article h2 {
  font-size: 1.375rem; /* 22px */
  font-weight: 600;
  color: #020617;
  line-height: 1.3;
  margin: 0;
  margin-top: 0.5rem;
}

.blog-post__article ul {
  margin: 0;
  padding-left: 1.25rem;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.blog-post__article ul li {
  font-size: 1rem; /* 16px */
  font-weight: 400;
  color: #020617;
  line-height: 1.7;
}

/* ----------------------------------------
   Related articles
   ---------------------------------------- */
.blog-post__related {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* 24px */
}

.blog-post__related-title {
  font-size: 2rem; /* 32px */
  font-weight: 500;
  color: #020617;
  line-height: 1.2;
  margin: 0;
}

/* ----------------------------------------
   Responsive
   ---------------------------------------- */
@media (max-width: 960px) {
  .blog-post__title {
    font-size: 2.5rem;
  }

  .blog-post__hero {
    height: 18rem;
  }
}

@media (max-width: 640px) {
  .blog-post__title {
    font-size: 1.75rem;
  }

  .blog-post__hero {
    height: 13rem;
  }

  .blog-post__article {
    max-width: 100%;
  }
}
