/* A quiet signature, shared by internal and public pages. */
.provider-credit {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3px 10px;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 18px 20px max(20px, env(safe-area-inset-bottom));
  color: #626970;
  font: 400 12px/1.5 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: center;
}

.provider-credit-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  color: #41484f;
  font-weight: 650;
  text-decoration: none;
  text-underline-offset: 4px;
}

.provider-credit-link:hover {
  color: #272b30;
  text-decoration: underline;
}

.provider-credit-link:focus-visible {
  outline: 2px solid #a8332e;
  outline-offset: 4px;
  border-radius: 4px;
}

.provider-credit .provider-credit-logo {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.auth-card > .provider-credit {
  margin-top: 20px;
  padding: 12px 0 0;
  border-top: 1px solid rgba(64, 50, 50, .12);
}

.accessible-bar-page > .provider-credit {
  color: #cbd2d5;
}

.accessible-bar-page > .provider-credit .provider-credit-link {
  color: #fff;
}

.accessible-bar-page > .provider-credit .provider-credit-logo {
  box-sizing: border-box;
  padding: 2px;
  border-radius: 4px;
  background: #fff;
}

body[data-feed] > .provider-credit {
  position: fixed;
  z-index: 2;
  bottom: 12px;
  left: 16px;
  width: auto;
  max-width: calc(100% - 100px);
  padding: 0 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .92);
}

@media (max-width: 380px) {
  .provider-credit { gap: 0 7px; padding-inline: 12px; }
  .auth-card > .provider-credit { flex-direction: column; }
}

@media print {
  .provider-credit { display: none; }
}
