* { box-sizing: border-box; }
body { margin: 0; font-family: 'Roboto', sans-serif; color: #1a2332; }

.site-header {
  display: flex;
  align-items: center;
  height: 80px;
  padding: 0 88px;
  background: var(--brand-primary, #0d1f3c);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  gap: 0;
}
.site-header .header-logo-wrap {
  display: flex;
  align-items: center;
  padding-right: 24px;
  flex-shrink: 0;
}
.site-header .header-logo-wrap img {
  max-height: 32px;
  width: auto;
  display: block;
}
.site-header .header-logo-wrap .brand-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-primary-text, #fff);
  white-space: nowrap;
}
.site-header .header-divider {
  width: 2px;
  height: 24px;
  background: var(--brand-primary-text, #fff);
  opacity: 0.4;
  flex-shrink: 0;
}
.site-header .header-portal-label {
  padding-left: 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-primary-text, #fff);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .site-header { padding: 0 24px; height: 64px; }
  .site-header .header-portal-label { font-size: 13px; }
}

.site-footer {
  text-align: center; padding: 22px; font-size: 12.5px; color: #333333;
  background: #f4f7fc; border-top: 1px solid #dde3ec;
}

@media (max-width: 640px) {
  .site-footer { padding: 14px; font-size: 11.5px; }
}
