/*
 * Elementor Starter base styles.
 *
 * Use this file for global typography, layout helpers, colors, and reusable
 * utility classes that are not tied to a specific Elementor widget.
 */

:root {
  --sw-color-primary: #2b2e33;
  --sw-color-secondary: #737b84;
  --sw-color-accent: #dd5928;
  --sw-color-cta: #dd5928;
  --sw-color-text: #1b1f23;
  --sw-color-white: #ffffff;
  --sw-color-light: #f5f5f3;
  --sw-color-cta-light: #fff1e6;
  --sw-color-border: #d8dce0;

  --sw-color-primary-hover: #3a3f46;
  --sw-color-secondary-hover: #555d66;
  --sw-color-cta-hover: #c94b1f;
  --sw-color-text-soft: #5b6470;

  --sw-container-width: 1180px;
  --sw-container-narrow-width: 820px;
  --sw-section-padding-y: clamp(4rem, 7vw, 7rem);
  --sw-section-padding-x: clamp(1.25rem, 4vw, 3rem);
  --sw-section-padding-y-small: clamp(2.5rem, 5vw, 4rem);
  --sw-section-padding-y-large: clamp(5.5rem, 9vw, 9rem);
  --sw-space-xs: clamp(0.45rem, 0.4rem + 0.25vw, 0.65rem);
  --sw-space-sm: clamp(0.75rem, 0.68rem + 0.35vw, 1rem);
  --sw-space-md: clamp(1.15rem, 1rem + 0.75vw, 1.6rem);
  --sw-space-lg: clamp(1.75rem, 1.4rem + 1.5vw, 2.75rem);
  --sw-space-xl: clamp(2.5rem, 1.9rem + 2.5vw, 4rem);
  --sw-radius-sm: 4px;
  --sw-radius-md: 8px;
  --sw-radius-card: 20px;
  --sw-radius-pill: 999px;
  --sw-anchor-offset: clamp(7rem, 10vw, 10rem);
  --sw-button-min-height: 3.1rem;
  --sw-button-padding-y: 0.75rem;
  --sw-button-padding-x: 1.35rem;
  --sw-button-font-size: 0.78rem;
  --sw-button-letter-spacing: 0.08em;
}

html {
  scroll-padding-top: var(--sw-anchor-offset);
}

[id] {
  scroll-margin-top: var(--sw-anchor-offset);
}

body {
  color: var(--sw-color-text);
  background: var(--sw-color-white);
}

a {
  color: var(--sw-color-primary);
}

a:hover,
a:focus {
  color: var(--sw-color-secondary);
}

.sw-section {
  padding: var(--sw-section-padding-y) var(--sw-section-padding-x);
}

.sw-section-small {
  padding-top: var(--sw-section-padding-y-small);
  padding-bottom: var(--sw-section-padding-y-small);
}

.sw-section-large {
  padding-top: var(--sw-section-padding-y-large);
  padding-bottom: var(--sw-section-padding-y-large);
}

.sw-section-flush-y {
  padding-top: 0;
  padding-bottom: 0;
}

.sw-section-flush-top {
  padding-top: 0;
}

.sw-section-flush-bottom {
  padding-bottom: 0;
}

.sw-section-tight-top {
  padding-top: var(--sw-section-padding-y-small);
}

.sw-section-tight-bottom {
  padding-bottom: var(--sw-section-padding-y-small);
}

.sw-section-light {
  background: var(--sw-color-light);
}

.sw-section-dark {
  color: var(--sw-color-white);
  background: var(--sw-color-primary);
}

.sw-container {
  width: min(100%, var(--sw-container-width));
  margin-right: auto;
  margin-left: auto;
}

.sw-container-narrow {
  width: min(100%, var(--sw-container-narrow-width));
  margin-right: auto;
  margin-left: auto;
}

.sw-grid-2,
.sw-grid-3 {
  display: grid;
  gap: var(--sw-space-lg);
}

.sw-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sw-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sw-stack-xs,
.sw-stack-sm,
.sw-stack-md,
.sw-stack-lg,
.sw-stack-xl {
  display: flex;
  flex-direction: column;
}

.sw-stack-xs {
  gap: var(--sw-space-xs);
}

.sw-stack-sm {
  gap: var(--sw-space-sm);
}

.sw-stack-md {
  gap: var(--sw-space-md);
}

.sw-stack-lg {
  gap: var(--sw-space-lg);
}

.sw-stack-xl {
  gap: var(--sw-space-xl);
}

.sw-text-balance {
  text-wrap: balance;
}

