/*
 Theme Name:   Hello Elementor Child 2
 Template:     hello-elementor
*/

/* ==============================
   Farben & Variablen
============================== */
:root {
  --blue-dark: #000a1b;
  --blue-light: #1296ff;

  --radius: 4px;
  --radius-sm: 2px;
  --shadow-soft: 0 6px 20px rgba(0,0,0,0.15);
  --shadow-hard: 0 8px 20px rgba(0, 0, 0, 0.25);
  --transition: 0.3s ease;
}

/* ==============================
   Fonts
============================== */
/* Inter Regular */
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Regular.woff2') format('woff2'),
       url('fonts/Inter-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Inter Bold */
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Bold.woff2') format('woff2'),
       url('fonts/Inter-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Oxanium Regular */
@font-face {
  font-family: 'Oxanium';
  src: url('fonts/Oxanium-Regular.woff2') format('woff2'),
       url('fonts/Oxanium-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ==============================
   Global
============================== */
html, body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* überall nutzbar: einfach Klasse vergeben */
.font-oxanium,
.font-oxanium * {
  font-family: 'Oxanium', sans-serif !important;
}

/* Site-Wrapper volle Breite */
.site {
  max-width: 100%;
}

/* ==============================
   Header
============================== */
.custom-site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  box-sizing: border-box;

  background: linear-gradient(
    to bottom,
    rgba(0, 10, 27, 1) 0%,
    rgba(0, 10, 27, 1) 30%,
    rgba(0, 10, 27, 0.9) 100%
  );

  color: #ffffff;
  padding: 10px 30px;
  font-family: inherit;
  transition: background var(--transition), box-shadow var(--transition);
  box-shadow: none;
}

/* Gradient-Border unten */
.custom-site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;

  background: linear-gradient(
    to right,
    transparent 0%,
    transparent 10%,
    var(--blue-dark) 10%,
    var(--blue-light) 50%,
    var(--blue-dark) 90%,
    transparent 90%,
    transparent 100%
  );

  pointer-events: none;
}

.custom-site-footer-intec{
  position: relative !important;
  isolation: isolate !important;
}

.custom-site-footer-intec::before{
  content:"" !important;
  position:absolute !important;
  left:0 !important;
  right:0 !important;
  top:0 !important;

  height:3px !important;

  background-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 10%,
    var(--blue-dark) 10%,
    var(--blue-light) 50%,
    var(--blue-dark) 90%,
    transparent 90%,
    transparent 100%
  ) !important;

  background-color: transparent !important;
  z-index: 2147483647 !important;
  pointer-events:none !important;
  display:block !important;
}


/* Beim Scrollen */
.custom-site-header.is-scrolled {
  /* background: linear-gradient(
    to bottom,
    #000a1b 0%,
    #001329 100%
  ); */
  background-color: #000a1b;
  box-shadow: var(--shadow-hard);
}

.custom-site-header.is-scrolled::after {
  background: linear-gradient(
    to right,
    var(--blue-dark) 0%,
    var(--blue-dark) 10%,
    var(--blue-light) 50%,
    var(--blue-dark) 90%,
    var(--blue-dark) 100%
  );
  opacity: 1;
}

/* Innerer Header-Container */
.header-inner {
  max-width: 1440px;
  width: 100%;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

/* Spalten */
.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Desktop-Reihenfolge */
.header-logo { order: 1; }
.header-left { order: 2; }
.header-right { order: 3; }

/* Logo Start-/Scroll-Größe */
.header-logo img {
  max-height: 60px;
  height: auto;
  width: auto;
  transition: max-height 0.1s ease;
}

.custom-site-header.is-scrolled .header-logo img {
  max-height: 40px;
}

/* Nur eine Logik fürs Logo */
.header-logo img,
.header-logo img.custom-logo,
.header-logo .custom-logo,
.custom-logo-link img,
.custom-logo-link svg{
  height: 64px;
  width: auto;
  transition: height 0.25s ease;
}

.custom-site-header.is-scrolled .header-logo img,
.custom-site-header.is-scrolled .header-logo img.custom-logo,
.custom-site-header.is-scrolled .header-logo .custom-logo,
.custom-site-header.is-scrolled .custom-logo-link img,
.custom-site-header.is-scrolled .custom-logo-link svg{
  height: 40px;
}


/* ===== Menü Desktop ===== */
.header-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.header-menu > li {
  position: relative;
}

/* Hauptmenü-Punkte */
.header-menu > li > a {
  display: inline-block;
  padding: 6px 10px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: all 0.2s ease;
  border-radius: 2px;
}

/* Hover + aktive Seite */
.header-menu > li > a:hover,
.header-menu > li > a:focus,
.header-menu > li.current-menu-item > a,
.header-menu > li.current-menu-parent > a,
.header-menu > li.current-menu-ancestor > a,
.header-menu > li.current_page_parent > a,
.header-menu > li.current_page_ancestor > a,
.header-menu > li.menu-item-has-children:hover > a,
.header-menu > li.menu-item-has-children:focus-within > a {
  background-color: #ffffff;
  color: var(--blue-dark);
  border-radius: 2px;
}

/* Chevron-Icon bei Submenü */
.header-menu > li.menu-item-has-children > a {
  position: relative;
  padding-right: 28px;
}

.header-menu > li.menu-item-has-children > a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7em;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.header-menu > li.menu-item-has-children:hover > a::after,
.header-menu > li.menu-item-has-children:focus-within > a::after {
  content: "\f077";
}

/* Submenü Desktop */
@media (min-width: 1220px) {
  .header-menu > li {
    position: relative;
  }

  .header-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 150px;
    list-style: none;
    margin: 0;
    padding: 4px 0 12px;
    background-color: var(--blue-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 99;
    border-radius: 2px;
    overflow: hidden;

    border-top: 8px solid transparent;
    background-clip: padding-box;
  }

  .header-menu li:hover > .sub-menu,
  .header-menu li:focus-within > .sub-menu {
    display: block;
  }

  .header-menu > li.menu-item-has-children::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 10px;
    pointer-events: none;
  }
}

/* Submenü Einträge */
.header-menu .sub-menu li {
  width: 100%;
}

.header-menu .sub-menu a {
  display: block;
  padding: 8px 15px;
  text-decoration: none;
  color: #ffffff;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.header-menu .sub-menu a:hover,
.header-menu .sub-menu a:focus {
  background-color: var(--blue-light);
  color: #ffffff;
}

/* ===== Social & Sprache ===== */
.header-social .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 2px;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header-social .social-link + .social-link {
  margin-left: 8px;
}

.header-social .social-link i {
  line-height: 1;
}

.header-social .social-link:hover,
.header-social .social-link:focus {
  background-color: var(--blue-light);
  color: var(--blue-dark);
  transform: translateY(-1px);
  border-radius: 2px;
}

.header-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

.header-lang .lang-link {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ===== Burger ===== */
.header-burger {
  display: none;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.header-burger span {
  position: absolute;
  left: 4px;
  right: 4px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}

.header-burger span:nth-child(1) { top: 8px; }
.header-burger span:nth-child(2) { top: 15px; }
.header-burger span:nth-child(3) { top: 22px; }

.custom-site-header.is-open .header-burger span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}

.custom-site-header.is-open .header-burger span:nth-child(2) {
  opacity: 0;
}

.custom-site-header.is-open .header-burger span:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
}

.header-burger:hover,
.header-burger:focus {
  background-color: #1296ff;
  color: #fff;
  text-decoration: none;
}

/* ===== Header Actions (Kontakt + Suche) ===== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

button.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

button.header-btn-contact {
  background-color: var(--blue-light);
  color: var(--blue-dark) !important;
}

button.header-btn-search {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid var(--blue-light);
}

button.header-btn:hover,
button.header-btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}

button.header-btn-contact:hover,
button.header-btn-contact:focus {
  background-color: #ffffff;
  color: var(--blue-dark);
}

button.header-btn-search:hover,
button.header-btn-search:focus {
  background-color: var(--blue-light);
  color: var(--blue-dark);
}

/* ===== Breakpoints ===== */
@media (max-width: 1220px) {
  .custom-site-header {
    padding: 8px 16px;
  }

  .header-left  { order: 1; }
  .header-right { order: 2; }
  .header-logo  { order: 3; margin-left: auto; }

  .header-inner {
    max-width: 100%;
    width: 100%;
    padding: 0 12px;
  }

  .header-logo {
    margin-left: 0;
  }
}

/* bis 1550px: Mobile-Header */
@media (max-width: 1220px) {
  .custom-site-header {
    padding: 6px 12px;
  }

  .header-inner {
    padding: 0;
    gap: 10px;
  }

  .header-logo img {
    max-height: 40px;
  }

  .header-right {
    display: none;
  }

  .header-burger {
    display: block;
  }

  .header-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background-color: var(--blue-dark);
    padding: 10px 20px 15px;
    display: none;
    flex-direction: column;
  }

  .custom-site-header.is-open .header-nav {
    display: block;
  }

  .header-menu {
    flex-direction: column;
    gap: 8px;
  }

  .header-menu > li > a {
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
  }

  .header-menu .sub-menu {
    position: static;
    box-shadow: none;
    background-color: var(--blue-dark);
    border-top: 0;
    border-radius: 0;
  }

  .header-menu .sub-menu a {
    padding: 8px 20px 8px 36px;
    background-color: transparent;
    color: #ffffff;
    box-sizing: border-box;
  }

  .header-menu .sub-menu a:hover {
    background-color: var(--blue-light);
    color: #ffffff;
  }
}

@media (max-width: 1024px) {
  .header-right {
    display: none;
  }
}

/* ==============================
   Scroll-to-top Button
============================== */
#scrollToTopBtn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border-radius: 2px;
  border: none;
  cursor: pointer;

  background: #1296ff;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 9999;
}

