.search--results {
  padding: 134px 30px 0;
  overflow: hidden;
}
.search--results h2,
.title--outside {
  text-transform: uppercase;
  color: var(--primary);
  text-align: center;
  margin: 0px;
  font-size: 2.5rem;
  line-height: 2.5rem;
}
.search--results .noticias--slide {
  height: 580px;
  top: 0px;
}
.search--results .noticias--slide .card {
  bottom: -140px;
}

.search--results .pagination {
  padding: 50px 1.25rem;
  text-align: center;
}
.search--results .pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.search--results .pagination .page-numbers {
  color: var(--primary);
  font-size: 1.75rem;
}
.search--results .pagination .current {
  font-weight: bold;
}
.search--results .pagination .next {
  font-size: 1rem;
  background: url("../img/next.svg") no-repeat right center;
  padding-right: 40px;
  margin-left: 40px;
}
.search--results .pagination .prev {
  font-size: 1rem;
  background: url("../img/previous.svg") no-repeat left center;
  padding-left: 40px;
  margin-right: 40px;
}

.search--default .box {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}
.search--default h1 {
  text-transform: uppercase;
  color: var(--primary);
  text-align: center;
  margin-bottom: 50px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  font-size: 2.5rem;
  line-height: 2.5rem;
}
.search--default h3 {
  color: var(--primary);
  font-size: 22px;
  line-height: 22px;
  margin: 0px 0 10px;
}
.search--default a:hover h3 {
  font-weight: 400;
  font-style: italic;
  background: url("../img/next.svg") no-repeat right center;
  padding-right: 40px;
}
.search--default .container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1140px;
  gap: 30px;
}
.search--default a {
  max-width: 400px;
  width: 100%;
  color: var(--primary);
  position: relative;
}
.search--default a > span {
  position: relative;
  transition: all 0.3s;
}
.search--default a > span::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: #ffb031;
  opacity: 0;
  z-index: 1;
  mix-blend-mode: hard-light;
  transition: all 0.3s;
}
.search--default a:hover > span::before {
  opacity: 1;
}
.search--default a img {
  width: 100%;
  max-width: 800px;
  height: 230px;
  object-fit: cover;
  display: block;
}
.search--default-bot {
  margin: 14px 0 0 0;
}

@media (max-width: 480px) {
  .search--default h1 {
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
}

.no-results {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 179px);
  flex-direction: column;
}
.no-results p {
  font-size: 32px;
  line-height: 32px;
  color: var(--primary);
  font-weight: normal;
  text-align: center;
}