.sw-heading-small,
.sw-heading-small .elementor-heading-title {
  font-size: clamp(1.05rem, 0.98rem + 0.25vw, 1.25rem) !important;
  line-height: 1.22 !important;
  hyphens: auto;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.sw-text-card,
.sw-text-card p,
.sw-text-card li,
.sw-text-card .elementor-widget-text-editor,
.sw-text-card .elementor-widget-text-editor p {
  font-size: var(--sw-font-size-sm) !important;
  line-height: 1.45 !important;
}

.sw-number-badge {
  display: inline-flex;
  width: fit-content;
}

.sw-number-badge .elementor-heading-title,
.sw-number-badge p,
.elementor-widget-heading.sw-number-badge .elementor-heading-title {
  box-sizing: border-box;
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  padding: 0 0 0.26em;
  margin: 0;
  color: var(--sw-color-cta) !important;
  background: var(--sw-color-white);
  border: 1px solid var(--sw-color-border);
  border-radius: var(--sw-radius-pill);
  font-family: var(--sw-font-family-heading);
  font-size: clamp(1.65rem, 1.25rem + 1vw, 2.15rem) !important;
  font-weight: var(--sw-font-weight-semibold);
  line-height: 1 !important;
  text-align: center;
}

@media (min-width: 1025px) {
  .sw-number-badge-line {
    position: relative;
  }

  .sw-number-badge-line::before {
    position: absolute;
    z-index: 0;
    top: 2rem;
    right: 2rem;
    left: 2rem;
    height: 1px;
    background: var(--sw-color-border);
    content: "";
  }

  .sw-number-badge-line > *,
  .sw-number-badge-line .sw-number-badge {
    position: relative;
    z-index: 1;
  }
}

.sw-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sw-card {
  padding: clamp(1.5rem, 2.4vw, 2rem);
  background: var(--sw-color-white);
  border: 1px solid var(--sw-color-border);
  border-radius: var(--sw-radius-card);
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.sw-card-light {
  background: var(--sw-color-light);
}

.sw-card-white {
  background: var(--sw-color-white);
}

.sw-card-glass {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 1.4rem 3rem rgba(27, 31, 35, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.sw-card h3,
.sw-card h3.elementor-heading-title,
.sw-card .elementor-widget-heading h3.elementor-heading-title,
.elementor-widget-heading.sw-card h3.elementor-heading-title {
  font-size: clamp(1.22rem, 1.08rem + 0.45vw, 1.48rem) !important;
  line-height: 1.16 !important;
  hyphens: none;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.sw-card p,
.sw-card .elementor-widget-text-editor,
.sw-card .elementor-widget-text-editor p {
  font-size: var(--sw-font-size-sm);
  line-height: 1.45;
}

.sw-card ul,
.sw-card-light ul,
.sw-card-white ul,
.sw-card-glass ul {
  padding-left: 0;
  margin: 1.45rem 0 0;
  list-style: none;
}

.sw-card li,
.sw-card-light li,
.sw-card-white li,
.sw-card-glass li {
  position: relative;
  padding-left: 0.9rem;
  margin-top: 0.55rem;
  font-size: var(--sw-font-size-xs);
  line-height: 1.45;
}

.sw-card li::before,
.sw-card-light li::before,
.sw-card-white li::before,
.sw-card-glass li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 0.3rem;
  height: 0.3rem;
  background: var(--sw-color-cta);
  content: "";
  transform: translateY(-50%);
}

.elementor-widget-text-editor:not(.sw-feature-list):not(.sw-location-list) ul:not(.sw-feature-list):not(.sw-location-list) {
  padding-left: 0;
  margin: 1.15rem 0 0;
  list-style: none;
}

.elementor-widget-text-editor:not(.sw-feature-list):not(.sw-location-list) ul:not(.sw-feature-list):not(.sw-location-list) > li {
  position: relative;
  padding-left: 1rem;
  margin-top: 0.55rem;
}

.elementor-widget-text-editor:not(.sw-feature-list):not(.sw-location-list) ul:not(.sw-feature-list):not(.sw-location-list) > li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 0.3rem;
  height: 0.3rem;
  background: var(--sw-color-cta);
  content: "";
  transform: translateY(-50%);
}

.elementor-location-header .elementor-widget-text-editor ul,
.elementor-location-footer .elementor-widget-text-editor ul,
.sw-site-header .elementor-widget-text-editor ul,
.sw-site-footer .elementor-widget-text-editor ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.elementor-location-header .elementor-widget-text-editor ul > li,
.elementor-location-footer .elementor-widget-text-editor ul > li,
.sw-site-header .elementor-widget-text-editor ul > li,
.sw-site-footer .elementor-widget-text-editor ul > li {
  position: static;
  padding-left: 0;
  margin-top: 0;
}

.elementor-location-header .elementor-widget-text-editor ul > li::before,
.elementor-location-footer .elementor-widget-text-editor ul > li::before,
.sw-site-header .elementor-widget-text-editor ul > li::before,
.sw-site-footer .elementor-widget-text-editor ul > li::before {
  content: none;
}

.sw-feature-list,
.sw-feature-list ul,
.sw-feature-list .elementor-icon-list-items {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
}

.sw-feature-list {
  border-top: 0;
}

.sw-feature-list ul,
.sw-feature-list .elementor-icon-list-items {
  border-top: 1px solid var(--sw-color-border);
}

.sw-feature-list h3,
.sw-feature-list .elementor-heading-title {
  margin-bottom: 0.55rem;
}

.sw-feature-list ul + h3,
.sw-feature-list .elementor-icon-list-items + h3 {
  margin-top: 0.85rem;
}

.sw-feature-list h3 + ul,
.sw-feature-list .elementor-heading-title + ul {
  margin-top: 0;
}

.sw-feature-list li,
.sw-feature-list .elementor-icon-list-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  width: 100%;
  margin: 0;
  padding: 1rem 0;
  color: var(--sw-color-text);
  border-bottom: 1px solid var(--sw-color-border);
  font-size: var(--sw-font-size-sm);
  line-height: 1.45;
}

.sw-feature-list li::before,
.sw-feature-list .elementor-icon-list-item::before {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  margin-top: 0.22rem;
  background: var(--sw-color-cta);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6.25 4.9 8.05 9.1 3.7' fill='none' stroke='white' stroke-width='2.15' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.86rem 0.86rem;
  border-radius: var(--sw-radius-pill);
  content: "";
}

/* Job-detail lists use the feature bullets without the standard divider lines. */
.sw-job-feature-list li {
  border-bottom: 0;
}

.sw-feature-list .elementor-icon-list-icon {
  display: none;
}

.sw-feature-list .elementor-icon-list-text {
  flex: 1 1 auto;
  color: inherit;
}

.sw-feature-list-light,
.sw-feature-list-light li,
.sw-feature-list-light .elementor-icon-list-item,
.sw-feature-list-light .elementor-icon-list-text {
  color: var(--sw-color-white);
}

.sw-feature-list-light,
.sw-feature-list-light ul,
.sw-feature-list-light .elementor-icon-list-items,
.sw-feature-list-light li,
.sw-feature-list-light .elementor-icon-list-item {
  border-color: rgba(255, 255, 255, 0.22);
}

.sw-feature-list.sw-feature-list-2,
.sw-feature-list-2.sw-feature-list ul,
.sw-feature-list-2.sw-feature-list .elementor-icon-list-items {
  border-top: 0;
}

@media (min-width: 1025px) {
  .sw-feature-list.sw-feature-list-2,
  .sw-feature-list-2.sw-feature-list ul,
  .sw-feature-list-2.sw-feature-list .elementor-icon-list-items {
    grid-template-columns: repeat(2, minmax(14rem, 1fr));
    column-gap: 2rem;
  }

  .sw-feature-list-2.sw-feature-list li:nth-child(-n + 2),
.sw-feature-list-2.sw-feature-list .elementor-icon-list-item:nth-child(-n + 2) {
    border-top: 1px solid var(--sw-color-border);
  }
}

.sw-location-list,
.sw-location-list ul,
.sw-location-list .elementor-icon-list-items {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
  padding: 0;
  gap: 0;
  overflow: hidden;
  border-top: 1px solid var(--sw-color-border);
  list-style: none;
}

.sw-location-list ul,
.sw-location-list .elementor-icon-list-items {
  border-top: 0;
}

.sw-location-list li,
.sw-location-list .elementor-icon-list-item {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 1rem 0 1rem 2.15rem;
  color: var(--sw-color-text);
  border-bottom: 1px solid var(--sw-color-border);
  font-size: var(--sw-font-size-sm);
  line-height: 1.45 !important;
  text-align: left !important;
}

.sw-location-list li::before {
  position: absolute;
  top: 1.16rem;
  left: 0;
  width: 1.55rem;
  height: 1.55rem;
  background: var(--sw-color-cta);
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.sw-location-list .elementor-icon-list-item {
  display: flex;
  align-items: flex-start !important;
  gap: 0.85rem;
  padding-left: 0;
}

.sw-location-list .elementor-icon-list-item::before {
  content: none;
}

.sw-location-list .elementor-icon-list-icon {
  display: inline-flex !important;
  flex: 0 0 1.55rem !important;
  align-items: flex-start;
  justify-content: center;
  width: 1.55rem !important;
  min-width: 1.55rem !important;
  margin-top: 0;
  color: var(--sw-color-cta) !important;
  font-size: 1.55rem !important;
  line-height: 1 !important;
}

.sw-location-list .elementor-icon-list-icon i {
  color: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
}

.sw-location-list .elementor-icon-list-icon svg {
  width: 1.55rem !important;
  height: 1.55rem !important;
  fill: var(--sw-color-cta) !important;
}

.sw-location-list .elementor-icon-list-text {
  display: block;
  flex: 1 1 auto;
  color: inherit;
  line-height: 1.45 !important;
  text-align: left !important;
}

.sw-location-list li strong,
.sw-location-list li b {
  display: inline;
}

.sw-location-list .elementor-icon-list-text strong,
.sw-location-list .elementor-icon-list-text b,
.sw-location-list li strong,
.sw-location-list li b {
  display: inline;
  color: var(--sw-color-primary) !important;
  font-size: clamp(1.08rem, 1rem + 0.28vw, 1.28rem);
  font-weight: var(--sw-font-weight-semibold) !important;
  line-height: inherit !important;
  margin-bottom: 0 !important;
}

/* Footer locations shortcode: [sw_footer_locations]. */
.sw-footer-locations {
  position: relative;
  color: var(--sw-color-white);
}

.sw-footer-locations__list {
  display: grid;
  gap: 0.3rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sw-footer-locations__item {
  position: relative;
  margin: 0;
  padding: 0;
}

.sw-footer-locations__trigger,
.sw-footer-locations__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 1.6rem;
  padding: 0;
  color: inherit;
  font: inherit;
  font-size: var(--sw-font-size-xs);
  line-height: 1.45;
  text-align: left;
}

.sw-footer-locations__trigger {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.sw-footer-locations__trigger:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 0.25rem;
}

.sw-footer-locations__panel {
  position: absolute;
  z-index: 30;
  bottom: calc(100% + 0.7rem);
  left: 0;
  width: min(20rem, calc(100vw - 2rem));
  padding: 1rem 1.1rem;
  color: var(--sw-color-text);
  background: var(--sw-color-white);
  border-radius: var(--sw-radius-md);
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.22);
}

.sw-footer-locations__panel::after {
  position: absolute;
  bottom: -0.35rem;
  left: 1.15rem;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--sw-color-white);
  content: "";
  transform: rotate(45deg);
}

.sw-footer-locations__address,
.sw-footer-locations__phone,
.sw-footer-locations__email,
.sw-footer-locations__maps {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
  color: inherit;
  font-size: var(--sw-font-size-xs);
  font-style: normal;
  line-height: 1.5;
  text-decoration: none;
}

.sw-footer-locations__address-line {
  display: block;
}

.sw-footer-locations__phone {
	margin-top: 0.6rem;
	font-weight: var(--sw-font-weight-medium);
}

.sw-footer-locations__email {
  margin-top: 0.35rem;
}

.sw-footer-locations__maps {
  display: inline-flex;
  gap: 0.85rem;
  align-items: center;
  margin-top: 0.65rem;
  color: var(--sw-color-primary) !important;
  font-size: 0.72rem;
  font-weight: var(--sw-font-weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sw-footer-locations__maps::after {
  display: inline-block;
  width: 2.25rem;
  height: 0.75rem;
  color: currentColor;
  content: "";
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2048%2014%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M1%207H44M37%201.5L45%207L37%2012.5%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.8%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2048%2014%27%20xmlns%3D%27http://www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M1%207H44M37%201.5L45%207L37%2012.5%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.8%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E") center / contain no-repeat;
  transform: translateX(0);
  transition: transform 180ms ease;
}

.sw-footer-locations__maps:hover,
.sw-footer-locations__maps:focus {
  color: var(--sw-color-cta) !important;
}

.sw-footer-locations__maps:hover::after,
.sw-footer-locations__maps:focus::after {
  transform: translateX(0.18rem);
}

@media (max-width: 767px) {
  .sw-footer-locations__trigger,
  .sw-footer-locations__label {
    min-height: 2rem;
  }

  .sw-footer-locations__panel {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    margin: 0.45rem 0 0.65rem;
  }

  .sw-footer-locations__panel::after {
    top: -0.35rem;
    bottom: auto;
  }
}

.sw-team-stations {
  --sw-team-stations-indent: clamp(2.25rem, 4vw, 3.25rem);
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0 0 0 var(--sw-team-stations-indent);
  border-left: 1px solid var(--sw-color-border);
  list-style: none;
}

.sw-team-stations__item {
  position: relative;
  padding: 0 0 clamp(1.8rem, 3vw, 2.6rem);
}

.sw-team-stations__item:last-child {
  padding-bottom: 0;
}

.sw-team-stations__item::before {
  position: absolute;
  top: 1rem;
  left: calc((var(--sw-team-stations-indent) + 0.58rem) * -1);
  width: 1.16rem;
  height: 1.16rem;
  background: var(--sw-color-cta);
  border: 0;
  border-radius: 50%;
  content: "";
}

.sw-team-stations__period {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--sw-color-cta);
  font-family: var(--sw-font-family-heading);
  font-size: var(--sw-font-size-xl);
  font-weight: var(--sw-font-weight-medium);
  letter-spacing: 0;
  line-height: var(--sw-line-height-tight);
}

.sw-team-stations__title {
  margin: 0;
  color: var(--sw-color-white);
  font-size: clamp(1.42rem, 1.25rem + 0.5vw, 1.82rem);
  font-weight: 500;
  line-height: 1.12;
}

.sw-team-stations__company {
  margin: 0.35rem 0 0;
  color: var(--sw-color-white);
  font-size: var(--sw-font-size-sm);
  font-weight: var(--sw-font-weight-semibold);
  line-height: 1.45;
}

.sw-team-stations__description {
  max-width: 62ch;
  margin-top: 0.65rem;
  color: var(--sw-color-white);
  font-size: var(--sw-font-size-sm);
  line-height: 1.55;
}

.sw-team-stations__description > :first-child {
  margin-top: 0;
}

.sw-team-stations__description > :last-child {
  margin-bottom: 0;
}

.sw-team-directory {
  width: 100%;
}

/* Current job openings are intentionally a list, not a card grid. */
.sw-job-list {
  width: 100%;
  border-top: 1px solid var(--sw-color-border);
}

.sw-job-list__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--sw-space-lg);
  align-items: center;
  padding: clamp(1.5rem, 3.2vw, 2.5rem) 0;
  border-bottom: 1px solid var(--sw-color-border);
}