#scrollToTopBtn::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  margin-top: 3px;
}

#scrollToTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scrollToTopBtn:hover {
  filter: brightness(1.2);
}

/* ==============================
   Footer
============================== */
.custom-site-footer {
  color: #ffffff;
  padding: 40px 24px 24px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.custom-site-footer a {
  color: inherit;
  text-decoration: none;
}

.custom-site-footer a:hover {
  text-decoration: underline;
}

.custom-site-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.footer-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  opacity: 0.8;
}

.footer-text,
.footer-tagline,
.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0 0 8px;
}

.footer-logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-tagline {
  font-weight: 500;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li + li {
  margin-top: 6px;
}

.footer-links a {
  font-size: 14px;
  opacity: 0.9;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-social {
  margin-top: 12px;
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}

.footer-social a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.08);
}

.custom-site-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 32px;
  padding-top: 16px;
}

.footer-bottom-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  opacity: 0.8;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot-separator {
  opacity: 0.5;
}

@media (max-width: 900px) {
  .custom-site-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .custom-site-footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==============================
   Personio – Quicklinks, Filters, Liste, Detail
   (konsolidiert, ohne Werte zu ändern)
============================== */

/* Quicklinks */
.personio-job-quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1rem 0;
}

.personio-job-quicklink {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(3, 13, 34, 0.9);
  color: rgba(255,255,255,0.75);
  transition: background 0.2s ease,
              color 0.2s ease,
              border-color 0.2s ease,
              transform 0.15s ease;
}

