@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Permanent+Marker&display=swap');

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  padding: .5rem .75rem;
  background: #fff;
  border: 2px solid #000;
  outline: none;
}

.handwriting {
  font-family: 'Permanent Marker', cursive;
}

.logo-print,
.print-title {
    display: none !important;
}

/* Design Tokens (global) */
:root {
  /* Colors */
  --color-white: #ffffff;
  --color-text: #000000;
  --color-bg: #E6E6E6;
  --color-border: #757575;
  --color-accent: #DE2F43;
  --color-accent-hover: #d50025;

  /* Motion */
  --transition: 150ms ease;
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Reset */
body {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    font-size: 21px;
    line-height: 1.5;
    background: var(--color-whtie);
    color: var(--color-text);
}
img, svg, video, canvas { max-width: 100%; height: auto; }

/* Header / Sticky Header */
header {
    position: fixed;
    top: -200px;
    left: 0;
    right: 0;
    transform: translateY(0);
    transition: top 0.3s ease;
    z-index: 999;
}
header.visible {
  top: 0;
}
header .top {
    background-color: var(--color-white);
}
header .bottom {
    background-color: var(--color-bg);
}
header .top .article, header .bottom .article {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .button__secondary a {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px 14px;
    border-color: var(--color-accent);
    color: var(--color-accent);
    font-size: 16px;
    line-height: 24px;
    transition: all var(--transition);
}
header .button__secondary a svg {
    width:24px;
    height:24px;
}
header .button__secondary a svg * {
    fill: var(--color-accent);
}
header .button__secondary a:hover {
    color: var(--color-white);
}
header .button__secondary a:hover svg * {
    fill: var(--color-white);
}
header .job-title {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    line-height: 27px;
}
nav {
   display: flex;
   flex-direction: row;
   gap:30px; 
}
nav a {
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    font-weight: 500;
    position: relative;
    display: inline-block;
}
nav a::after {
  content: attr(data-text);
  font-weight: 700;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  display: block;
}
nav a:hover {
    color: var(--color-accent);
}
nav a.active {
    font-weight: 700;
}
.mobile-menu {
  padding: 0px 40px;
  display: none;
  flex-direction: column;
  gap: 60px;
  overflow: visible;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition:
    max-height 300ms cubic-bezier(.2,.8,.2,1),
    opacity 180ms linear;
}
.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}
.mobile-menu .job-info__utils {
    margin-bottom: 40px
}
.menu-trigger {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    width: 31px;
    height: 25px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    transition: box-shadow 0.2s;
}

.menu-trigger svg {
    width: 31px;
    height: 25px;
    display: block;
}

.menu-trigger:focus,
.menu-trigger:hover {
    box-shadow: 0 0 0 2px var(--color-accent);
    background: #fff;
}
main > section.boxed {
    margin: 0 auto;
    width: 100%;
    max-width: 1600px;
    height: 100%;
}
.article {
    width: 100%;
    max-width: 1490px;
    margin: 0 auto;
    padding: 60px 94px;
}

.article.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.article.animate-on-scroll.is-visible {
    opacity: 1;
    transform: none;
}
.bg {
    background-color: var(--color-accent);
}
.bg .subtitle, .bg .subtitle::after, .bg h2, .bg h3, .bg p, .bg b, .bg li, .bg span  {
    color: var(--color-white);
}
.bg svg * {
    fill: var(--color-white);
}
.grid-2-3 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
}
.grid-3-eq-60 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.grid-2-eq-80 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}
.grid-3-eq-36 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}
.grid-3-eq-36 > * {
  min-width: 0;
}

.grid-3-eq-36 img {
  display: block;
  max-width: 100%;
  height: auto;
}


