/* Shared site header — Advertorial + logo */
.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #212d3b;
  padding: 0 16px 16px;
  box-sizing: border-box;
}

.site-header__advertorial {
  width: 100%;
  margin: 0;
  padding: 10px 0 8px;
  font-family: Lato, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.2;
  text-align: center;
}

.site-header__logo {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 56px;
  padding: 0;
}

.site-header .site-logo-link {
  display: grid;
  place-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
}

.site-header .site-logo-link img {
  display: block;
  width: 188px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  object-position: center center;
}

@media only screen and (max-width: 600px) {
  .site-header__advertorial {
    font-size: 13px;
    padding: 8px 0 6px;
  }

  .site-header .site-logo-link img {
    width: 160px;
  }
}
