.pc-home-previews {
  display: block;
}

/* Cards: full width by default (mobile) */
.pc-preview-card {
  width: 100%;
  margin: 10px 0;
}

/* Outer card */
.pc-preview {
  position: relative;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  overflow: hidden; /* pick ONE; hidden is usually what you want */
}

/* Make whole card clickable */
.pc-preview-link {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

/* Overlay + text container (mobile default: in flow) */
.pc-preview__overlay {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 480px;
  padding: 2.5rem;
  background-color: rgba(255, 255, 255, 0.5);
}

.pc-preview__kicker {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  font-weight: 900;
  background: #000;
  color: #fff;
}

.pc-preview__body {
  line-height: 1.5;
  font-size: 0.9rem;
  margin: 0 0 1.25rem;
  color: #000;
  font-weight: 700;
}

.pc-preview__button {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.06em;
  background-color: #000;
  color: #fff;
  padding: 3px;
  text-decoration: none;
  width: fit-content;
  align-self: flex-end;
  margin: 1rem;
}

@media (min-width: 780px) {
  .pc-preview-card {
    width: 66%;
    margin: 10px auto;
  }

  /* Desktop: overlay sits on top of image */
  .pc-preview__overlay {
    position: absolute;
  }
}