.news__headline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
@media (min-width: 768px) {
  .news__headline {
    flex-direction: row;
    align-items: center;
    margin-bottom: 4.8rem;
    gap: 1rem;
  }
}
.news__headline h2,
.news__headline .h2 {
  color: var(--white);
  margin: 0;
}
.news__headline .search-form {
  position: relative;
}
.news__headline .search-form:before {
  content: "";
  width: 2rem;
  height: 2rem;
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../../../../assets/images/Search.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
.news__headline .search-form .search-field {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid var(--gray-on-white);
  color: var(--gray-on-white);
  background-color: transparent;
  font-size: 1rem;
  line-height: 1.3;
  padding: 0.8rem;
  padding-left: 3rem;
  min-width: 20rem;
}
.news__headline .search-form .search-field:focus, .news__headline .search-form .search-field:focus-visible {
  border: 1px solid var(--grey-on-black);
  outline: none;
}
.news__headline .search-form .search-field::-moz-placeholder {
  color: var(--gray-on-white);
}
.news__headline .search-form .search-field::placeholder {
  color: var(--gray-on-white);
}
.news__headline .search-form .search-field::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}
.news__headline .search-form .search-field:-webkit-autofill, .news__headline .search-form .search-field:-webkit-autofill:hover, .news__headline .search-form .search-field:-webkit-autofill:focus {
  border: 1px solid var(--gray-on-white);
  -webkit-text-fill-color: var(--gray-on-white); /* text color inside autofilled& */
  -webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.1) inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.news__headline .search-form .search-submit {
  display: none;
}
.news__group {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .news__group {
    row-gap: 2.5rem;
  }
}
.news__blog-post {
  width: 100%;
  background: var(--white);
  border-radius: 1.5rem;
  padding: 0.8rem;
}
@media (min-width: 768px) {
  .news__blog-post {
    width: calc(50% - 0.5rem);
  }
}
@media (min-width: 1024px) {
  .news__blog-post {
    width: calc(33% - 0.46rem);
  }
}
.news__blog-post .image {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
}
.news__blog-post .image .ratio {
  position: relative;
  padding-top: 62%;
}
@media (min-width: 768px) {
  .news__blog-post .image .ratio {
    padding-top: 62%;
  }
}
.news__blog-post .image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.news__blog-post-content {
  padding: 1rem 0.5rem 0;
}
@media (min-width: 768px) {
  .news__blog-post-content {
    padding: 1rem 0.5rem 0;
  }
}
.news__blog-post-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  color: var(--grey-on-black);
}
.news__blog-post-header .date,
.news__blog-post-header .time-to-read {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.news__blog-post-header .date svg,
.news__blog-post-header .time-to-read svg {
  transform: translateY(-2px);
}
.news__blog-post .headline {
  color: var(--black);
}
.news__blog-post .headline a {
  color: inherit;
  text-decoration: none;
}
.news__pagination {
  margin: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.news__pagination a {
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid var(--light-on-white);
  color: var(--light-on-white);
  border-radius: 0.5rem;
  text-decoration: none;
}
.news__pagination a:hover {
  border-color: var(--gray-on-white);
  color: var(--gray-on-white);
}
.news__pagination span {
  padding: 0.5rem 1rem;
  background: #FF6A82;
  background: linear-gradient(135deg, rgb(255, 106, 130) 0%, rgb(239, 62, 91) 50%, rgb(237, 20, 56) 100%);
  color: var(--light-on-white);
  border-radius: 0.5rem;
}/*# sourceMappingURL=styles.css.map */