.personio-job-quicklink:hover {
  background: rgba(8, 26, 68, 0.95);
  color: #ffffff;
  transform: translateY(-1px);
}

.personio-job-quicklink.is-active {
  background: var(--blue-light);
  border-color: var(--blue-light);
  color: #020816;
}

.personio-job-quicklink-reset {
  margin-left: auto;
  background: transparent;
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
}

.personio-job-quicklink-reset:hover {
  background: rgba(255,255,255,0.08);
}

/* Filters */
.personio-job-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 1.5rem 0;
  padding: 0;
  border-radius: 0;
  background: none;
  border: none;
}

.personio-job-filters label {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  min-width: 180px;
}

.personio-job-filters-search {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

/* Text Inputs */
.personio-job-filters select,
.personio-job-filters input[type="text"] {
  margin-top: 0.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.35rem 0.75rem;
  font-size: 0.9rem;
  outline: none;
}

.personio-job-filters select:focus,
.personio-job-filters input[type="text"]:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 1px rgba(76, 201, 255, 0.2);
}

/* Search Wrapper + Search Input + Clear */
.personio-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.personio-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.personio-job-filters input[type="search"] {
  width: 100%;
  margin-top: 0;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.45rem 2rem 0.45rem 0.75rem;
  font-size: 0.9rem;
  outline: none;
  box-sizing: border-box;
}

.personio-job-filters input[type="search"]:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 1px rgba(76, 201, 255, 0.3);
}

/* X Button im Feld */
.personio-search-clear {
  position: absolute;
  top: 50%;
  right: 0.55rem;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  border: none !important;
  background: transparent !important;
  color: rgba(255,255,255,0.7) !important;
  font-size: 1rem;
  line-height: 1rem;
  padding: 0;
  cursor: pointer;
  display: none;
}

.personio-search-clear:hover {
  background: transparent !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

/* Native Clear-Buttons ausblenden */
.personio-job-filters input[type="search"]::-webkit-search-cancel-button,
.personio-job-filters input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

.personio-search-clear {
  background: transparent !important;
  color: rgba(255,255,255,0.7);
}

.personio-search-clear:hover {
  background: transparent !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

/* Submit Button (Reset-Pink aushebeln) */
.personio-job-filters button[type="submit"] {
  margin-left: auto;
  align-self: flex-end;
  padding: 0.45rem 1.2rem;
  border-radius: 2px;
  border: 1px solid var(--blue-light);
  background: var(--blue-light);
  color: #020816;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease,
              border-color 0.2s ease,
              transform 0.15s ease,
              box-shadow 0.15s ease;

  background-color: var(--blue-light) !important;
  border: 1px solid var(--blue-light) !important;
  color: #020816 !important;
  border-radius: 2px !important;
  padding: 0.45rem 1.2rem !important;
  font-size: 0.9rem;
  font-weight: 400;
}

.personio-job-filters button[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.35);

  background-color: #7ad7ff !important;
  border-color: #7ad7ff !important;
  color: #020816 !important;
}

/* Liste & Karten */
.personio-job-location-heading {
  margin: 1.25rem 0 0.5rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-light);
  border-radius: 0 !important;
}

.personio-job-list {
  display: grid;
  gap: 1.25rem;
  margin-left: 0.25rem;
}

.personio-job-list > p {
  color: #ffffff;
}

.personio-job-item {
  border-radius: 2px !important;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
  padding: 0.8rem 1rem 0.9rem;

  color: #ffffff;
  transition: border-color 0.2s ease,
              box-shadow 0.2s ease,
              transform 0.2s ease,
              background 0.2s ease;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.personio-job-item:hover {
  border-color: var(--blue-light);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
}

/* Struktur */
.personio-job-item-inner {
  display: flex;
  flex-direction: column;
  border-radius: 2px !important;
}

.personio-job-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.personio-job-title {
  margin: 0;
  font-weight: 600;
  font-size: 1.05rem;
  color: #ffffff;
}

.personio-job-meta-inline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}

