<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Colorbox override.
 */

figure .cboxElement {
  margin: 0;
}

.cboxElement {
  position: relative;
  overflow: hidden;
  display: inline-block;
  max-width: none;
}

.cboxElement:not(.text-link) {
  margin-bottom: 1rem;
  border-top-style: solid;
  border-top-width: 4px;
  /* For color @see colors.css */
}

.cboxElement:hover:after{
  opacity: .7;
}

.cboxElement img {
  display: block;
  margin: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  object-fit: cover;
  border: none;
  max-width: 100%;
}

.cboxElement:hover img {
  transform: scale(1.1);
}
</pre></body></html>