.sw-job-list__content {
  min-width: 0;
}

.sw-job-list__title {
  margin: 0;
  color: var(--sw-color-primary);
  font-family: var(--sw-font-family-heading);
  font-size: clamp(1.6rem, 1.35rem + 0.8vw, 2.25rem);
  font-weight: var(--sw-font-weight-medium);
  line-height: 1.08;
}

.sw-job-list__title a {
  color: inherit;
  text-decoration: none;
}

.sw-job-list__title a:hover,
.sw-job-list__title a:focus-visible {
  color: var(--sw-color-cta);
}

.sw-job-meta {
  margin: 0.75rem 0 0;
  color: var(--sw-color-primary);
  font-family: var(--sw-font-family-ui);
  font-size: 14px;
  font-weight: var(--sw-font-weight-medium);
  line-height: 1.45;
}

.sw-job-meta--inline {
  display: flex;
  flex-wrap: wrap;
}

.sw-job-meta--inline .sw-job-meta__item {
  display: inline-flex;
  align-items: baseline;
}

.sw-job-meta--inline .sw-job-meta__item:not(:last-child)::after {
  margin: 0 0.65rem;
  color: var(--sw-color-border);
  content: "|";
}

.sw-job-meta--inline .sw-job-meta__label {
  margin-right: 0.28em;
  font-weight: inherit;
}