/* Badges */
.personio-job-meta-inline span {
  padding: 0.1rem 0.4rem;
  border-radius: 2px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
}

/* Detailseite */
.personio-job-detail {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  border-radius: 2px;
  background: rgba(3, 15, 40, 0.96);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  color: #ffffff;
}

.personio-job-header {
  margin-bottom: 2rem;
}

.personio-job-title-detail {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}

.personio-job-meta-detail {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.personio-job-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.personio-job-section {
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.personio-job-section:first-of-type {
  border-top: none;
}

.personio-job-section h2 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem 0;
  color: var(--blue-light);
}

.personio-job-section-content {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.personio-job-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

/* Back Link */
.personio-back {
  margin-bottom: 1rem;
}

.personio-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.8rem;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--blue-light);
  background-color: var(--blue-dark);
  color: #ffffff;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.personio-back-link:hover,
.personio-back-link:focus {
  background-color: var(--blue-light);
  color: var(--blue-dark);
  border-color: var(--blue-light);
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  transform: translateY(-1px);
}

/* CTA / Apply */
.personio-job-cta {
  margin-top: 1.5rem;
}

.personio-job-cta .personio-job-apply {
  display: inline-block;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  background-color: var(--blue-light) !important;
  color: #020816 !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.35);
  transition: background 0.2s ease,
              transform 0.15s ease,
              box-shadow 0.15s ease;
}

.personio-job-cta .personio-job-apply:hover {
  background-color: #7ad7ff !important;
  color: #020816 !important;
  text-decoration: none !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.45);
}

/* Footer CTA Bottom */
.personio-job-footer-cta {
  margin-top: 2rem;
  text-align: center;
}

.personio-job-apply-bottom {
  display: inline-block;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  background: var(--blue-light);
  color: #020816;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.personio-job-apply-bottom:hover {
  background: #7ad7ff;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.35);
}

/* Hinweis unter Buttons */
.personio-job-external-hint {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}

/* Layout Row */
.personio-job-row {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
  margin-bottom: 0.75rem;
}

.personio-job-item-main {
  flex: 1 1 auto;
  padding: 0.9rem 1rem;
}

.personio-job-item-apply {
  flex: 0 0 180px;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.personio-job-item-main:hover,
.personio-job-item-apply:hover {
  border-color: var(--blue-light);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
}

.personio-job-apply-inner {
  text-align: center;
}

.personio-job-apply-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-light);
}

/* Personio Responsive */
@media (max-width: 768px) {
  .personio-job-row {
    flex-direction: column;
  }

  .personio-job-item-apply {
    flex: 1 1 auto;
    width: 100%;
  }

  .personio-job-meta-inline {
    white-space: normal;
    margin-top: 0.15rem;
  }
}

@media (max-width: 640px) {
  .personio-job-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .personio-job-meta-inline {
    white-space: normal;
  }

  .personio-job-list {
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  .personio-job-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .personio-job-filters button[type="submit"] {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }

  .personio-job-quicklinks {
    flex-direction: column;
  }

  .personio-job-quicklink-reset {
    margin-left: 0;
  }
}

/* ==============================
   Search Overlay + Search Results
============================== */

/* Overlay Grundstruktur (animierbar) */
.search-overlay{
  position: fixed;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 999;
}

.search-overlay.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.search-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.search-overlay-inner {
  position: relative;
  max-width: 600px;
  margin: 8vh auto 0;
  padding: 2rem;
  border-radius: 2px;
}

/* Close-Button */
button.search-overlay-close {
  position: absolute;
  color: #000a1b;
  top: 0.75rem;
  right: 0.75rem;
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Mobile: full width */
@media (max-width: 767px) {
  .search-overlay-inner {
    margin: 0;
    min-height: 100vh;
    border-radius: 0;
  }
}

/* Formular: Icon im Input */
.search-field-wrap{
  position: relative;
}

.search-form{
  display: block;
}

.search-field{
  width: 100%;
  padding: 0.75rem 2rem 0.75rem 1rem;
  border-radius: 2px;
  border: 2px solid var(--blue-light) !important;
  background: rgba(255, 255, 255,1);
  font-size: 1rem;
}

.search-field:focus {
  outline: none;
  border-color: var(--blue-light);
  box-shadow: 0 0 0 1px var(--blue-light);
}

.search-submit-icon{
  position:absolute;
  top:50%;
  right:.5rem;
  transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;

  border: 1px solid var(--blue-dark);
  border-radius: 2px;
  background: var(--blue-dark);
  color:#fff;
  cursor:pointer;
}

#search-overlay .search-submit-icon:hover{ opacity: 0.8; }
.search-submit-icon:focus-visible{ outline:2px solid var(--blue-light); outline-offset:2px; }

/* Screenreader */
.screen-reader-text{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* Reset/Pink aushebeln im Overlay */
#search-overlay button,
#search-overlay .search-submit-icon{
  -webkit-appearance: none;
  appearance: none;
  background: var(--blue-light) !important;
  border: 1px solid var(--blue-light) !important;
  color: #fff !important;
  text-decoration: none !important;
}

#search-overlay .search-submit-icon svg{
  display:block;
}

/* Native Clear-Buttons im Suchfeld ausblenden */
#search-overlay input[type="search"]::-webkit-search-cancel-button{
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

#search-overlay input[type="search"]::-webkit-search-decoration,
#search-overlay input[type="search"]::-webkit-search-results-button,
#search-overlay input[type="search"]::-webkit-search-results-decoration{
  display: none;
}

