/* scss/settings/_breakpoints.scss */ /* scss/utilities/_functions.scss */
/*
    .cssClass {
        font-size: fluid-type(rem-calc(360), rem-calc(1280), rem-calc(20), rem-calc(50));
        margin-bottom: fluid-type(rem-calc(360), rem-calc(1280), rem-calc(10), rem-calc(20));
    }

*/
/* scss/utilities/_mixins.scss */ /* xsmall = 10 (1 - 11)
small = 13 - (12-14)
default = 16 (15-18)
medium = 20 (18-26)
large = 32 (26-36)
xlarge = 40 (36 <) */
/* ---------- headers ---------- */
.o-vacancies__headline {
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 1.3532608696rem + 0.0065217391 * 100vw, 1.875rem);
  font-weight: 300;
  line-height: 1.1;
}
@media only screen and (min-width: 1200px) {
  .o-vacancies__headline {
    font-size: 1.875rem;
  }
}

/* ---------- medium fonts: 20 (18-26) ---------- */
/* ---------- default fonts: 16 (15-18) ---------- */
/* ---------- small fonts: 13 - (12-14) ---------- */
/* ---------- xsmall fonts: 10 (1 - 11) ---------- */
/* ---------- button fonts ---------- */
.frame {
  margin-bottom: 6.25rem;
}

.seoText {
  margin-top: 6.25rem;
}

.frame-space-after-none {
  margin-bottom: 0;
}

.frame-space-after-small {
  margin-bottom: 3.125rem;
}

.frame-space-after-medium {
  margin-bottom: 6.25rem;
}

.frame-space-after-large {
  margin-bottom: 9.375rem;
}

body {
  scroll-behavior: smooth;
}

.no-transitions,
.no-transitions * {
  transition: none !important;
  animation: none !important;
}

/* scss/utilities/_functions.scss */
/*
    .cssClass {
        font-size: fluid-type(rem-calc(360), rem-calc(1280), rem-calc(20), rem-calc(50));
        margin-bottom: fluid-type(rem-calc(360), rem-calc(1280), rem-calc(10), rem-calc(20));
    }

*/
/* scss/utilities/_mixins.scss */ /* xsmall = 10 (1 - 11)
small = 13 - (12-14)
default = 16 (15-18)
medium = 20 (18-26)
large = 32 (26-36)
xlarge = 40 (36 <) */
/* ---------- headers ---------- */
.o-vacancies__headline {
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 1.3532608696rem + 0.0065217391 * 100vw, 1.875rem);
  font-weight: 300;
  line-height: 1.1;
}
@media only screen and (min-width: 1200px) {
  .o-vacancies__headline {
    font-size: 1.875rem;
  }
}

/* ---------- medium fonts: 20 (18-26) ---------- */
/* ---------- default fonts: 16 (15-18) ---------- */
/* ---------- small fonts: 13 - (12-14) ---------- */
/* ---------- xsmall fonts: 10 (1 - 11) ---------- */
/* ---------- button fonts ---------- */
.o-vacancies {
  margin-top: -6.25rem;
  padding: 6.25rem 0;
}
.o-vacancies-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.o-vacancies-top header :is(h1, h2, h3) {
  font-weight: bold;
  margin-bottom: 0;
}
.o-vacancies .o-filtersForm {
  margin-bottom: 0;
}
.o-vacancies .o-filtersForm .o-filtersForm__group.-border {
  margin-top: 0;
}
.o-vacancies-list {
  max-width: 85rem;
  margin: 6.25rem auto;
}
.o-vacancies-entry {
  display: grid;
  gap: 1rem 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-bg-sand-bright);
  grid-template-columns: 1fr;
  grid-template-areas: "position" "location" "employment";
}
.o-vacancies-entry:first-of-type {
  border-top: 1px solid var(--color-primary);
}
@media only screen and (min-width: 768px) {
  .o-vacancies-entry { /* min-width: 768px */
    grid-template-columns: 6.875rem 1fr 6.875rem;
    grid-template-areas: "position position position" "country location employment";
  }
}
@media only screen and (min-width: 992px) {
  .o-vacancies-entry { /* min-width: 1440px */
    grid-template-columns: 6.875rem 12.5rem 1fr 6.875rem;
    grid-template-areas: "country location position employment";
  }
}
.o-vacancies__countrycode {
  grid-area: country;
  display: none;
  place-items: center;
  border: 1.5px solid var(--color-bg-primary);
  color: var(--color-bg-primary);
  aspect-ratio: 1/1;
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .o-vacancies__countrycode { /* min-width: 992px */
    display: grid;
  }
}
.o-vacancies__location {
  grid-area: location;
  font-weight: bold;
  align-self: center;
  color: #160000;
}
.o-vacancies__headline {
  grid-area: position;
  padding-left: clamp(0.06rem, 74.38vw + -55.72rem, 7.5rem);
}
.o-vacancies__headline span {
  display: block;
}
.o-vacancies__headline span.job {
  font-weight: bold;
}
.o-vacancies__type {
  grid-area: employment;
  font-weight: bold;
  align-self: center;
  color: #160000;
}
.o-vacancies__type ul {
  margin-bottom: 0;
}

/*# sourceMappingURL=lcVacancies.css.map */