/* News Landing - Intro */

.news-landing-intro {
  background-color: var(--white);
  padding-top: 254px;
  padding-bottom: 55px;
}

.news-landing-intro .head {
  width: 100%;
  max-width: 760px;
}

.news-landing-intro .head .subtitle {
  color: var(--blue);
  margin-bottom: 15px;
}

.news-landing-intro .head .title {
  color: var(--black);
  margin-bottom: 90px;
}

.news-landing-intro .highlight-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.news-landing-intro .highlight-items .item {
  display: block;
  cursor: pointer;
  text-decoration: none;
}

.news-landing-intro .highlight-items .item .top-line {
  width: 0;
  height: 1px;
  background-color: var(--blue-2);
  transition: 0.6s width, 0.6s margin-left;
}

.news-landing-intro .highlight-items .item .date {
  color: var(--gray);
  margin-top: 20px;
  margin-bottom: 9px;
}

.news-landing-intro .highlight-items .item .title {
  color: var(--black);
  margin-bottom: 20px;
}

.news-landing-intro .highlight-items .item .cta-button {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.news-landing-intro .highlight-items .item .cta-title {
  color: var(--black);
}

.news-landing-intro .highlight-items .item .cta-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  border: 1px solid var(--blue-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s transform;
}

.news-landing-intro .highlight-items .item:hover .cta-arrow {
  transform: scale(1.1429);
}

.news-landing-intro .highlight-items .item .cta-arrow svg {
  height: 24px;
  fill: var(--black);
  transition: 0.3s fill;
}

.news-landing-intro .highlight-items .item:hover .cta-arrow svg {
  fill: var(--blue-2);
}

@media (max-width: 1024px) {
  .news-landing-intro .highlight-items {
    gap: 60px;
  }

  .news-landing-intro .highlight-items .item .title {
    font-size: 22px;
    line-height: 32px;
  }
}

@media (max-width: 768px) {
  .news-landing-intro {
    padding-top: 70px;
    padding-bottom: 45px;
  }

  .news-landing-intro .head .title {
    margin-bottom: 0;
  }

  .news-landing-intro .highlight-items {
    display: none;
  }
}

/* News Landing - Grid */

.news-landing-grid {
  background-color: var(--white);
  padding-bottom: 48px;
}

.news-landing-grid .grid {
  border-top: 1px solid var(--light-gray-4);
  padding-top: 55px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
  row-gap: 109px;
}

.news-landing-grid .grid .item {
  display: block;
  cursor: pointer;
  text-decoration: none;
}

.news-landing-grid .grid .item .top-line {
  width: 0;
  height: 1px;
  background-color: var(--blue-2);
  transition: 0.6s width, 0.6s margin-left;
}

.news-landing-grid .grid .item .date {
  margin-top: 20px;
  color: var(--gray);
}

.news-landing-grid .grid .item .title {
  color: var(--black);
  margin-bottom: 20px;
}

.news-landing-grid .grid .item .cta-button {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.news-landing-grid .grid .item .cta-title {
  color: var(--black);
}

.news-landing-grid .grid .item .cta-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  border: 1px solid var(--blue-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s transform;
}

.news-landing-grid .grid .item:hover .cta-arrow {
  transform: scale(1.1429);
}

.news-landing-grid .grid .item .cta-arrow svg {
  height: 24px;
  fill: var(--black);
  transition: 0.3s fill;
}

.news-landing-grid .grid .item:hover .cta-arrow svg {
  fill: var(--blue-2);
}

@media (max-width: 1024px) {
  .news-landing-grid .grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 60px;
  }
}

@media (max-width: 768px) {
  .news-landing-grid .grid {
    border: none;
    padding-top: 0;
    display: block;
  }

  .news-landing-grid .grid .item:not(:last-child) {
    margin-bottom: 33px;
  }
}

/* News Landing - Pagination */

.news-landing-pagination {
  background-color: var(--white);
  padding-bottom: 174px;
}

.news-landing-pagination .content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.news-landing-pagination .wp-pagenavi {
  display: flex;

  font-family: proxima-nova, sans-serif;
  font-size: 17px;
  line-height: 20px;
  font-weight: var(--medium);
  letter-spacing: 0.01em;
}

.news-landing-pagination .wp-pagenavi > * {
  border: 1px solid transparent !important;
  border-radius: 36px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  flex-grow: 0;
  color: rgba(0, 0, 0, 0.45);
  margin: 0;
  padding: 0;
}

.news-landing-pagination .wp-pagenavi .current {
  color: var(--black);
  border-color: var(--blue-2) !important;
  font-weight: unset;
}

.news-landing-pagination .wp-pagenavi .previouspostslink,
.news-landing-pagination .wp-pagenavi .nextpostslink {
  display: none;
}

@media (max-width: 768px) {
  .news-landing-pagination {
    padding-bottom: 141px;
  }

  .news-landing-pagination .content {
    gap: 13px;
  }
}
