/* ============================================
   B.K Finance Widget Blog Styling
   Prefix: bkfw-
   Safe for embed or multi-site integration
============================================ */

.bkfw-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: "Montserrat", sans-serif;
}

.bkfw-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #444;
  margin-bottom: 40px;
}

.bkfw-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.bkfw-blog-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bkfw-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.bkfw-post-title {
  font-size: 1.3rem;
  color: #444;
  margin-bottom: 10px;
}

.bkfw-post-meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 15px;
}

.bkfw-post-excerpt {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

.bkfw-readmore {
  display: inline-block;
  margin-left: 5px;
  font-weight: 600;
  color: #444;
  text-decoration: none;
}

.bkfw-readmore:hover {
  text-decoration: underline;
}

.bkfw-tags {
  margin-top: 15px;
}

.bkfw-tag {
  display: inline-block;
  background: #eef2f7;
  color: #444;
  font-size: 0.85rem;
  border-radius: 4px;
  padding: 4px 10px;
  margin: 4px 6px 0 0;
  text-decoration: none;
  transition: background 0.3s ease;
}

.bkfw-tag:hover {
  background: #d8e0f7;
}

/* Pagination */
.bkfw-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  gap: 10px;
  flex-wrap: wrap;
}

.bkfw-page-link {
  display: inline-block;
  padding: 8px 14px;
  background: #eef2f7;
  color: #444;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.bkfw-page-link:hover {
  background: #d8e0f7;
}

.bkfw-page-link.active {
  background: #444;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .bkfw-title {
    font-size: 1.6rem;
  }
  .bkfw-blog-card {
    padding: 20px;
  }
}
/* =============================================
   B.K Finance Widget - Article Page Styling
   Prefix: bkfw-
============================================= */

.bkfw-article-hero {
  background-color: #222223;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  margin-top: 70px;
}

.bkfw-article-hero .bkfw-container {
  position: relative;
  z-index: 2;
}
.bkfw-breadcrumb {
  color: #fff;
  margin-bottom: 10px;
}
.bkfw-crumb {
  color: #ffcc00;
  text-decoration: none;
}
.bkfw-crumb:hover { text-decoration: underline; }
.bkfw-article-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-top: 10px;
}

/* ARTICLE BODY */
.bkfw-article-section {
  background: #f9f9f9;
  padding: 60px 20px;
}
.bkfw-article-body {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.7;
  color: #333;
}
.bkfw-article-content img {
  max-width: 100%;
  border-radius: 6px;
  margin: 15px 0;
}
.bkfw-article-content a {
  color: #444;
  text-decoration: underline;
}
.bkfw-article-content a:hover {
  color: #555;
}
.bkfw-post-meta {
  text-align: right;
  font-size: 0.9rem;
  color: #777;
  margin-top: 20px;
}

/* TAGS */
.bkfw-tags {
  margin-top: 25px;
}
.bkfw-tag {
  display: inline-block;
  background: #eef2f7;
  color: #444;
  font-size: 0.85rem;
  border-radius: 4px;
  padding: 4px 10px;
  margin: 4px 6px 0 0;
  text-decoration: none;
  transition: background 0.3s ease;
}
.bkfw-tag:hover { background: #d8e0f7; }

/* SHARE SECTION */
.bkfw-share {
  text-align: center;
  padding: 40px 20px 80px;
  background: #fff;
}
.bkfw-share-title {
  font-size: 1.4rem;
  color: #444;
  margin-bottom: 15px;
}
.bkfw-share-icons {
  font-size: 28px;
}
.bkfw-share-icons a {
  color: #444;
  margin: 0 8px;
  transition: 0.3s;
}
.bkfw-share-icons a:hover {
  color: #ffcc00;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .bkfw-article-body { padding: 25px; }
  .bkfw-article-title { font-size: 1.8rem; }
}
