.featured-image {
  max-width: 1100px;
  margin: 0 auto var(--sp-spacing-xxl);
  border-radius: var(--sp-radius-lg);
  overflow: hidden;
  box-shadow: var(--sp-shadow-lg);
}

.featured-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px;
}

.card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--sp-color-surface-dark);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    transparent 100%
  );
  pointer-events: none;
}

.card-image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--sp-color-surface-dark) 0%,
    var(--sp-color-background-dark) 100%
  );
}

.card-image--placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--sp-color-text-disabled);
  opacity: 0.3;
}

.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 180px;
  background: linear-gradient(
    135deg,
    var(--sp-color-surface-dark) 0%,
    var(--sp-color-background-dark) 100%
  );
}

.image-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--sp-color-text-disabled);
  opacity: 0.3;
}

.featured-image .image-placeholder {
  min-height: 300px;
}
