.project-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  height: 399px;
}

.project-card__media {
  flex: 1 0 0;
  min-height: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--functional-neutral-light);
  background-color: var(--functional-surface);
  background-image:
    linear-gradient(45deg, #e6e6e6 25%, transparent 25%, transparent 75%, #e6e6e6 75%, #e6e6e6),
    linear-gradient(45deg, #e6e6e6 25%, transparent 25%, transparent 75%, #e6e6e6 75%, #e6e6e6);
  background-size: 32px 32px;
  background-position: 0 0, 16px 16px;
  display: block;
  text-decoration: none;
  color: inherit;
}

.project-card__media > img,
.project-card__media > video,
.project-card__media > picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}

.project-card__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.project-card__captions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  color: var(--functional-neutral-dark);
}

.project-card__captions > * {
  white-space: nowrap;
}

.project-card__title {
  color: var(--accents-wine-red);
  width: 100%;
}
