/* Suspended Service Styling */
.feature-tile.is-suspended {
  position: relative;
  overflow: hidden;
}

.feature-tile.is-suspended img {
  filter: grayscale(1); /* Makes the image black and white */
  opacity: 0.5;
}

.suspended-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20pt;
  background: rgba(0, 0, 0, 0.05); /* Slight tint */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  pointer-events: none; /* Allows clicks to pass through if needed */
}

.suspended-ribbon {
  background: rgba(255, 140, 0, 0.8);
  color: white;
  padding: 10px 30px;
  font-weight: bold;
  font-size: 1.1rem;
  text-transform: uppercase;
  transform: rotate(-5deg);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  border: 2px solid white;
}