/**
 * Makes a unit-based variable unitless
 * @param {number (with units)} $value      The variable that should be converted to unitless
 */
/**
 * Converts a variable (either px, unitless or rem) to a pixel based value. Assumes that 1rem
 * corresponds to 16px.
 * @param {number} $value      The variable that should be converted pixels
 */
/**
 * Creates a variable that represents a fluid value; it grows from $minPropertyValue to
 * $maxPropertyValue while the viewport width is between $minWidth and $maxWidth.
 * Return value always uses the same unit as $min/maxPropertyValue and adds pixel based value
 * depending on screen size.
 * Use rem units for $min/maxPropertyValue for fonts (for accessibility reasons; users can
 * thereby chose their default font size in the OS/browser) and px for layouts.
 * @param {number (px/rem)} $minPropertyValue       Fluid value will correspond to this value if
 *                                                  the viewport has $minWidth and will not fall
 *                                                  below this value
 * @param {number (px/rem)} $maxPropertyValue       Fluid value will correspond to this value if
 *                                                  the viewport has $maxWidth and will go above
 *                                                  this value
 * @param {number (px)} $minWidth                   Fluid value will be $minPropertyValue if the
 *                                                  viewport has this size or is smaller
 * @param {number (px)} $maxWidth                   Fluid value will be $maxPropertyValue if the
 *                                                  viewport has this size or is larger
 */
/**
 * Returns the layout fluid base unit multiplied with the factor provided
 * @param {number} $factor      Factor that the layout's fluid base unit should be multiplied with
 */
.c-asset {
  display: inline-flex;
  gap: calc(min(16px, max(12px, calc(12px + 0.0046403712 * calc(100vw - 320px)))) * 0.875);
  align-items: center;
  color: #e30613;
  text-decoration: none;
  transition: color 0.35s cubic-bezier(0.2, 0.9, 0.4, 1);
}
.c-asset__title {
  display: block;
  font-size: min(16px, max(16px, calc(16px + 0 * calc(100vw - 320px))));
  line-height: min(22px, max(22px, calc(22px + 0 * calc(100vw - 320px))));
  font-weight: 700;
}
.c-asset__info {
  display: block;
  color: #444852;
  font-size: min(14px, max(14px, calc(14px + 0 * calc(100vw - 320px))));
  line-height: min(18px, max(18px, calc(18px + 0 * calc(100vw - 320px))));
}
.c-asset__icon {
  position: relative;
  flex-shrink: 0;
  height: 26px;
  overflow: hidden;
}
.c-asset__icon svg {
  width: 24px;
  height: 24px;
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1);
}
.c-asset__icon svg path {
  fill: currentColor;
}
.c-asset--link .c-asset__icon svg {
  transform: translateX(-5px);
}
.c-asset--file .c-asset__icon::before {
  position: absolute;
  bottom: 0;
  left: 4px;
  display: block;
  width: 16px;
  height: 2px;
  background: #e30613;
  content: "";
}
.c-asset--file .c-asset__icon svg {
  transform: translateY(-4px);
}
.c-asset:hover {
  color: #B51822;
}
.c-asset:hover .c-asset__icon svg {
  transform: translateX(0);
}