.articleCard {
  display: flex;
  flex-direction: row;
  cursor: pointer;
  border: 1px solid #EAEAEA;
  min-height: 176px;
  margin-bottom: 15px;
}
.articleCard:hover {
  box-shadow: 0 3px 5px 0 rgba(163, 163, 163, 0.3);
  -moz-box-shadow: 0 3px 5px 0 rgba(163, 163, 163, 0.3);
  -webkit-box-shadow: 0 3px 5px 0 rgba(163, 163, 163, 0.3);
}
.articleCard_imageContainer {
  width: 225px;
  height: 176px;
  background-color: #EAEAEA;
}
.articleCard_image {
  width: 225px;
  height: 175px;
  object-fit: cover;
}
.articleCard_contentContainer {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}
.articleCard_details {
  display: flex;
  flex-direction: row;
  margin-top: 17px;
}
.articleCard_titleContainer {
  height: 20px;
  margin-bottom: 5px;
}
.articleCard_title {
  font-family: 'Lato', sans-serif;
  font-weight: bold;
  color: #333333;
  font-size: 18px;
}
.articleCard_previewContainer {
  position: relative;
  background: white;
}
.articleCard_preview {
  font-family: 'Arial', sans-serif;
  font-weight: normal;
  color: #333333;
  font-size: 13px;
}
.articleCard_authorProfilePictureContainer {
  height: 50px;
  display: flex;
}
.articleCard_authorProfilePicture {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.articleCard_authorProfilePictureDivider {
  height: 100%;
  margin: 0 10px;
  border-right: 1px solid #EAEAEA;
}
.articleCard_moreDetails {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.articleCard_author {
  color: #0070C0;
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  font-size: 13px;
}
.articleCard_typeDateContainer {
  display: flex;
  flex-direction: row;
  color: #7B7B7B;
  font-size: 9px;
  font-family: 'Arial', sans-serif;
  letter-spacing: 0.3px;
  line-height: 19px;
}
.articleCard_typeDateSeparator {
  margin: 0 5px;
}
/* ============================================ *
 * MAX WIDTH QUERIES
* ============================================ */
@media (max-width: 599px) {
  .articleCard {
    display: flex;
    flex-direction: column;
    min-height: 400px;
    height: auto;
    margin-bottom: 20px;
  }
  .articleCard_imageContainer {
    width: 100%;
    height: 225px;
  }
  .articleCard_image {
    width: 100%;
    height: 225px;
    object-fit: cover;
  }
  .articleCard_contentContainer {
    text-align: center;
    justify-content: space-between;
    flex-grow: 2;
    height: auto;
  }
  .articleCard_titleContainer {
    height: auto;
    text-align: center;
  }
  .articleCard_title {
    font-size: 23px;
    text-align: center;
  }
  .articleCard_previewContainer {
    height: auto;
  }
  .articleCard_details {
    justify-content: center;
    margin-top: 30px;
  }
  .articleCard_moreDetails {
    text-align: left;
  }
}
/* ============================================ *
 * MIN WIDTH QUERIES
 * ============================================ */
