#news .s1 {
  background: url(/i/news-hero2.jpg) no-repeat center/cover;
  max-height: 600px;
  min-height: 600px;
}

#news .s2 {
  padding: 8rem 0;
  position: relative;
}

#news .s2 .container-inner {
  position: relative;
  z-index: 10;
}

#news .s2 #filter-form {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  height: 2.6rem;
  display: none;
}

#news .s2 .filters-wrapper {
  width: 80%;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 2.6rem;
  gap: 1rem;
}

#news .s2 .search-wrapper {
  width: 36.5%;
  border-bottom: 1px solid rgba(120, 125, 133, 0.5);
  position: relative;
  padding-bottom: 0.75rem;
}

#news .s2 .search-wrapper label {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
  position: absolute;
  bottom: 1rem;
  left: 0;
  transition: opacity .35s ease;
}

#news .s2 .search-wrapper label p {
  font-size: .7rem;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: 0.13em;
}

#news .s2 .search-wrapper label img {
  width: 0.9rem;
  height: 0.9rem;
}

#news .s2 .search-wrapper input {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  outline: 0;
  background-color: rgba(255, 255, 255, 0);
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1.3rem;
  color: #787D85;
  position: relative;
  z-index: 1;
  padding-left: 27px;
  width: 100%;
}

#news .s2 .search-wrapper input:focus + label p, #news .s2 .search-wrapper input.has-text + label p {
  opacity: 0;
  transition-duration: .1s;
}

#news .s2 .type-wrapper {
  width: 22.5%;
  min-width: 10.75rem;
  background-color: #fff;
  z-index: 2;
  position: relative;
}

#news .s2 .type-wrapper .type-label {
  width: 100%;
  padding: .9rem 1rem;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  cursor: default;
}

#news .s2 .type-wrapper .type-label p {
  font-size: .7rem;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

#news .s2 .type-wrapper .type-label img {
  width: 0.85rem;
  height: 0.4rem;
  transform: scaleY(-1);
}

#news .s2 .type-wrapper .type-checkboxes {
  position: absolute;
  top: 0;
  left: 0;
  height: 2.6rem;
  overflow: hidden;
  width: 100%;
  padding: .9rem 1rem;
  border-radius: .5rem;
  border: 1px solid rgba(120, 125, 133, 0.5);
  transition: height .4s ease;
  background-color: #fff;
}

#news .s2 .type-wrapper .type-checkboxes label {
  margin-bottom: 1rem;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  cursor: pointer;
  opacity: 0;
}

#news .s2 .type-wrapper .type-checkboxes label:first-child {
  padding-top: 2.4rem;
}

#news .s2 .type-wrapper .type-checkboxes label p {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: .7rem;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

#news .s2 .type-wrapper .type-checkboxes label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

#news .s2 .type-wrapper .type-checkboxes label .checkmark {
  width: 0.95rem;
  height: 0.95rem;
  border: 1px solid rgba(120, 125, 133, 0.5);
  background-color: #fff;
  display: inline-block;
  position: relative;
  transition: all 0.2s ease;
  border-radius: 2px;
}

#news .s2 .type-wrapper .type-checkboxes label .checkmark::after {
  content: '';
  position: absolute;
  display: block;
  opacity: 0;
  left: 5px;
  top: 2px;
  width: .2rem;
  height: .4rem;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

#news .s2 .type-wrapper .type-checkboxes label input:checked + .checkmark {
  background-color: #C48E51;
  border-color: #C48E51;
}

#news .s2 .type-wrapper .type-checkboxes label input:checked + .checkmark::after {
  opacity: 1;
}

#news .s2 .type-wrapper.--active .type-checkboxes, #news .s2 .type-wrapper:focus .type-checkboxes, #news .s2 .type-wrapper:target .type-checkboxes, #news .s2 .type-wrapper:focus-visible .type-checkboxes, #news .s2 .type-wrapper:focus-within .type-checkboxes {
  height: 9.5rem;
}

#news .s2 .type-wrapper.--active .type-checkboxes label, #news .s2 .type-wrapper:focus .type-checkboxes label, #news .s2 .type-wrapper:target .type-checkboxes label, #news .s2 .type-wrapper:focus-visible .type-checkboxes label, #news .s2 .type-wrapper:focus-within .type-checkboxes label {
  opacity: 1;
}

#news .s2 .type-wrapper.--active .type-label img, #news .s2 .type-wrapper:focus .type-label img, #news .s2 .type-wrapper:target .type-label img, #news .s2 .type-wrapper:focus-visible .type-label img, #news .s2 .type-wrapper:focus-within .type-label img {
  transform: scaleY(1);
}

#news .s2 .dates-wrapper {
  width: 17rem;
  height: 100%;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

#news .s2 .dates-wrapper .date {
  width: calc(50% - .5rem);
  position: relative;
}

#news .s2 .dates-wrapper .date label {
  position: absolute;
  left: 0;
  top: -1.5rem;
}

