.Card-noticia {
  display: flex;
  flex-direction: column;
  gap: 20px;

  .image {
    height: 180px;
    border-radius: 8px;
    box-sizing: border-box;
    overflow: hidden;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: 0.4s ease;
    }
  }

  span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #4e4d59;
    padding-bottom: 10px;

    i {
      font-size: 16px;
    }
  }

  .Title {
    font-size: 18px;
    color: #3a3a44;
    transition: 0.4s ease;
  }

  &:hover {
    .image {
      img {
        transform: scale(1.08);
      }
    }

    .Title {
      color: $green-dark;
    }
  }
}
