/*
 * ClearForm Solutions brand-asset integration.
 * The main stylesheet mirrors the original live site; these small overrides
 * replace its CSS-drawn wordmark with the supplied official logo files.
 */

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: 6px;
  background: var(--paper);
  color: var(--green-deep);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 24px #0c2c2730;
}

.skip-link:focus {
  transform: translateY(0);
}

.brand {
  width: 220px;
}

.brand-logo,
.footer-logo {
  display: block;
  width: 100%;
  height: auto;
}

.footer-logo-link {
  width: 235px;
}

.footer-logo {
  filter: brightness(0) invert(1);
}

.summary-text {
  display: inline;
  border: 0 !important;
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  transform: none !important;
}

.form-status {
  margin: 0;
  border-left: 3px solid var(--teal);
  background: var(--mint-light);
  color: var(--green-deep);
  padding: 11px 13px;
  font-size: 11px;
  line-height: 1.55;
}

.form-status.error {
  border-left-color: var(--orange);
  background: #fdf2eb;
  color: #7e3412;
}

@media (width <= 1120px) {
  .brand {
    width: 190px;
  }
}

@media (width <= 680px) {
  .brand {
    width: 155px;
  }

  .footer-logo-link {
    width: 220px;
  }
}

@media (width <= 390px) {
  .site-header {
    width: calc(100% - 24px);
  }

  .brand {
    width: 138px;
  }

  .header-actions {
    gap: 8px;
  }
}
