.site-wide-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: calc(100% - 40px);
  max-width: 1080px;
  min-height: 68px;
  margin: 0 auto;
  padding: 8px 2px 14px;
  border-bottom: 2px solid #1f4d78;
  font-family: Arial, Helvetica, sans-serif;
}

.site-wide-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #102033;
  text-decoration: none;
}

.site-wide-brand img {
  display: block;
  width: 42px;
  height: 52px;
  object-fit: contain;
  flex: 0 0 auto;
}

.site-wide-brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.site-wide-brand-copy strong {
  color: #1f4d78;
  font-size: 22px;
  line-height: 1;
}

.site-wide-brand-copy small {
  color: #5b6775;
  font-size: 12px;
  font-weight: 800;
}

.site-wide-brand:hover strong {
  color: #2e74b5;
}

.site-wide-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.site-wide-daily {
  padding: 8px 14px 8px 0;
  border-right: 1px solid #d8e1ea;
  color: #2e74b5;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.site-wide-daily:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-wide-daily-short {
  display: none;
}

.site-wide-blog {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1f4d78;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.site-wide-blog-label-short {
  display: none;
}

.site-wide-blog-arrow {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid #2e74b5;
  border-radius: 50%;
  color: #2e74b5;
  font-size: 18px;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.site-wide-blog:hover .site-wide-blog-arrow {
  transform: translateX(3px);
  color: #fff;
  background: #2e74b5;
}

.site-wide-brand:focus-visible,
.site-wide-daily:focus-visible,
.site-wide-blog:focus-visible {
  outline: 3px solid rgba(46,116,181,.28);
  outline-offset: 4px;
}

.site-wide-header + main {
  padding-top: 24px;
}

@media (max-width: 760px) {
  .site-wide-header {
    width: calc(100% - 32px);
    min-height: 64px;
    gap: 12px;
    padding: 10px 0 12px;
  }

  .site-wide-brand {
    gap: 8px;
  }

  .site-wide-brand img {
    width: 31px;
    height: 39px;
  }

  .site-wide-brand-copy strong {
    font-size: 18px;
    white-space: nowrap;
  }

  .site-wide-brand-copy small {
    display: none;
  }

  .site-wide-actions {
    gap: 12px;
  }

  .site-wide-daily {
    padding: 7px 0;
    border-right: 0;
    font-size: 13px;
    line-height: 1;
  }

  .site-wide-daily-full {
    display: none;
  }

  .site-wide-daily-short {
    display: inline;
  }

  .site-wide-blog {
    gap: 5px;
    font-size: 13px;
    line-height: 1;
  }

  .site-wide-blog-label-full {
    display: none;
  }

  .site-wide-blog-label-short {
    display: inline;
  }

  .site-wide-blog-arrow {
    width: 24px;
    height: 24px;
    font-size: 15px;
  }
}

@media (max-width: 360px) {
  .site-wide-header {
    width: calc(100% - 24px);
    gap: 8px;
  }

  .site-wide-brand-copy strong {
    font-size: 17px;
  }

  .site-wide-actions {
    gap: 9px;
  }

  .site-wide-daily,
  .site-wide-blog {
    font-size: 12px;
  }
}