/* Search Results */
.search-results-header {
  margin-bottom: 1.5rem;
}

.search-results-title span {
  color: var(--blue-light);
}

.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.search-result-item {
  border: 1px solid #eee;
  border-radius: 2px;
  padding: 1rem;
}

.search-result-title {
  margin: 0 0 0.5rem;
}

.search-result-title a {
  text-decoration: none;
  color: var(--blue-dark);
}

.search-result-title a:hover {
  color: var(--blue-light);
}

.search-result-excerpt {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.search-result-read-more {
  /* erbt den Button-Style aus .header-btn */
}

/* Containerbreite für Suchergebnisse */
body.search-results .site-main,
body.search-results #primary,
body.search-results .content-area {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 10px;
  box-sizing: border-box;
}

/* Überschriften und normaler Text weiß */
body.search-results {
  color: #ffffff;
}

body.search-results .entry-title a {
  color: #ffffff;
  text-decoration: none;
}

body.search-results .entry-title a:hover,
body.search-results .entry-title a:focus {
  text-decoration: underline;
}

body.search-results .entry-meta,
body.search-results .entry-meta span {
  color: #ffffffcc;
  font-size: 13px;
}

.no-results.not-found p {
  margin: 10px 0 0;
  color: #ffffff;
}

/* ==============================
   Content Helpers (Accent Bars)
============================== */
.has-accent-bar {
  position: relative;
  padding-bottom: 12px;
}

.has-accent-bar::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90px;
  height: 2px;
  background: #1296ff;
  border-radius: 2px;
}

.accent-paragraph {
  position: relative;
  padding-left: 18px;
  color: #AAB4C3;
}

.accent-paragraph::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 2px;
  height: calc(100% - 8px);
  background: #1296ff;
}

/* About */
.about-copy{
  max-width: 1440px;
}

.about-copy .about-lead{
  font-size: 22px;
  line-height: 1.4;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 24px 0;
}

.about-copy .about-body{
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  color: #AAB4C3;
  margin: 0 0 28px 0;
}

.about-copy .about-accent{
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
  color: #FFFFFF;
  margin: 0;
}

.about-copy .about-accent::before{
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 2px;
  height: calc(100% - 12px);
  background: #1296ff;
  border-radius: 2px;
}

/* Service */
.service-copy{
  max-width: 1440px;
}

.service-copy .service-lead{
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 18px 0;
}

.service-copy .service-body{
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: #AAB4C3;
  margin: 0 0 18px 0;
}

.service-copy .service-kicker{
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 22px 0 12px 0;
  position: relative;
  padding-bottom: 10px;
}

.service-copy .service-kicker::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:90px;
  height:2px;
  background:#1296ff;
  border-radius:2px;
}

.service-copy .service-list{
  margin: 0 0 22px 0;
  padding-left: 18px;
  color: #AAB4C3;
  font-size: 15.5px;
  line-height: 1.7;
}

.service-copy .service-list li{
  margin: 0 0 10px 0;
}

.service-copy .service-accent{
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  color: #FFFFFF;
  margin: 0;
}

.service-copy .service-accent::before{
  content:"";
  position:absolute;
  left:0;
  top:6px;
  width:2px;
  height: calc(100% - 12px);
  background:#1296ff;
  border-radius:2px;
}

.custom-site-header{
  will-change: box-shadow, background;
}
	
.header-logo img{
  will-change: height;
}

.mycn-logo-grid{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

@media (max-width: 820px){
  .mycn-logo-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px){
  .mycn-logo-grid{ grid-template-columns: repeat(2, 1fr); }
}

.mycn-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 16px;
  border-radius: 2px; /* kantig */
  background: rgba(255,255,255,.04);      /* ganz subtil */
  border: 1px solid rgba(255,255,255,.08); /* trennt ähnlich aussehende Logos */
}

.mycn-logo img{
  max-width: 100%;
  max-height: 44px;   /* optisch gleiche Höhe */
  height: auto;
  width: auto;

  /* macht jedes Logo zuverlässig weiß, egal welche Originalfarbe */
  filter: brightness(0) invert(1);
  opacity: .78;
  transition: opacity .18s ease, transform .18s ease;
}

.mycn-logo:hover img{
  opacity: 1;
  transform: translateY(-1px) scale(1.03);
}
	
.personio-job-quicklink {
    border-radius: 2px !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    
    color: rgba(255,255,255,0.75) !important;
    font-size: 0.8rem;
    padding: 0.25rem 0.8rem !important;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    transition: background 0.2s ease,
                color 0.2s ease,
                border-color 0.2s ease,
                transform 0.15s ease;
}

.personio-job-quicklink:hover {
    background-color: rgba(8, 26, 68, 1) !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}

