/**
 * Fonts
 */

/**
 * Heading styles
 */

/**
 * Paragraph styles
 */

/**
 * Link Styling
 */

/**
 * List Styling
 */

/**
 * Label Arrow
 */

/**
 * Tag
 */

/**
 * Breakpoints
 */

/**
 * Bootstrap Grid
 */

/**
 * Colors
 */

.articles-slider {
  overflow: hidden;
}

.articles-slider h2 {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.articles-slider .swiper {
  overflow: visible;
  margin-top: 60px;
}

.articles-slider .swiper .slider-button {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  position: absolute;
  width: 50px;
  height: 50px;
  top: 95px;
  background: #619a43;
  border-radius: 50%;
  transition: 0.2s;
}

.articles-slider .swiper .slider-button.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}

.articles-slider .swiper .slider-button.-prev {
  left: 0;
  transform: translateX(-50%);
}

.articles-slider .swiper .slider-button.-prev svg {
  transform: rotate(-180deg);
}

.articles-slider .swiper .slider-button.-next {
  right: 0;
  transform: translateX(50%);
}

.articles-slider .swiper .slider-button svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.articles-slider .article-card {
  display: block;
}

.articles-slider .article-card-photo {
  width: 100%;
  min-width: auto;
}

.articles-slider .article-card-photo:before {
  padding-bottom: 68%;
}

.articles-slider .article-card-info {
  margin-left: 0;
  margin-top: 30px;
}

.articles-slider .article-card-info p {
  margin-top: 8px;
  display: block;
}

.articles-slider .article-card-tag {
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 21px;
}

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

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

.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;
}

@media (max-width: 767px) {
  .articles-slider .swiper {
    margin-top: 30px;
  }

  .articles-slider .swiper .swiper-slide {
    width: 240px;
    max-width: 240px;
    min-height: 240px;
  }

  .articles-slider .swiper .slider-button {
    display: none;
  }

  .articles-slider .article-card-photo:before {
    padding-bottom: 85%;
  }

  .articles-slider .article-card-info {
    margin-top: 16px;
  }

  .articles-slider .article-card-info p {
    margin-top: 0;
  }

  .articles-slider .article-card-title {
    font-size: 17px;
    line-height: 27px;
  }

  .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;
  }
}

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

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