/* Custom logo layout for style-2 header */
#sp-logo .sp-logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

#sp-logo .sp-logo-left,
#sp-logo .sp-logo-right {
  flex: 1 1 auto;
  min-width: 0;
}

#sp-logo .sp-logo-left {
  display: flex;
  align-items: center;
}

#sp-logo .sp-logo-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 991.98px) {
  #sp-logo .sp-logo-row {
    flex-direction: column;
    align-items: flex-start;
  }

  #sp-logo .sp-logo-right {
    justify-content: flex-start;
  }
}
