.yvcr-site-credit-wrap {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  margin: 1rem auto 0;
  max-width: 100%;
  padding: 0 0.5rem;
}

.yvcr-site-credit {
  box-sizing: border-box;
  display: inline-grid;
  gap: 0.22rem;
  max-width: min(100%, 28rem);
  padding: 0.48rem 0.62rem;
  border: 1px solid rgba(108, 117, 125, 0.34);
  border-radius: 8px;
  color: var(--footer-text-color, currentColor);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.yvcr-site-credit:hover,
.yvcr-site-credit:focus-visible {
  color: var(--footer-text-color, currentColor);
  text-decoration: none;
  opacity: 1;
  border-color: var(--footer-link-color, #0d6efd);
  background: rgba(255, 255, 255, 0.08);
}

.yvcr-site-credit:focus-visible {
  outline: 2px solid var(--footer-link-color, #0d6efd);
  outline-offset: 3px;
}

.yvcr-site-credit__eyebrow {
  color: var(--footer-text-color, currentColor);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  opacity: 0.76;
  text-align: left;
  text-transform: uppercase;
}

.yvcr-site-credit__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.yvcr-site-credit__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 4.8rem;
  min-height: 2.12rem;
  padding: 0.22rem 0.5rem;
  border: 1px solid rgba(13, 110, 253, 0.38);
  border-radius: 8px;
  background: rgba(13, 110, 253, 0.1);
  color: var(--footer-link-color, #0d6efd);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.yvcr-site-credit__name {
  min-width: 0;
  color: var(--footer-link-color, #0d6efd);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.18;
  overflow-wrap: anywhere;
  text-align: left;
}

@media (max-width: 420px) {
  .yvcr-site-credit {
    width: 100%;
    justify-items: center;
  }

  .yvcr-site-credit__eyebrow {
    text-align: center;
  }

  .yvcr-site-credit__brand {
    justify-content: center;
  }

  .yvcr-site-credit__name {
    max-width: 12.5rem;
    text-align: left;
  }
}
