/* Shared prerequisite guidance, independent of page-specific notice overrides. */
.service-access-notice {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 24px;
  padding: 10px;
  border: 14px solid transparent;
  border-image: url('/images/pixel_frame_input.svg?v=1') 14 fill / 1 / 0 stretch;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  clip-path: none;
  image-rendering: pixelated;
}
.service-access-notice__copy {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.service-access-notice__copy > div { min-width: 0; }
.service-access-notice__copy strong { display: block; margin-bottom: 4px; color: #5a43bc; font-size: var(--type-body); line-height: 1.6; }
.service-access-notice .service-access-notice__art {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  object-fit: contain;
  image-rendering: pixelated;
}
.service-access-notice .service-access-notice__copy p {
  margin: 0;
  color: #6b667a;
  font-size: var(--type-body);
  font-weight: 400;
  line-height: 1.7;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.service-access-notice .service-access-notice__action {
  box-sizing: border-box;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 12px;
  border: 14px solid transparent;
  border-image: url('/images/pixel_frame_settings_primary.svg?v=1') 14 fill / 1 / 0 stretch;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  clip-path: none;
  color: #fff;
  font-size: var(--type-small);
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  image-rendering: pixelated;
}
.service-access-notice__action:hover { filter: brightness(1.03); }
.service-access-notice__action:active { transform: translateY(1px); }
.service-access-notice__action:focus-visible { outline: 3px solid #5a43bc; outline-offset: 3px; }
@media (max-width: 639px) {
  .service-access-notice { flex-direction: column; align-items: stretch; gap: 12px; padding: 8px; }
  .service-access-notice .service-access-notice__copy p { font-size: var(--type-small); }
  .service-access-notice .service-access-notice__action { width: 100%; }
}
