/**
 * @file
 * Styles for Header Backus 2026 block.
 */

.header-backus-2026 {
  /* Add your header styles here */
}

.header-backus-2026__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.header-backus-2026__logo {
  flex-shrink: 0;
}

.header-backus-2026__logo img {
  max-height: 60px;
  width: auto;
}

.header-backus-2026__navigation {
  flex-grow: 1;
  margin: 0 2rem;
}

.header-backus-2026__social {
  flex-shrink: 0;
}

.header-backus-2026__social-list {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-backus-2026__social-item {
  margin: 0;
}

.header-backus-2026__social-link {
  display: block;
}

.header-backus-2026__social-icon {
  width: 24px;
  height: 24px;
  display: block;
}

/* Social Networks Black */
.header-backus-2026__social-black {
  flex-shrink: 0;
  margin-left: 2rem;
}

.header-backus-2026__social-black-list {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-backus-2026__social-black-item {
  margin: 0;
}

.header-backus-2026__social-black-link {
  display: block;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.header-backus-2026__social-black-link:hover {
  opacity: 1;
}

.header-backus-2026__social-black-icon {
  width: 24px;
  height: 24px;
  display: block;
  /* Filter to make icons black */
  filter: brightness(0) saturate(100%);
}

.header-backus-2026__social-black-icon:hover {
  filter: brightness(0) saturate(100%) opacity(0.7);
}
