@media only screen and (max-width: 669px) {

  .cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px; 
    width: 100%;
    justify-content: center;
  }

  .card,
  .card-img,
  .card-title,
  .card-text {
    width: 100%;
  }

  .card-img {
    height: auto; 
    object-fit: cover;
    border-radius: 8px;
  }

  .card-title {
    font-size: 1.125rem;
    line-height: 1.35rem;
    margin-top: 2rem;
  }

  .card-text {
    height: auto;
    font-size: 1.125rem;
    line-height: 1.35rem;
    margin-top: 2rem;
  }
}

.cards-section.noticias {
    margin-top: 3.003rem;
    margin-bottom: 5.454rem;
}

.card-footer-link {
    display: none;
}

@media only screen and (min-width: 670px) and (max-width: 999px) {

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 32px;
  }

  .card,
  .card-img,
  .card-title,
  .card-text {
    width: 100%;
    font-size: 1rem;
    line-height: 1.313rem;
  }

  .card-img {
    height: auto;
  }
}

.card-footer {
    margin-top: 0;
}

.card-footer-date {
    font-size: 1rem;
    line-height: 1.313rem;
}

.card-footer-link {
    display: none;
}