/* Extra styles for the static blog, layered on top of the site's style.css.
   Reuses brand tokens already present in style.css (greige/neutral bg, green accents). */

.blog-single .post-title {
  margin-top: 1.2rem;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.blog-single .post-meta {
  font-size: 0.85rem;
  opacity: 0.8;
}

.post-meta-simple {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1FA84F;
  background: #EFEAE3;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  margin-top: 0.6rem;
}

.post-cover {
  width: 100%;
  border-radius: 16px;
  margin: 1.2rem 0 1.8rem 0;
  display: block;
}

.post-body p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.post-body h3.title-2 {
  margin-top: 1.6rem;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.post-body ul {
  margin-bottom: 1.2rem;
  padding-left: 1.3rem;
}

.post-body li {
  margin-bottom: 0.5rem;
  font-size: 1.02rem;
}

.sources-box {
  background: #EFEAE3;
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  margin: 1.6rem 0;
}

.sources-box h4 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: #292836;
}

.sources-box ul {
  margin: 0;
  padding-left: 1.2rem;
}

.sources-box li {
  font-size: 0.92rem;
  margin-bottom: 0.3rem;
}

.share-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 1rem 0 1.6rem 0;
  background: #EFEAE3;
  border-radius: 999px;
  padding: 0.6rem 1rem;
}

.share-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #292836;
  margin-right: 0.2rem;
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1FA84F;
  color: #fff !important;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.share-btn:hover {
  background: #21DF51;
  transform: translateY(-2px);
}

.view-count {
  margin-left: auto;
  font-size: 0.85rem;
  color: #292836;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.back-link {
  margin-top: 1rem;
  display: inline-block;
}

.toast-copied {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1FA84F;
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 10px;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 9999;
}

.toast-copied.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 576px) {
  .share-bar { justify-content: flex-start; }
  .view-count { margin-left: 0; width: 100%; margin-top: 0.4rem; }
}
