/* =========================================================
   HEADER
========================================================= */

.header {
  width: min(760px, 100%);

  text-align: center;

  margin-bottom: 34px;
}

.logo {
  width: 90px;
  height: 90px;
  margin: 0 auto 16px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;

  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.6));
}

.logo span {
  color: var(--blue-light);
}

.title {
  margin: 0;

  font-size: clamp(36px, 5vw, 58px);

  font-weight: 900;

  letter-spacing: 1px;

  text-transform: uppercase;

  text-shadow:
    0 3px 15px rgba(0, 0, 0, 0.7);
}

.title span {
  color: var(--blue);
}

.subtitle {
  margin-top: 9px;

  color: #b7c0ce;

  font-size: 12px;

  letter-spacing: 5px;

  text-transform: uppercase;

  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.8);
}

.police-accent {
  width: 100px;
  height: 3px;

  margin: 18px auto 0;

  display: flex;
  gap: 4px;

  border-radius: 10px;

  background: transparent;
}

.police-accent .light {
  width: 50%;
  height: 100%;

  opacity: 0.15;

  border-radius: 10px;

  transition: opacity 0.05s ease;
}
