.aoyea-component-site-footer {
  background: var(--aoyea-color-page);
  color: #fff;
  font-family: var(--aoyea-font-ui);
  margin-top: 80px;
}

.aoyea-component-site-footer .aoyea-site-footer-main {
  min-height: 518px;
  padding: 86px max(7vw, 40px) 34px;
  background: #000;
}

.aoyea-component-site-footer .aoyea-site-footer-grid {
  display: grid;
  width: min(1240px, 100%);
  margin: 0 auto;
  grid-template-columns: 260px 110px 150px minmax(250px, 1fr) 230px;
  gap: 36px;
}

.aoyea-component-site-footer .aoyea-site-footer-logo {
  width: 202px;
  height: 94px;
  object-fit: contain;
}

.aoyea-component-site-footer .aoyea-site-footer-column h2 {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
}

.aoyea-component-site-footer .aoyea-site-footer-column a,
.aoyea-component-site-footer .aoyea-site-footer-column p,
.aoyea-component-site-footer .aoyea-site-footer-column > span {
  display: block;
  margin: 0 0 12px;
  color: #e6e6e6;
  font-size: 13px;
  font-weight: 300;
  line-height: 17px;
}

.aoyea-component-site-footer .aoyea-site-footer-contact {
  font-style: normal;
}

.aoyea-component-site-footer .aoyea-site-footer-subscribe {
  min-width: 0;
}

.aoyea-component-site-footer .aoyea-site-footer-subscribe h2 {
  margin: 0 0 14px;
}

.aoyea-component-site-footer .aoyea-site-footer-subscribe > p {
  margin: 0 0 18px;
  color: #e6e6e6;
  font-size: 13px;
  font-weight: 300;
  line-height: 17px;
}

.aoyea-component-site-footer .aoyea-site-footer-subscribe-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.aoyea-component-site-footer .aoyea-site-footer-subscribe input {
  min-width: 0;
  height: 35px;
  padding: 0 11px;
  border: 0;
  border-radius: 4px;
  background: #242424;
  color: #fff;
  font-size: 13px;
}

.aoyea-component-site-footer .aoyea-site-footer-subscribe input:focus-visible {
  outline: 2px solid var(--aoyea-color-brand);
  outline-offset: 2px;
}

.aoyea-component-site-footer .aoyea-site-footer-subscribe button {
  height: 35px;
  padding: 0 12px;
  border: 0;
  border-radius: 4px;
  background: var(--aoyea-color-brand);
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.aoyea-component-site-footer .aoyea-site-footer-subscribe button:hover,
.aoyea-component-site-footer .aoyea-site-footer-subscribe button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgb(49 197 0 / 25%);
}

.aoyea-component-site-footer .aoyea-site-footer-subscribe-status {
  min-height: 18px;
  margin: 10px 0 0;
  color: var(--aoyea-color-muted);
  font-size: 13px;
}

.aoyea-component-site-footer .aoyea-site-footer-bottom {
  display: flex;
  width: min(1240px, 100%);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 82px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgb(255 255 255 / 20%);
}

.aoyea-component-site-footer .aoyea-site-footer-bottom > p {
  margin: 0;
  font-size: 13px;
  font-weight: 300;
}

.aoyea-component-site-footer .aoyea-site-footer-social {
  display: flex;
  gap: 20px;
}

.aoyea-component-site-footer .aoyea-site-footer-social a,
.aoyea-component-site-footer .aoyea-site-footer-social img {
  width: 46px;
  height: 46px;
}

.aoyea-component-site-footer .aoyea-site-footer-social-box {
  display: grid;
  place-items: center;
  border: 1px solid rgb(217 221 228 / 20%);
  border-radius: 12px;
  background: #020307;
  box-shadow: inset 0 -4px 4px rgb(217 221 228 / 20%);
}

.aoyea-component-site-footer .aoyea-site-footer-social-box img {
  width: auto;
  height: auto;
}

@media (max-width: 1100px) {
  .aoyea-component-site-footer .aoyea-site-footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .aoyea-component-site-footer {
    margin-top: 48px;
  }

  .aoyea-component-site-footer .aoyea-site-footer-main {
    padding: 64px 24px 30px;
  }

  .aoyea-component-site-footer .aoyea-site-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 24px;
  }

  .aoyea-component-site-footer .aoyea-site-footer-brand,
  .aoyea-component-site-footer .aoyea-site-footer-contact,
  .aoyea-component-site-footer .aoyea-site-footer-subscribe {
    grid-column: 1 / -1;
  }

  .aoyea-component-site-footer .aoyea-site-footer-brand {
    width: fit-content;
  }

  .aoyea-component-site-footer .aoyea-site-footer-logo {
    width: 135px;
    height: 63px;
  }

  .aoyea-component-site-footer .aoyea-site-footer-bottom {
    align-items: flex-start;
    margin-top: 54px;
    flex-direction: column;
  }

  .aoyea-component-site-footer .aoyea-site-footer-social {
    gap: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aoyea-component-site-footer .aoyea-site-footer-subscribe button {
    transition: none;
  }
}
