@charset "UTF-8";
/**
 * Footer component styles.
 * SCSS: assets/css/components/footer.scss
 * CSS (compiled by IDE): assets/css/components/footer.css
 *
 * Layout: .site-footer > .container > .footer-top / .footer-middle / .footer-bottom
 * All rows share the same .container column as header and sections.
 */
.site-footer {
  background: var(--footer-bg, var(--block-bg, transparent));
  color: var(--footer-text-color, var(--text-color));
  /* Sections own bottom spacing via --block-section-spacing-bottom — do not stack. */
  margin-top: 0;
  padding: 24px var(--site-gutter, 15px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
}
.site-footer > .container {
  padding-left: 0;
  padding-right: 0;
}

.site-info {
  text-align: center;
  font-size: 14px;
}
.site-info a {
  color: inherit;
  text-decoration: none;
}
.site-info a:hover {
  color: var(--additional-c-elements);
}
.site-info .sep {
  margin: 0 8px;
  opacity: 0.6;
}

.footer-main {
  display: grid;
  grid-template-columns: auto minmax(1, 1fr);
  align-items: start;
  gap: 24px;
}
.footer-main__logo {
  max-width: 180px;
}
.footer-main__logo-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.footer-main__text {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  color: var(--footer-text-color, var(--text-color));
}
.footer-main__text p {
  margin: 0 0 10px;
  font-size: inherit;
  line-height: inherit;
}
.footer-main__text p:last-child {
  margin-bottom: 0;
}
.footer-main__text a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-middle {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding: 20px 0;
  margin: 0 0 20px;
}
.footer-middle--reversed {
  flex-direction: row-reverse;
}
.footer-middle--reversed .footer-middle__buttons {
  margin-left: 0;
  margin-right: auto;
}
.footer-middle__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex-shrink: 0;
}
.footer-middle__icons img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.footer-middle__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  flex-shrink: 0;
}
.footer-middle__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--button-border-radius, 5px);
  border: 1px solid var(--footer-btn-bg);
  background: transparent;
  color: var(--footer-btn-bg);
  font-weight: 600;
}
.footer-middle__button--tag {
  width: auto;
  min-width: 35px;
  min-height: 35px;
  padding: 5px 15px;
}
.footer-middle__button img,
.footer-middle__button .footer-middle__button-icon-img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-middle__button .footer-middle__button-icon-img--mask {
  background-color: currentColor;
  -webkit-mask-image: var(--icon-mask);
  mask-image: var(--icon-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.footer-middle__button-text {
  font-size: var(--button-font-size, 14px);
  font-weight: 700;
  line-height: 1.2;
  min-width: 0;
}
.footer-middle__button-text-label {
  font-weight: 400;
  display: block;
  font-size: max(10px, calc(var(--button-font-size, 14px) - 2px));
  text-align: left;
}

.footer-bottom {
  display: block;
}
.footer-bottom__copyright {
  color: var(--footer-text-color, var(--text-color));
  text-align: center;
}
.footer-bottom__copyright--left {
  text-align: left;
}
.footer-bottom__copyright--center {
  text-align: center;
}
.footer-bottom__copyright--right {
  text-align: right;
}

@media (max-width: 992px) {
  .footer-main,
  .footer-middle {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  .footer-main__logo {
    margin: 0 auto;
  }
  .footer-middle__buttons {
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
  }
  .footer-middle__buttons {
    width: 100%;
  }
  .footer-middle--reversed {
    flex-direction: column;
  }
  .footer-middle--reversed .footer-middle__buttons {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .site-footer {
    padding: 20px var(--site-gutter, 15px);
  }
  .footer-main {
    margin-bottom: 24px;
  }
  .footer-middle {
    margin-bottom: 24px;
  }
  .footer-middle__buttons {
    width: 100%;
  }
  .footer-middle__button {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }
  .footer-bottom {
    row-gap: 15px;
  }
  .footer-bottom__copyright {
    font-size: 14px;
    line-height: 1.4;
  }
}
/*# sourceMappingURL=footer.css.map */
