.blog-article {
  background: #fff;
  padding: 24px;
}

.blog-breadcrumb {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  align-items: center;
}

.blog-breadcrumb a {
  color: rgba(0, 0, 0, 0.6);
}
.blog-content {
  
}

.blog-header {
  display: flex;
  flex-direction: column;
}

.blog-meta-wrapper {
  padding-bottom: 16px;
  border-bottom: 1px solid;
}

.blog-title {
  font-size: 30px;
  font-weight: 700;
  color: #121212;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.blog-date-wrapper > .bookmark-toggle {
  font-size: 14px;
}

.blog-date-wrapper > .bookmark-toggle svg {
  margin-bottom: 2px;
}

.blog-date {
  font-size: 14px;
}

.blog-share,
.blog-share-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
}

.blog-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff !important;
  font-size: 16px;
  cursor: pointer;
}

.blog-icon:focus,
.blog-icon:active {
  color: #fff !important;
  outline: none !important;
}

.blog-icon.whatsapp { background: #25D366; }
.blog-icon.facebook { background: #3b5998; }
.blog-icon.twitter { background: #333; }
.blog-icon.copylink { background: #999; }

.blog-icon:hover {
  opacity: 0.85;
}

.blog-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  object-fit: cover;
}

.blog-body p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1.2em;
}

.blog-body h3 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 32px;
}

.blog-related-box {
  padding: 12px;
  background: #f5f5f5;
  border-left: 4px solid #1976d2;
  margin: 24px 0;
  font-size: 16px;
}

.blog-related-box a {
  color: #085dc8;
  font-weight: 500;
}

.blog-footer {
  margin-top: 30px;
}
@media screen and (max-width: 992px) {
  .blog-breadcrumb {
    margin-bottom: 0;
  }
  
  .blog-image {
    order: 0;
  }
  
  .blog-meta-wrapper {
    order: 1;
    margin-bottom: 15px;
  }
  
  .blog-meta {
    display: block;
  }
  
  .blog-share {
    justify-content: flex-end;
  }
  
  .blog-title {
    font-size: 22px;
  }

  .blog-image img {
    margin: 10px 0;
  }

  .blog-body h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .blog-article {
    padding: 16px;
  }
}