.articles-hero {
  display: flex;
  padding: 8rem 0 2rem;
  align-items: center;
  justify-content: center;
  background: #11110F;
}

.articles-hero__inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
}

.articles-hero__title {
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  margin: 0 0 15px;
}
@media (min-width: 768px) {
  .articles-hero__title {
    font-size: 42px;
  }
}

.articles-hero__underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(45deg, rgb(117, 86, 33), #D1B367);
}

.articles-body {
  background: #11110F;
  padding-bottom: 60px;
}

.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 5% 0;
}
@media (min-width: 768px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.article-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}

.article-card__image-link {
  display: block;
  position: relative;
  overflow: hidden;
}

.article-card__image {
  width: 100%;
  height: 207px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s;
}

.article-card:hover .article-card__image {
  transform: scale(1.1);
}

.article-card__date {
  position: absolute;
  z-index: 2;
  top: -35px;
  right: 15px;
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 50%;
  text-align: center;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  justify-content: center;
  background: rgba(0, 0, 0, 0.95);
  border: 2px solid #d1b367;
  box-shadow: 0 0 8px 0 rgba(209, 179, 101, 0.75);
}

.article-card__date-day {
  display: block;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
}

.article-card__body {
  padding: 30px 20px;
  background: linear-gradient(0deg, #191919 20%, #363636 75%);
}

.article-card__title {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 2px;
}

.article-card__excerpt {
  color: #88979E;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.article-card__cta {
  display: inline-flex;
  margin-top: 25px;
  color: #fff;
  padding: 13px 25px;
  line-height: 1.4;
  border-radius: 4px;
  text-align: center;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  border: 2px solid;
  -o-border-image: linear-gradient(45deg, rgb(117, 86, 33), #D1B367) 1;
     border-image: linear-gradient(45deg, rgb(117, 86, 33), #D1B367) 1;
  transition: all 0.3s;
}

.article-card:hover .article-card__cta {
  background: linear-gradient(58deg, #755621 0%, #D1B365 51%);
}

.articles-empty {
  grid-column: 1/-1;
  text-align: center;
  color: #88979E;
  padding: 4rem 0;
  font-size: 16px;
}

.articles-pagination {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.articles-pagination__link {
  width: 40px;
  height: 40px;
  font-size: 16px;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
  color: #fff;
  transition: all 0.3s;
  display: inline-block;
  border: 2px solid;
  -o-border-image: linear-gradient(45deg, rgb(117, 86, 33), #D1B367) 1;
     border-image: linear-gradient(45deg, rgb(117, 86, 33), #D1B367) 1;
  text-decoration: none;
}
.articles-pagination__link:hover {
  color: #fff;
  background: linear-gradient(58deg, #755621 0%, #D1B365 51%);
}
.articles-pagination__link--active {
  color: #fff;
  background: linear-gradient(58deg, #755621 0%, #D1B365 51%);
}
.articles-pagination__link--disabled {
  cursor: not-allowed;
  color: #bdbdbd;
  background: #ebebeb;
  border: 2px solid transparent;
  pointer-events: none;
}

.article-detail {
  background: #11110F;
  padding: 8rem 0 4rem;
  min-height: 60vh;
}

.article-detail__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 5%;
}

.article-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #D1B367;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 20px;
}
.article-detail__back:hover {
  color: #fff;
}

.article-detail__date {
  color: #88979E;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.article-detail__title {
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  margin: 0 0 25px;
}
@media (min-width: 768px) {
  .article-detail__title {
    font-size: 38px;
  }
}

.article-detail__cover {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 30px;
  display: block;
}

.article-detail__content {
  color: #BDBEC0;
  font-size: 16px;
  line-height: 1.8;
}
.article-detail__content img {
  max-width: 100%;
  height: auto;
}
.article-detail__content p {
  margin-bottom: 1.2em;
}/*# sourceMappingURL=article.css.map */