/**
 * Fonts
 */

/**
 * Heading styles
 */

/**
 * Paragraph styles
 */

/**
 * Link Styling
 */

/**
 * List Styling
 */

/**
 * Label Arrow
 */

/**
 * Tag
 */

/**
 * Breakpoints
 */

/**
 * Bootstrap Grid
 */

/**
 * Colors
 */

.article-card {
  display: flex;
  align-items: flex-start;
}

.article-card-photo {
  display: block;
  width: 160px;
  min-width: 160px;
  position: relative;
  height: auto;
}

.article-card-photo:before {
  display: block;
  content: "";
  padding-bottom: 87%;
}

.article-card-photo img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card-info {
  display: flex;
  flex-direction: column;
  margin-left: 25px;
}

.article-card-info p {
  margin-bottom: 0;
}

.article-card-tag {
  align-self: start;
  margin-bottom: 10px;
}

.article-card-tag a {
  background: #547244;
  border-radius: 3.5px;
  padding: 3px 8px;
  font-weight: 700;
  font-size: 13px;
  line-height: 21px;
  color: #fff;
  text-align: center;
}

.article-card-tag a:hover {
  background: #619a43;
}

.article-card-title {
  font-family: "Sailec";
  font-weight: 500;
  color: #1f271c;
  font-size: 21px;
  line-height: 31px;
  align-self: start;
}

.article-card-title:hover {
  color: #619a43;
}

.article-card-user {
  font-family: "Sailec";
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  color: #000;
  margin-top: 15px;
}

.article-card-author {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.article-card-author-photo {
  width: 35px;
  height: 35px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 8px;
}

.article-card-author-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card-author-info {
  font-size: 14px;
  line-height: 20px;
  color: #1f271c;
}

.article-card-author-info a {
  font-family: "Sailec";
  font-weight: 500;
  text-decoration-line: underline;
  color: #1f271c;
}

.article-card-author-info a:hover {
  text-decoration-line: none;
  color: #1f271c;
}

.author-big {
  margin-bottom: 50px;
}

.author-big .article-card-author {
  align-items: flex-start;
}

.author-big .article-card-author-photo {
  flex: none;
  width: 160px;
  height: 160px;
  margin-right: 25px;
}

.author-big .article-card-author-info {
  width: auto;
}

.author-big .article-card-author-info span.name {
  font-family: "Sailec";
  font-weight: 500;
  color: #1f271c;
  font-size: 32px;
  line-height: 42px;
  display: block;
}

.author-big .article-card-author-info span.function {
  color: #000;
  font-size: 19px;
  line-height: 32px;
  display: block;
}

.author-big .article-card-author-info span.description {
  color: #000;
  font-size: 17px;
  line-height: 27px;
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: 15px;
  display: block;
}

@media (max-width: 767px) {
  .article-card-photo {
    width: 112px;
    min-width: 112px;
  }

  .article-card-info {
    margin-left: 15px;
  }

  .article-card-info p {
    display: none;
  }

  .article-card-tag a {
    font-size: 11px;
    line-height: 17px;
  }

  .article-card-tag {
    margin-bottom: 5px;
  }

  .article-card-title {
    font-size: 16px;
    line-height: 24px;
  }

  .article-card-user {
    font-size: 14px;
    line-height: 18px;
    margin-top: 10px;
  }

  .author-big .article-card-author-info span.name {
    font-size: 20px;
    line-height: 28px;
  }

  .author-big .article-card-author-info span.function {
    font-size: 17px;
    line-height: 27px;
  }
}

@media (max-width: 575px) {
  .article-card-author {
    display: none;
  }

  .author-big .article-card-author-photo {
    margin-bottom: 30px;
  }

  .author-big .article-card-author {
    display: block;
  }
}

@media (pointer: coarse) {
  .article-card-title:hover {
    color: #1f271c;
  }
}