:root {
  --client-blue: #087ff2;
}

.product[data-client-card-link] {
  cursor: pointer;
}

.product[data-client-card-link]:focus-visible {
  outline: 3px solid rgba(8, 127, 242, .3);
  outline-offset: 3px;
}

.product[data-client-card-link] button,
.product[data-client-card-link] a {
  cursor: pointer;
}

.client-detail-actions {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 14px;
}

.client-detail-actions button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid #d8e5f2;
  border-radius: 10px;
  background: #fff;
  color: #53657a;
  box-shadow: none;
  font: 700 10px 'DM Sans', sans-serif;
}

.client-detail-actions svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.client-media-loading {
  filter: blur(4px);
  opacity: .75;
}

.client-media-ready,
.client-image-ready {
  animation: clientMediaReveal .35s ease;
}

@keyframes clientMediaReveal {
  from { opacity: .45; }
  to { opacity: 1; }
}

@media (max-width: 720px) {
  .client-detail-actions {
    justify-content: flex-start;
    margin-top: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-media-ready,
  .client-image-ready {
    animation: none;
  }
}
