.card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  transition: opacity 0.2s ease;
}

.card:hover {
  opacity: 0.92;
}

.card:hover .card-title {
  opacity: 0.6;
}

.card.wide {
  grid-column: span 2;
}

.card-media {
  width: 100%;
  overflow: hidden;
}

.card-title {
  padding: 12px 24px 12px 0;
  font-size: 28px;
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: #000;
  word-break: break-word;
  transition: opacity 0.2s ease;
}

.image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
}

.image-wrap.fill {
  width: 100%;
}

.image-wrap.rounded-square {
  border-radius: 65px;
}

.image-wrap.rounded-circle {
  border-radius: 50%;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.placeholder.rounded-circle {
  border-radius: 50%;
}

@container (max-width: 867px) {
  .card.wide {
    grid-column: span 1;
  }
}

@media (max-width: 915px) {
  .card.wide {
    grid-column: span 1;
  }
}
