/* Contacts page — octane contacts-list layout */
.contacts-page {
  font-family: "Montserrat", sans-serif;
  background: #fff;
  clear: both;
  padding-bottom: 60px;
}

.contacts-page__banner {
  background: #111 url("../assets/faq/banner.webp") center / cover no-repeat;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.contacts-page__title {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  color: #fff;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 140px 20px 56px;
  margin: 0;
}

.contacts-page .wrapper {
  max-width: 1470px;
  margin: 0 auto;
  padding: 0 15px;
}

.contacts-page .breadcrumb {
  list-style: none;
  padding: 24px 0 8px;
  margin: 0 0 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 14px;
}

.contacts-page .breadcrumb a {
  color: #fd6c1e;
  text-decoration: none;
}

.contacts-page .breadcrumb li + li::before {
  content: " / ";
  color: #999;
}

.contacts-list {
  padding: 10px 0 20px;
}

.contacts-list__single {
  margin-bottom: 50px;
}

.contacts-list h3 {
  font-size: 18px;
  color: #000;
  font-weight: 700;
  margin: 0;
}

.contacts-list__text {
  font-size: 18px;
  color: #000;
  display: block;
  padding-top: 20px;
  line-height: 1.45;
}

.contacts-list__text_orange,
.contacts-list__text_orange a {
  color: #fd6c1e;
}

.contacts-list__text a {
  text-decoration: none;
}

.contacts-list__text a:hover {
  text-decoration: underline;
}

.contacts-list__map-link {
  color: #fd6c1e;
  font-weight: 600;
}

.contacts-page__map-wrap {
  margin: 20px 0 40px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
}

.contacts-page__map-wrap iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: 0;
}

.contacts-page__map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 14px 16px;
  background: #fff;
  border-top: 1px solid #eee;
  font-size: 15px;
}

.contacts-page__map-actions a {
  color: #fd6c1e;
  font-weight: 600;
  text-decoration: none;
}

.contacts-page__map-actions a:hover {
  text-decoration: underline;
}

.contacts-page__hubs {
  margin: 0 0 40px;
}

.contacts-page__hubs h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 16px;
}

.contacts-page__hub {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.5;
}

.contacts-page__hub strong {
  display: block;
  margin-bottom: 4px;
}

@media (min-width: 992px) {
  .contacts-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .contacts-list__single {
    flex: 0 0 44%;
    max-width: 44%;
  }
}

@media (max-width: 767px) {
  .contacts-page__banner {
    min-height: 200px;
  }

  .contacts-list__text {
    font-size: 14px;
    padding-top: 10px;
  }

  .contacts-list h3 {
    font-size: 14px;
  }

  .contacts-list__single {
    margin-bottom: 25px;
  }

  .contacts-page__map-wrap iframe {
    height: 320px;
  }
}