/* Buttons */
.button__secondary a {
    display: inline-block;
    padding: 16px 20px;
    border: solid 1px var(--color-white);
    color: var(--color-white);
    font-size: 24px;
    font-weight: 400;
    text-decoration: none;
    transition: background-color var(--transition);
    cursor: pointer;
}
.button__secondary a:hover {
    background-color: var(--color-accent-hover);
}
.cty-apply.button-big.mobile {
    padding:20px 30px;
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
    display: none;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: "Open Sans", sans-serif;
}
h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0px;
    color: var(--color-white);
}
h2 {
    font-size: 36px;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 44px;
}
h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 24px;
}
span.pensum {
    font-size: 32px;
    font-weight: 400;
    color: var(--color-white);
}
span.location {
    font-size: 48px;
    font-weight: 400;
    color: var(--color-white);
}
p {
    font-size: 18px;
    line-height: 27px;
}
p a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
}
p a:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* Hero Section */
.hero {
  position: relative;
  min-height: 646px;
  max-width: 1452px;
  margin: 0 auto 60px;
}

.hero__media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 646px;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  min-height: 646px;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: fadeIn 0.8s ease-out;
}

/* Desktop: box overlaps left but never leaves viewport */
.hero__content {
  position: absolute;
  bottom: 20%;
  left: calc(-1 * min(74px, max((100vw - 1452px) / 2, 0px)));
  z-index: 1;
  background-color: var(--color-accent);
  padding: clamp(16px, 2.5vw, 40px);
  width: max-content;
  max-width: min(640px, calc(100vw - 16px));
  box-sizing: border-box;
  animation: slideFromLeft 0.7s ease-out;
}

.hero-responsive {
    position: relative;
}

.brand__signature {
  position: absolute;
  bottom: 25px;
  right: 19%;
  z-index: 2;
  width:19%;
  max-width: 280px;
}

.brand__signature img {
  width: 100%;
  height: auto;
  display: block;
}

/* Job Info Section */
.cty-apply.button-big {
    width: 100%;
    padding: 30px 0px;
    background-color: var(--color-accent);
    color: var(--color-white);
    font-size: 24px;
    line-height: 27px;
    font-weight: 700;
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: background-color var(--transition);
}
.cty-apply.button-big:hover {
    background-color: var(--color-accent-hover);
}
.box {
   padding: 30px;
   border: solid 1px var(--color-bg);
   overflow: visible;
}
.job-info {
    display: flex;
    flex-direction: column;
    gap:18px;
    min-width: 418px;
    overflow: visible;
}
.job-info__details .items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.item, .job-info__utils {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    align-items: start;
}
.item__label, .item__value, .utils {
    font-size: 18px;
    line-height: 27px;
}
.item__label, a.utils, div.utils .title {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}
.item__label b {
    font-weight: 400;
}
a.utils, .share.ui.accordion .title:not(.ui) {
    color: var(--color-border);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
    padding:0px;
    white-space: nowrap;
    background: none;
    border: none;
    box-shadow: none;
}
a.utils:hover, .share.ui.accordion .title:not(.ui):hover {
    color: var(--color-text);
}
a.utils:hover svg path, div.utils .title:hover svg path {
    fill: var(--color-text);
}
.utils.ui.accordion {
    position: relative;
}
.utils.ui.accordion:not(.styled) .title~.content:not(.ui) {
    margin-top:15px;
    width: auto;
    background-color: var(--color-accent);
    padding: 15px 15px 10px;
    position: absolute;
    z-index: 10;
}
.utils.ui.accordion:not(.styled) .title~.content:not(.ui) .share__icons {
    display: flex;
    flex-direction: column;
    gap:12px;
}
.utils.ui.accordion:not(.styled) .title~.content:not(.ui) .share__icons a {
    display: flex;
    flex-direction: row;
    gap: 6px;
    align-items: center;
    color: var(--color-white);
    text-decoration: none;
    position: relative;
}
.utils.ui.accordion:not(.styled) .title~.content:not(.ui) .share__icons a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Aufgaben & Profil Section */
div.subtitle {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-accent);
    padding-bottom: 34px;
    position: relative;
}
div.subtitle::after {
    content: '—';
    position: absolute;
    bottom: -14px;
    left: 0;
    font-size: 100px;
    line-height: 100%;
    font-weight: 300;
    color: var(--color-accent);
    font-family: 'Permanent Marker', cursive;
}
.article ul {
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    list-style-type: none;
}
.article ul li {
    position: relative;
    padding-left: 50px;
}
.article ul li::before {
    content: '—';
    font-family: 'Permanent Marker', cursive;
    position: absolute;
    left: 0;
    top: -12px;
    font-size: 42px;
    line-height: 100%;
    color: var(--color-accent);
}

