.elementor-12324 .elementor-element.elementor-element-a14fbb5{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-5a5e8c3 */.archive-footer {
  background: #030423;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  padding: 100px 10%;
  width: 100%;
  box-sizing: border-box;
}

/* Default Mobile View: Stacked and Centered */
.footer-row {
  display: flex;
  flex-direction: column; 
  align-items: center;
  gap: 25px;
  width: 100%;
}

.footer-logo {
  width: 180px;
  height: 5000px;
}

.footer-nav {
  display: flex;
  gap: 15px;
  flex-wrap: wrap; /* Prevents breaking on tiny screens */
  justify-content: center;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  color: #FFFFFF;
  font-size: 20px;
  text-decoration: none;
}

/* Desktop & Laptop View: Force Single Line (above 768px) */
@media (min-width: 769px) {
  .footer-row {
    flex-direction: row; /* Force one line */
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }

  .footer-logo {
    width: 200px;
  }

  .footer-nav {
    gap: 30px;
  }

  .footer-nav a {
    font-size: 16px;
  }
}

/* Divider & Copyright */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  width: 100%;
  margin: 25px 0 15px 0;
}

.copyright {
  text-align: center;
  font-size: 16px;
  opacity: 0.6;
}/* End custom CSS */