@charset "UTF-8";
/* Färger från den nya grafiska profilen */
/* Kompletterande färger till den nya grafiska profilen */
/* FONT FAMILY FOR DIFFERENT TEXT SIZES */
/*  FONT SIZES */
/*  desktop */
/* mobile */
/* print */
/* general */
/* LINE HEIGHT */
/* desktop */
/* mobile */
/* other */
/* dimensions-height-header */
/* Print style mixins */
/* 
 * Verktyg för att beräkna filter för en given färg
 * https://isotropic.co/tool/hex-color-to-css-filter/
*/
.val-link-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
}
@media screen and (width <= 768px) {
  .val-link-card__list {
    gap: 16px;
  }
}
.val-link-card__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 8px;
  border: 1px solid #dddee1;
  background: #ffffff;
  position: relative;
  padding: 24px;
  height: 100%;
  overflow: hidden;
}
.val-link-card__item:before {
  content: "";
  width: 8px;
  height: 100%;
  background: #d4e7f6;
  position: absolute;
  left: 0;
  top: 0;
}
.val-link-card__item:hover, .val-link-card__item:has(> a:focus-visible) {
  cursor: pointer;
}
.val-link-card__item:hover .val-link-card__title, .val-link-card__item:has(> a:focus-visible) .val-link-card__title {
  text-decoration: underline;
}
.val-link-card__item:hover p, .val-link-card__item:has(> a:focus-visible) p {
  text-decoration: none;
}
.val-link-card__item:hover:before, .val-link-card__item:focus-visible:before, .val-link-card__item:has(> a:focus-visible):before {
  background-color: #154194;
}
.val-link-card__title {
  margin: 0 !important;
  font-family: open sans semibold, sans-serif;
  font-size: 1.125rem;
  line-height: 1.5313rem;
}
.val-link-card__title a {
  color: #154194;
}
.val-link-card__title a:hover {
  text-decoration: none;
}
.val-link-card__title a:hover .val-link-card__title {
  text-decoration: underline;
}
.val-link-card__title a:after {
  content: none;
}
.val-link-card__title:after {
  width: 0.75rem;
  height: 0.75rem;
  min-width: 0.75rem;
  content: "";
  display: inline-block;
  background: transparent url("/webdav/files/System/css/common-sprite.svg") no-repeat 0 -1.203125rem/100% auto;
  -webkit-filter: invert(19%) sepia(38%) saturate(3145%) hue-rotate(205deg);
          filter: invert(19%) sepia(38%) saturate(3145%) hue-rotate(205deg);
  position: relative;
  top: 1px;
  margin-left: 6px;
}
.val-link-card__description {
  font-size: 1rem;
  line-height: 1.5rem;
  font-family: open sans regular, sans-serif;
  color: #333333;
}