
.card-image-wrapper .ribbon {
  position: absolute;
  width: 100px;   /* thoda wider */
  height: 30px;   /* thoda taller */
  background: linear-gradient(45deg, #3957ed, #1a2fcf); /* gradient effect */
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  z-index: 2;
  font-size: 0.85rem;
  border-radius: 4px;
}

/* Center section titles */
.section-title {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .card-image-wrapper .ribbon {
    width: 80px;
    height: 25px;
    font-size: 0.7rem;
  }

}