/**
 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.
 */
.storage-download, .node--type-vacancy.vm-teaser {
  --text-color: var(--secondary-color);
  --title-color: var(--secondary-color);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  height: 100%;
}
.storage-download .sendlink, .node--type-vacancy.vm-teaser .sendlink {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
  z-index: 100;
}
.storage-download .content, .node--type-vacancy.vm-teaser .content {
  padding: 36px 32px;
  background-color: var(--light-gray);
  flex-grow: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.storage-download .content .lower-content, .node--type-vacancy.vm-teaser .content .lower-content {
  width: 100%;
  border-top: solid 1px var(--secondary-color);
  padding-top: 35px;
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}
.storage-download .content h3, .node--type-vacancy.vm-teaser .content h3 {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 25px;
}
@media (min-width: 1200px) {
  .storage-download .content h3, .node--type-vacancy.vm-teaser .content h3 {
    align-self: flex-end;
  }
}
.storage-download .content .actions-wrapper, .node--type-vacancy.vm-teaser .content .actions-wrapper {
  margin-top: 24px;
}

.view-downloads.view-id-downloads .item-list > ul, .view-jobs.view-id-jobs .item-list > ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}
.view-downloads.view-id-downloads .item-list > ul > li, .view-jobs.view-id-jobs .item-list > ul > li {
  width: 100%;
}
@media (min-width: 992px) {
  .view-downloads.view-id-downloads .item-list > ul > li, .view-jobs.view-id-jobs .item-list > ul > li {
    width: calc(50% - 5px);
  }
}
@media (min-width: 1200px) {
  .view-downloads.view-id-downloads .item-list > ul > li, .view-jobs.view-id-jobs .item-list > ul > li {
    width: calc(33.3333333333% - 7px);
  }
}
