/* |*/
/*  --- */
body,
header,
* {
  font-family: "Montserrat", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.container-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.Card {
  max-width: 380px;
  border-radius: 6px;
  background-color: white;
  margin: 5px;
}

.Card .Card__content {
  padding: 15px 20px;
}

.Card .Card__img .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, rgba(42, 50, 98, 0.8), rgba(0, 0, 0, 0.01));
  right: 0;
  display: flex;
  align-items: flex-end;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.overlay-title {
  color: white;
  margin-left: 20px;
}

.Card .Card__img {
  width: 100%;
  height: 350px;
  position: relative;
  border-radius: inherit;
}

.Card .Card__img img {
  width: inherit;
  height: inherit;
  object-fit: cover;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.Card .Card__content .body .date {
  font-weight: bold;
  color: gray;
}
.Card .Card__content .body .title {
  display: flex;
  align-items: flex-end;
  margin-bottom: 1rem;
}
.Card .Card__content .body .title small {
  margin-left: 10px;
}
.Card .Card__content .body .title h5 {
  margin: 0;
  color: #2a3262;
}
.Card .Card__content .body h6 {
  color: #2a3262;
  font-size: 18px;
  font-weight: 500;
}

.body p:last-child {
  color: gray;
  font-size: 0.9rem;
}

.footer {
  display: flex;
  justify-content: space-around;
  width: 100%;
}

.footer a {
  padding: 15px 20px;
  width: 50%;
  margin: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*# sourceMappingURL=card.css.map */