.sw-job-meta--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 2.25rem;
  max-width: 34rem;
  margin-top: 1.4rem;
}

.sw-job-meta--grid .sw-job-meta__item {
  display: block;
}

.sw-job-meta--grid .sw-job-meta__label {
  display: block;
  margin: 0 0 0.2rem;
  color: rgba(43, 46, 51, 0.75);
  font-size: 0.68rem;
  font-weight: var(--sw-font-weight-medium);
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.sw-job-list__excerpt {
  max-width: 68ch;
  margin-top: 0.7rem;
  color: var(--sw-color-text-soft);
  font-size: var(--sw-font-size-sm);
  line-height: 1.55;
}

.sw-job-list__excerpt > :first-child {
  margin-top: 0;
}

.sw-job-list__excerpt > :last-child {
  margin-bottom: 0;
}

.sw-job-list__link {
  display: inline-flex;
  min-height: var(--sw-button-min-height);
  align-items: center;
  justify-content: center;
  padding: var(--sw-button-padding-y) var(--sw-button-padding-x);
  color: var(--sw-color-white);
  background: var(--sw-color-cta);
  border: 1px solid var(--sw-color-cta);
  border-radius: var(--sw-radius-pill);
  font-family: var(--sw-font-family-ui);
  font-size: var(--sw-button-font-size);
  font-weight: var(--sw-font-weight-semibold);
  letter-spacing: var(--sw-button-letter-spacing);
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.sw-job-list__link:hover,
.sw-job-list__link:focus-visible {
  color: var(--sw-color-white);
  background: var(--sw-color-cta-hover);
  border-color: var(--sw-color-cta-hover);
}

.sw-job-list__title a:focus-visible,
.sw-job-list__link:focus-visible {
  outline: 2px solid var(--sw-color-cta);
  outline-offset: 4px;
}

.sw-job-list__empty {
  margin: 0;
  color: var(--sw-color-text-soft);
}

.sw-section-dark .sw-job-list,
.sw-section-dark .sw-job-list__item {
  border-color: rgba(255, 255, 255, 0.28);
}

.sw-section-dark .sw-job-list__title,
.sw-section-dark .sw-job-list__title a {
  color: var(--sw-color-white);
}

.sw-section-dark .sw-job-list__title a:hover,
.sw-section-dark .sw-job-list__title a:focus-visible {
  color: var(--sw-color-cta);
}

.sw-section-dark .sw-job-list__excerpt,
.sw-section-dark .sw-job-list__empty,
.sw-section-dark .sw-job-meta {
  color: var(--sw-color-white);
}

.sw-section-dark .sw-job-meta--grid .sw-job-meta__label {
  color: rgba(255, 255, 255, 0.75);
}

.sw-section-dark .sw-job-meta--inline .sw-job-meta__item:not(:last-child)::after {
  color: rgba(255, 255, 255, 0.48);
}

.sw-readmore {
  --sw-readmore-height: 18rem;
}

.sw-readmore__content > :first-child {
  margin-top: 0;
}

.sw-readmore__content > :last-child {
  margin-bottom: 0;
}

.sw-readmore.is-collapsible .sw-readmore__content {
  max-height: var(--sw-readmore-height);
  overflow: hidden;
  transition: max-height 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.sw-readmore.is-collapsible:not(.is-expanded) .sw-readmore__content {
  -webkit-mask-image: linear-gradient(to bottom, #000 0, #000 calc(100% - 2.5rem), transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0, #000 calc(100% - 2.5rem), transparent 100%);
}

.sw-readmore.is-collapsible.is-expanded .sw-readmore__content {
  max-height: var(--sw-readmore-expanded-height);
}

.sw-readmore__toggle {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  margin-top: 1rem;
  padding: 0;
  color: inherit !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0;
  font-family: var(--sw-font-family-ui);
  font-size: 0.72rem;
  font-weight: var(--sw-font-weight-medium);
  letter-spacing: 0.18em;
  line-height: 1.25;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.sw-readmore__toggle::after {
  content: '→';
  font-size: 1.2em;
  line-height: 1;
  transition: transform 180ms ease;
}

.sw-readmore__toggle:hover,
.sw-readmore__toggle:focus-visible,
.sw-readmore__toggle:active {
  color: inherit !important;
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.sw-readmore__toggle::selection {
  color: inherit;
  background: transparent;
}

.sw-readmore.is-expanded .sw-readmore__toggle::after {
  transform: rotate(90deg);
}

.sw-readmore__toggle:focus-visible {
  outline: 0;
  text-decoration: underline;
  text-decoration-color: var(--sw-color-cta);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
}

@media (prefers-reduced-motion: reduce) {
  .sw-readmore.is-collapsible .sw-readmore__content {
    transition: none;
  }
}

@media (max-width: 639px) {
  .sw-job-list__item {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--sw-space-md);
  }

  .sw-job-list__link {
    justify-self: start;
  }

  .sw-job-meta--grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.9rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .sw-job-list__link:hover {
    transform: translateY(-0.08rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sw-job-list__link {
    transition: none;
  }
}

.sw-team-directory__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
}

.sw-team-directory__filter {
  min-height: 2.65rem;
  padding: 0.55rem 1rem;
  color: var(--sw-color-primary);
  background: transparent;
  border: 1px solid var(--sw-color-border);
  border-radius: var(--sw-radius-pill);
  font-family: var(--sw-font-family-ui);
  font-size: var(--sw-font-size-sm);
  font-weight: var(--sw-font-weight-medium);
  line-height: 1.2;
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.sw-team-directory__filter:hover,
.sw-team-directory__filter[aria-pressed="true"] {
  color: var(--sw-color-white);
  background: var(--sw-color-cta);
  border-color: var(--sw-color-cta);
}

/* Keep inactive team filters legible on dark Elementor sections. */
.sw-section-dark .sw-team-directory__filter {
  color: var(--sw-color-white);
  border-color: rgba(255, 255, 255, 0.58);
}

.sw-section-dark .sw-team-directory__filter:hover,
.sw-section-dark .sw-team-directory__filter[aria-pressed="true"] {
  color: var(--sw-color-white);
  background: var(--sw-color-cta);
  border-color: var(--sw-color-cta);
}

.sw-team-directory__filter:focus-visible,
.sw-team-card a:focus-visible {
  outline: 2px solid var(--sw-color-cta);
  outline-offset: 3px;
}

.sw-team-directory__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1rem, 2.25vw, 1.75rem);
}

.sw-team-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  color: var(--sw-color-text);
  background: var(--sw-color-white);
  border: 0;
  border-radius: var(--sw-radius-card);
  box-shadow: 0 0.65rem 1.8rem rgba(27, 31, 35, 0.06);
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

/* Elementor sets cards to display:flex; this must win over the HTML hidden state. */
.sw-team-card[hidden],
.sw-team-card.is-filtered-out {
  display: none !important;
}

.sw-team-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  color: var(--sw-color-primary);
  background: var(--sw-color-light);
}

.sw-team-card__media-link {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--sw-color-primary);
}

.sw-team-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 300ms ease;
}

/* Elementor can apply a generic `height: auto` to dynamically loaded images.
 * Team portraits always fill their square media area instead. */
.sw-team-card__media .sw-team-card__image {
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  object-fit: cover !important;
}

.sw-team-card__initials {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--sw-color-cta);
  font-family: var(--sw-font-family-heading);
  font-size: clamp(2.4rem, 1.8rem + 2vw, 4rem);
  font-weight: var(--sw-font-weight-medium);
}

.sw-team-card__linkedin {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  color: var(--sw-color-white);
  background: #0a66c2;
  border-radius: 50%;
  box-shadow: 0 0.35rem 0.9rem rgba(27, 31, 35, 0.28);
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.sw-team-card__linkedin svg {
  width: 1.35rem;
  height: 1.35rem;
}

.sw-team-card__linkedin:hover,
.sw-team-card__linkedin:focus-visible {
  color: var(--sw-color-white);
  background: #004182;
  transform: translateY(-0.12rem);
}

.sw-team-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(1.1rem, 2.3vw, 1.65rem);
}

.sw-team-card__name {
  margin: 0;
  color: var(--sw-color-primary);
  font-family: var(--sw-font-family-heading);
  font-size: var(--sw-font-size-lg);
  font-weight: var(--sw-font-weight-medium);
  line-height: var(--sw-line-height-tight);
}

.sw-team-card__name a {
  color: inherit;
  text-decoration: none;
}

.sw-team-card__position {
  margin: 0.45rem 0 0;
  color: var(--sw-color-cta);
  font-family: var(--sw-font-family-ui);
  font-size: var(--sw-font-size-sm);
  font-weight: var(--sw-font-weight-medium);
  line-height: 1.4;
}

.sw-team-card__intro {
  display: -webkit-box;
  min-height: 3em;
  margin-top: 0.85rem;
  overflow: hidden;
  color: var(--sw-color-text-soft);
  font-size: var(--sw-font-size-sm);
  line-height: 1.5;
  line-clamp: 2;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.sw-team-card__readmore {
  display: inline-flex;
  gap: 0.85rem;
  align-items: center;
  align-self: start;
  margin-top: auto;
  padding-top: 1.6rem;
  color: var(--sw-color-primary);
  font-family: var(--sw-font-family-ui);
  font-size: 0.75rem;
  font-weight: var(--sw-font-weight-medium);
  letter-spacing: 0.18em;
  line-height: 1.25;
  text-decoration: none;
  text-transform: uppercase;
}

.sw-team-card__readmore::after {
  display: inline-block;
  width: 2.25rem;
  height: 0.75rem;
  color: currentColor;
  content: "";
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2048%2014%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M1%207H44M37%201.5L45%207L37%2012.5%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.8%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2048%2014%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M1%207H44M37%201.5L45%207L37%2012.5%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.8%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E") center / contain no-repeat;
  transform: translateX(0);
  transition: transform 180ms ease;
}

.sw-team-card__readmore:hover,
.sw-team-card__readmore:focus {
  color: var(--sw-color-cta);
}

.sw-team-card__readmore:hover::after,
.sw-team-card__readmore:focus::after {
  transform: translateX(0.18rem);
}

.sw-team-card.is-filtered-in {
  animation: sw-team-card-in 260ms ease both;
}

@keyframes sw-team-card-in {
  from {
    opacity: 0;
    transform: translateY(0.55rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 640px) {
  .sw-team-directory--columns-2 .sw-team-directory__grid,
  .sw-team-directory--columns-3 .sw-team-directory__grid,
  .sw-team-directory--columns-4 .sw-team-directory__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .sw-team-directory--columns-3 .sw-team-directory__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sw-team-directory--columns-4 .sw-team-directory__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (hover: hover) and (pointer: fine) {
  .sw-team-directory__filter:hover {
    transform: translateY(-0.08rem);
  }

  .sw-team-card:hover,
  .sw-team-card:focus-within {
    box-shadow: 0 1.1rem 2.6rem rgba(27, 31, 35, 0.13);
    transform: translateY(-0.22rem);
  }

  .sw-team-card:hover .sw-team-card__image,
  .sw-team-card:focus-within .sw-team-card__image {
    transform: scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sw-team-directory__filter,
  .sw-team-card,
  .sw-team-card__image,
  .sw-team-card__readmore::after {
    transition: none;
  }

  .sw-team-card.is-filtered-in {
    animation: none;
  }
}

.sw-card-lifted {
  position: relative;
  overflow: hidden;
  background: var(--sw-color-white);
  border-radius: var(--sw-radius-card);
  box-shadow: 0 18px 42px rgba(27, 31, 35, 0.09);
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .sw-card:hover,
  .sw-card:focus-within {
    box-shadow: 0 1.4rem 3rem rgba(27, 31, 35, 0.14);
    transform: translateY(-0.12rem) scale(1.018);
  }

  .sw-card-lifted:hover,
  .sw-card-lifted:focus-within {
    box-shadow: 0 24px 56px rgba(27, 31, 35, 0.13);
    transform: translateY(-0.25rem) scale(1.01);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sw-card,
  .sw-card-lifted {
    transition: none;
  }

  .sw-card:hover,
  .sw-card:focus-within,
  .sw-card-lifted:hover,
  .sw-card-lifted:focus-within {
    transform: none;
  }
}

.sw-radius-soft,
.sw-radius-soft img,
.sw-radius-soft .elementor-background-overlay {
  border-radius: var(--sw-radius-md);
}

.sw-radius-card,
.sw-radius-card img,
.sw-radius-card .elementor-background-overlay {
  border-radius: var(--sw-radius-card);
}

.sw-radius-large,
.sw-radius-large img,
.sw-radius-large .elementor-background-overlay {
  border-radius: clamp(1.5rem, 3vw, 2.5rem);
}

.sw-radius-soft,
.sw-radius-card,
.sw-radius-large {
  overflow: hidden;
  isolation: isolate;
  transition: transform 180ms ease;
}

.sw-radius-soft.elementor-widget-image,
.sw-radius-card.elementor-widget-image,
.sw-radius-large.elementor-widget-image {
  overflow: visible;
}

.sw-image-square,
.sw-image-square .elementor-widget-container,
.sw-image-square a {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.sw-image-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (hover: hover) and (pointer: fine) {
  .sw-radius-soft:hover,
  .sw-radius-soft:focus-within,
  .sw-radius-card:hover,
  .sw-radius-card:focus-within,
  .sw-radius-large:hover,
  .sw-radius-large:focus-within {
    transform: translateY(-0.12rem) scale(1.018);
  }
}

.sw-card-icon {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 3.25rem;
  margin-bottom: 1.5rem;
}

.sw-card-icon svg,
.sw-card-icon img {
  width: auto;
  max-width: 2.8rem;
  height: auto;
  max-height: 2.8rem;
  object-fit: contain;
}

.sw-kicker {
  display: inline-flex;
  margin: 0 0 0.85rem;
  color: var(--sw-color-cta);
  line-height: 1.15;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sw-kicker p,
.sw-kicker .elementor-heading-title {
  margin: 0;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: inherit;
}

.elementor-widget-heading.sw-kicker .elementor-heading-title,
.elementor-widget-text-editor.sw-kicker,
.elementor-widget-text-editor.sw-kicker p {
  color: var(--sw-color-cta) !important;
  letter-spacing: 0.18em !important;
  line-height: 1.15 !important;
  text-transform: uppercase !important;
}

.sw-text-soft {
  color: var(--sw-color-text-soft);
}

.sw-text-cta {
  color: var(--sw-color-cta);
}

.sw-section-cta-light {
  background: var(--sw-color-cta-light);
}

.sw-parallax {
  position: relative;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sw-parallax-blur {
  position: relative;
  overflow: hidden;
}

.sw-parallax-blur::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(255, 255, 255, 0.24);
  content: "";
  pointer-events: none;
}

.sw-parallax-blur > * {
  position: relative;
  z-index: 1;
}

.sw-parallax-blur > .elementor-background-overlay {
  z-index: 1;
}

.sw-parallax-blur > .e-con-inner {
  z-index: 2;
}

@media (hover: none) and (pointer: coarse) and (max-width: 1366px) {
  .sw-parallax {
    background-attachment: scroll !important;
  }
}

@supports (-webkit-touch-callout: none) {
  @media (max-width: 1366px) {
    .sw-parallax {
      background-attachment: scroll !important;
    }
  }
}

html.sw-is-ios-touch .sw-parallax,
html.sw-is-ios-touch .sw-parallax.elementor-element,
html.sw-is-ios-touch .sw-parallax:not(.elementor-motion-effects-element-type-background),
html.sw-is-ios-touch .sw-parallax > .elementor-motion-effects-container > .elementor-motion-effects-layer {
  background-attachment: scroll !important;
}

.elementor .elementor-widget-button.sw-button-primary .elementor-button,
.sw-button-primary .elementor-button,
.elementor-button.sw-button-primary {
  color: var(--sw-color-white);
  background: var(--sw-color-primary);
  border: 1px solid var(--sw-color-primary);
  border-radius: var(--sw-radius-pill);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.elementor .elementor-widget-button.sw-button-primary .elementor-button:hover,
.elementor .elementor-widget-button.sw-button-primary .elementor-button:focus,
.sw-button-primary .elementor-button:hover,
.sw-button-primary .elementor-button:focus,
.elementor-button.sw-button-primary:hover,
.elementor-button.sw-button-primary:focus {
  color: var(--sw-color-white);
  background: var(--sw-color-primary-hover);
  border-color: var(--sw-color-primary-hover);
}

.elementor .elementor-widget-button.sw-button-accent .elementor-button,
.sw-button-accent .elementor-button,
.elementor-button.sw-button-accent {
  color: var(--sw-color-white);
  background: var(--sw-color-accent);
  border: 1px solid var(--sw-color-accent);
  border-radius: var(--sw-radius-pill);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.elementor .elementor-widget-button.sw-button-accent .elementor-button:hover,
.elementor .elementor-widget-button.sw-button-accent .elementor-button:focus,
.sw-button-accent .elementor-button:hover,
.sw-button-accent .elementor-button:focus,
.elementor-button.sw-button-accent:hover,
.elementor-button.sw-button-accent:focus {
  color: var(--sw-color-white);
  background: var(--sw-color-secondary-hover);
  border-color: var(--sw-color-secondary-hover);
}

.elementor .elementor-widget-button.sw-button-cta .elementor-button,
.sw-button-cta .elementor-button,
.elementor-button.sw-button-cta {
  color: var(--sw-color-white);
  background: var(--sw-color-cta);
  border: 1px solid var(--sw-color-cta);
  border-radius: var(--sw-radius-pill);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.elementor .elementor-widget-button.sw-button-cta .elementor-button:hover,
.elementor .elementor-widget-button.sw-button-cta .elementor-button:focus,
.sw-button-cta .elementor-button:hover,
.sw-button-cta .elementor-button:focus,
.elementor-button.sw-button-cta:hover,
.elementor-button.sw-button-cta:focus {
  color: var(--sw-color-white);
  background: var(--sw-color-cta-hover);
  border-color: var(--sw-color-cta-hover);
}

.elementor .elementor-widget-button.sw-button-outline-light .elementor-button,
.sw-button-outline-light .elementor-button,
.elementor-button.sw-button-outline-light {
  color: var(--sw-color-white) !important;
  background: transparent !important;
  border: 1px solid var(--sw-color-white) !important;
  border-radius: var(--sw-radius-pill);
  box-shadow: none !important;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.elementor .elementor-widget-button.sw-button-outline-light .elementor-button:hover,
.elementor .elementor-widget-button.sw-button-outline-light .elementor-button:focus,
.sw-button-outline-light .elementor-button:hover,
.sw-button-outline-light .elementor-button:focus,
.elementor-button.sw-button-outline-light:hover,
.elementor-button.sw-button-outline-light:focus {
  color: var(--sw-color-primary) !important;
  background: var(--sw-color-white) !important;
  border-color: var(--sw-color-white) !important;
}

.elementor .elementor-widget-button.sw-button-outline-orange .elementor-button,
.sw-button-outline-orange .elementor-button,
.elementor-button.sw-button-outline-orange {
  color: var(--sw-color-cta) !important;
  background: transparent !important;
  border: 1px solid var(--sw-color-cta) !important;
  border-radius: var(--sw-radius-pill);
  box-shadow: none !important;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.elementor .elementor-widget-button.sw-button-outline-orange .elementor-button:hover,
.elementor .elementor-widget-button.sw-button-outline-orange .elementor-button:focus,
.sw-button-outline-orange .elementor-button:hover,
.sw-button-outline-orange .elementor-button:focus,
.elementor-button.sw-button-outline-orange:hover,
.elementor-button.sw-button-outline-orange:focus {
  color: var(--sw-color-white) !important;
  background: var(--sw-color-cta) !important;
  border-color: var(--sw-color-cta) !important;
}

@media (hover: hover) and (pointer: fine) {
  .elementor .elementor-widget-button.sw-button-primary .elementor-button:hover,
  .elementor .elementor-widget-button.sw-button-primary .elementor-button:focus,
  .sw-button-primary .elementor-button:hover,
  .sw-button-primary .elementor-button:focus,
  .elementor-button.sw-button-primary:hover,
  .elementor-button.sw-button-primary:focus,
  .elementor .elementor-widget-button.sw-button-accent .elementor-button:hover,
  .elementor .elementor-widget-button.sw-button-accent .elementor-button:focus,
  .sw-button-accent .elementor-button:hover,
  .sw-button-accent .elementor-button:focus,
  .elementor-button.sw-button-accent:hover,
  .elementor-button.sw-button-accent:focus,
  .elementor .elementor-widget-button.sw-button-cta .elementor-button:hover,
  .elementor .elementor-widget-button.sw-button-cta .elementor-button:focus,
  .sw-button-cta .elementor-button:hover,
  .sw-button-cta .elementor-button:focus,
  .elementor-button.sw-button-cta:hover,
  .elementor-button.sw-button-cta:focus,
  .elementor .elementor-widget-button.sw-button-outline-light .elementor-button:hover,
  .elementor .elementor-widget-button.sw-button-outline-light .elementor-button:focus,
  .sw-button-outline-light .elementor-button:hover,
  .sw-button-outline-light .elementor-button:focus,
  .elementor-button.sw-button-outline-light:hover,
  .elementor-button.sw-button-outline-light:focus {
	box-shadow: 0 0.85rem 1.8rem rgba(27, 31, 35, 0.16) !important;
	transform: translateY(-0.12rem) scale(1.035) !important;
  }

  .elementor .elementor-widget-button.sw-button-outline-orange .elementor-button:hover,
  .elementor .elementor-widget-button.sw-button-outline-orange .elementor-button:focus,
  .sw-button-outline-orange .elementor-button:hover,
  .sw-button-outline-orange .elementor-button:focus,
  .elementor-button.sw-button-outline-orange:hover,
  .elementor-button.sw-button-outline-orange:focus {
	box-shadow: 0 0.85rem 1.8rem rgba(27, 31, 35, 0.16) !important;
	transform: translateY(-0.12rem) scale(1.035) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .elementor .elementor-widget-button.sw-button-primary .elementor-button,
  .sw-button-primary .elementor-button,
  .elementor-button.sw-button-primary,
  .elementor .elementor-widget-button.sw-button-accent .elementor-button,
  .sw-button-accent .elementor-button,
  .elementor-button.sw-button-accent,
  .elementor .elementor-widget-button.sw-button-cta .elementor-button,
  .sw-button-cta .elementor-button,
  .elementor-button.sw-button-cta,
  .elementor .elementor-widget-button.sw-button-outline-light .elementor-button,
  .sw-button-outline-light .elementor-button,
  .elementor-button.sw-button-outline-light,
  .elementor .elementor-widget-button.sw-button-outline-orange .elementor-button,
  .sw-button-outline-orange .elementor-button,
  .elementor-button.sw-button-outline-orange {
    transition: none;
  }

  .elementor .elementor-widget-button.sw-button-primary .elementor-button:hover,
  .elementor .elementor-widget-button.sw-button-primary .elementor-button:focus,
  .sw-button-primary .elementor-button:hover,
  .sw-button-primary .elementor-button:focus,
  .elementor-button.sw-button-primary:hover,
  .elementor-button.sw-button-primary:focus,
  .elementor .elementor-widget-button.sw-button-accent .elementor-button:hover,
  .elementor .elementor-widget-button.sw-button-accent .elementor-button:focus,
  .sw-button-accent .elementor-button:hover,
  .sw-button-accent .elementor-button:focus,
  .elementor-button.sw-button-accent:hover,
  .elementor-button.sw-button-accent:focus,
  .elementor .elementor-widget-button.sw-button-cta .elementor-button:hover,
  .elementor .elementor-widget-button.sw-button-cta .elementor-button:focus,
  .sw-button-cta .elementor-button:hover,
  .sw-button-cta .elementor-button:focus,
  .elementor-button.sw-button-cta:hover,
  .elementor-button.sw-button-cta:focus,
  .elementor .elementor-widget-button.sw-button-outline-light .elementor-button:hover,
  .elementor .elementor-widget-button.sw-button-outline-light .elementor-button:focus,
  .sw-button-outline-light .elementor-button:hover,
  .sw-button-outline-light .elementor-button:focus,
  .elementor-button.sw-button-outline-light:hover,
  .elementor-button.sw-button-outline-light:focus,
  .elementor .elementor-widget-button.sw-button-outline-orange .elementor-button:hover,
  .elementor .elementor-widget-button.sw-button-outline-orange .elementor-button:focus,
  .sw-button-outline-orange .elementor-button:hover,
  .sw-button-outline-orange .elementor-button:focus,
  .elementor-button.sw-button-outline-orange:hover,
  .elementor-button.sw-button-outline-orange:focus {
    transform: none;
  }
}

.elementor .elementor-widget-button.sw-button-arrow .elementor-button,
.sw-button-arrow .elementor-button,
.elementor-button.sw-button-arrow {
  display: inline-flex !important;
  gap: 0.85rem;
  align-items: center;
  width: auto;
  min-width: 0;
  padding: 0 !important;
  color: var(--sw-color-primary) !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.elementor .elementor-widget-button.sw-button-arrow .elementor-button::after,
.sw-button-arrow .elementor-button::after,
.elementor-button.sw-button-arrow::after {
  display: inline-block;
  width: 2.25rem;
  height: 0.75rem;
  color: currentColor;
  content: "";
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2048%2014%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M1%207H44M37%201.5L45%207L37%2012.5%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.8%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2048%2014%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M1%207H44M37%201.5L45%207L37%2012.5%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.8%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E") center / contain no-repeat;
  transform: translateX(0);
  transition: transform 180ms ease;
}

.elementor .elementor-widget-button.sw-button-arrow .elementor-button:hover,
.elementor .elementor-widget-button.sw-button-arrow .elementor-button:focus,
.sw-button-arrow .elementor-button:hover,
.sw-button-arrow .elementor-button:focus,
.elementor-button.sw-button-arrow:hover,
.elementor-button.sw-button-arrow:focus {
  color: var(--sw-color-cta) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.elementor .elementor-widget-button.sw-button-arrow .elementor-button:hover::after,
.elementor .elementor-widget-button.sw-button-arrow .elementor-button:focus::after,
.sw-button-arrow .elementor-button:hover::after,
.sw-button-arrow .elementor-button:focus::after,
.elementor-button.sw-button-arrow:hover::after,
.elementor-button.sw-button-arrow:focus::after {
  transform: translateX(0.18rem);
}

.elementor .elementor-widget-button.sw-button-readmore .elementor-button,
.sw-button-readmore .elementor-button,
.elementor-button.sw-button-readmore {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  padding: 0;
  color: var(--sw-color-text);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: var(--sw-font-size-sm);
}

.elementor .elementor-widget-button.sw-button-readmore .elementor-button::after,
.sw-button-readmore .elementor-button::after,
.elementor-button.sw-button-readmore::after {
  display: inline-block;
  width: auto;
  height: auto;
  color: currentColor;
  content: "⟶";
  transform: translateX(0);
  transition: transform 180ms ease;
}

.elementor .elementor-widget-button.sw-button-readmore .elementor-button:hover,
.elementor .elementor-widget-button.sw-button-readmore .elementor-button:focus,
.sw-button-readmore .elementor-button:hover,
.sw-button-readmore .elementor-button:focus,
.elementor-button.sw-button-readmore:hover,
.elementor-button.sw-button-readmore:focus {
  color: var(--sw-color-border);
  background: transparent;
}

.elementor .elementor-widget-button.sw-button-readmore .elementor-button:hover::after,
.elementor .elementor-widget-button.sw-button-readmore .elementor-button:focus::after,
.sw-button-readmore .elementor-button:hover::after,
.sw-button-readmore .elementor-button:focus::after,
.elementor-button.sw-button-readmore:hover::after,
.elementor-button.sw-button-readmore:focus::after {
  transform: translateX(0.12rem);
}

.elementor .elementor-widget-button.sw-button-readmore-light .elementor-button,
.sw-button-readmore-light .elementor-button,
.elementor-button.sw-button-readmore-light {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  padding: 0;
  color: var(--sw-color-white);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: var(--sw-font-size-sm);
}

.elementor .elementor-widget-button.sw-button-readmore-light .elementor-button::after,
.sw-button-readmore-light .elementor-button::after,
.elementor-button.sw-button-readmore-light::after {
  display: inline-block;
  width: auto;
  height: auto;
  color: currentColor;
  content: "⟶";
  transform: translateX(0);
  transition: transform 180ms ease;
}

.elementor .elementor-widget-button.sw-button-readmore-light .elementor-button:hover,
.elementor .elementor-widget-button.sw-button-readmore-light .elementor-button:focus,
.sw-button-readmore-light .elementor-button:hover,
.sw-button-readmore-light .elementor-button:focus,
.elementor-button.sw-button-readmore-light:hover,
.elementor-button.sw-button-readmore-light:focus {
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
}

.elementor .elementor-widget-button.sw-button-readmore-light .elementor-button:hover::after,
.elementor .elementor-widget-button.sw-button-readmore-light .elementor-button:focus::after,
.sw-button-readmore-light .elementor-button:hover::after,
.sw-button-readmore-light .elementor-button:focus::after,
.elementor-button.sw-button-readmore-light:hover::after,
.elementor-button.sw-button-readmore-light:focus::after {
  transform: translateX(0.12rem);
}

.sw-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: sw-timeline;
}

.sw-timeline__item {
  position: relative;
  counter-increment: sw-timeline;
}

.sw-timeline__item:not(:last-child)::after {
  position: absolute;
  top: 1.15rem;
  left: calc(2.7rem + 0.75rem);
  width: calc(100% - 2.7rem);
  height: 1px;
  background: var(--sw-color-border);
  content: "";
}

.sw-timeline__number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--sw-color-white);
  background: var(--sw-color-secondary);
  border-radius: var(--sw-radius-pill);
  font-size: var(--sw-font-size-xs);
  font-weight: var(--sw-font-weight-semibold);
  line-height: 1;
}

.sw-timeline__number::before {
  content: counter(sw-timeline, decimal-leading-zero);
}

.sw-timeline__title {
  margin: 0 0 0.45rem;
  color: var(--sw-color-primary);
  font-size: var(--sw-font-size-md);
  font-weight: var(--sw-font-weight-semibold);
  line-height: var(--sw-line-height-heading);
}

.sw-timeline__text {
  margin: 0;
  color: var(--sw-color-text-soft);
  font-size: var(--sw-font-size-sm);
  line-height: 1.55;
}

@media (max-width: 767px) {
  /* Startseite: mehr Bildraum oberhalb der Hero-Card auf Mobil. */
  .sw-home-hero {
    min-height: 50rem !important;
    padding-top: 3rem !important;
    padding-bottom: 2rem !important;
    background-position: 78% center !important;
  }

  .sw-home-hero > .e-con-inner {
    min-height: calc(50rem - 5rem);
    justify-content: flex-end;
  }

  .sw-home-hero__card {
    margin-top: auto;
  }

  .sw-grid-2,
  .sw-grid-3 {
    grid-template-columns: 1fr;
  }

  .sw-timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .sw-timeline__item {
    display: grid;
    grid-template-columns: 2.7rem 1fr;
    column-gap: 1rem;
    padding-bottom: 1.5rem;
  }

  .sw-timeline__item:not(:last-child)::after {
    top: 2.7rem;
    bottom: 0;
    left: 1.35rem;
    width: 1px;
    height: auto;
  }

  .sw-timeline__number {
    grid-row: span 2;
    margin-bottom: 0;
  }
}
