:root {
  --cdp-logo-url: none;
}

.cdp-credit-bar {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

.cdp-credit-bar__inner {
  display: flex;
  justify-content: flex-end;
  margin: 0 auto;
  max-width: 1200px;
  padding: 14px 28px;
}

.cdp-credit {
  --cdp-static-color: rgba(255, 255, 255, 0.62);
  --cdp-hover-color: #fff;
  align-items: center;
  color: var(--cdp-static-color);
  display: inline-flex;
  gap: 0.8rem;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.cdp-credit:hover,
.cdp-credit:focus-visible {
  color: var(--cdp-hover-color);
  transform: translateY(-1px);
}

.cdp-credit:focus-visible {
  border-radius: 0.25rem;
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

.cdp-credit__logo {
  background-color: currentColor;
  display: block;
  flex: 0 0 48px;
  height: 48px;
  -webkit-mask: var(--cdp-logo-url) center / contain no-repeat;
  mask: var(--cdp-logo-url) center / contain no-repeat;
  width: 48px;
}

.cdp-credit__divider {
  background-color: currentColor;
  flex: 0 0 1px;
  height: 42px;
  opacity: 0.35;
  width: 1px;
}

.cdp-credit__text { display: block; min-width: 0; text-align: left; }

.cdp-credit__kicker {
  display: block;
  font: 700 0.55rem/1.2 Arial, Helvetica, sans-serif;
  letter-spacing: 0.18em;
  margin: 0 0 0.25rem;
  opacity: 0.72;
  text-transform: uppercase;
}

.cdp-credit__name {
  display: block;
  font: 400 0.95rem/1.2 Georgia, "Times New Roman", serif;
  margin: 0;
}

.cdp-credit__services {
  display: block;
  font: 650 0.52rem/1.4 Arial, Helvetica, sans-serif;
  letter-spacing: 0.12em;
  margin: 0.45rem 0 0;
  opacity: 0.72;
  text-transform: uppercase;
}

@media (max-width: 420px) {
  .cdp-credit-bar__inner { justify-content: flex-start; padding-inline: 20px; }
  .cdp-credit { gap: 0.65rem; }
  .cdp-credit__logo { flex-basis: 40px; height: 40px; width: 40px; }
  .cdp-credit__divider { height: 36px; }
  .cdp-credit__services { letter-spacing: 0.08em; }
}

@media (prefers-reduced-motion: reduce) {
  .cdp-credit { transition: none; }
  .cdp-credit:hover, .cdp-credit:focus-visible { transform: none; }
}