.personio-job-quicklink.is-active {
    background-color: var(--blue-light) !important;
    border-color: var(--blue-light) !important;
    color: #020816 !important;
}

.personio-job-quicklink-reset {
    margin-left: auto;
    background: transparent !important;
    border-color: rgba(255,255,255,0.25) !important;
    color: rgba(255,255,255,0.8) !important;
}
	
.personio-job-footer-cta {
    margin-top: 2rem;
    text-align: center;
}

.personio-job-apply-bottom {
    display: inline-block;
    padding: 0.55rem 1.4rem;
    border-radius: 2px;
    background: var(--blue-light);
    color: #020816;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.personio-job-apply-bottom:hover {
    background: #7ad7ff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.35);
}
	
.dimensionen-badge{
  background-position:center !important;
  background-repeat:no-repeat !important;
  background-size: cover !important;
  transition: background-size .25s ease !important;
}

.dimensionen-badge:hover{
  background-size: 120% !important; /* oder 130% */
}
	
html { scroll-padding-top: 110px; }

@media (max-width: 767px) {
  html { scroll-padding-top: 80px; }
}

/* =========================
   NEWS LIST – Mobile iOS Fix + dunklerer Snippet/Background
   ========================= */

/* Zeile bekommt eigenen dunkleren Hintergrund + feinen Rahmen */
.mycn-news-row {
    background: rgba(0, 10, 27, 0.92) !important;  /* etwas dunkler */
    border: 1px solid rgba(255, 255, 255, 0.08);   /* dezenter Rahmen */
}

/* Link-Grid auf mobilen Geräten stabilisieren */
@media (max-width: 768px) {
    .mycn-news-row-link,
    .mycn-news-row-link:visited,
    .mycn-news-row-link:hover,
    .mycn-news-row-link:focus {
        grid-template-columns: 1fr !important;
        padding: 12px !important;
        gap: 12px !important;
    }

    /* iOS/Safari: background-image Container wirkt manchmal "komisch"
       -> feste Höhe + Radius + sauberer Zuschnitt */
    .mycn-news-row-thumb {
        height: 200px !important;
        border-radius: 4px;
        overflow: hidden;
        background-position: center center;
        background-size: cover;
    }
}

/* Optional: falls du den Hover auf Touch-Geräten nicht magst */
@media (hover: none) {
    .mycn-news-row-link:hover,
    .mycn-news-row-link:focus {
        background-color: transparent !important;
    }
}

