/* =============================
   FOOTER STYLES (CLEANED)
   ============================= */

.footer-custom {
  background: var(--light-black);
  color: var(--white);
  padding: 3rem 0 1.5rem 0;
  font-size: 1.1rem;
}
.footer-custom .footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.footer-logo-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 180px;
}
.footer-logo {
  font-family: "Cormorant", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}
.footer-sponsored,
.footer-copyright,
.footer-bottom {
  color: var(--secondary-color);
  font-family: "Cormorant", Georgia, serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  font-style: italic;
  text-align: center;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 180px;
}
.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
.footer-links a:hover {
  color: var(--tertiary-color);
}
.footer-social {
  min-width: 180px;
}
.footer-social-title {
  font-family: "Cormorant", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: var(--white);
  letter-spacing: 0.04em;
}
.footer-social-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-social-list a {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-social-list a:hover {
  color: var(--tertiary-color);
}
.footer-social-list i {
  margin-right: 0.6em;
  font-size: 1.15em;
}
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
}
.footer-links-columns {
  display: flex;
  gap: 2.5rem;
}
.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links-col a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
.footer-links-col a:hover {
  color: var(--tertiary-color);
}

/* Copyright link: no underline, no blue, slightly bolder */
.footer-copyright-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-copyright-link:hover {
  color: var(--tertiary-color);
  text-decoration: none;
}

@media (max-width: 660px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
  }
  .footer-logo-block {
    align-items: center;
    margin-bottom: 1.2rem;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .footer-links-columns {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .footer-links-col {
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .footer-links {
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .footer-social {
    min-width: unset;
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    justify-content: center;
  }
  .footer-social-list {
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
  }
  .footer-bottom-row {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    padding-top: 1.2rem;
    padding-bottom: 0.5rem;
    width: 100%;
    text-align: center;
  }
}
