/* data stories */
.banner {
  background-size: cover;
  background-position: center;
  height: 460px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.banner h1 {
  font-size: 50px !important;
  color: var(--white);
  font-weight: bold;
  align-items: center;
  display: flex;
}

#data-stories {
  background-image: url(../images/banners/2.png),
    linear-gradient(rgba(50, 86, 164, 0.6), rgba(50, 86, 164, 0.5));
  background-blend-mode: overlay;
}

section#highlights {
  background-color: #fff;
}

.highlights {
  max-width: 1065px !important;
}

.the-highlight {
  width: 100%;
  justify-self: center;
}

.highlight {
  width: 100%;
  position: relative;
}

.highlights-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 1.5rem;
}

.highlight-text {
  margin-top: 30px;
}

.horizontal-line {
  border-top: 2px solid #434444;
  margin: 10px 0;
}

.highlight-sub {
  margin: 50px auto 0 auto !important;
  font-size: 20px !important;
  font-weight: bold;
}

.highlight-category {
  border-radius: 0px 0px 10px 14px;
  width: 100%;
  padding: 0.5rem;
  max-width: 150px;
  box-shadow: 0px 1px 4px #00000029;
  color: #000;
  font-style: italic;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
}

.highlight-thumb {
  height: 190px;
  width: 100%;
  object-fit: contain;
}

.highlight-title {
  color: #434444;
}

.highlight-excerpt {
  color: var(--warm-blue);
}

.read-more {
  width: 220px;
  border-radius: 20px;
  padding: 5px 10px;
  transition: 0.2s linear;
  background-color: #f9f9f9;
  color: var(--dark-blue);
}

.read-more>i {
  margin-left: 5px;
  transition: margin 0.2s linear;
}

.read-more:active,
.read-more:hover {
  color: #48a0d8 !important;
}

.read-more:hover>i {
  margin-left: 10px;
}

#all-data-stories {
  width: 300px;
  border-radius: 28px;
  background-color: var(--btn-bg);
  color: var(--white);
  font-size: var(--btn-font-size);
  font-weight: bold;
  text-align: center;
  padding: 0.8rem 1rem;
  transition: 0.2s linear;
}

#all-data-stories:active,
#all-data-stories:hover {
  background-color: var(--btn-bg-hover);
}

@media only screen and (max-width: 600px) {
  .highlight-thumb {
    width: 100%;
  }

  .read-more {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
}

.page-numbers {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #7d7d77;
  font-size: var(--paragraph);
}

.page-numbers:not(:last-of-type) {
  border-right: 1px solid #00000029;
}

.page-numbers.current {
  background-color: var(--warm-blue);
  color: var(--white);
}

.prev,
.next {
  color: var(--warm-blue);
}

#pagination {
  box-shadow: 0px 0px 6px #00000029;
  border-radius: 6px;
  width: min-content;
  margin: auto;
}