/* Benefits Section */
#benefits {
    margin-top:60px;
    margin-bottom:60px;
}
#benefits .article {
    padding-top:120px;
    padding-bottom:120px;
}
.benefits {
    margin: 20px 0px 60px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.benefit {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.benefit.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.benefit.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit div {
    font-size: 24px;
}

/* Contact Section */
.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
    row-gap: 80px;    
}
.contact-cards .card {
    width: 100%;
    background-color: var(--color-accent);
    color: var(--color-white)!important;
}
.contact-cards.case-2 {
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
    row-gap: 40px;
}
/* When hr-contact has image but ln-contact doesn't: hr-box left, ln-box + teaser as column on right */
.contact-cards.case-2.has-hr-image:not(.has-ln-image) {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
}
.contact-cards.case-2.has-hr-image:not(.has-ln-image) .hr-contact {
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
}
.contact-cards.case-2.has-hr-image:not(.has-ln-image) .hr-contact .contact-image {
    width: 100%;
}
.contact-cards.case-2.has-hr-image:not(.has-ln-image) .hr-contact .contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact-cards.case-2.has-hr-image:not(.has-ln-image) .contact-teaser {
    grid-column: 2;
}
.contact-text {
    padding:30px 40px 40px;
    position: relative;
}
.contact-text span {
    font-family: 'Permanent Marker', cursive;
    font-size: 70px;
    display: block;
    margin-top: -20px;
}
.contact-text span.over-image {
    position: absolute;
    top: -94px;
}
.contact-cards h3 {
    font-size: 32px;
    margin-bottom: 6px;
}
.contact-text .person {
    margin-bottom: 16px
}
.contact-text .phone {
    display: flex;
    align-items: center;
    gap: 6px;
}
.contact-teaser {
    background-color: var(--color-bg);
    padding: 40px;
}

/* Application Process Section */
.step .title br, .step .title p, .step .content br, .step .content b {
    display: none!important;
}
.step {
    border-top: solid 1px var(--color-bg);
}

.step.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.step.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.step:last-of-type {
    border-bottom: solid 1px var(--color-bg);
}
.step .title b {
    font-size: 24px;
    line-height: 28px;
    color: var(--color-accent);
}
.step .title {
    padding: 24px 0px!important;
    position: relative;
    padding-right: 20px;
    background: none;
    border: none;
    box-shadow: none;
    cursor: default;
    color: inherit;
    font-size: 24px;
    font-weight: 700;
    text-align: left;
    outline: none;
    transition: none;
    width: 100%;
}

.step .title:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
    background: #fffbe6;
    border-radius: 4px;
    box-shadow: 0 0 0 2px #fffbe6;
}
.step .title::after {
    content: '';
    position: absolute;
    right: 0;
    top: 30px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-image: url('../images/arrow_back_ios_new.svg');
    transform: rotate(200grad);
}
.step .title.active::after {
    transform: rotate(0grad)
}
.step .content p {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 24px!important;
}

/* CTA Section */
.article.cta > div {
    background-color: var(--color-accent);
    color: var(--color-white)!important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 16px 60px;
}
.cta > div > img {
    width: 48px;
    height: 48px;
    display: block;
    margin-bottom: 10px;
}
.cta > div h3 {
    margin:0px;
}
.cta > div .button__secondary a {
    margin-top: 30px;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px 14px;
    font-size: 16px;
    line-height: 24px;
}

/* Awards Section */
.article.awards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px; 
    align-items: center;
    padding-top: 0px;
    padding-bottom: 0px;   
}
.article.awards div {
    margin-top: 60px;
    margin-bottom: 120px;
}
.article.awards div img {
    max-height: 180px;
}
.article.awards div:first-of-type {
    margin-left:74px;
}

