/* Remove Olivero footer padding and background */
.site-footer {
  background: none !important;
  border-inline-start: none !important;
}

.site-footer__inner {
  padding-block: 0 !important;
  padding: 0 !important;
}

.region--footer_bottom__inner > * {
  margin-block-end: 0 !important;
}

/* Footer content */
.panticz-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  background: #1e1e1e;
  color: #b0b0b0;
  font-size: 0.875rem;
}

.panticz-footer__profiles {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.panticz-footer__profiles img {
  height: 24px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.15s;
  vertical-align: middle;
}

.panticz-footer__profiles img:hover {
  opacity: 1;
}

.panticz-footer__profiles span {
  font-weight: 600;
  color: #fff;
  margin-right: 0.5rem;
}

.panticz-footer__menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.panticz-footer__menu a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.15s;
}

.panticz-footer__menu a:hover {
  color: #fff;
  text-decoration: underline;
}

.panticz-footer__copyright {
  color: #707070;
}

@media (max-width: 768px) {
  .panticz-footer {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .panticz-footer__menu {
    flex-wrap: wrap;
    justify-content: center;
  }
}
