/* ==========================================================
   ARTICLE DETAIL + TAG PAGE
   Red / black / white scheme
   ========================================================== */

.article-detail-page,
.article-tag-page {
  overflow: hidden;
  background: #fff;
}

/* DETAIL HERO */
.article-detail-hero {
  padding: 72px 0 58px;
  background: linear-gradient(135deg, #111 0%, #1d1d1d 58%, #e9454b 160%);
  border-bottom: 4px solid #e9454b;
}

.article-breadcrumb,
.article-tag-breadcrumb {
  margin: 0 0 22px;
  padding: 0;
  background: transparent;
}

.article-breadcrumb .breadcrumb-item,
.article-breadcrumb .breadcrumb-item a,
.article-tag-breadcrumb .breadcrumb-item,
.article-tag-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
}

.article-breadcrumb .breadcrumb-item.active,
.article-tag-breadcrumb .breadcrumb-item.active {
  color: #fff;
}

.article-breadcrumb .breadcrumb-item+.breadcrumb-item::before,
.article-tag-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, .45);
}

.article-detail-heading {
  max-width: 980px;
}

.article-detail-heading h1 {
  margin: 15px 0 20px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.04em;
  text-transform: none;
}

.article-detail-tags,
.article-tag-list,
.article-footer-tags,
.article-sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-detail-tags a,
.article-tag-list a,
.article-footer-tags a,
.article-sidebar-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  background: #e9454b;
  color: #fff !important;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .06em;
}

.article-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
}

.article-detail-meta i {
  margin-right: 7px;
  color: #e9454b;
}

/* DETAIL CONTENT */
.article-detail-section {
  padding: 72px 0 90px;
  background: #f7f8fa;
}

.article-detail-card,
.article-sidebar-widget,
.article-tag-card {
  border: 1px solid #e4e7ec;
  background: #fff;
  box-shadow: 0 12px 34px rgba(16, 24, 40, .08);
}

.article-featured-image {
  overflow: hidden;
}

.article-featured-image img {
  display: block;
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.article-detail-body {
  padding: 38px 40px 32px;
}

.article-entry-content {
  color: #4f5967;
  font-size: 16px;
  line-height: 1.9;
}

.article-entry-content p {
  margin: 0 0 20px;
  text-align: left !important;
}

.article-entry-content h1,
.article-entry-content h2,
.article-entry-content h3,
.article-entry-content h4 {
  margin: 32px 0 14px;
  color: #20242b;
  text-transform: none;
}

.article-entry-content img {
  max-width: 100%;
  height: auto;
  margin: 24px auto;
}

.article-entry-content a {
  color: #e9454b;
}

.article-download-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding: 20px 22px;
  border-left: 4px solid #e9454b;
  background: #f8f8f8;
}

.article-download-box span {
  display: block;
  margin-bottom: 4px;
  color: #8b929c;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.article-download-box strong {
  color: #20242b;
  font-size: 16px;
}

.article-download-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: #e9454b;
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.article-detail-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid #e6e8ec;
}

.article-footer-label {
  color: #252a31;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #111;
  color: #fff;
}

.article-share a:hover {
  background: #e9454b;
  color: #fff;
}

/* SIDEBAR */
.article-sidebar {
  position: sticky;
  top: 96px;
}

.article-sidebar-widget {
  margin-bottom: 24px;
  padding: 26px;
}

.article-sidebar-widget h2 {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 12px;
  color: #20242b;
  font-size: 19px;
  text-transform: none;
}

.article-sidebar-widget h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  background: linear-gradient(90deg, #e9454b, #111);
}

.article-sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.article-sidebar-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.article-sidebar-item img {
  width: 88px;
  height: 68px;
  object-fit: cover;
}

.article-sidebar-item span {
  color: #303640;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.article-sidebar-item:hover span {
  color: #e9454b;
}

.article-sidebar-tags a {
  background: #f1f2f4;
  color: #31363d !important;
}

.article-sidebar-tags a:hover {
  background: #e9454b;
  color: #fff !important;
}

/* TAG HERO */
.article-tag-hero {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
  padding: 76px 0 58px;
  background-position: center;
  background-size: cover;
}

.article-tag-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 7, 11, .94), rgba(14, 14, 16, .76), rgba(14, 14, 16, .34));
}

.article-tag-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #e9454b, #111);
}