/* About us Section */
.about-us {
    background-image: linear-gradient(to bottom, var(--color-bg), var(--color-white));
}
.about-us .article {
    padding-top:120px;
    padding-bottom:120px;
    display: flex;
    flex-direction: column;
    gap: 120px;
}
#video {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
#video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.about-us .article .grid-2-eq-80 {
    align-items: center;
    gap: 80px;
}

.about-us .grid-2-eq-80 img.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.about-us .grid-2-eq-80 img.animate-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

.about-us h3 {
    font-size: 32px;
    margin-bottom: 24px;
}
.about-us p {
    margin-bottom: 28px;
}
.about-us .external-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.about-us .external-links a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: all var(--transition);
    padding-left: 32px;
    background: url(../images/arrow_forward_red.svg) no-repeat left center;
}
.about-us .external-links a:hover {
    color: var(--color-accent-hover);
    background: url(../images/arrow_forward_red_hover.svg) no-repeat left center;
}

/* SimilarJobs Section */
.similar-jobs {
    background-color: var(--color-bg);
}
.similar-jobs .article {
    padding: 120px 20px;
}

.similar-jobs .article h2 {
    font-size: 32px;
    margin-bottom: 50px;
}
.jobs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    width: 100%;
    align-items: stretch;
}

.job {
    display: flex;
    flex-direction: column;
    flex: 1 1 calc(33.333% - 24px);
    min-width: 300px;
    min-height: 100%;
    color: var(--color-text);
    transition: box-shadow var(--transition);
}

.job.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out, box-shadow var(--transition);
}

.job.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.job img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.job:hover {
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
    color: var(--color-text);
}
.job .text {
    background-color: var(--color-white);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: 100%;
}
.job .text span {
    font-size: 16px;
    line-height: 19px;
}
.job .text h3, .job .text h4 {
    margin: 0px;
}
.job .text h4 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
}
.job .job-info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}
.job .info {
    display: flex;
    flex-direction: row;
    gap:2px;
    align-items: center;
    font-size: 14px;
    line-height: 24px;
    color: var(--color-border);
}

/* Media Query Mobile */
@media (max-width: 1480px) {
    .article {
        padding: 60px 20px;
    }
}



