.novedades {
  padding: 3rem 1rem;
}

.novedades__container {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.novedades__title {
  font-weight: 800;
  letter-spacing: 1px;
  margin: 0 0 1.5rem;
  font-family: 'Duepuntozero', sans-serif;
	font-weight: bold;
  color: #3B3460;
  font-size: 32px;
}

.novedades__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.novedad-card {
  height: 100%;
  background: #eee;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 10px;
	text-align:justify;
}

.novedad-card__thumb img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.novedad-card__thumb--placeholder {
  width: 100%;
  height: 170px;
  background: rgba(0,0,0,.08);
}

.novedad-card__body {
  font-family: 'Montserrat', sans-serif;
  padding: 14px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.novedad-card__heading {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.novedad-card__heading a {
  color: inherit;
  text-decoration: none;
}

.novedad-card__excerpt {
  font-size: 20px;
  line-height: 1.35;
  opacity: 0.9;
  flex: 1;
}

.novedad-card__btn {
  align-self: flex-end;
  background: #f2b300;
  color: #fff;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  transition: .3s;
}

.novedad-card__btn:hover {
  background-color: #e0a100;
}

/* Responsive */
@media (max-width: 900px) {
  .novedades__grid {
    grid-template-columns: 1fr;
  }
  .novedad-card__thumb img,
  .novedad-card__thumb--placeholder {
    height: 210px;
  }
}