@import url('https://fonts.googleapis.com/css2?family=Rye&display=swap');

/* Shared brand banner styles */
.brand-banner {
  background: #000;
  color: #f3f3f3;
  padding: 14px 0;
  margin: 15px;
  border-bottom: 4px solid #e64020;
  font-family: 'Rye', cursive !important;
}
.brand-banner * { font-family: 'Rye', cursive !important; }
.brand-banner__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 500px;
  min-width: 500px;
  margin: 0 auto;
}
.brand-banner .container {
  display: flex;
  justify-content: center;
  background: #000;
  padding: 0 16px;
}
.brand-banner__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  background: #000;
  border: 3px solid #000;
  padding: 2px 2px;
  border-radius: 2px;
}
.brand-banner__logo img {
  width: 100px;
  height: auto;
  object-fit: contain;
  padding: 4px;
}
.brand-banner__info,
.brand-banner__info * {
  color: #f3f3f3;
}
.brand-banner__alias strong {
  display: block;
  color: #f2dfb5;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 22px;
  text-transform: uppercase;
}
.brand-banner__alias span {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: #f2dfb5;
}
.brand-banner__info { flex: 1; min-width: 240px; }
.brand-banner__title {
  color: #e64020;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.brand-banner__tagline {
  color: #9fa1a3;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.brand-banner__contacts {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
}
.brand-banner__contacts span {
  color: #f4f4f4;
  white-space: nowrap;
}
.brand-banner__contacts .email {
  color: #f3f3f3;
  flex-basis: 100%;
}
.brand-banner__contacts .facebook {
  color: #f3f3f3;
  flex-basis: 100%;
}
@media (max-width: 768px){
  body { padding-top: 90px; background: #000; }
  .brand-banner {
    padding: 8px 0;
    margin-top: 0;
  }
  .brand-banner__wrap {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    max-width: none;
    min-width: 0;
  }
  .brand-banner__logo {
    padding: 2px 4px;
    margin-right: 6px;
  }
  .brand-banner__logo img { width: 64px; }
  .brand-banner__title { font-size: 18px; }
  .brand-banner__alias strong { font-size: 14px; }
  .brand-banner__alias span { font-size: 11px; }
  .brand-banner__tagline { font-size: 11px; }
  .brand-banner__contacts { gap: 2px 6px; font-size: 11px; }
}