.article-tag-hero .container {
  position: relative;
  z-index: 2;
}

.article-tag-hero-content span {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.article-tag-hero-content h1 {
  margin: 14px 0 20px;
  color: #fff;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

/* TAG GRID */
.article-tag-section {
  padding: 82px 0 94px;
  background: linear-gradient(180deg, #fff, #f6f7f9);
}

.article-tag-heading {
  max-width: 760px;
  margin: 0 auto 48px;
}

.article-tag-heading span {
  color: #111;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.article-tag-heading h2 {
  margin: 10px 0 0;
  color: #e9454b;
  font-size: clamp(29px, 3.4vw, 44px);
  line-height: 1.16;
  text-transform: none;
}

.article-tag-heading h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, #e9454b, #111);
}

.article-tag-heading p {
  margin: 18px auto 0;
  color: #667085;
  font-size: 15px;
}

.article-tag-grid {
  margin-left: -10px;
  margin-right: -10px;
}

.article-tag-grid-item {
  display: flex;
  padding: 10px;
}

.article-tag-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  transition: .25s ease;
}

.article-tag-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(16, 24, 40, .13);
}

.article-tag-image {
  display: block;
  overflow: hidden;
}

.article-tag-image img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform .35s ease;
}

.article-tag-card:hover .article-tag-image img {
  transform: scale(1.05);
}

.article-tag-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.article-tag-card-body h3 {
  margin: 16px 0 10px;
  font-size: 19px;
  line-height: 1.45;
  text-transform: none;
}

.article-tag-card-body h3 a {
  color: #20242b;
}

.article-tag-card-body h3 a:hover {
  color: #e9454b;
}

.article-tag-date {
  color: #8a919d;
  font-size: 12px;
}

.article-tag-card-body p {
  margin: 16px 0 20px;
  color: #667085;
  font-size: 14px;
  line-height: 1.7;
}

.article-tag-readmore {
  margin-top: auto;
  color: #e9454b !important;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.article-tag-readmore i {
  margin-left: 6px;
}

.article-tag-empty {
  max-width: 560px;
  margin: 0 auto;
  padding: 54px 28px;
  text-align: center;
  border: 1px solid #e4e7ec;
  background: #fff;
}

.article-tag-empty i {
  font-size: 38px;
  color: #e9454b;
}

.article-tag-empty h3 {
  margin: 16px 0 8px;
  text-transform: none;
}