@media (max-width: 1024px) {
    .hero {
        margin-bottom: 20px;
        min-height: auto;
    }
    .hero__media {
        min-height: auto;
    }
    .hero__img {
        min-height: auto;
        height: auto;
    }
    .hero__content {
        position: relative;
        padding: 30px 20px;
        left: 0;
        width: 100%;
        max-width: 100%;
    }
    .brand__signature {
        /* Keep same position relative to image on mobile */
        bottom: 25px;
        right: 10%;
        width: 182px;
    }
    .grid-3-eq-60 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .job {
        flex: 1 1 100%;
    }
    .benefit {
        gap: 24px;
        flex-direction: row;
    }
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 820px) { 
    .brand__signature {
        bottom: 25px;
        right: 10%;
    }
    .grid-3-eq-36 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 766px) {
    /* Typography */
    header {
        position: static !important;
        top: 0 !important;
        transform: none !important;
        transition: none !important;
    }
    header .top {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        width: 100%;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        display: block;
    }
    header .top .article {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
    }
    header .top .article img {
        display: block !important;
        max-height: 40px;
    }
    .menu-trigger {
        display: flex !important;
    }
    nav.menu-desktop {
        display: none !important;
    }
    .brand__signature {
        bottom: 25px;
        right: 10%;
    }
    body {
        padding-top: 72px; /* adjust to header .top height */
    }
    span.pensum {
        font-size: 18px;
        line-height: 27px;
    }
    h1, span.location {
        font-size: 26px;
        line-height: 34px;
    }
    h2 {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 30px;
    }
    h3 {
        font-size: 21px;
        line-height: 28px;
    }
    .cta > div h3 {
        font-size: 24px;
        line-height: 34px;
    }
    body {
        font-size: 18px;
        line-height: 27px;
    }
    .item__label, .item__value, .utils {
        font-size: 16px;
        line-height: 24px;
    }
    div.subtitle {
        font-size: 21px;
        padding-bottom: 50px;
    }
    div.subtitle::after {
        font-size: 80px;
        bottom: 6px;
    }
    .benefit div {
        font-size: 18px;
    }
    .button__secondary a {
        font-size: 16px;
        line-height: 24px;
    }
    .contact-text span {
        font-size: 48px;
        line-height: 48px;
        margin-top: 0px;
        margin-bottom: 30px;
    }
    .contact-cards h3 {
        font-size: 24px;
        line-height: 34px;
    }    
    #job, #benefits {
        margin-top:60px;
    }
    #benefits .article {
        padding-top:80px;
        padding-bottom: 80px;
    }
    .article {
        padding: 40px 20px;
    }
    .article.awards {
        gap: 20px;
    }
    .grid-2-3, .grid-2-eq-80{
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-us .article, .similar-jobs .article {
        margin-top:40px;
    }
    #contact .article {
        padding-top: 20px;
    }
    .contact-cards .contact-text, .contact-teaser {
        padding: 30px;
    }
    .contact-text span.over-image {
        top: -74px;
    }
    .contact-cards.case-2,
    .contact-cards.case-2.has-hr-image:not(.has-ln-image) {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact-cards.case-2.has-hr-image:not(.has-ln-image) .hr-contact {
        grid-row: auto;
        flex-direction: column;
    }
    .contact-cards.case-2.has-hr-image:not(.has-ln-image) .hr-contact .contact-image,
    .contact-cards.case-2.has-hr-image:not(.has-ln-image) .hr-contact .contact-text {
        width: 100%;
    }
    .contact-cards.case-2.has-hr-image:not(.has-ln-image) .contact-teaser {
        grid-column: auto;
    }
    .article.cta {
        padding-left: 0px;
        padding-right: 0px;
    }
    .article.awards div {
        margin-top:0px;
        margin-bottom:0px;
    }
    .article.awards div:first-of-type {
        margin-left: 20px;
    }
    .about-us {
        padding-bottom: 80px;
    }
    .about-us .article {
        padding-top: 80px;
        padding-bottom: 0px;
        gap: 60px;
    }
    .about-us .article .grid-2-eq-80 {
        flex-direction: column;
        gap: 60px;
    }
    .about-us .about-us-detail2 div:last-child {
        order: 1;
    }
    .about-us .about-us-detail2 div:first-child {
        order: 2;
    }
    .about-us h3 {
        font-size: 26px;
        line-height: 30px;
    }
    .job .text {
        padding: 20px;
        gap: 20px;
    }
    .job .text h4 {
        font-size: 21px;
        line-height: 32px;
    }

    header .bottom,
    nav.menu-desktop { display: none; }
    .menu-trigger { display: block; }

    .cty-apply.button-big.mobile {
        display: flex;
    }
    .job-info {
        min-width: auto;
    }
}


@media (prefers-reduced-motion: reduce) {
  .mobile-menu { transition: none !important; }
}

.step .title:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
    background: #fffbe6;
    border-radius: 4px;
    box-shadow: 0 0 0 2px #fffbe6;
}

/* Expired Page Styles */
.jobabo {
    background-color: var(--color-accent);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 418px;
}

.jobabo h3 {
    color: var(--color-white);
    font-size: 26px;
    line-height: 34px;
    text-align: center;
    margin-bottom:0px;
}

.jobabo p {
    color: var(--color-white);
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    margin-top:0px;
    width: 70%;
}

.jobabo .button__secondary a {
    border-color: var(--color-white);
    color: var(--color-white);
    font-size: 16px;
    line-height: 24px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.jobabo .spontan {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-white);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.expired .article {
    padding-bottom:120px;
}

.expired .similar-jobs .article {
    padding: 120px 20px;
}

@media (max-width: 768px) {
    .jobabo {
        margin-left:-20px;
        margin-right:-20px;
    }
    .expired .article {
        padding-bottom:0px;
    }
    .expired .similar-jobs .article {
        margin-top:0px;
        padding-top:80px;
        padding-bottom:80px;
    }
    .cty-apply.button-big.mobile {
        display: none;
    }
}