/*-- -------------------------- -->
<---           Footer           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #site-footer {
    background-color: var(--footerBg);
  }
  #site-footer .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    padding: clamp(3rem, 7vw, 5rem) 1rem 2rem;
  }
  #site-footer .cs-footer-top {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: clamp(2.5rem, 6vw, 3.5rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  #site-footer .cs-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #site-footer .cs-footer-logo img {
    height: 1.75rem;
    width: auto;
  }
  #site-footer .cs-logo-text {
    color: #fff;
  }
  #site-footer .cs-logo-text span {
    color: var(--secondary);
  }
  #site-footer .cs-footer-tagline {
    font-family: var(--bodyFont);
    font-size: 0.9375rem;
    line-height: 1.5em;
    max-width: 22rem;
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.7);
  }
  #site-footer .cs-social-list {
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 0.75rem;
  }
  #site-footer .cs-social-link {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transition: color 0.3s, background-color 0.3s;
  }
  #site-footer .cs-social-link:hover {
    color: var(--navy);
    background-color: var(--secondary);
  }
  #site-footer .cs-social-link svg {
    width: 1.125rem;
    height: 1.125rem;
  }
  #site-footer .cs-column-title {
    font-family: var(--bodyFont);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.5);
  }
  #site-footer .cs-footer-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  #site-footer .cs-footer-list a {
    font-family: var(--bodyFont);
    font-size: 0.9375rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s;
  }
  #site-footer .cs-footer-list a:hover {
    color: var(--secondary);
  }
  #site-footer .cs-footer-bottom {
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  #site-footer .cs-copyright {
    font-family: var(--bodyFont);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
  }
  #site-footer .cs-footer-legal {
    flex-direction: row;
    gap: 1.25rem;
  }
  #site-footer .cs-footer-legal a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
  }
  #site-footer .cs-footer-legal a:hover {
    color: var(--secondary);
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #site-footer .cs-footer-top {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  #site-footer .cs-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  #site-footer .cs-signup-strip {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  #site-footer .cs-signup-form {
    width: 100%;
    max-width: 22rem;
  }
}
