.site-footer {
  background: var(--ap-surface, #f6f3ea);
  color: black;
  font-family: Arial, Helvetica, sans-serif;
}

.newsletter {
  min-height: 105px;
  background: var(--ap-surface, #f6f3ea);
  color: #111;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 0 12px;
  border-bottom: 1px solid #bcbcbc;
}

.newsletter h3 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.newsletter p {
  font-size: 14px;
  letter-spacing: 0;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 26px;
}

.newsletter-form input {
  width: 205px;
  border: none;
  border-bottom: 1px solid #111;
  background: transparent;
  padding: 6px 0;
  font-size: 14px;
  outline: none;
}

.newsletter-form button {
  border: none;
  background: transparent;
  font-size: 14px;
  cursor: pointer;
  letter-spacing: 0;
}

.newsletter-status {
  grid-column: 1 / -1;
  margin-top: -18px;
  font-size: 12px;
  font-weight: 800;
  color: #137333;
}

.newsletter-status.error {
  color: #b42318;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 420px;
  border-bottom: 1px solid #bcbcbc;
}

.footer-col {
  padding: 48px 16px;
  border-right: 1px solid #bcbcbc;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col:last-child {
  border-right: none;
}


.footer-logo span {
  font-size: 13px;
  vertical-align: super;
}

.footer-col h3,
.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 26px;
}

.footer-col a {
  color: black;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.25;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-bottom {
  height: 115px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;  
  gap: 30px;
  padding: 0 12px;
}

.footer-bottom p {
  font-size: 12px;
  line-height: 2;
  font-weight: 600;
}
.anchor-under-logo  {
  padding-left: 5px;
}

  .footer-logo-anchor  {
    margin-bottom: 22px;
  }

    .footer-logo-anchor img  {
      width: 185px;
      height: 30px;
      object-fit: cover;
    }




/* RESPONSIVE */

@media (max-width: 900px) {
  .newsletter {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 28px 14px;
  }

  .newsletter-form {
    width: 100%;
    justify-content: space-between;
  }

  .newsletter-form input {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    min-height: auto;
  }

  .footer-col {
    min-height: 240px;
    border-bottom: 1px solid #bcbcbc;
  }

  .footer-col:nth-child(2n) {
    border-right: none;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    padding: 24px 12px;
  }
}

@media (max-width: 760px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-col:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 550px) {
  .newsletter {
    min-height: auto;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .newsletter-form button {
    text-align: left;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-col {
    border-right: none;
    border-bottom: 1px solid #bcbcbc;
    min-height: auto;
    padding: 34px 14px;
  }

  .footer-bottom {
    height: auto;
    min-height: auto;
    padding: 24px 14px;
  }
}