.article-tag-empty a {
  display: inline-block;
  margin-top: 18px;
  padding: 11px 18px;
  background: linear-gradient(135deg, #e9454b, #111);
  color: #fff;
}

.article-tag-pagination {
  margin-top: 42px;
  text-align: center;
}

@media (max-width: 991px) {
  .article-detail-section {
    padding: 58px 0 72px;
  }

  .article-detail-body {
    padding: 32px;
  }

  .article-sidebar {
    position: static;
  }

  .article-tag-section {
    padding: 66px 0 76px;
  }
}

@media (max-width: 767px) {
  .article-detail-hero {
    padding: 56px 0 46px;
  }

  .article-detail-heading h1 {
    font-size: 34px;
  }

  .article-detail-body {
    padding: 26px 22px;
  }

  .article-entry-content {
    font-size: 14px;
    line-height: 1.78;
  }

  .article-download-box,
  .article-detail-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .article-download-button {
    justify-content: center;
  }

  .article-share {
    justify-content: flex-start;
  }

  .article-tag-hero {
    min-height: 320px;
    padding: 60px 0 48px;
  }

  .article-tag-hero-content h1 {
    font-size: 38px;
  }

  .article-tag-section {
    padding: 54px 0 64px;
  }

  .article-tag-heading {
    margin-bottom: 34px;
  }

  .article-tag-heading h2 {
    font-size: 29px;
  }

  .article-tag-image img {
    height: 210px;
  }
}

@media (max-width: 575px) {
  .article-detail-hero {
    padding: 48px 0 40px;
  }

  .article-detail-heading h1 {
    font-size: 29px;
  }

  .article-detail-meta {
    gap: 10px 16px;
    font-size: 12px;
  }

  .article-detail-section {
    padding: 44px 0 56px;
  }

  .article-featured-image img {
    max-height: 300px;
  }

  .article-detail-body {
    padding: 22px 18px;
  }

  .article-sidebar-widget {
    padding: 22px 18px;
  }

  .article-sidebar-item {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .article-sidebar-item img {
    width: 78px;
    height: 62px;
  }

  .article-tag-hero {
    min-height: 280px;
    padding: 52px 0 42px;
  }

  .article-tag-hero-content h1 {
    font-size: 32px;
  }

  .article-tag-section {
    padding: 46px 0 56px;
  }

  .article-tag-heading h2 {
    font-size: 26px;
  }

  .article-tag-grid {
    margin-left: -6px;
    margin-right: -6px;
  }

  .article-tag-grid-item {
    padding: 6px;
  }

  .article-tag-image img {
    height: 190px;
  }

  .article-tag-card-body {
    padding: 20px;
  }
}

/* ==========================================================
   ARTICLES LIST PAGE
   Red / black / white color scheme
   ========================================================== */

.articles-page {
  overflow: hidden;
  background: #ffffff;
}

/* ==========================================================
   HERO
   ========================================================== */

.articles-hero {
  position: relative;
  display: flex;
  align-items: center;

  min-height: 420px;
  padding: 90px 0 70px;

  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;

  overflow: hidden;
}

.articles-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    linear-gradient(90deg,
      rgba(5, 7, 11, 0.94) 0%,
      rgba(13, 14, 18, 0.78) 48%,
      rgba(13, 14, 18, 0.35) 100%);
}

.articles-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 4px;

  background:
    linear-gradient(90deg,
      #e9454b 0%,
      #111111 100%);
}

.articles-hero .container {
  position: relative;
  z-index: 2;
}

.articles-hero-content {
  max-width: 760px;
}

.articles-hero-label {
  display: inline-block;
  margin-bottom: 14px;

  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.articles-hero-title {
  margin: 0 0 22px;

  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(46px, 5.5vw, 76px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.articles-hero-title::after {
  content: "";
  display: block;

  width: 58px;
  height: 4px;
  margin-top: 18px;

  background: #e9454b;
}

/* Breadcrumb */

.articles-breadcrumb {
  display: flex;
  align-items: center;

  margin: 0;
  padding: 0;

  background: transparent;
}

.articles-breadcrumb .breadcrumb-item,
.articles-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.articles-breadcrumb .breadcrumb-item a:hover {
  color: #e9454b;
}

.articles-breadcrumb .breadcrumb-item.active {
  color: #ffffff;
}

.articles-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================
   ARTICLE LIST SECTION
   ========================================================== */

.articles-list-section {
  padding: 90px 0 105px;

  background:
    linear-gradient(180deg,
      #ffffff 0%,
      #f5f7fa 100%);
}

.articles-section-heading {
  max-width: 760px;
  margin: 0 auto 52px;
}

.articles-section-label {
  display: inline-block;
  margin-bottom: 10px;

  color: #111111;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.articles-section-title {
  margin: 0;

  color: #e9454b;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.articles-section-title::after {
  content: "";
  display: block;

  width: 52px;
  height: 3px;
  margin: 16px auto 0;

  background:
    linear-gradient(90deg,
      #e9454b 0%,
      #111111 100%);
}

.articles-section-description {
  max-width: 650px;
  margin: 20px auto 0;

  color: #667085;
  font-size: 15px;
  line-height: 1.75;
}

/* ==========================================================
   ARTICLE GRID
   ========================================================== */

.articles-grid {
  margin-left: -10px;
  margin-right: -10px;
}

.articles-grid-item {
  display: flex;
  margin-bottom: 28px;
  padding-left: 10px;
  padding-right: 10px;
}

/* ==========================================================
   ARTICLE CARD
   ========================================================== */

.article-card {
  position: relative;
  display: flex;
  flex-direction: column;

  width: 100%;

  border: 1px solid #e2e6ec;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);

  overflow: hidden;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.article-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 4px;

  background:
    linear-gradient(90deg,
      #e9454b 0%,
      #111111 100%);

  transform: scaleX(0);
  transform-origin: left center;

  transition: transform 0.25s ease;

  z-index: 4;
}

.article-card:hover {
  transform: translateY(-6px);
  border-color: rgba(233, 69, 75, 0.4);
  box-shadow: 0 20px 50px rgba(16, 24, 40, 0.14);
}

.article-card:hover::before {
  transform: scaleX(1);
}

/* Thumbnail */

.article-card-image {
  position: relative;
  display: block;

  width: 100%;
  height: 235px;

  overflow: hidden;
  background: #dedede;
}

.article-card-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.4s ease;
}

.article-image-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0) 40%,
      rgba(0, 0, 0, 0.48) 100%);

  opacity: 0.75;

  transition: opacity 0.25s ease;
}

.article-image-action {
  position: absolute;
  right: 18px;
  bottom: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  color: #ffffff;
  background: #e9454b;

  opacity: 0;
  transform: translateY(10px);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
}

.article-image-action i {
  color: #ffffff;
  font-size: 14px;
}

.article-card:hover .article-card-image img {
  transform: scale(1.06);
}

.article-card:hover .article-image-overlay {
  opacity: 1;
}

.article-card:hover .article-image-action {
  opacity: 1;
  transform: translateY(0);
}

/* Body */

.article-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;

  padding: 25px 24px 27px;
}

/* Tags */

.article-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;

  margin-bottom: 16px;
}

.article-tags>i {
  margin-right: 2px;

  color: #e9454b;
  font-size: 13px;
}

.article-tags a {
  display: inline-flex;
  align-items: center;

  min-height: 24px;
  padding: 5px 8px 4px;

  color: #ffffff;
  background: #e9454b;

  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;

  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.article-tags a:hover {
  color: #ffffff;
  background: #111111;
}

/* Title */

.article-card-title {
  margin: 0 0 15px;

  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
}

.article-card-title a {
  color: #20242b;
}

.article-card-title a:hover {
  color: #e9454b;
}

/* Meta */

.article-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-bottom: 16px;
  padding-bottom: 15px;

  border-bottom: 1px solid #e8ebef;

  color: #8a929e;
  font-size: 12px;
}

.article-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-card-meta i {
  color: #e9454b;
  font-size: 12px;
}

/* Excerpt */

.article-card-excerpt {
  flex: 1;

  margin: 0 0 22px;

  color: #667085;
  font-size: 14px;
  line-height: 1.75;
}

/* Read more */

.article-read-more {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  width: max-content;

  color: #20242b;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-read-more i {
  color: #e9454b;
  font-size: 12px;

  transition: transform 0.2s ease;
}

.article-read-more:hover {
  color: #e9454b;
}

.article-read-more:hover i {
  transform: translateX(4px);
}

/* ==========================================================
   PAGINATION
   ========================================================== */

.articles-pagination {
  display: flex;
  justify-content: center;

  margin-top: 36px;
}

.articles-pagination ul,
.articles-pagination .pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.articles-pagination li {
  margin: 0;
}

.articles-pagination li a,
.articles-pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 42px;
  height: 42px;
  padding: 0 13px;

  border: 1px solid #dfe3e8;
  background: #ffffff;
  color: #30343b;

  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;

  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.articles-pagination li a:hover {
  border-color: #e9454b;
  background: #e9454b;
  color: #ffffff;
}

.articles-pagination li.active a,
.articles-pagination li.active span,
.articles-pagination .active a,
.articles-pagination .active span {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.articles-pagination li.disabled a,
.articles-pagination li.disabled span {
  cursor: not-allowed;
  opacity: 0.45;
}

/* ==========================================================
   EMPTY STATE
   ========================================================== */

.articles-empty-state {
  max-width: 580px;
  margin: 0 auto;
  padding: 60px 30px;

  border: 1px solid #e2e6ec;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(16, 24, 40, 0.08);
}

.articles-empty-state i {
  display: block;
  margin-bottom: 18px;

  color: #e9454b;
  font-size: 40px;
}

.articles-empty-state h3 {
  margin: 0 0 10px;

  color: #20242b;
  font-size: 24px;
  text-transform: none;
}

.articles-empty-state p {
  margin: 0;

  color: #667085;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 991px) {
  .articles-hero {
    min-height: 380px;
    padding: 76px 0 60px;
  }

  .articles-list-section {
    padding: 74px 0 84px;
  }

  .articles-section-heading {
    margin-bottom: 42px;
  }

  .article-card-image {
    height: 220px;
  }

  .article-card-body {
    padding: 23px 21px 25px;
  }
}

@media (max-width: 767px) {
  .articles-hero {
    min-height: 330px;
    padding: 62px 0 50px;

    background-position: 65% center;
  }

  .articles-hero-overlay {
    background:
      linear-gradient(90deg,
        rgba(5, 7, 11, 0.94) 0%,
        rgba(12, 13, 17, 0.8) 67%,
        rgba(12, 13, 17, 0.52) 100%);
  }

  .articles-hero-label {
    font-size: 10px;
  }

  .articles-hero-title {
    font-size: 42px;
  }

  .articles-list-section {
    padding: 58px 0 68px;
  }

  .articles-section-heading {
    margin-bottom: 34px;
  }

  .articles-section-title {
    font-size: 31px;
  }

  .articles-section-description {
    padding: 0 8px;

    font-size: 14px;
  }

  .articles-grid-item {
    margin-bottom: 22px;
  }

  .article-card-image {
    height: 215px;
  }

  .article-card-title {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .articles-hero {
    min-height: 290px;
    padding: 52px 0 42px;
  }

  .articles-hero-title {
    font-size: 36px;
  }

  .articles-breadcrumb .breadcrumb-item,
  .articles-breadcrumb .breadcrumb-item a {
    font-size: 12px;
  }

  .articles-list-section {
    padding: 46px 0 56px;
  }

  .articles-section-title {
    font-size: 27px;
  }

  .articles-section-description {
    font-size: 13.5px;
  }

  .articles-grid {
    margin-left: 0;
    margin-right: 0;
  }

  .articles-grid-item {
    padding-left: 0;
    padding-right: 0;
  }

  .article-card-image {
    height: 205px;
  }

  .article-card-body {
    padding: 21px 18px 23px;
  }

  .article-card-title {
    font-size: 17px;
  }

  .article-card-excerpt {
    font-size: 13.5px;
    line-height: 1.7;
  }

  .articles-pagination li a,
  .articles-pagination li span {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
  }
}

/* ==========================================================
   ARTICLES PAGINATION
   Solid red / black, no gradient
   ========================================================== */

.articles-pagination {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 38px;
}

.articles-pagination-nav {
  display: flex;
  justify-content: center;
  width: 100%;
}

.articles-pagination-nav .pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;

  gap: 8px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.articles-pagination-nav .page-item {
  display: block;
  margin: 0 !important;
  padding: 0 !important;
}

/* Semua link */
.articles-pagination-nav .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 44px;
  height: 44px;
  padding: 0 15px;

  border: 1px solid #dfe3e8 !important;
  border-radius: 0 !important;

  background: #ffffff !important;
  color: #20242b !important;

  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;

  box-shadow: none !important;

  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

/* First, Prev, Next, Last sedikit lebih lebar */
.articles-pagination-nav .page-first .page-link,
.articles-pagination-nav .page-prev .page-link,
.articles-pagination-nav .page-next .page-link,
.articles-pagination-nav .page-last .page-link {
  min-width: 72px;
}

/* Hover */
.articles-pagination-nav a.page-link:hover,
.articles-pagination-nav a.page-link:focus {
  z-index: 2;

  border-color: #e9454b !important;
  background: #e9454b !important;
  color: #ffffff !important;

  transform: translateY(-2px);

  box-shadow: 0 7px 16px rgba(233, 69, 75, 0.18) !important;
}

/* Current page */
.articles-pagination-nav .page-item.active .page-link {
  border-color: #e9454b !important;
  background: #e9454b !important;
  color: #ffffff !important;

  box-shadow: 0 6px 14px rgba(17, 17, 17, 0.18) !important;
}

/* Current page hover tetap hitam */
.articles-pagination-nav .page-item.active .page-link:hover {
  border-color: #e9454b !important;
  background: #e9454b !important;
  color: #ffffff !important;

  transform: none;
}

/* Disabled */
.articles-pagination-nav .page-item.disabled .page-link {
  cursor: not-allowed;

  border-color: #e6e8ec !important;
  background: #f5f6f8 !important;
  color: #a5abb4 !important;

  opacity: 1;
  transform: none;
  box-shadow: none !important;
}

@media (max-width: 575px) {
  .articles-pagination {
    margin-top: 28px;
  }

  .articles-pagination-nav .pagination {
    gap: 5px;
  }

  .articles-pagination-nav .page-link {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;

    font-size: 11px;
  }

  .articles-pagination-nav .page-first .page-link,
  .articles-pagination-nav .page-prev .page-link,
  .articles-pagination-nav .page-next .page-link,
  .articles-pagination-nav .page-last .page-link {
    min-width: 54px;
    padding: 0 9px;
  }
}