/**
 * News List Block Styles.
 *
 * @package hopeinfocus2025
 */
.news-list__recent {
  margin-top: 0;
}
.news-list__search {
  width: 100%;
  max-width: 400px;
}
.news-list__search-form {
  position: relative;
  display: flex;
  align-items: center;
}
.news-list__search-input {
  width: 100%;
  padding: 0.75rem 3rem 0.75rem 1rem;
  font-size: 1rem;
  border: 2px solid #E2E8F0;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s ease;
}
.news-list__search-input:focus {
  border-color: #2563EB;
}
.news-list__search-input::placeholder {
  color: #94A3B8;
}
.news-list__search-submit {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #64748B;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-list__search-submit:hover, .news-list__search-submit:focus {
  color: #2563EB;
}
.news-list__search-submit svg {
  width: 20px;
  height: 20px;
}
.news-list__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  min-height: 200px;
}
@media only screen and (min-width: 768px) {
  .news-list__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media only screen and (min-width: 1400px) {
  .news-list__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 32px;
  }
}
@media only screen and (min-width: 1600px) {
  .news-list__grid {
    gap: 72px 84px;
  }
}
.news-list__grid--loading {
  opacity: 0.5;
  pointer-events: none;
}
.news-list__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .news-list__meta {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .news-list__meta {
    font-size: 22px;
  }
}
.news-list__date {
  color: #3e78bc;
}
.news-list__excerpt {
  font-size: 1rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}
.news-list__excerpt p {
  margin: 0 0 1rem 0;
  font-weight: 400;
}
.news-list__excerpt p:last-child {
  margin-bottom: 0;
}
.news-list__footer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 30px;
}
@media only screen and (min-width: 768px) {
  .news-list__footer {
    padding-top: 50px;
  }
}
@media only screen and (min-width: 1200px) {
  .news-list__footer {
    padding-top: 70px;
  }
}
.news-list__cta {
  flex-shrink: 0;
}
.news-list__card {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-list__card:hover {
  transform: translateY(-4px);
}
.news-list__card .news-list__meta {
  text-align: center;
  justify-content: center;
}
.news-list__card .news-list__footer {
  padding-top: 20px;
}
@media only screen and (min-width: 768px) {
  .news-list__card .news-list__footer {
    padding-top: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .news-list__card .news-list__footer {
    padding-top: 40px;
  }
}
.news-list__card-image {
  aspect-ratio: 514/340;
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 20px;
}
.news-list__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.news-list__card:hover .news-list__card-image img {
  transform: scale(1.05);
}
.news-list__card-content {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.news-list__card-title {
  margin: 0;
  line-height: 1.3;
  text-align: center;
}
.news-list__card-title a {
  color: #1E293B;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 700 !important;
}
.news-list__card-title a:hover, .news-list__card-title a:focus {
  color: #2563EB;
}
.news-list__no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 3rem 1rem;
  background: #F8FAFC;
  border-radius: 8px;
}
.news-list__no-results p {
  font-size: 1.125rem;
  color: #64748B;
  margin: 0;
}
.news-list__pagination {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
@media only screen and (min-width: 768px) {
  .news-list__pagination {
    margin-top: 48px;
  }
}
@media only screen and (min-width: 1200px) {
  .news-list__pagination {
    margin-top: 72px;
  }
}
.news-list__pagination .page-numbers {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-list__pagination li {
  display: inline-block;
  position: relative;
}
.news-list__pagination li::before {
  content: "";
  position: absolute;
  left: 0;
  height: 60%;
  width: 1px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  background-color: #000;
}
.news-list__pagination li:first-child::before {
  content: none;
}
.prev ~ .news-list__pagination li::before, .next ~ .news-list__pagination li::before {
  content: none;
}
.news-list__pagination li:has(.prev)::before, .news-list__pagination li:has(.next)::before, .news-list__pagination li:has(.dots)::before {
  content: none;
}
.news-list__pagination li:has(.prev) + li::before {
  content: none;
}
.news-list__pagination li:last-child::before {
  content: none;
}
.news-list__pagination a.page-numbers,
.news-list__pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0.5rem 0.75rem;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .news-list__pagination a.page-numbers,
  .news-list__pagination span {
    min-width: 48px;
    height: 36px;
    font-size: 22px;
  }
}
@media only screen and (min-width: 1200px) {
  .news-list__pagination a.page-numbers,
  .news-list__pagination span {
    min-width: 56px;
    height: 48px;
    font-size: 28px;
  }
}
.news-list__pagination a.page-numbers.prev, .news-list__pagination a.page-numbers.next,
.news-list__pagination span.prev,
.news-list__pagination span.next {
  font-weight: 400;
  color: #3e78bc;
  text-decoration: underline;
  display: none;
}
@media only screen and (min-width: 768px) {
  .news-list__pagination a.page-numbers.prev, .news-list__pagination a.page-numbers.next,
  .news-list__pagination span.prev,
  .news-list__pagination span.next {
    display: flex;
  }
}
.news-list__pagination a.page-numbers:hover,
.news-list__pagination span:hover {
  color: #3e78bc;
}
.news-list__pagination .current {
  font-weight: 700;
  color: #3e78bc;
  pointer-events: none;
}
.news-list__pagination .prev,
.news-list__pagination .next {
  font-weight: 600;
}
.news-list__pagination .dots {
  background: transparent;
  pointer-events: none;
}
.news-list .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/*# sourceMappingURL=news-list.css.map */