#news .s2 .dates-wrapper .date label, #news .s2 .dates-wrapper .date input {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: .7rem;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

#news .s2 .dates-wrapper .date input {
  width: 100%;
  outline: 0;
  border-radius: .5rem;
  border: 1px solid rgba(120, 125, 133, 0.5);
  background-color: #fff;
  z-index: 1;
  height: 2.6rem;
  padding: .9rem 1rem;
  color: #787D85;
  cursor: pointer;
}

#news .s2 .buttons-wrapper {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 2.6rem;
  gap: 1rem;
  width: 20%;
  min-width: 13rem;
}

#news .s2 .buttons-wrapper .submit-btn {
  width: calc(50% - .5rem);
  max-width: 160px;
  background-color: #C48E51;
  color: #fff;
  border-radius: .5rem;
  border: 0;
  outline: 0;
  height: 100%;
  transition: background-color .3s ease;
}

#news .s2 .buttons-wrapper .submit-btn:hover {
  background-color: rgba(196, 142, 81, 0.75);
}

#news .s2 .buttons-wrapper .clear-btn {
  text-decoration: underline;
  width: 50%;
  max-width: 121px;
  transition: color .3s ease;
}

#news .s2 .buttons-wrapper .clear-btn:hover {
  color: #C48E51;
}

#news .s2 .buttons-wrapper .submit-btn, #news .s2 .buttons-wrapper .clear-btn {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: .7rem;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
}

#news .s2 .articles-wrapper {
  position: relative;
}

#news .s2 .article {
  width: 100%;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 0;
  position: relative;
}

#news .s2 .article:first-child:before, #news .s2 .article::after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  left: 0;
  background: linear-gradient(105deg, #C48E51 17.6%, #FFD9A1 92.59%);
  bottom: 0;
}

#news .s2 .article:first-child:before {
  top: 0;
}

#news .s2 .article:hover p.title {
  color: #C48E51;
}

#news .s2 .left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 995px;
}

#news .s2 .right {
  width: 45%;
  max-width: 560px;
  aspect-ratio: 560/380;
  border-radius: 1.5rem;
  overflow: hidden;
}

#news .s2 .right img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#news .s2 p.date {
  font-size: 0.9rem;
  line-height: 1.33em;
  font-weight: 400;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: .7rem;
}

#news .s2 p.date span {
  display: inline-block;
  height: 1.7rem;
  opacity: 0.5;
  width: 1px;
  background-color: #787D85;
}

#news .s2 p.title {
  font-size: 2.7rem;
  line-height: 1.18em;
  margin: 1.25rem 0 2rem;
  font-weight: 200;
  transition: color .3s ease;
}

#news .s2 p.read_more {
  background: linear-gradient(105deg, #C48E51 17.6%, #FFD9A1 92.59%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.7rem;
  line-height: 1em;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  max-width: 9rem;
  position: relative;
}

#news .s2 p.read_more::after {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  width: 4.55rem;
  height: 1px;
  background: linear-gradient(90deg, #C48E51 0%, #FFD9A1 100%), #787D85;
}

#news .s2 p.not-found {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 5rem;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  #news .s2 #filter-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: auto;
    gap: 2rem;
  }
  #news .s2 #filter-form > div {
    width: 100% !important;
  }
  #news .s2 #filter-form > div.buttons-wrapper {
    max-width: 350px;
  }
}

@media screen and (max-width: 1200px), screen and (max-height: 899px) {
  #news .s1 svg {
    top: auto;
    bottom: 0;
  }
}

@media screen and (max-width: 980px) {
  #news .s2 .articles-wrapper .article p.title {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  #news .s2 {
    padding: 5rem 0;
  }
  #news .s2 .articles-wrapper .article p.title {
    font-size: 1.5rem;
  }
  #news .s2 .articles-wrapper p.not-found {
    top: 3rem;
  }
  #news .s2 #filter-form .filters-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: auto;
    gap: 2rem 1rem;
  }
  #news .s2 #filter-form .search-wrapper, #news .s2 #filter-form .type-wrapper {
    width: calc(50% - .5rem);
  }
  #news .s2 #filter-form .dates-wrapper {
    margin-top: 1.5rem;
    width: 100%;
    max-width: 100%;
  }
  #news .s2 #filter-form .buttons-wrapper .submit-btn {
    max-width: 100%;
  }
}

@media screen and (max-width: 500px) {
  #news .s2 #filter-form .search-wrapper, #news .s2 #filter-form .type-wrapper {
    width: 100%;
    max-width: 100%;
    min-width: none;
  }
  #news .s2 #filter-form .dates-wrapper {
    width: 100%;
    max-width: 100%;
  }
  #news .s2 #filter-form .buttons-wrapper .submit-btn {
    max-width: 100%;
  }
  #news .s2 .articles-wrapper .article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #news .s2 .articles-wrapper .article .right {
    width: 100%;
  }
}
