/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background-color: var(--footer-bg, #111);
  color: var(--footer-text-general, #fff);
  padding: 60px 20px;
  box-sizing: border-box;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 80px;
  align-items: start;
}

.site-footer__left {
  text-align: left;
  background-color: var(--footer-left-bg, transparent);
  color: var(--footer-left-text, var(--footer-text-general, #fff));
  border-radius: var(--border-radius-general, 20px);
  box-sizing: border-box;
  overflow: hidden;
  word-wrap: break-word;
}

.site-footer__logo {
  width: 100%;
}

.site-footer__logo .custom-logo-link {
  display: block;
  width: 100%;
}

.site-footer__logo .custom-logo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.site-footer__logo img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
}

.site-footer__title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
}

.site-footer__description {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.footer-menus {
  display: flex;
  flex-wrap: wrap;
  gap: var(--footer-menus-gap-desktop, 30px);
}

.footer-menus > * {
  flex: 1 1 0;
  min-width: 0;
}

.footer-menus .footer-menu__list .menu-item {
  padding: var(--footer-menu-list-item-padding-vertical-desktop, 8px) 0;
  transition: opacity var(--duration-animation-dropdown-headerMenu, 250ms);
}

.footer-menus .footer-menu__list .menu-item:hover {
  text-decoration: underline;
}

.footer-menu__title {
  margin: 0 0 var(--footer-menu-title-margin-bottom-desktop, 12px);
  font-weight: 400;
  padding: 0;
  font-size: 18px;
  color: var(--footer-text, var(--footer-text-general, #fff));
}

.footer-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.site-footer__bottom {
  margin-top: 64px;
  text-align: center;
  width: 100%;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  color: var(--footer-text-general, #fff);
}

.site-footer__bottom p {
  text-align: center;
}

@media (max-width: 1000px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .footer-menus {
    flex-direction: column;
    gap: var(--footer-menus-gap-mobile, 40px);
    text-align: center;
  }

  .footer-menus > * {
    flex: 1 1 auto;
    width: 100%;
  }

  .footer-menu__title {
    margin-bottom: var(--footer-menu-title-margin-bottom-mobile, 12px);
  }

  .footer-menus .footer-menu__list .menu-item {
    padding: var(--footer-menu-list-item-padding-vertical-mobile, 10px) 0;
  }
}
