a.dirasuite-site-credit {
  position: relative;
  z-index: 2;
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  background: var(--ds-credit-bg);
  border-top: 2px solid var(--ds-credit-accent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.8125rem;
  line-height: 1.45;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.dirasuite-site-credit__inner {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  width: min(100%, 1280px);
  min-height: 46px;
  margin: 0 auto;
  padding: 0.68rem 1.5rem;
  text-align: center;
}

.dirasuite-site-credit__marker {
  width: 6px;
  height: 6px;
  margin-right: 0.18rem;
  background: var(--ds-credit-accent);
  border-radius: 999px;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.07);
  flex: 0 0 auto;
}

.dirasuite-site-credit__brand,
.dirasuite-site-credit__arrow {
  color: var(--ds-credit-accent);
  font-weight: 800;
}

.dirasuite-site-credit__brand {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.dirasuite-site-credit__arrow {
  display: inline-block;
  margin-left: 0.08rem;
  font-size: 0.9em;
  transition: transform 180ms ease;
}

a.dirasuite-site-credit:hover {
  color: #ffffff;
  background:
    color-mix(
      in srgb,
      var(--ds-credit-bg) 91%,
      var(--ds-credit-accent)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 28px rgba(255, 255, 255, 0.025);
}

a.dirasuite-site-credit:hover
.dirasuite-site-credit__brand {
  color: #ffffff;
  text-decoration-color: var(--ds-credit-accent);
}

a.dirasuite-site-credit:hover
.dirasuite-site-credit__arrow {
  color: #ffffff;
  transform: translate(2px, -2px);
}

a.dirasuite-site-credit:focus-visible {
  color: #ffffff;
  outline:
    3px solid
    var(--ds-credit-accent);
  outline-offset: -3px;
}

@media (max-width: 760px) {
  .dirasuite-site-credit__inner {
    min-height: 44px;
    padding: 0.65rem 1rem;
    flex-wrap: wrap;
    gap: 0.2rem 0.36rem;
    font-size: 0.76rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  a.dirasuite-site-credit,
  .dirasuite-site-credit__brand,
  .dirasuite-site-credit__arrow {
    transition: none;
  }
}
