/* ========== Site footer ========== */

.site-footer-section {
  background: #fff;
  border-top: 1px solid #eceef0;
  padding-top: 48px;
  padding-bottom: 28px;
}

.site-footer-section__inner.trv-container {
  box-sizing: border-box;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(3, minmax(0, 0.85fr)) minmax(160px, 0.95fr);
  gap: 28px 32px;
  align-items: start;
  padding-bottom: 36px;
}

.site-footer__logo {
  display: inline-block;
  line-height: 0;
  margin-bottom: 16px;
}

.site-footer__logo img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.site-footer__tagline {
  margin: 8px 0 14px;
  color: #9aa0a6;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer__about {
  margin: 0 0 18px;
  max-width: 320px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.55;
}

.site-footer__socs {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer__soc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: visible;
  text-decoration: none;
  transition: transform 0.2s linear;
}

.site-footer__soc:hover {
  transform: scale(1.1);
}

.site-footer__soc img {
  display: block;
  width: 40px;
  height: 40px;
}

.site-footer__title {
  margin: 0 0 14px;
  color: #1d1d1b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__list li + li {
  margin-top: 10px;
}

.site-footer__list a {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none;
}

.site-footer__list a:hover {
  color: #1d1d1b;
}

.site-footer__phones {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.site-footer__phone {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.3;
  text-decoration: none;
}

.site-footer__phone--main {
  color: #1d1d1b;
  font-size: 16px;
  font-weight: 700;
}

.site-footer__phone:hover,
.site-footer__mail:hover {
  color: #e73039;
}

.site-footer__mail {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none;
}

.site-footer__bottom {
  padding-top: 20px;
  border-top: 1px solid #eceef0;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  margin-bottom: 10px;
}

.site-footer__copy {
  margin: 0;
  color: #9aa0a6;
  font-size: 13px;
  line-height: 1.4;
}

.site-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.site-footer__legal-links a {
  color: #9aa0a6;
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
}

.site-footer__legal-links a:hover {
  color: #1d1d1b;
}

.site-footer__offer {
  margin: 0;
  color: #b0b5ba;
  font-size: 12px;
  line-height: 1.45;
}

.site-footer__gtm {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

@media screen and (max-width: 1100px) {
  .site-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media screen and (max-width: 767px) {
  .site-footer-section {
    padding-top: 36px;
    padding-bottom: 24px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 28px;
  }

  .site-footer__about {
    max-width: none;
  }

  .site-footer__legal {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Human sitemap — accordion */
.bot-sitemap {
  max-width: none;
  width: 100%;
  margin: 0 0 48px;
  padding: 4px 0 16px;
}

.bot-sitemap__lead {
  margin: 0 0 24px;
  color: #4e5459;
  font-size: 16px;
  line-height: 1.45;
}

.bot-sitemap__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bot-sitemap__item {
  border: 1px solid #e8eaec;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.bot-sitemap__item[open] {
  border-color: #d5d8db;
  box-shadow: 0 6px 18px rgba(29, 29, 27, 0.06);
}

.bot-sitemap__summary {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.bot-sitemap__summary::-webkit-details-marker {
  display: none;
}

.bot-sitemap__title {
  grid-column: 1;
  grid-row: 1;
  color: #1d1d1b;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.bot-sitemap__hint {
  grid-column: 1;
  grid-row: 2;
  margin-top: 2px;
  color: #7a8086;
  font-size: 13px;
  line-height: 1.35;
}

.bot-sitemap__chev {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f5f6f7;
  position: relative;
  transition: background-color 0.15s ease, transform 0.2s ease;
}

.bot-sitemap__chev::before,
.bot-sitemap__chev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: #1d1d1b;
  transform: translate(-50%, -50%);
}

.bot-sitemap__chev::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 0.15s ease;
}

.bot-sitemap__item[open] .bot-sitemap__chev {
  background: #fecc0f;
}

.bot-sitemap__item[open] .bot-sitemap__chev::after {
  opacity: 0;
}

.bot-sitemap__summary:hover .bot-sitemap__title {
  color: #e73039;
}

.bot-sitemap__sub {
  margin: 0;
  padding: 14px 18px 16px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px 24px;
  border-top: 1px solid #f0f1f2;
}

.bot-sitemap__sub a {
  display: inline-block;
  padding: 6px 0;
  color: #1d1d1b;
  font-size: 15px;
  line-height: 1.35;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.bot-sitemap__sub a:hover {
  color: #e73039;
  border-bottom-color: rgba(231, 48, 57, 0.35);
}

@media (max-width: 991px) {
  .bot-sitemap__sub {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .bot-sitemap__summary {
    padding: 14px;
  }

  .bot-sitemap__title {
    font-size: 17px;
  }

  .bot-sitemap__sub {
    grid-template-columns: 1fr;
    padding: 12px 14px 14px;
  }
}

/* Hide duplicate article title under page heading */
.bot-sitemap-page h2[itemprop="headline"],
.bot-sitemap-page .item-page > .page-header,
.bot-sitemap-page .item-page h2,
.bot-sitemap-page .article-header,
.bot-sitemap-page .item-title {
  display: none !important;
}
