.article-item {
  padding: 16px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  background: #FFF;
  box-shadow: 0px 1px 2px 0px rgba(38, 38, 38, 0.06), 0px 1px 3px 0px rgba(38, 38, 38, 0.1);
  border-radius: 4px;
  transition: all 0.35s;
}
.article-item:hover {
  box-shadow: 0px 4px 6px -2px rgba(38, 38, 38, 0.05), 0px 10px 15px -3px rgba(38, 38, 38, 0.1);
}
.article-item__img {
  border-radius: 4px;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.article-item__img:hover img {
  transform: scale(1.12);
}
.article-item__img img {
  max-width: 500px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.article-item__body h3 a {
  text-transform: capitalize;
  color: #000609;
  font-weight: 700;
  transition: all 0.15s;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.article-item__body h3 a:hover {
  color: #FFD83A;
}
.article-item__body p {
  color: #454545;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.article-item__footer {
  margin-top: 16px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #6E737A;
}
.article-item__footer p, .article-item__footer a {
  font-size: 14px;
  line-height: 18px;
  color: #454545;
}

.feature-article {
  box-shadow: 0px 1px 3px 0px rgba(154, 139, 23, 0.1), 0px 1px 2px -1px rgba(154, 132, 23, 0.1);
  width: fit-content;
  border-radius: 0px 0px 4px 4px;
}
@media (max-width: 991px) {
  .feature-article {
    margin-top: 32px;
    width: unset;
  }
}
.feature-article__heading {
  background: #fff;
  padding: 10px 12px;
  gap: 10px;
  border-bottom: 1px solid #FFF2BE;
  border-radius: 8px 8px 0px 0px;
}
.feature-article__heading img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.feature-article__heading h2 {
  color: #FFCB03;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  text-transform: capitalize;
}
.feature-article__list {
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 0px 0px 4px 4px;
  overflow: hidden;
  box-shadow: 0px 1px 3px 0px rgba(154, 139, 23, 0.1), 0px 1px 2px -1px rgba(152, 154, 23, 0.1);
}
.feature-article__list .feature-article__item {
  display: flex;
  gap: 10px;
  border: 1px solid #f5f5f5;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.feature-article__list .feature-article__item--image {
  flex-shrink: 0;
  height: 100%;
  max-height: 70px;
  aspect-ratio: 16/9;
}
.feature-article__list .feature-article__item--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}
.feature-article__list .feature-article__item--content p {
  width: fit-content;
  background: hsl(0, 0%, 96%);
  font-size: 10px;
  font-weight: 600;
  line-height: 18px;
  border-radius: 2px;
}
.feature-article__list .feature-article__item--content a {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #262626;
  transition: all 0.2s ease-in-out;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.feature-article__list .feature-article__item--content h3 {
  margin-bottom: 0px;
}
.feature-article__list .feature-article__item:hover {
  background-color: #FFFAF1;
}
.feature-article__list .feature-article__item:hover a {
  color: #e4a300;
}

.page-numbers {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: #000609;
}
.page-numbers:hover {
  background: #FFCB03;
  color: #fff;
}
.page-numbers.current {
  background: #FFCB03;
  color: #fff;
}

.next, .prev {
  border: 2px solid #FFF6D8;
  background-color: #FFFDFA;
  color: #FFCB03;
}
.next i, .prev i {
  display: flex;
  align-items: center;
  justify-content: center;
}

.next {
  transform: rotate(-90deg);
}

.prev {
  transform: rotate(90deg);
}

@media (max-width: 767px) {
  .page-numbers {
    width: 32px;
    height: 32px;
    font-size: 14px;
    line-height: 16px;
  }
}
.dots {
  color: #000609 !important;
  background-color: transparent !important;
}

.article__heading__flex {
  padding: 80px 0px;
  display: flex;
}
.article__heading__flex p {
  max-width: 800px;
}
@media (max-width: 767px) {
  .article__heading__flex {
    display: block;
  }
  .article__heading__flex__text {
    padding: 12px;
  }
}
.article__heading__flex--image {
  aspect-ratio: 400/400;
}
.article__body {
  margin-top: 40px;
  margin-bottom: 60px;
}
.article__body__list {
  margin-bottom: 40px;
}
@media (max-width: 424px) {
  .article__body__list .col-6 {
    width: 100%;
  }
}
.article__body__list .article-item {
  height: 100%;
}
.article__body__list .article-item .article-item__text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .article__body {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}
