.content-pathing .component.light-background {
  background-color: #ffffff;
  color: #003652;
}
.content-pathing .component.dark-background {
  background-color: #003652;
  color: #ffffff;
}
.content-pathing .component__content {
  padding: 24px 0;
}
.content-pathing .component__header {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .content-pathing .component__header {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .content-pathing .component__title {
    text-align: center;
  }
}
.content-pathing .component__see-all-articles-link {
  display: flex;
  align-items: end;
}
.content-pathing .component__see-all-articles-link a {
  width: max-content;
}
@media screen and (max-width: 767px) {
  .content-pathing .component__see-all-articles-link {
    margin-top: 16px;
  }
}
.content-pathing .component__body {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .content-pathing .component__body {
    overflow: hidden;
    margin-top: 32px;
  }
}
@media screen and (max-width: 767px) {
  .content-pathing .component__articles-container {
    margin-bottom: 32px;
  }
}
.content-pathing .component__article {
  width: 75vw !important;
}
@media screen and (max-width: 767px) {
  .content-pathing .component__article {
    padding-right: 0;
  }
}
.content-pathing .component__article-header {
  display: flex;
}
.content-pathing .component__article-image {
  object-fit: cover;
  aspect-ratio: 1.25;
  border-radius: 12px;
}
.content-pathing .component__article-category-timedate-section {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}
.content-pathing .component__article-title {
  margin-top: 8px;
}
.content-pathing .component__article-description {
  margin-top: 8px;
}
.content-pathing .component__article-readmore-link {
  margin-top: 12px;
}
.content-pathing .component__article-readmore-link a {
  width: max-content;
}
@media screen and (min-width: 768px) {
  .content-pathing .component__article-indicators {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  body[dir="rtl"] .content-pathing .component__article {
    padding-left: 0;
    padding-right: 16px;
  }
}
body[dir="rtl"] .content-pathing .component__article-readmore-link svg.icon {
  transform: rotateY(180deg);
}