@media (max-width: 1220px) {
  .menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 997;
  }

  .menu-backdrop.is-open {
    opacity: 1;
    visibility: visible;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 1220px) {
  .header-nav {
    position: fixed;
    inset: 0;
    padding: 90px 20px 24px;
    background: rgba(0, 10, 27, 0.96);
    display: none;
    overflow-y: auto;
    z-index: 998;
  }

  .custom-site-header.is-open .header-nav {
    display: block;
  }
}

    .sx-nav{
      display:flex; align-items:center; justify-content:space-between;
      padding:14px 0; gap:16px;
    }
    .sx-brand{
      display:flex; align-items:center; gap:10px;
      font-family:Oxanium, system-ui, sans-serif;
      font-weight:700;
      letter-spacing:.02em;
      white-space:nowrap;
    }
    .sx-dot{
      width:10px; height:10px; border-radius:2px;
      background:var(--accent);
      box-shadow:0 0 0 5px rgba(18,150,255,.14);
    }
    .sx-menu{
      display:flex; gap:18px; flex-wrap:wrap;
      font-size:14px; color:var(--muted);
      justify-content:flex-end;
    }
    .sx-menu a{color:var(--muted)}
    .sx-menu a:hover{color:var(--text); text-decoration:none}

    /* buttons */
    .sx-btns{display:flex; gap:12px; flex-wrap:wrap; margin-top:22px}
    .sx-btn{
      display:inline-flex; align-items:center; justify-content:center;
      padding:12px 16px;
      border-radius:4px;
      border:1px solid var(--line);
      color:var(--text);
      background:transparent;
      transition:transform .12s ease, filter .12s ease, border-color .12s ease;
    }
    .sx-btn:hover{transform:translateY(-1px); border-color:rgba(18,150,255,.55)}
    .sx-btn.primary{
      background:var(--accent);
      color:#00122a;
      border-color:transparent;
      font-weight:650;
    }

    /* layout */
    .sx-grid{display:grid; gap:18px}
    .sx-grid.two{grid-template-columns: 1.15fr .85fr}
    @media (max-width: 900px){
      .sx-grid.two{grid-template-columns:1fr}
      .sx-section{padding:72px 0}
      .sx-menu{justify-content:flex-start}
    }

    /* cards */
    .sx-card{
      background:var(--card);
      border:1px solid rgba(255,255,255,.10);
      border-radius:var(--radius);
      padding:20px;
      position:relative;
      overflow:hidden;
    }

    /* kicker */
    .sx-kicker{
      text-transform:uppercase;
      letter-spacing:.18em;
      font-size:12px;
      color:rgba(166,184,214,.95);
      margin:0 0 12px;
    }

    /* PROSE: Basis für alles, was nach Fließtext aussieht */
    .sx-prose{
      font-size:var(--body);
      line-height:var(--lh);
      max-width:70ch; /* wichtig für Profi-Lesbarkeit */
      color:rgba(234,242,255,.92);
    }
    .sx-prose p{margin:0 0 14px; color:rgba(234,242,255,.92)}
    .sx-prose .lead{
      font-size:1.12em;
      line-height:1.65;
      color:rgba(166,184,214,.98);
      margin:0 0 18px;
    }
    .sx-prose .muted{color:rgba(166,184,214,.92)}
    .sx-prose h1{font-size:var(--h1); line-height:1.08; letter-spacing:-0.02em; font-weight:700; margin:0 0 12px}
    .sx-prose h2{font-size:var(--h2); line-height:1.18; margin:0 0 14px}
    .sx-prose h3{font-size:var(--h3); line-height:1.2; margin:22px 0 10px; letter-spacing:0}
    .sx-prose ul{margin:0 0 16px; padding-left:18px; color:rgba(234,242,255,.9)}
    .sx-prose li{margin:6px 0}
    .sx-prose code{
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
      font-size:.92em;
      background:rgba(255,255,255,.06);
      padding:.15em .35em;
      border-radius:2px;
      border:1px solid rgba(255,255,255,.10);
    }

    /* Fließtext-Kategorie: Callout (Info-Box) */
    .sx-callout{
      border-left:3px solid var(--accent);
      background:rgba(18,150,255,.06);
      padding:14px 16px;
      border-radius:var(--radius);
      margin:16px 0;
    }

    /* Fließtext-Kategorie: Quote */
    .sx-quote{
      margin:18px 0;
      padding:14px 16px;
      border:1px solid rgba(255,255,255,.10);
      background:rgba(255,255,255,.03);
      border-radius:var(--radius);
      color:rgba(234,242,255,.9);
    }

    /* Fließtext-Kategorie: "Specs" / Key facts (kurze Zeilen) */
    .sx-specs{display:grid; gap:10px; margin-top:6px}
    .sx-spec{
      display:flex; gap:10px; justify-content:space-between;
      border-top:1px solid rgba(255,255,255,.08);
      padding-top:10px;
      font-size:14px;
      color:rgba(166,184,214,.95);
    }
    .sx-spec b{
      font-family:Oxanium, system-ui, sans-serif;
      font-weight:600;
      color:var(--soft);
      letter-spacing:-0.01em;
    }

    /* Features: stabiles 3-spaltiges Layout */
    .sx-features{
      display:flex;
      flex-wrap:wrap;
      gap:18px;
      align-items:stretch;
      margin-top:10px;
    }
    .sx-feature{
      width: calc((100% - 36px) / 3);
      min-height:130px;
    }
    .sx-feature h3{font-size:18px; margin-bottom:8px}
    .sx-feature p{font-size:14px; line-height:1.55; color:rgba(166,184,214,.9); margin:0}
    @media (max-width: 900px){ .sx-feature{ width: calc((100% - 18px) / 2); } }
    @media (max-width: 560px){ .sx-feature{ width: 100%; } }

    /* Artikel / Blog Teaser */
    .sx-articles{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:18px;
      margin-top:12px;
    }
    .sx-article .sx-kicker{margin-bottom:8px}
    .sx-article h3{margin-bottom:8px}
    .sx-article p{margin:0; color:rgba(166,184,214,.9)}

/* Elementor-friendly: direkt ans Widget als Klasse geben */
.sx-lead{
  font-size:1.12em;
  line-height:1.65;
  color:rgba(166,184,214,.98);
}
.sx-muted{
  color:rgba(166,184,214,.92);
}

.INTEC-wrap{
  max-width: 1440px;
}

.INTEC-kicker{
  font-family: Oxanium, Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.INTEC-h1{
  font-family: Oxanium, Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 600;
  margin: 14px 0 0 0;
  color: #fff;
}

.INTEC-h2{
  font-family: Oxanium, Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 600;
  margin: 14px 0 0 0;
  color: #fff;
}

@media (min-width: 768px){
  .INTEC-h1{ font-size: 52px; }
  .INTEC-h2{ font-size: 32px; }
}

.INTEC-accent-line{
  height: 2px;
  width: 56px;
  background: var(--brand-accent);
  opacity: 0.75;
  margin-top: 16px;
}

.INTEC-text{
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.86);
}

.INTEC-strong{
  color:#fff;
  font-weight:600;
}

.INTEC-panel{
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  border-radius: 2px;
}

.INTEC-panel-title{
  font-family: Oxanium, Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}

.INTEC-panel-text{
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
}

.INTEC-divider{
  height: 1px;
  width: 100%;
  background: rgba(255,255,255,0.10);
  margin-top: 12px;
}

.INTEC-bullets{
  margin-top: 18px;
}

.INTEC-bullet{
  display: flex;
  gap: 10px;
  margin-top: 8px;
  color: rgba(255,255,255,0.84);
  line-height: 1.8;
}

.INTEC-bullet-dot{
  color: var(--brand-accent);
  opacity: 0.85;
}

