body {
  background: #f9fafb;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.main-wrapper{
    margin-top: 6rem;
    margin-bottom: 2rem;
}
/* Featured Post */
.featured-card {
  position: relative;
  height: 420px;
  border-radius: 16px;
  background: url('https://retzillainfo.com/assets/img/productdev.jpg') center/cover no-repeat;
  overflow: hidden;
}

.featured-overlay {
  position: absolute;
  inset: 0;
  padding: 40px;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.2)
  );
  color: #fff; 
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-overlay h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.featured-overlay p {
  max-width: 520px;
  opacity: 0.9;
}

.featured-arrow {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: white;
  opacity: 0.8;
}

/* Blog Cards */
.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.2s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-7px);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card .card-body {
  padding: 15px;
}

.blog-card h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-card small {
  color: #6b7280;
}

.blog-main-section{
  min-height: 100vh;
}

/* ============= blog details ============== */

.category-badge {
  background-color: #d9f0c1;
  color: #3c6e1f;
  font-weight: 500;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
}

.blog-title {
  font-weight: 700;
  line-height: 1.3;
}

.section-title {
  margin-top: 20px;
  font-weight: 600;
}

.content-list {
  padding-left: 18px;
}

.content-list li {
  margin-bottom: 14px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .featured-card {
    height: 320px;
  }

  .featured-overlay h1 {
    font-size: 1.6rem;
  }
}