/* ========== Footer Styles ========== */
.qu-footer {
  margin-top: 30px;
  clear: both;
  border-top: 1px solid #CCC;
  padding-top: 20px;
}

/* Footer rows */
.qu-footer-row {
  text-align: center;
  margin-bottom: 15px;
}

.qu-footer-first,
.qu-footer-second {
  margin-bottom: 10px;
}

.qu-footer-third {
  margin-bottom: 10px;
  color: #666;
  font-size: 14px;
}

.qu-footer-fourth {
  margin-bottom: 0;
  color: #666;
  font-size: 13px;
}

/* Footer navigation */
.qu-footer-nav {
  display: block;
}

.qu-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.qu-footer-list-item {
  display: inline-flex;
  align-items: center;
  margin: 0;
  white-space: nowrap;
}

.qu-footer-list-item:not(:last-child)::after {
  content: " | ";
  color: #666;
  margin: 0 4px;
  font-size: 13px;
}

/* Footer links */
.qu-footer-link {
  color: #06c;
  text-decoration: none;
  font-size: 13px;
  padding: 2px 4px;
}

.qu-footer-link:hover {
  text-decoration: underline;
}

.qu-footer-bold {
  font-weight: bold;
}

/* Footer text */
.qu-footer-text {
  margin: 5px 0;
  line-height: 1.4;
}

.qu-footer-text a {
  color: #06c;
  text-decoration: none;
}

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

.qu-footer-copy {
  margin: 0;
  font-size: 13px;
  color: #666;
}

/* Responsive Footer */
@media only screen and (max-width: 768px) {
  .qu-footer-list {
    flex-direction: column;
    gap: 8px;
  }
  
  .qu-footer-list-item {
    margin: 0;
  }
  
  /* Hide pipe separators on mobile since items stack vertically */
  .qu-footer-list-item:not(:last-child)::after {
    display: none;
  }
  
  .qu-footer-text span {
    display: block;
    margin-top: 5px;
  }
}
