.blog-header {
  position: sticky;
}

/* General Section Styling */
.blog-section-home {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-section-home .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #f99a39;
}
.blog-section-home {
  /* Flexbox Grid */
}
.blog-section-home .blog-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.blog-section-home {
  /* Individual Card Styling */
}
.blog-section-home .blog-card {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  background: var(--bs-theme-color);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.blog-section-home .blog-card:hover {
  transform: translateY(-5px);
}
.blog-section-home .blog-image img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.blog-section-home .blog-image .date {
  position: absolute;
  right: 8px;
  background-color: #f99a39;
  padding: 4px 8px;
  border-radius: 5px;
  top: 8px;
}
.blog-section-home .blog-content {
  padding: 20px;
}
.blog-section-home .blog-heading {
  font-size: 1.25rem;
  margin: 0 0 10px;
  color: #f99a39;
}
.blog-section-home .blog-heading a {
  color: inherit;
}
.blog-section-home .blog-para {
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 20px;
}
.blog-section-home {
  /* Read More Button */
}
.blog-section-home .read-more {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--bs-orange-color);
  color: var(--bs-theme-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}
.blog-section-home .read-more:hover {
  background-color: #fff;
}

.details-page .blog-title {
  font-weight: 700;
  color: #fff !important;
}
.details-page .blog-date {
  font-size: 14px;
  color: #f99a39;
}
.details-page .sidebar {
  background: #f99a39;
  padding: 20px;
  border-radius: 8px;
}
.details-page .recent-post a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}
.details-page .recent-post a:hover {
  color: #dc3545;
}
.details-page .card {
  background-color: var(--bs-theme-color);
}/*# sourceMappingURL=style.css.map */