/* Container just holds the block title above; article styles the card */
.bbw-posts.feature-single .fs-card {
  position: relative;
}

.bbw-posts.feature-single .fs-thumb {
  display:block;
  overflow: hidden;
}

.fs-meta-block {
    position: absolute;
    left: 30px;
    bottom: 24px;
    width: 45%;
    z-index: 2;
}

.bbw-posts.feature-single .fs-thumb img {
  width: 100%;
  height: 606px;
  display: block;
  object-fit: cover;
}

/* Title overlay */
.bbw-posts.feature-single .fs-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: #000;
  opacity: 0.3;
}

/* Optional soft gradient for readability */
/* .bbw-posts.feature-single .fs-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.55) 100%);
  border-radius: 8px;
  pointer-events: none;
} */

.bbw-posts.feature-single .fs-title {
  margin: 10px 0 0;
  line-height: 1.15;
  color: #fff;
}

.bbw-posts.feature-single .fs-title a {
  font-size: 48px;
}

.bbw-posts.feature-single .fs-title a {
  color: inherit;
  text-decoration: none;
}
.bbw-posts.feature-single .fs-title a:hover { text-decoration: underline; }

/* Badge */
.bbw-posts.feature-single .bbw-pill {
  display:inline-block;
  background:#6C8AE4; /* overridden by widget control */
  color:#fff;
  font-size: 20px;
  line-height: 1;
  padding: 8px 14px;
  text-decoration: none;
}

/* Responsive spacing for bottom overlay */
@media (max-width: 991px) {
  .bbw-posts.feature-single .fs-thumb img {
    height: 476px;
  }

  .fs-meta-block {
    width: 100%;
  }

  .bbw-posts.feature-single .bbw-pill {
    font-size: 14px;
    padding: 5px 12px;
  }
}

@media (max-width: 768px) {
  .bbw-posts.feature-single .fs-thumb img {
    height: 260px;
  }

  .fs-meta-block {
    width: 75%;
  }

  .bbw-posts.feature-single .fs-title {
    line-height: 21px;
  }

  .bbw-posts.feature-single .fs-title a {
    font-size: 16px;
  }
}