.info-container--news {
  border-bottom: 1px solid var(--light-gold);
}

.offers-list__content {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding: 84px 80px 0 30px;
  width: 100%;
}

.see-more-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  padding-bottom: 80px;
}

.news-container {
  padding-bottom: 90px;
  height: max-content;
}

.news-container .offers-list__content {
  padding: unset !important;
  gap: 20px !important;
  width: 100%;
}

.offers-news__card {
  width: calc((100% - 30px) / 2);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offers-news__card--offer {
  width: 100%;
}

.news__card {
  width: calc((100% - 40px) / 3) !important;
  margin-top: 50px;
}

.offers-news__card h4 {
  color: var(--grey);
}

.offer-card__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offers-news__card .map-text {
  color: var(--extra-grey);
}

.offer-card__info .body1 {
  color: var(--grey);
}

.offer-includes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offer-includes button {
  margin-top: 10px;
}

.card-category {
  color: var(--grey);
}

.offer-includes__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.include-text--inner {
  width: auto;
}

.offer-includes__list li {
  display: flex;
  align-items: center;
  gap: 5px;
}

.offer-includes__list li span {
  color: var(--grey);
  line-height: 125%;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.offer-includes__list li p {
  color: var(--extra-grey);
}

.offer__img {
  position: relative;
  overflow: hidden;
  max-width: 412px;
  max-height: 280px;
}

.offer__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer__img p {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.3);
  color: var(--white);
}

.offer__img .map-text {
  color: var(--white);
}

.see-more-container .btn-see-more {
  margin: 0 auto;
  max-width: 240px;
  width: 100%;
}

.tabs--news .tabs__scroll {
  justify-content: center;
}

/* form */
.news-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.news-form__input {
  width: 100%;
  padding: 12px 10px;
  border: none;
  border-bottom: 1px solid var(--light-grey);
  font-size: 16px;
  background: transparent;
  color: var(--extra-grey);
  outline: none;
  transition: border-color 0.2s;
}

.news-form__input:focus {
  border-bottom: 1.5px solid #A7977B;
}

.news-form__submit {
  width: 100%;
  background: #A7977B;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 0;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.2s;
}

.news-form__submit:hover {
  background: #8d7a5c;
}

.news-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  font-size: 12px;
  color: var(--extra-grey);
  gap: 8px;
}

.news-form__checkbox-label input[type="checkbox"] {
  margin-top: 2px;
}

.news-form__checkbox-label a {
  color: #A7977B;
  text-decoration: underline;
}

.news-form-section {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.news-form-section h4 {
  color: var(--grey);
  margin-top: 30px;
  margin-bottom: 30px;
}

.news__left {
  padding: 150px 130px 150px 0;
}

.news__left,
.news__right {
  flex: 1;
  max-height: 786px;
  height: 100%;
}

.checkbox-container {
  display: flex;
  flex-direction: column;
  gap: 7.5px;
}

@media (max-width: 1202px) {
  .offers-list__content {
    padding: 20px 0 0 0;
    flex-direction: column;
  }

  .see-more-container {
    padding-bottom: 20px;
  }

  .offers-news__card {
    width: 100% !important;
  }

  .tabs--news .tabs__scroll {
    justify-content: flex-start;
    overflow-y: auto;
  }

  .news-form-section {
    flex-direction: column;
  }

  .news__right {
    display: none;
  }

  .news__left {
    padding: 100px 0;
  }
}

@media (max-width: 600px) {
  .news-banner-container-title {
    padding: 0 40px;
  }
}