/**
 SASS files that don't get compiled into CSS. Do not put element selectors in here.
 Every file not starting with '_' should import this file if you want to use functions and mixins.
 */
/**
 * SASS variables
 *
 These are only used in the properties and abstract SASS files.
 */
/**
 Breakpoints and columns
 */
/**
 Text
 */
/**
Fill in the header styles, only write the properties you want to override.
 */
/**
 Form
 */
/**
  Buttons
 */
/**
 Breakpoints

 @param {Keyword} $breakpoint - The breakpoint name of the minimum width. Can be any of the names in the $breakpoint variable
 */
/**
  Custom column size.
  Especially handy inside other columns.

  @param {Number|string} $size - the size in columns or 'expand'/'shrink'.
  @param {number} $total - the total size in columns. Ignored when size is 'expand'/'shrink'
 */
/**
  Custom offset size.
  Especially handy inside other columns.

  @param {Number|string} $size - the size of the offset.
  @param {number} $total - the total size in columns.
  @param {string} - the side from the offset.
 */
.node--type-sector.vm-teaser {
  --text-color: var(--white);
  --title-color: var(--white);
  display: grid;
  border-radius: 32px;
  overflow: hidden;
  max-width: 280px;
  position: relative;
  height: 100%;
}
.node--type-sector.vm-teaser .sendlink {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
  z-index: 100;
}
.node--type-sector.vm-teaser .field--name-field-icon svg {
  max-height: 40px;
  width: auto;
}
.node--type-sector.vm-teaser .field--name-field-media {
  grid-row: 1;
  grid-column: 2/-2;
  z-index: 99;
}
.node--type-sector.vm-teaser .field--name-field-media div, .node--type-sector.vm-teaser .field--name-field-media article {
  height: 100%;
}
.node--type-sector.vm-teaser .field--name-field-media img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.node--type-sector.vm-teaser .field--name-field-media > .field__items {
  position: relative;
}
.node--type-sector.vm-teaser .field--name-field-media > .field__items::before {
  content: "";
  background: linear-gradient(180deg, rgba(13, 18, 33, 0.1) 0%, rgba(13, 18, 33, 0.8) 90%);
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  z-index: 9;
}
.node--type-sector.vm-teaser .field--name-field-media > .field__items > .field__item {
  z-index: 8;
  position: relative;
}
.node--type-sector.vm-teaser .field--name-field-media img {
  border-radius: 32px;
  overflow: hidden;
  transform: scale(1);
  transition: var(--transition);
  aspect-ratio: 7/5;
}
.node--type-sector.vm-teaser .content {
  padding: 36px;
  grid-row: 1;
  grid-column: 2/-2;
  display: flex;
  flex-direction: column;
  grid-column: 2/-2;
  z-index: 99;
  justify-content: space-between;
}
.node--type-sector.vm-teaser:hover img {
  transform: scale(1.15);
}
