.article-container {
  max-width: 700px;
  margin: 20px auto;
}

.article-details {
  margin: 2rem 0;
}

.article-title {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  margin-top: 1rem;
}

.article-author {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
}

.article-body {
  font-family: "Merriweather", serif;
  max-width: 700px;
  margin-bottom: 2rem;
}

.article-p {
}

.article-sub-heading {
  display: block;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.like-container {
  transition: all 300ms;
}

.like-icon {
  cursor: pointer;
  height: 24px;
  width: 24px;
}

.social-icon {
  height: 24px;
  width: 24px;
  margin-left: 10px;
}

.comment-container {
  max-width: 500px;
  margin: auto;
}

.comment-card {
  border-bottom: 1px solid lightgrey;
  width: 100%;
}

.comment-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.comment-controls {
  display: flex;
  justify-content: end;
}

.reply-container {
  border-left: 4px solid rgb(69, 112, 242);
  padding-left: 20px;
}

.comment-reply-input {
  background-color: rgb(239, 239, 239);
  border-radius: 10px;
  padding: 1rem;
}

.comment-reply {
  margin-top: 0.5rem;
}

.img-icon {
  height: 24px;
  width: 24px;
}

/* ----------------------------------- */
/*      MORE ARTICLE CONTAINERS        */
/* ----------------------------------- */

.more-articles-section {
  margin: 3rem 0;
}

.more-articles-header {
  text-align: center;
  font-family: "Playfair Display", serif;
}

.more-articles-cont {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* ----------------------------------- */
/*               CARDS                 */
/* ----------------------------------- */

.card-sm-cont {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 300px;
  margin: 1rem;
  border-bottom: 4px solid #9dbebb;
}

.card-sm-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.card-sm-img {
  width: 100%;
  height: auto;
}

.card-sm-body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #f3f3f3;
  margin-top: 0;
  padding: 1.5rem 1rem 0.5rem 1rem;
  height: 100%;
}

.card-sm-title {
  margin-bottom: 1.5rem;
}

.card-sm-details {
  display: flex;
  justify-content: space-between;
}

.card-sm-category {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  color: #77aca2;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 16px;
  padding: 0px 16px;
  border-bottom: 2px solid #9dbebb;
}

.card-sm-remove-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

@media screen and (min-width: 576px) {
  .article-card-sm-cont {
    width: 45%;
  }
}

@media screen and (min-width: 768px) {
  .article-card-sm-cont {
    width: 30%;
  }
}

@media screen and (min-width: 992px) {
  .article-card-sm-cont {
    width: 22%;
  }
}

/* -------------------- */
/*   CARD CONTAINERS    */
/* -------------------- */

.article-flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
