/* ========================
   HEADER
   ======================== */
.section-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--color-dark-maroon);
  z-index: 100;
}

.section-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 118px;
}

/* --- Logo --- */
.section-header__logo {
  flex-shrink: 0;
  width: 45px;
  height: 50.484px;
}

.section-header__logo img {
  width: 100%;
  height: 100%;
}

/* --- Navigation Links --- */
.section-header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-header__link {
  font-family: var(--font-sans);
  font-size: 22px;
  line-height: var(--leading-nav);
  color: var(--color-cream);
  text-align: center;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.section-header__link:hover {
  opacity: 0.6;
}

.section-header__sep {
  font-family: var(--font-sans);
  font-size: 22px;
  line-height: var(--leading-nav);
  color: var(--color-cream);
  width: 10.967px;
  text-align: center;
  user-select: none;
}

/* --- Language Selector --- */
.section-header__lang {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  cursor: pointer;
}

.section-header__lang-text {
  font-family: var(--font-sans);
  font-size: 22px;
  line-height: var(--leading-nav);
  color: var(--color-cream);
  text-align: center;
  white-space: nowrap;
}

.section-header__lang-arrow {
  width: 8.678px;
  height: 4.558px;
}

.section-header__lang-arrow img {
  width: 100%;
  height: 100%;
  display: block;
}
