.dc-recente-acties {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  width: 100%;
  max-width: 1000px;
  margin: 0px auto !important;
}

.dc-actie-card {
  background: #fff;
  border: 1px solid #d8e9f2;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(17, 58, 80, 0.08);
  overflow: hidden;
  display: flex;
  gap: 20px;
  flex-direction: row;
  min-height: 300px;

}

.dc-actie-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  background: #eef8fd;
  overflow: hidden;
  width: 40%;
}

.dc-actie-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dc-actie-image--placeholder {
  display: grid;
  place-items: center;
  min-height: 100%;
  color: #117aa8;
  font-weight: 800;
  background: linear-gradient(135deg, #eef8fd, #fff8cf);
}

.dc-actie-card__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 60%;
}

.dc-actie-status {
  margin: 0 0 10px !important;
  align-self: flex-start;
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 13px !important;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
}

.dc-actie-status--actief {
  background: #d9f5e0;
  color: #1d662d;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.dc-actie-status--binnenkort {
  background: #fff0ca;
  color: #7a5900;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.dc-actie-status--verlopen {
  background: #ffe1df;
  color: #812419;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.dc-actie-card__title {
  margin: 0 0 8px !important;
  font-size: 22px !important;
  line-height: 1.15 !important;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.dc-actie-card__title a {
  color: #1c3543;
  text-decoration: none;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.dc-actie-card__excerpt {
  color: #4f6570;
  margin: 0 0 12px !important;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.dc-actie-price {
  margin: auto 0 14px !important;
  color: #117aa8;
  font-size: 20px !important;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.dc-actie-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dc-actie-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #29aae1;
  color: #fff;
  text-decoration: none;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  padding: 10px 16px;
  line-height: 1.1;
}

.dc-actie-button:hover,
.dc-actie-button:focus {
  background: #117aa8;
  color: #fff;
}

.dc-actie-button--secondary {
  background: #eef8fd;
  color: #1c3543;
}

.dc-acties-empty {
  width: min(1120px, 92vw);
  margin: 28px auto;
  color: #4f6570;
}

@media (max-width: 900px) {

}

@media (max-width: 640px) {
  .dc-actie-card {
    flex-direction: column;
  }
  .dc-actie-card__media {
    width: 100%;
  }
  .dc-actie-card__content {
    width: calc(100% - 40px);
  }
}
