/* Artikel */
/* Card */

.cards {
  display: flex;
  width: 100%;
  overflow-x: auto;
  padding: 40px 0;
}

.cards .content {
  display: flex;
  gap: 24px;
}

.cards .placeholder {
  width: 100px;
  min-width: 100px;
}

.card {
  width: 330px;
  min-width: 330px;
  /* background: #f3f9ff; */
  background: rgba(255, 255, 255, 0.2);
  padding: 24px;
  border-radius: 12px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  transition: all 200ms ease;
  display: flex;
  flex-direction: column;
}

.card .headline-container p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.96px;
  text-transform: uppercase;
  margin: 0 0 4px 0;
}

.card .headline-container h3 {
  color: rgba(0, 0, 0, 0.8);
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.card .text-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card .text {
  align-items: flex-start;
  gap: 42px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card .text p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  font-weight: 400;
  flex: 1;
}

.card .img-container {
  padding: 24px;
  height: 200px;
}

.card .img-container img {
  width: 100%;
  height: 100%;
}

.card .img-container img {
  transition: all 200ms ease;
}

.card:hover {
  background: white;
  transform: translate(0, -10px);
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}

.card:hover .img-container img {
  transform: translate(0, -40px) scale(1.2);
}
