/* Footer bar container */
#footerlowerbar {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
}

/* Main layout */
#footerlowerbar .footerbar-inner {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: flex-end;
}

/* Columns */
#footerlowerbar .footerbar-col {
  min-width: 0;
  box-sizing: border-box;
}

#footerlowerbar .footerbar-col--contact { flex: 1.2; }
#footerlowerbar .footerbar-col--logs    { flex: 1; text-align: center; }
#footerlowerbar .footerbar-col--meta    { flex: 1; text-align: right; }

/* Titles */
#footerlowerbar .footerbar-title {
  font-weight: 600;
  margin: 0 0 6px 0;
}

/* Contact formatting */
#footerlowerbar .footerbar-contact { line-height: 1.3; }
#footerlowerbar .footerbar-row { margin: 2px 0; }

#footerlowerbar .footerbar-label {
  display: inline-block;
  min-width: 70px;
  opacity: 0.8;
}

/* Logs */
#footerlowerbar .footerbar-logs {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

#footerlowerbar .footerbar-log {
  text-decoration: none;
  white-space: nowrap;
}

/* Icons */
#footerlowerbar .footerbar-icons {
  display: inline-flex;
  gap: 8px;
  justify-content: flex-end;
  margin-bottom: 6px;
}

#footerlowerbar .footerbar-icon {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid currentColor;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1;
}

/* Keep your existing footertext neat inside the right column */
#footerlowerbar #footertext {
  margin: 0;
}

/* Legal line */
#footerlowerbar .footerbar-legal {
  margin-top: 6px;
  font-size: 0.95em;
  opacity: 0.85;
}

/* Responsive stack */
@media (max-width: 720px) {
  #footerlowerbar .footerbar-inner {
    flex-direction: column;
    align-items: stretch;
  }

  #footerlowerbar .footerbar-col--logs,
  #footerlowerbar .footerbar-col--meta {
    text-align: left;
  }

  #footerlowerbar .footerbar-logs { justify-content: flex-start; }
  #footerlowerbar .footerbar-icons { justify-content: flex-start; }
}