.INTEC-callout{
  margin-top: 22px;
  padding: 18px;
  border-left: 2px solid rgba(18,150,255,0.75);
  background: rgba(255,255,255,0.03);
}

.INTEC-note{
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.70);
}
	
.INTEC-bullet-dot{
  color: rgba(18,150,255,0.65);
}
	
/* =========================
   Touch vs. Hover sauber trennen
   ========================= */

/* 1) Hover nur auf Geräten, die Hover wirklich können */
@media (hover: hover) and (pointer: fine) {
  /* Beispiel: deine Links/Buttons behalten Hover am Desktop */
  .header-menu > li > a:hover,
  .header-social .social-link:hover,
  button.header-btn:hover,
  .personio-job-item:hover,
  .personio-job-quicklink:hover,
  .mycn-logo:hover img,
  .dimensionen-badge:hover,
  #scrollToTopBtn:hover {
    /* Hover bleibt wie von dir definiert */
  }
}

/* 2) Touch-Geräte: Hover abschalten und stattdessen Active geben */
@media (hover: none) and (pointer: coarse) {

  /* generell: keine Hover-Effekte */
  .header-menu > li > a:hover,
  .header-social .social-link:hover,
  button.header-btn:hover,
  .personio-job-item:hover,
  .personio-job-quicklink:hover,
  .mycn-logo:hover img,
  .dimensionen-badge:hover,
  #scrollToTopBtn:hover {
    transform: none !important;
    box-shadow: none !important;
    filter: none !important;
  }

  /* stattdessen "gedrückt" (Active) – kurz & knackig */
  .header-menu > li > a:active,
  .header-social .social-link:active,
  button.header-btn:active,
  .personio-job-item:active,
  .personio-job-quicklink:active,
  .personio-job-apply-bottom:active,
  #scrollToTopBtn:active {
    transform: translateY(1px) !important;
  }
}

/* 3) Tastatur-Fokus bleibt sichtbar (wichtig für Accessibility) */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 2px;
}

/* =========================
   Mobile Submenu: Chevron weg + Dots + mehr Einrückung
   ========================= */
@media (max-width: 1220px) {

  /* Chevron im Hauptmenü ausblenden */
  .header-menu > li.menu-item-has-children > a::after{
    content: none !important;
    display: none !important;
  }

  /* Hauptpunkt etwas kompakter (optional) */
  .header-menu > li.menu-item-has-children > a{
    padding-right: 20px !important; /* war 28px wegen Chevron */
  }

  /* Submenu-Links: mehr Einrückung */
  .header-menu .sub-menu a{
    position: relative;
    padding-left: 54px !important;  /* vorher 36px -> mehr Luft */
  }

  /* Dot vor jedem Submenu-Link */
  .header-menu .sub-menu a::before{
    content: "";
    position: absolute;
    left: 28px;                  /* sitzt schön im Einzug */
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 2px;          /* kantig passend zu deinem Stil */
    background: var(--blue-light);
    box-shadow: 0 0 0 5px rgba(18,150,255,.14); /* subtiler Glow */
    opacity: .9;
  }

  /* Active/Current im Submenu deutlicher */
  .header-menu .sub-menu li.current-menu-item > a,
  .header-menu .sub-menu li.current_page_item > a{
    background-color: rgba(18,150,255,.14) !important;
  }
}

@media (max-width: 1220px){

  /* Submenu-Bullets weg (das ist meistens der "zweite Dot") */
  .header-menu .sub-menu,
  .header-menu .sub-menu li{
    list-style: none !important;
    margin: 0 !important;
    padding-left: 0 !important;
  }

  /* falls irgendwo Marker/Icons reinkommen: kill */
  .header-menu .sub-menu a::before,
  .header-menu .sub-menu a::after,
  .header-menu .sub-menu li::before,
  .header-menu .sub-menu li::after{
    content: none !important;
    display: none !important;
  }

  /* EIN Dot pro Link (über Background, kann nicht doppelt "rendern") */
  .header-menu .sub-menu a{
    position: relative;
    padding-left: 54px !important;

    background-image: radial-gradient(circle, var(--blue-light) 0 3px, transparent 4px);
    background-repeat: no-repeat;
    background-position: 28px 50%;
    background-size: 8px 8px;
  }
}

@media (max-width: 1220px){



  /* Wenn offen: X immer sichtbar oben rechts */
  .custom-site-header.is-open .header-burger{

    z-index: 1002 !important;
  }
}

/* Container-Klasse: macht unten immer einen Divider */
.sx-has-divider {
  position: relative;
  --max: 1440px;          /* anpassen oder im Container inline überschreiben */
  --divider-h: 1px;
  --divider-gap: 36px;    /* Abstand zwischen Content und Divider */
  --divider-opacity: .10; /* Intensität */
  padding-bottom: calc(var(--divider-gap) + var(--divider-h));
}

.sx-has-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  height: var(--divider-h);
  width: 100%;
  max-width: var(--max);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,var(--divider-opacity)),
    transparent
  );
  pointer-events: none;
}
	
.sx-dimThumb{
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  outline: 1px solid rgba(255,255,255,.1);
  outline-offset: 0; /* mit 2-4px wird’s sichtbar “außen” abgesetzt */
}


