/*
 * ==========================================================================
 * PDS CORE CSS — FFE-Sales.de
 * Version: 1.8.6 — Energy Sales Hero, Individual Desktop Heroes & Elementor Safe
 * Date: 2026-07-29
 * Scope: WordPress + Hello Elementor + Elementor Pro; isolated below .pds-scope
 * ==========================================================================
 *
 * Architecture:
 * 01 Tokens                 08 Header and navigation
 * 02 Base                   09 Footer
 * 03 Typography             10 Forms
 * 04 Layout                 11 Editorial content
 * 05 Sections               12 Accessibility
 * 06 Buttons                13 Responsive rules
 * 07 Components             14 Elementor and post integration
 *
 * Apply classes in Elementor under Advanced > CSS Classes, without a dot.
 * No generated Elementor IDs and no third-party plugin selectors are used.
 * Add pds-scope to one outer Elementor container. All visual rules stay inside it.
 */

/* ==========================================================================
   01 TOKENS
   ========================================================================== */

:root {
  /* Binding PDS palette */
  --pds-primary: #071923;
  --pds-deep: #0B2936;
  --pds-structure: #00637F;
  --pds-action: #20A6BC;
  --pds-effect: #00C2D1;
  --pds-cream: #FFFEFA;
  --pds-muted: #657881;
  --pds-divider: #DCE7E9;
  --pds-text: var(--pds-muted);

  /* Typography */
  --pds-font-heading: "Roboto Flex", Roboto, Arial, sans-serif;
  --pds-font-body: "Open Sans", Arial, sans-serif;
  --pds-font-mono: "Roboto Mono", "SFMono-Regular", Consolas, monospace;
  --pds-body-size: 1.0625rem;
  --pds-small-size: 0.875rem;
  --pds-h1-size: clamp(2.5rem, 5.4vw, 4rem);
  --pds-h2-size: clamp(2rem, 4vw, 3rem);
  --pds-h3-size: clamp(1.5rem, 2.8vw, 2.25rem);
  --pds-h4-size: clamp(1.25rem, 2vw, 1.75rem);
  --pds-h5-size: clamp(1.125rem, 1.5vw, 1.375rem);
  --pds-h6-size: 1rem;

  /* Layout */
  --pds-container: 73.75rem; /* 1180px */
  --pds-content: 53.75rem; /* 860px */
  --pds-content-narrow: 45rem; /* 720px */
  --pds-sidebar: 20rem;
  --pds-gutter: clamp(1.125rem, 3vw, 2rem);
  --pds-section-space: clamp(4rem, 7vw, 7rem);
  --pds-section-compact: clamp(2.75rem, 5vw, 4.5rem);
  --pds-grid-gap: clamp(1.25rem, 2.4vw, 2rem);
  --pds-card-padding: clamp(1.375rem, 2.5vw, 2rem);

  /* Spacing */
  --pds-space-1: 0.25rem;
  --pds-space-2: 0.5rem;
  --pds-space-3: 0.75rem;
  --pds-space-4: 1rem;
  --pds-space-5: 1.5rem;
  --pds-space-6: 2rem;
  --pds-space-7: 3rem;
  --pds-space-8: 4rem;

  /* Shape and motion */
  --pds-radius-s: 0.25rem;
  --pds-radius-m: 0.25rem;
  --pds-shadow-soft: 0 0.625rem 1.875rem rgba(7, 25, 35, 0.08);
  --pds-shadow-raised: 0 1rem 2.5rem rgba(7, 25, 35, 0.13);
  --pds-transition: 180ms ease;
  --pds-duration-fast: 180ms;
  --pds-focus-ring: 0 0 0 0.25rem rgba(32, 166, 188, 0.22);

  /* Header */
  --pds-header-height: 4.5rem;
  --pds-header-tablet: 4.25rem;
  --pds-header-mobile: 3.875rem;
}

/* ==========================================================================
   02 BASE
   ========================================================================== */

:where(.pds-scope) {
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

:where(.pds-scope),
:where(.pds-scope) *,
:where(.pds-scope)::before,
:where(.pds-scope) *::before,
:where(.pds-scope)::after,
:where(.pds-scope) *::after {
  box-sizing: inherit;
}

:where(.pds-scope) {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  color: var(--pds-primary);
  background: var(--pds-cream);
  font-family: var(--pds-font-body);
  font-size: var(--pds-body-size);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

:where(.pds-scope) .e-con,
:where(.pds-scope) .elementor-element {
  min-width: 0;
}

/* Compatibility for pages generated by PDS versions before 1.8. */
:where(.pds-scope) .e-con.e-con-boxed > .e-con-inner {
  width: 100%;
  max-width: none;
}

:where(.pds-scope) .pds-grid.e-con-boxed > .e-con-inner {
  display: grid;
  grid-template-columns: repeat(var(--pds-grid-columns, 1), minmax(0, 1fr));
  gap: var(--pds-grid-gap);
}

:where(.pds-scope) .pds-split.e-con-boxed > .e-con-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
}

:where(.pds-scope) img,
:where(.pds-scope) picture,
:where(.pds-scope) svg,
:where(.pds-scope) video,
:where(.pds-scope) canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

:where(.pds-scope) iframe {
  max-width: 100%;
  border: 0;
}

:where(.pds-scope) button,
:where(.pds-scope) input,
:where(.pds-scope) select,
:where(.pds-scope) textarea {
  color: inherit;
  font: inherit;
}

:where(.pds-scope) button {
  cursor: pointer;
}

:where(.pds-scope)::selection, :where(.pds-scope) ::selection {
  color: var(--pds-primary);
  background: rgba(32, 166, 188, 0.28);
}

/* ==========================================================================
   03 TYPOGRAPHY
   ========================================================================== */

:where(.pds-scope) h1,
:where(.pds-scope) h2,
:where(.pds-scope) h3,
:where(.pds-scope) h4,
:where(.pds-scope) h5,
:where(.pds-scope) h6,
:where(.pds-scope) .pds-h1,
:where(.pds-scope) .pds-h2,
:where(.pds-scope) .pds-h3,
:where(.pds-scope) .pds-h4,
:where(.pds-scope) .pds-h5,
:where(.pds-scope) .pds-h6 {
  margin-top: 0;
  margin-bottom: 0.6em;
  color: var(--pds-primary);
  font-family: var(--pds-font-heading);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

:where(.pds-scope) h1,
:where(.pds-scope) .pds-h1 {
  font-size: var(--pds-h1-size);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

:where(.pds-scope) h2,
:where(.pds-scope) .pds-h2 {
  font-size: var(--pds-h2-size);
}

:where(.pds-scope) h3,
:where(.pds-scope) .pds-h3 {
  font-size: var(--pds-h3-size);
}

:where(.pds-scope) h4,
:where(.pds-scope) .pds-h4 {
  font-size: var(--pds-h4-size);
}

:where(.pds-scope) h5,
:where(.pds-scope) .pds-h5 {
  font-size: var(--pds-h5-size);
}

:where(.pds-scope) h6,
:where(.pds-scope) .pds-h6 {
  font-size: var(--pds-h6-size);
  letter-spacing: 0;
}

:where(.pds-scope) p {
  margin-top: 0;
  margin-bottom: 1em;
}

:where(.pds-scope) p,
:where(.pds-scope) li {
  text-wrap: pretty;
}

:where(.pds-scope) ul,
:where(.pds-scope) ol {
  margin-top: 0;
  margin-bottom: 1.25em;
  padding-left: 1.4em;
}

:where(.pds-scope) li + li {
  margin-top: 0.4em;
}

:where(.pds-scope) strong,
:where(.pds-scope) b {
  font-weight: 700;
}

:where(.pds-scope) small,
:where(.pds-scope) .pds-text-small {
  font-size: var(--pds-small-size);
}

:where(.pds-scope) .pds-text-muted {
  color: var(--pds-muted);
}

:where(.pds-scope) .pds-lead {
  max-width: 46rem;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  line-height: 1.6;
}

:where(.pds-scope) .pds-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--pds-space-2);
  margin: 0 0 var(--pds-space-4);
  color: var(--pds-structure);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

:where(.pds-scope) .pds-eyebrow::before {
  width: 1.75rem;
  height: 0.125rem;
  background: var(--pds-action);
  content: "";
}

:where(.pds-scope) blockquote,
:where(.pds-scope) .pds-quote {
  margin: var(--pds-space-6) 0;
  padding: var(--pds-space-5) var(--pds-space-6);
  color: var(--pds-deep);
  background: rgba(220, 231, 233, 0.32);
  border-left: 0.25rem solid var(--pds-action);
  font-size: clamp(1.125rem, 1.7vw, 1.375rem);
}

:where(.pds-scope) blockquote > :last-child,
:where(.pds-scope) .pds-quote > :last-child {
  margin-bottom: 0;
}

:where(.pds-scope) hr,
:where(.pds-scope) .pds-divider {
  height: 1px;
  margin: var(--pds-space-6) 0;
  background: var(--pds-divider);
  border: 0;
}

:where(.pds-scope) a {
  color: var(--pds-structure);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
  transition: color var(--pds-transition);
}

:where(.pds-scope) a:hover {
  color: var(--pds-action);
}

/* ==========================================================================
   04 LAYOUT
   ========================================================================== */

:where(.pds-scope) .pds-container,
:where(.pds-scope) .pds-container--wide,
:where(.pds-scope) .pds-container--content,
:where(.pds-scope) .pds-container--narrow {
  width: calc(100% - var(--pds-gutter) - var(--pds-gutter));
  max-width: var(--pds-container);
  margin-left: auto;
  margin-right: auto;
}

:where(.pds-scope) .pds-container--wide {
  max-width: var(--pds-container);
}

:where(.pds-scope) .pds-container--content {
  max-width: var(--pds-content);
}

:where(.pds-scope) .pds-container--narrow {
  max-width: var(--pds-content-narrow);
}

:where(.pds-scope) .pds-full-width {
  width: 100%;
}

:where(.pds-scope) .pds-flow > * {
  margin-top: 0;
  margin-bottom: 0;
}

:where(.pds-scope) .pds-flow {
  --pds-flow-space: var(--pds-space-4);
}

:where(.pds-scope) .pds-flow > * + * {
  margin-top: var(--pds-flow-space);
}

:where(.pds-scope) .pds-stack {
  --pds-stack-gap: var(--pds-space-5);
  display: flex;
  flex-direction: column;
  gap: var(--pds-stack-gap);
}

:where(.pds-scope) .pds-stack--tight {
  --pds-stack-gap: var(--pds-space-3);
}

:where(.pds-scope) .pds-stack--loose {
  --pds-stack-gap: var(--pds-space-7);
}

:where(.pds-scope) .pds-cluster {
  --pds-cluster-gap: var(--pds-space-4);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--pds-cluster-gap);
}

:where(.pds-scope) .pds-cluster--between {
  justify-content: space-between;
}

:where(.pds-scope) .pds-grid {
  --pds-grid-columns: 1;
  display: grid;
  grid-template-columns: repeat(var(--pds-grid-columns), minmax(0, 1fr));
  gap: var(--pds-grid-gap);
}

:where(.pds-scope) .pds-grid--2 {
  --pds-grid-columns: 2;
}

:where(.pds-scope) .pds-grid--3 {
  --pds-grid-columns: 3;
}

:where(.pds-scope) .pds-grid--4 {
  --pds-grid-columns: 4;
}

:where(.pds-scope) .pds-grid--auto {
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

:where(.pds-scope) .pds-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

:where(.pds-scope) .pds-split--reverse > :first-child {
  order: 2;
}

:where(.pds-scope) .pds-sidebar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, var(--pds-sidebar));
  align-items: start;
  gap: clamp(2rem, 4vw, 4rem);
}

:where(.pds-scope) .pds-main,
:where(.pds-scope) .pds-sidebar {
  min-width: 0;
}

:where(.pds-scope) .pds-sticky {
  position: sticky;
  top: 6rem;
}

:where(.pds-scope) .pds-align-center {
  text-align: center;
}

:where(.pds-scope) .pds-align-center .pds-lead {
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   05 SECTIONS
   ========================================================================== */

:where(.pds-scope) .pds-section {
  position: relative;
  width: 100%;
  padding-top: var(--pds-section-space);
  padding-bottom: var(--pds-section-space);
}

:where(.pds-scope) .pds-section--compact {
  padding-top: var(--pds-section-compact);
  padding-bottom: var(--pds-section-compact);
}

:where(.pds-scope) .pds-section--flush {
  padding-top: 0;
  padding-bottom: 0;
}

:where(.pds-scope) .pds-section--soft {
  background: rgba(220, 231, 233, 0.32);
}

:where(.pds-scope) .pds-section--bordered {
  border-top: 1px solid var(--pds-divider);
  border-bottom: 1px solid var(--pds-divider);
}

:where(.pds-scope) .pds-section--dark {
  color: rgba(255, 254, 250, 0.84);
  background: var(--pds-primary);
}

:where(.pds-scope) .pds-section--deep {
  color: rgba(255, 254, 250, 0.84);
  background: var(--pds-deep);
}

:where(.pds-scope) .pds-section--structure {
  color: var(--pds-cream);
  background: var(--pds-structure);
}

:where(.pds-scope) .pds-section--dark h1,
:where(.pds-scope) .pds-section--dark h2,
:where(.pds-scope) .pds-section--dark h3,
:where(.pds-scope) .pds-section--dark h4,
:where(.pds-scope) .pds-section--deep h1,
:where(.pds-scope) .pds-section--deep h2,
:where(.pds-scope) .pds-section--deep h3,
:where(.pds-scope) .pds-section--deep h4,
:where(.pds-scope) .pds-section--structure h1,
:where(.pds-scope) .pds-section--structure h2,
:where(.pds-scope) .pds-section--structure h3,
:where(.pds-scope) .pds-section--structure h4 {
  color: var(--pds-cream);
}

:where(.pds-scope) .pds-section--hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(30rem, 68vh, 43rem);
  overflow: hidden;
  padding-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
  color: rgba(255, 254, 250, 0.86);
  background:
    linear-gradient(
      90deg,
      rgba(7, 25, 35, 0.99) 0%,
      rgba(7, 25, 35, 0.94) 37%,
      rgba(7, 25, 35, 0.60) 63%,
      rgba(0, 99, 127, 0.14) 100%
    ),
    url("../images/pds-network-hero-bg.webp") center / cover no-repeat,
    var(--pds-primary);
}

@media (min-width: 48rem) {
  :where(.pds-scope) .pds-section--hero--home,
  :where(.pds-scope) .pds-section--hero--mitteldeutschland,
  .pds-page--home :where(.pds-scope) .pds-section--hero,
  .pds-page--energievertrieb-mitteldeutschland :where(.pds-scope) .pds-section--hero {
    background:
      linear-gradient(
        90deg,
        rgba(7, 25, 35, 0.99) 0%,
        rgba(7, 25, 35, 0.92) 35%,
        rgba(7, 25, 35, 0.48) 58%,
        rgba(0, 99, 127, 0.06) 100%
      ),
      url("../images/pds-hero-home-mitteldeutschland-desktop.webp") center / cover no-repeat,
      var(--pds-primary);
  }

  :where(.pds-scope) .pds-section--hero--energievertrieb,
  .pds-page--energievertrieb-d2d :where(.pds-scope) .pds-section--hero {
    background:
      linear-gradient(
        90deg,
        rgba(7, 25, 35, 0.99) 0%,
        rgba(7, 25, 35, 0.92) 35%,
        rgba(7, 25, 35, 0.46) 58%,
        rgba(0, 99, 127, 0.05) 100%
      ),
      url("../images/pds-hero-energievertrieb-desktop.webp") center / cover no-repeat,
      var(--pds-primary);
  }
}

:where(.pds-scope) .pds-section--hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0.20;
  background-image:
    linear-gradient(rgba(32, 166, 188, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 166, 188, 0.24) 1px, transparent 1px);
  background-size: 3.375rem 3.375rem;
  content: "";
  mask-image: linear-gradient(90deg, transparent 7%, #000 52%, #000 100%);
  pointer-events: none;
}

:where(.pds-scope) .pds-section--hero::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(circle at 82% 48%, rgba(0, 194, 209, 0.14), transparent 29%),
    linear-gradient(180deg, rgba(7, 25, 35, 0.02), rgba(7, 25, 35, 0.34));
  content: "";
  pointer-events: none;
}

:where(.pds-scope) .pds-section--hero > * {
  position: relative;
  z-index: 2;
}

:where(.pds-scope) .pds-section--hero h1,
:where(.pds-scope) .pds-section--hero h2,
:where(.pds-scope) .pds-section--hero h3 {
  color: var(--pds-cream);
  text-shadow: 0 0.25rem 1.75rem rgba(0, 0, 0, 0.34);
}

:where(.pds-scope) .pds-section--hero .pds-eyebrow {
  color: var(--pds-action);
}

:where(.pds-scope) .pds-section--hero .pds-lead {
  color: rgba(255, 254, 250, 0.82);
}

:where(.pds-scope) .pds-section--cta {
  color: rgba(255, 254, 250, 0.84);
  background-color: var(--pds-primary);
  background-image: linear-gradient(115deg, #071923 0%, #00637F 100%);
}

:where(.pds-scope) .pds-section--cta h1,
:where(.pds-scope) .pds-section--cta h2,
:where(.pds-scope) .pds-section--cta h3 {
  color: var(--pds-cream);
}

/* Semantic markers: combine with visual modifiers as needed. */
:where(.pds-scope) .pds-section--body,
:where(.pds-scope) .pds-section--about,
:where(.pds-scope) .pds-section--services,
:where(.pds-scope) .pds-section--benefits,
:where(.pds-scope) .pds-section--features,
:where(.pds-scope) .pds-section--team,
:where(.pds-scope) .pds-section--references,
:where(.pds-scope) .pds-section--testimonials,
:where(.pds-scope) .pds-section--news,
:where(.pds-scope) .pds-section--posts,
:where(.pds-scope) .pds-section--downloads,
:where(.pds-scope) .pds-section--contact,
:where(.pds-scope) .pds-section--form,
:where(.pds-scope) .pds-section--faq,
:where(.pds-scope) .pds-section--career,
:where(.pds-scope) .pds-section--legal {
  position: relative;
}

:where(.pds-scope) .pds-section--legal .pds-container {
  max-width: var(--pds-content-narrow);
}

:where(.pds-scope) .pds-legal-page {
  background: var(--pds-cream);
}

:where(.pds-scope) .pds-legal-hero {
  padding-top: clamp(8.5rem, 12vw, 10.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 4.5rem);
  color: var(--pds-cream);
  background: var(--pds-primary);
  border-bottom: 1px solid rgba(255, 254, 250, 0.12);
}

:where(.pds-scope) .pds-legal-hero h1 {
  max-width: 47.5rem;
  color: var(--pds-cream);
}

:where(.pds-scope) .pds-legal-hero .pds-lead,
:where(.pds-scope) .pds-legal-hero p {
  max-width: 47.5rem;
  color: rgba(255, 254, 250, 0.72);
}

:where(.pds-scope) .pds-section--legal .pds-container.pds-legal-layout,
:where(.pds-scope) .pds-legal-layout {
  display: grid;
  grid-template-columns: 13.75rem minmax(0, 47.5rem);
  align-items: start;
  justify-content: space-between;
  gap: clamp(3rem, 8vw, 7rem);
  max-width: var(--pds-container);
}

:where(.pds-scope) .pds-legal-nav {
  position: sticky;
  top: calc(var(--pds-header-height) + var(--pds-space-4));
  display: grid;
  border-top: 0.1875rem solid var(--pds-action);
  border-bottom: 1px solid var(--pds-divider);
}

:where(.pds-scope) .pds-legal-nav__label {
  padding: 1.125rem 0 0.75rem;
  color: var(--pds-structure);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

:where(.pds-scope) .pds-legal-nav > a,
:where(.pds-scope) .pds-legal-menu .elementor-item,
:where(.pds-scope) .pds-legal-menu .e-n-menu-title-text {
  display: block;
  padding: 0.6875rem 0;
  color: var(--pds-muted);
  border-top: 1px solid var(--pds-divider);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
}

:where(.pds-scope) .pds-legal-menu .elementor-nav-menu,
:where(.pds-scope) .pds-legal-menu .e-n-menu {
  display: flex;
  flex-direction: column;
  margin: 0;
}

:where(.pds-scope) .pds-legal-nav > a:hover,
:where(.pds-scope) .pds-legal-nav > a[aria-current="page"],
:where(.pds-scope) .pds-legal-menu .elementor-item:hover,
:where(.pds-scope) .pds-legal-menu .elementor-item-active,
:where(.pds-scope) .pds-legal-menu .current-menu-item > a {
  color: var(--pds-primary);
}

:where(.pds-scope) .pds-legal-nav > a[aria-current="page"]::before,
:where(.pds-scope) .pds-legal-menu .elementor-item-active::before,
:where(.pds-scope) .pds-legal-menu .current-menu-item > a::before {
  margin-right: 0.5rem;
  color: var(--pds-action);
  content: "—";
}

:where(.pds-scope) .pds-legal-content {
  min-width: 0;
}

:where(.pds-scope) .pds-legal-notice {
  margin-bottom: var(--pds-space-7);
  padding: var(--pds-space-4) var(--pds-space-5);
  color: var(--pds-muted);
  background: rgba(220, 231, 233, 0.36);
  border-left: 0.1875rem solid var(--pds-action);
  font-size: 0.9375rem;
}

:where(.pds-scope) .pds-legal-section {
  padding: var(--pds-space-6) 0;
  border-top: 1px solid var(--pds-divider);
}

:where(.pds-scope) .pds-legal-section:first-of-type {
  padding-top: 0;
  border-top: 0;
}

:where(.pds-scope) .pds-legal-section h2 {
  margin-bottom: var(--pds-space-3);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

:where(.pds-scope) .pds-legal-section p {
  max-width: 68ch;
  color: var(--pds-muted);
}

/* ==========================================================================
   06 BUTTONS
   ========================================================================== */

:where(.pds-scope) a.pds-button,
:where(.pds-scope) button.pds-button,
:where(.pds-scope) .pds-button .elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--pds-space-2);
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  color: var(--pds-primary);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--pds-radius-s);
  font-family: var(--pds-font-body);
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    color var(--pds-transition),
    background-color var(--pds-transition),
    border-color var(--pds-transition),
    box-shadow var(--pds-transition),
    transform var(--pds-transition);
}

:where(.pds-scope) a.pds-button:hover,
:where(.pds-scope) button.pds-button:hover,
:where(.pds-scope) .pds-button .elementor-button:hover {
  text-decoration: none;
  transform: translateY(-0.125rem);
}

:where(.pds-scope) a.pds-button--primary,
:where(.pds-scope) button.pds-button--primary,
:where(.pds-scope) .pds-button--primary .elementor-button {
  color: var(--pds-primary);
  background: var(--pds-action);
  border-color: var(--pds-action);
  box-shadow: 0 0.5rem 1.5rem rgba(32, 166, 188, 0.22);
}

:where(.pds-scope) a.pds-button--primary:hover,
:where(.pds-scope) button.pds-button--primary:hover,
:where(.pds-scope) .pds-button--primary .elementor-button:hover {
  color: var(--pds-primary);
  background: var(--pds-action);
  border-color: var(--pds-action);
}

:where(.pds-scope) a.pds-button--secondary,
:where(.pds-scope) button.pds-button--secondary,
:where(.pds-scope) .pds-button--secondary .elementor-button {
  color: var(--pds-cream);
  background: var(--pds-structure);
  border-color: var(--pds-structure);
}

:where(.pds-scope) a.pds-button--secondary:hover,
:where(.pds-scope) button.pds-button--secondary:hover,
:where(.pds-scope) .pds-button--secondary .elementor-button:hover {
  color: var(--pds-primary);
  background: var(--pds-action);
  border-color: var(--pds-action);
}

:where(.pds-scope) a.pds-button--outline,
:where(.pds-scope) button.pds-button--outline,
:where(.pds-scope) .pds-button--outline .elementor-button {
  color: var(--pds-structure);
  background: transparent;
  border-color: var(--pds-structure);
}

:where(.pds-scope) a.pds-button--outline:hover,
:where(.pds-scope) button.pds-button--outline:hover,
:where(.pds-scope) .pds-button--outline .elementor-button:hover {
  color: var(--pds-cream);
  background: var(--pds-structure);
}

:where(.pds-scope) a.pds-button--ghost,
:where(.pds-scope) button.pds-button--ghost,
:where(.pds-scope) .pds-button--ghost .elementor-button {
  color: var(--pds-cream);
  background: transparent;
  border-color: rgba(255, 254, 250, 0.52);
}

:where(.pds-scope) a.pds-button--ghost:hover,
:where(.pds-scope) button.pds-button--ghost:hover,
:where(.pds-scope) .pds-button--ghost .elementor-button:hover {
  color: var(--pds-primary);
  background: var(--pds-cream);
  border-color: var(--pds-cream);
}

:where(.pds-scope) .pds-button--full,
:where(.pds-scope) .pds-button--full .elementor-button {
  width: 100%;
}

:where(.pds-scope) .pds-text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--pds-space-2);
  font-weight: 700;
  text-decoration: none;
}

:where(.pds-scope) .pds-text-link::after {
  content: "→";
  transition: transform var(--pds-transition);
}

:where(.pds-scope) .pds-text-link:hover::after {
  transform: translateX(0.2rem);
}

/* ==========================================================================
   07 COMPONENTS
   ========================================================================== */

:where(.pds-scope) .pds-card {
  position: relative;
  min-width: 0;
  height: 100%;
  padding: var(--pds-card-padding);
  color: var(--pds-primary);
  background: var(--pds-cream);
  border: 1px solid var(--pds-divider);
  border-radius: var(--pds-radius-s);
  box-shadow: var(--pds-shadow-soft);
  transition:
    border-color var(--pds-transition),
    box-shadow var(--pds-transition),
    transform var(--pds-transition);
}

:where(.pds-scope) .pds-card--interactive:hover,
:where(.pds-scope) .pds-card--interactive:focus-within {
  border-color: var(--pds-action);
  box-shadow: var(--pds-shadow-raised);
  transform: translateY(-0.25rem);
}

:where(.pds-scope) .pds-card--flat {
  box-shadow: none;
}

:where(.pds-scope) .pds-card--accent {
  border-top: 0.25rem solid var(--pds-action);
}

:where(.pds-scope) .pds-card--structure {
  border-top: 0.25rem solid var(--pds-structure);
}

:where(.pds-scope) .pds-card--dark {
  color: rgba(255, 254, 250, 0.82);
  background: var(--pds-deep);
  border-color: rgba(255, 254, 250, 0.12);
}

:where(.pds-scope) .pds-card--dark h2,
:where(.pds-scope) .pds-card--dark h3,
:where(.pds-scope) .pds-card--dark h4,
:where(.pds-scope) .pds-card--dark h5 {
  color: var(--pds-cream);
}

:where(.pds-scope) .pds-card__media {
  overflow: hidden;
  margin-top: calc(0rem - var(--pds-card-padding));
  margin-right: calc(0rem - var(--pds-card-padding));
  margin-bottom: var(--pds-card-padding);
  margin-left: calc(0rem - var(--pds-card-padding));
  border-radius: var(--pds-radius-s) var(--pds-radius-s) 0 0;
}

:where(.pds-scope) .pds-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

:where(.pds-scope) .pds-card__title {
  margin-bottom: var(--pds-space-3);
}

:where(.pds-scope) .pds-card__meta {
  color: var(--pds-muted);
  font-size: var(--pds-small-size);
}

:where(.pds-scope) .pds-card__body > :last-child {
  margin-bottom: 0;
}

:where(.pds-scope) .pds-info {
  padding: var(--pds-space-5);
  color: var(--pds-primary);
  background: rgba(220, 231, 233, 0.32);
  border: 1px solid var(--pds-divider);
  border-left: 0.25rem solid var(--pds-action);
  border-radius: var(--pds-radius-s);
}

:where(.pds-scope) .pds-info--structure {
  border-left-color: var(--pds-structure);
}

:where(.pds-scope) .pds-kpi {
  display: flex;
  flex-direction: column;
  gap: var(--pds-space-2);
}

:where(.pds-scope) .pds-kpi__value {
  color: var(--pds-structure);
  font-family: var(--pds-font-heading);
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  font-weight: 750;
  line-height: 1;
  letter-spacing: -0.04em;
}

:where(.pds-scope) .pds-kpi__label {
  color: var(--pds-muted);
  font-size: var(--pds-small-size);
  font-weight: 700;
}

:where(.pds-scope) .pds-icon-box {
  display: flex;
  flex-direction: column;
  gap: var(--pds-space-3);
}

:where(.pds-scope) .pds-icon-box__icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  color: var(--pds-primary);
  background: rgba(32, 166, 188, 0.18);
  border-radius: var(--pds-radius-s);
}

:where(.pds-scope) .pds-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 52rem;
}

:where(.pds-scope) .pds-hero__actions,
:where(.pds-scope) .pds-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--pds-space-3);
  margin-top: var(--pds-space-5);
}

:where(.pds-scope) .pds-accordion {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(32, 166, 188, 0.06), transparent 42%),
    var(--pds-cream);
  border: 1px solid var(--pds-divider);
  border-radius: var(--pds-radius-m);
  box-shadow: 0 1rem 2.75rem rgba(7, 25, 35, 0.08);
}

:where(.pds-scope) .pds-accordion details + details {
  border-top: 1px solid var(--pds-divider);
}

:where(.pds-scope) .pds-accordion summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 4.5rem;
  padding: var(--pds-space-5);
  padding-right: calc(var(--pds-space-5) + 3rem);
  color: var(--pds-deep);
  font-family: var(--pds-font-heading);
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
  transition: color var(--pds-duration-fast) ease, background-color var(--pds-duration-fast) ease;
}

:where(.pds-scope) .pds-accordion summary::-webkit-details-marker {
  display: none;
}

:where(.pds-scope) .pds-accordion summary::after {
  position: absolute;
  top: 50%;
  right: var(--pds-space-5);
  display: grid;
  width: 2rem;
  height: 2rem;
  color: var(--pds-cream);
  background: var(--pds-structure);
  border-radius: 50%;
  content: "+";
  font-family: var(--pds-font-body);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  place-items: center;
  transform: translateY(-50%);
  transition: transform var(--pds-duration-fast) ease, background-color var(--pds-duration-fast) ease;
}

:where(.pds-scope) .pds-accordion summary:hover {
  color: var(--pds-structure);
  background: rgba(32, 166, 188, 0.07);
}

:where(.pds-scope) .pds-accordion summary:focus-visible {
  z-index: 1;
  outline: 3px solid var(--pds-action);
  outline-offset: -3px;
}

:where(.pds-scope) .pds-accordion details[open] summary {
  color: var(--pds-structure);
  background: rgba(32, 166, 188, 0.1);
}

:where(.pds-scope) .pds-accordion details[open] summary::after {
  background: var(--pds-action);
  content: "–";
  transform: translateY(-50%) rotate(180deg);
}

:where(.pds-scope) .pds-accordion details > p,
:where(.pds-scope) .pds-accordion details > ul,
:where(.pds-scope) .pds-accordion details > ol,
:where(.pds-scope) .pds-accordion details > div {
  margin-left: var(--pds-space-5);
  margin-right: var(--pds-space-5);
}

:where(.pds-scope) .pds-accordion details > :last-child {
  margin-bottom: var(--pds-space-5);
}

:where(.pds-scope) .pds-accordion__answer {
  padding-top: var(--pds-space-4);
  border-top: 1px solid rgba(0, 99, 127, 0.12);
}

:where(.pds-scope) .pds-accordion__answer p:first-child {
  margin-top: 0;
}

:where(.pds-scope) .pds-accordion .elementor-tab-title,
:where(.pds-scope) .pds-accordion .e-n-accordion-item-title {
  min-height: 4.5rem;
  padding: var(--pds-space-5);
  color: var(--pds-deep);
  background: transparent;
  border-color: var(--pds-divider);
  font-family: var(--pds-font-heading);
  font-weight: 700;
  line-height: 1.35;
  transition: color var(--pds-duration-fast) ease, background-color var(--pds-duration-fast) ease;
}

:where(.pds-scope) .pds-accordion .elementor-tab-title:hover,
:where(.pds-scope) .pds-accordion .elementor-tab-title.elementor-active,
:where(.pds-scope) .pds-accordion .e-n-accordion-item-title:hover,
:where(.pds-scope) .pds-accordion .e-n-accordion-item[open] > .e-n-accordion-item-title {
  color: var(--pds-structure);
  background: rgba(32, 166, 188, 0.08);
}

:where(.pds-scope) .pds-accordion .elementor-tab-content {
  padding: var(--pds-space-5);
  color: var(--pds-text);
  background: rgba(255, 255, 255, 0.55);
  border-color: var(--pds-divider);
}

:where(.pds-scope) .pds-faq {
  margin-top: clamp(3rem, 7vw, 6rem);
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  border-top: 1px solid var(--pds-divider);
}

:where(.pds-scope) .pds-faq__intro {
  max-width: 48rem;
  margin-bottom: var(--pds-space-5);
  color: var(--pds-text);
}

:where(.pds-scope) .pds-faq__meta {
  margin-top: var(--pds-space-4);
  color: var(--pds-text);
  font-family: var(--pds-font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   08 HEADER AND NAVIGATION
   ========================================================================== */

:where(.pds-scope) .pds-header {
  position: relative;
  z-index: 100;
  width: 100%;
  color: var(--pds-cream);
  background: rgba(7, 25, 35, 0.98);
  border-bottom: 1px solid rgba(255, 254, 250, 0.1);
  box-shadow: 0 0.5rem 1.75rem rgba(7, 25, 35, 0.12);
}

:where(.pds-scope) .pds-header--overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(7, 25, 35, 0.78), rgba(7, 25, 35, 0.12));
  box-shadow: none;
}

:where(.pds-scope) .pds-header--sticky {
  position: sticky;
  top: 0;
}

:where(.pds-scope) .pds-header__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2.5vw, 2rem);
  min-height: var(--pds-header-height);
}

:where(.pds-scope) .e-con.pds-header__inner {
  flex-direction: row !important;
  flex-wrap: nowrap !important;
}

:where(.pds-scope) .pds-header__brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

:where(.pds-scope) .pds-header__identity {
  display: flex;
  width: auto;
  flex: 0 1 18rem;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--pds-space-3);
  min-width: 0;
}

:where(.pds-scope) .pds-header__brand,
:where(.pds-scope) .pds-header__brand a {
  color: var(--pds-cream);
  font-family: var(--pds-font-heading);
  font-weight: 760;
  line-height: 1.1;
  text-decoration: none;
}

:where(.pds-scope) .pds-header__brand .elementor-heading-title {
  margin: 0;
  color: var(--pds-cream);
  font-size: 1rem;
  letter-spacing: 0.01em;
}

:where(.pds-scope) .pds-header__sender,
:where(.pds-scope) .pds-header__sender p {
  margin: 0;
  color: rgba(255, 254, 250, 0.62);
  font-family: var(--pds-font-mono);
  font-size: 0.6875rem;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

:where(.pds-scope) .pds-header__brand img,
:where(.pds-scope) .pds-header__logo img {
  display: block;
  width: auto;
  max-width: 10.5rem;
  max-height: 2.625rem;
}

:where(.pds-scope) .pds-header__navigation {
  display: flex;
  width: auto;
  flex: 1 1 auto;
  flex-direction: row;
  justify-content: flex-end;
  min-width: 0;
}

:where(.pds-scope) .pds-header__actions {
  display: flex;
  width: auto;
  flex: 0 0 auto;
  flex-direction: row;
  align-items: center;
  gap: var(--pds-space-3);
}

:where(.pds-scope) .pds-header__menu .elementor-nav-menu,
:where(.pds-scope) .pds-header__menu .e-n-menu {
  align-items: center;
}

:where(.pds-scope) .pds-header__menu .elementor-item,
:where(.pds-scope) .pds-header__menu .e-n-menu-title-text {
  padding-right: 0.55rem;
  padding-left: 0.55rem;
  color: rgba(255, 254, 250, 0.88);
  font-family: var(--pds-font-body);
  font-size: 0.925rem;
  font-weight: 700;
  text-decoration: none;
}

:where(.pds-scope) .pds-header__menu .elementor-item:hover,
:where(.pds-scope) .pds-header__menu .elementor-item:focus-visible,
:where(.pds-scope) .pds-header__menu .elementor-item-active,
:where(.pds-scope) .pds-header__menu .current-menu-item > a,
:where(.pds-scope) .pds-header__menu .current-menu-ancestor > a {
  color: var(--pds-action);
}

:where(.pds-scope) .pds-header__menu .sub-menu,
:where(.pds-scope) .pds-header__menu .elementor-nav-menu--dropdown {
  min-width: 14rem;
  padding: var(--pds-space-2);
  background: var(--pds-deep);
  border: 1px solid rgba(255, 254, 250, 0.12);
  border-radius: var(--pds-radius-s);
  box-shadow: var(--pds-shadow-raised);
}

:where(.pds-scope) .pds-header__menu .elementor-sub-item {
  color: rgba(255, 254, 250, 0.82);
  background: transparent;
  border-radius: var(--pds-radius-s);
}

:where(.pds-scope) .pds-header__menu .elementor-sub-item:hover,
:where(.pds-scope) .pds-header__menu .elementor-sub-item:focus {
  color: var(--pds-primary);
  background: var(--pds-action);
}

:where(.pds-scope) .pds-header__menu .elementor-menu-toggle,
:where(.pds-scope) .pds-header__menu .e-n-menu-toggle {
  color: var(--pds-cream);
  background: transparent;
  border: 1px solid rgba(255, 254, 250, 0.2);
  border-radius: var(--pds-radius-s);
}

:where(.pds-scope) .pds-header__menu .elementor-menu-toggle:hover,
:where(.pds-scope) .pds-header__menu .elementor-menu-toggle:focus-visible,
:where(.pds-scope) .pds-header__menu .e-n-menu-toggle:hover,
:where(.pds-scope) .pds-header__menu .e-n-menu-toggle:focus-visible {
  color: var(--pds-primary);
  background: var(--pds-action);
  border-color: var(--pds-action);
}

:where(.pds-scope) .pds-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

:where(.pds-scope) .pds-nav a {
  font-weight: 700;
  text-decoration: none;
}

:where(.pds-scope) .pds-nav .current-menu-item > a {
  color: var(--pds-action);
}

/* ==========================================================================
   09 FOOTER
   ========================================================================== */

:where(.pds-scope) .pds-footer {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: clamp(3.5rem, 6vw, 5rem);
  padding-bottom: var(--pds-space-5);
  color: rgba(255, 254, 250, 0.76);
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(0, 194, 209, 0.14),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      var(--pds-primary) 0%,
      var(--pds-deep) 58%,
      var(--pds-structure) 130%
    );
}

:where(.pds-scope) .pds-footer h2,
:where(.pds-scope) .pds-footer h3,
:where(.pds-scope) .pds-footer h4,
:where(.pds-scope) .pds-footer h5,
:where(.pds-scope) .pds-footer h6 {
  color: var(--pds-cream);
}

:where(.pds-scope) .pds-footer p {
  color: rgba(255, 254, 250, 0.72);
}

:where(.pds-scope) .pds-footer a {
  color: rgba(255, 254, 250, 0.82);
  text-decoration: none;
}

:where(.pds-scope) .pds-footer a:hover,
:where(.pds-scope) .pds-footer a:focus-visible {
  color: var(--pds-action);
}

:where(.pds-scope) .pds-footer__primary {
  display: grid;
  grid-template-columns: minmax(14rem, 1.15fr) minmax(0, 2fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding-bottom: var(--pds-space-7);
}

:where(.pds-scope) .pds-footer__grid {
  display: grid;
  grid-template-columns: minmax(16rem, 1.25fr) repeat(2, minmax(11rem, 0.75fr));
  gap: clamp(2rem, 5vw, 5rem);
  padding-bottom: var(--pds-space-7);
}

:where(.pds-scope) .pds-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--pds-space-4);
}

:where(.pds-scope) .pds-footer__logo img {
  width: auto;
  max-width: 9.5rem;
  max-height: 3rem;
}

:where(.pds-scope) .pds-footer__main {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--pds-grid-gap);
}

:where(.pds-scope) .pds-footer__column {
  min-width: 0;
}

:where(.pds-scope) .pds-footer__heading {
  margin-bottom: var(--pds-space-4);
  font-size: 1rem;
  letter-spacing: 0;
}

:where(.pds-scope) .pds-footer__nav ul,
:where(.pds-scope) .pds-footer__legal ul,
:where(.pds-scope) .pds-footer__nav .elementor-nav-menu,
:where(.pds-scope) .pds-footer__legal .elementor-nav-menu {
  display: flex;
  flex-direction: column;
  gap: var(--pds-space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

:where(.pds-scope) .pds-footer__nav a,
:where(.pds-scope) .pds-footer__legal a {
  padding: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
}

:where(.pds-scope) .pds-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: var(--pds-space-2);
}

:where(.pds-scope) .pds-footer__social .elementor-social-icon {
  color: var(--pds-cream);
  background: rgba(255, 254, 250, 0.08);
  border: 1px solid rgba(255, 254, 250, 0.14);
  transition:
    color var(--pds-transition),
    background-color var(--pds-transition),
    border-color var(--pds-transition),
    transform var(--pds-transition);
}

:where(.pds-scope) .pds-footer__social .elementor-social-icon:hover {
  color: var(--pds-primary);
  background: var(--pds-action);
  border-color: var(--pds-action);
  transform: translateY(-0.125rem);
}

:where(.pds-scope) .pds-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--pds-space-3) var(--pds-space-5);
  padding-top: var(--pds-space-5);
  color: rgba(255, 254, 250, 0.56);
  border-top: 1px solid rgba(255, 254, 250, 0.12);
  font-size: var(--pds-small-size);
}

:where(.pds-scope) .pds-footer__bottom p {
  margin: 0;
  color: inherit;
}

/* ==========================================================================
   10 FORMS
   ========================================================================== */

:where(.pds-scope) .pds-form {
  width: 100%;
}

:where(.pds-scope) .pds-form .elementor-form-fields-wrapper,
:where(.pds-scope) .pds-form__fields {
  gap: var(--pds-space-4);
}

:where(.pds-scope) .pds-form label,
:where(.pds-scope) .pds-form .elementor-field-label {
  display: block;
  margin-bottom: var(--pds-space-2);
  color: var(--pds-deep);
  font-size: var(--pds-small-size);
  font-weight: 700;
}

:where(.pds-scope) .pds-form .pds-form__control,
:where(.pds-scope) .pds-form textarea,
:where(.pds-scope) .pds-form select,
:where(.pds-scope) .pds-form .elementor-field,
:where(.pds-scope) .pds-form .elementor-field-textual {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 0.875rem;
  color: var(--pds-primary);
  background: var(--pds-cream);
  border: 1px solid var(--pds-divider);
  border-radius: var(--pds-radius-s);
  box-shadow: none;
  transition:
    border-color var(--pds-transition),
    box-shadow var(--pds-transition);
}

:where(.pds-scope) .pds-form textarea,
:where(.pds-scope) .pds-form textarea.elementor-field {
  min-height: 8rem;
  resize: vertical;
}

:where(.pds-scope) .pds-form .pds-form__control:hover,
:where(.pds-scope) .pds-form textarea:hover,
:where(.pds-scope) .pds-form select:hover,
:where(.pds-scope) .pds-form .elementor-field:hover {
  border-color: var(--pds-muted);
}

:where(.pds-scope) .pds-form .pds-form__control:focus,
:where(.pds-scope) .pds-form textarea:focus,
:where(.pds-scope) .pds-form select:focus,
:where(.pds-scope) .pds-form .elementor-field:focus {
  border-color: var(--pds-action);
  outline: 0;
  box-shadow: var(--pds-focus-ring);
}

:where(.pds-scope) .pds-form .pds-form__choice,
:where(.pds-scope) .pds-form .elementor-field-type-checkbox input,
:where(.pds-scope) .pds-form .elementor-field-type-radio input,
:where(.pds-scope) .pds-form .elementor-field-type-acceptance input {
  width: 1.125rem;
  height: 1.125rem;
  accent-color: var(--pds-action);
}

:where(.pds-scope) .pds-form .elementor-field-type-checkbox label,
:where(.pds-scope) .pds-form .elementor-field-type-acceptance label,
:where(.pds-scope) .pds-form .elementor-field-type-radio label {
  font-weight: 400;
}

:where(.pds-scope) .pds-form .elementor-button,
:where(.pds-scope) .pds-form .pds-form__submit {
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  color: var(--pds-primary);
  background: var(--pds-action);
  border: 1px solid var(--pds-action);
  border-radius: var(--pds-radius-s);
  font-weight: 800;
  transition:
    color var(--pds-transition),
    background-color var(--pds-transition),
    border-color var(--pds-transition),
    transform var(--pds-transition);
}

:where(.pds-scope) .pds-form .elementor-button:hover,
:where(.pds-scope) .pds-form .pds-form__submit:hover {
  color: var(--pds-cream);
  background: var(--pds-structure);
  border-color: var(--pds-structure);
  transform: translateY(-0.125rem);
}

:where(.pds-scope) .pds-form .elementor-message-success,
:where(.pds-scope) .pds-form__success {
  padding: var(--pds-space-4);
  color: var(--pds-deep);
  background: rgba(220, 231, 233, 0.32);
  border-left: 0.25rem solid var(--pds-action);
}

:where(.pds-scope) .pds-form .elementor-message-danger,
:where(.pds-scope) .pds-form .elementor-error {
  color: var(--pds-primary);
  font-size: var(--pds-small-size);
  font-weight: 700;
}

/* ==========================================================================
   11 EDITORIAL CONTENT
   ========================================================================== */

:where(.pds-scope) .pds-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--pds-divider);
  border-radius: var(--pds-radius-s);
}

:where(.pds-scope) .pds-table {
  width: 100%;
  min-width: 40rem;
  border-collapse: collapse;
  color: var(--pds-primary);
  background: var(--pds-cream);
}

:where(.pds-scope) .pds-table th,
:where(.pds-scope) .pds-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--pds-divider);
  text-align: left;
  vertical-align: top;
}

:where(.pds-scope) .pds-table th {
  color: var(--pds-cream);
  background: var(--pds-structure);
  font-family: var(--pds-font-heading);
  font-size: var(--pds-small-size);
}

:where(.pds-scope) .pds-table tbody tr:nth-child(even) {
  background: rgba(220, 231, 233, 0.32);
}

:where(.pds-scope) .pds-table tbody tr:last-child td {
  border-bottom: 0;
}

:where(.pds-scope) .pds-prose {
  width: 100%;
  max-width: var(--pds-content);
}

:where(.pds-scope) .pds-prose > :first-child {
  margin-top: 0;
}

:where(.pds-scope) .pds-prose > :last-child {
  margin-bottom: 0;
}

:where(.pds-scope) .pds-prose h2,
:where(.pds-scope) .pds-prose h3,
:where(.pds-scope) .pds-prose h4 {
  margin-top: 1.6em;
}

:where(.pds-scope) .pds-prose a {
  overflow-wrap: anywhere;
}

/* ==========================================================================
   12 ACCESSIBILITY
   ========================================================================== */

:where(.pds-scope) a:focus-visible,
:where(.pds-scope) button:focus-visible,
:where(.pds-scope) input:focus-visible,
:where(.pds-scope) select:focus-visible,
:where(.pds-scope) textarea:focus-visible,
:where(.pds-scope) summary:focus-visible,
:where(.pds-scope) .pds-focusable:focus-visible {
  outline: 0.1875rem solid var(--pds-action);
  outline-offset: 0.1875rem;
}

:where(.pds-scope) .pds-sr-only,
:where(.pds-scope) .sr-only,
:where(.pds-scope) .visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:where(.pds-scope) .pds-skip-link,
:where(.pds-scope) .skip-link {
  position: fixed;
  z-index: 999999;
  top: var(--pds-space-3);
  left: var(--pds-space-3);
  padding: var(--pds-space-3) var(--pds-space-4);
  color: var(--pds-primary);
  background: var(--pds-action);
  border-radius: var(--pds-radius-s);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
}

:where(.pds-scope) .pds-skip-link:focus,
:where(.pds-scope) .skip-link:focus {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  :where(.pds-scope) {
    scroll-behavior: auto !important;
  }

  :where(.pds-scope),
  :where(.pds-scope) *,
  :where(.pds-scope)::before,
  :where(.pds-scope) *::before,
  :where(.pds-scope)::after,
  :where(.pds-scope) *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

/* ==========================================================================
   13 RESPONSIVE RULES
   ========================================================================== */

@media (max-width: 64rem) {
  :where(.pds-scope) {
    scroll-padding-top: 5.25rem;
  }

  :where(.pds-scope) .pds-grid--3,
  :where(.pds-scope) .pds-grid--4 {
    --pds-grid-columns: 2;
  }

  :where(.pds-scope) .pds-sidebar-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  :where(.pds-scope) .pds-sticky {
    position: static;
  }

  :where(.pds-scope) .pds-header__inner {
    min-height: var(--pds-header-tablet);
  }

  :where(.pds-scope) .pds-header__actions {
    display: none;
  }

  :where(.pds-scope) .pds-footer__primary {
    grid-template-columns: 1fr;
  }

  :where(.pds-scope) .pds-footer__grid {
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(10rem, 1fr));
  }
}

@media (max-width: 47.9375rem) {
  :where(.pds-scope) {
    scroll-padding-top: 4.875rem;
  }

  :where(.pds-scope) {
    font-size: 1rem;
  }

  :where(.pds-scope) .pds-section {
    padding-top: var(--pds-section-compact);
    padding-bottom: var(--pds-section-compact);
  }

  :where(.pds-scope) .pds-section--hero {
    min-height: auto;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    background:
      linear-gradient(
        90deg,
        rgba(7, 25, 35, 0.98) 0%,
        rgba(7, 25, 35, 0.90) 62%,
        rgba(7, 25, 35, 0.68) 100%
      ),
      url("../images/pds-mitteldeutschland-hero-bg.webp") 62% center / cover no-repeat,
      var(--pds-primary);
  }

  :where(.pds-scope) .pds-section--hero::before {
    opacity: 0.12;
    mask-image: linear-gradient(90deg, transparent 0%, #000 56%, #000 100%);
  }

  :where(.pds-scope) .pds-grid--2,
  :where(.pds-scope) .pds-grid--3,
  :where(.pds-scope) .pds-grid--4 {
    --pds-grid-columns: 1;
  }

  :where(.pds-scope) .pds-split {
    grid-template-columns: minmax(0, 1fr);
  }

  :where(.pds-scope) .pds-split.e-con-boxed > .e-con-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  :where(.pds-scope) .pds-split--reverse > :first-child {
    order: initial;
  }

  :where(.pds-scope) .pds-header__inner {
    min-height: var(--pds-header-mobile);
  }

  :where(.pds-scope) .pds-header__brand img,
  :where(.pds-scope) .pds-header__logo img {
    max-width: 8.5rem;
    max-height: 2.25rem;
  }

  :where(.pds-scope) .pds-header__menu .elementor-nav-menu--dropdown {
    position: fixed !important;
    top: var(--pds-header-mobile) !important;
    right: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
  }

  :where(.pds-scope) .pds-footer__main {
    grid-template-columns: 1fr;
  }

  :where(.pds-scope) .pds-footer__grid {
    grid-template-columns: 1fr;
  }

  :where(.pds-scope) .pds-legal-hero {
    padding-top: 8.625rem;
    padding-bottom: 3.375rem;
  }

  :where(.pds-scope) .pds-legal-hero h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(2.15rem, 11vw, 3.25rem);
  }

  :where(.pds-scope) .pds-section--legal .pds-container.pds-legal-layout,
  :where(.pds-scope) .pds-legal-layout {
    grid-template-columns: 1fr;
    gap: var(--pds-space-7);
  }

  :where(.pds-scope) .pds-legal-nav {
    position: static;
  }

  :where(.pds-scope) .pds-variant__intro {
    position: static;
  }

  :where(.pds-scope) .pds-feature-list__item {
    grid-template-columns: 1fr;
    gap: var(--pds-space-2);
  }

  :where(.pds-scope) .pds-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  :where(.pds-scope) .pds-hero__actions,
  :where(.pds-scope) .pds-cta__actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  :where(.pds-scope) .pds-hero__actions .pds-button,
  :where(.pds-scope) .pds-hero__actions .elementor-button,
  :where(.pds-scope) .pds-cta__actions .pds-button,
  :where(.pds-scope) .pds-cta__actions .elementor-button {
    width: 100%;
  }
}

@media (max-width: 30rem) {
  :root {
    --pds-gutter: 1rem;
    --pds-card-padding: 1.25rem;
  }

  :where(.pds-scope) .pds-cluster {
    align-items: stretch;
    flex-direction: column;
  }
}

/* ==========================================================================
   14 TEMPORARY LEGACY BRIDGE
   Remove after all productive Elementor pages use the PDS class system.
   ========================================================================== */

:where(.pds-scope) .section-container,
:where(.pds-scope) .section-inner,
:where(.pds-scope) .ffe-container {
  width: calc(100% - var(--pds-gutter) - var(--pds-gutter));
  max-width: var(--pds-container);
  margin-left: auto;
  margin-right: auto;
}

:where(.pds-scope) .section-content {
  width: 100%;
  max-width: var(--pds-content);
}

:where(.pds-scope) .section-content-narrow {
  width: 100%;
  max-width: var(--pds-content-narrow);
  margin-left: auto;
  margin-right: auto;
}

:where(.pds-scope) .section-content-wide {
  width: 100%;
  max-width: var(--pds-container);
  margin-left: auto;
  margin-right: auto;
}

:where(.pds-scope) .section-grid,
:where(.pds-scope) .section-grid-2,
:where(.pds-scope) .section-grid-3,
:where(.pds-scope) .section-grid-4 {
  display: grid;
  gap: var(--pds-grid-gap);
}

:where(.pds-scope) .section-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

:where(.pds-scope) .section-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

:where(.pds-scope) .section-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

:where(.pds-scope) .section-sticky {
  position: sticky;
  top: 6rem;
}

:where(.pds-scope) .section-body,
:where(.pds-scope) .section-soft,
:where(.pds-scope) .section-legal,
:where(.pds-scope) .section-contact,
:where(.pds-scope) .section-datenschutz,
:where(.pds-scope) .section-about,
:where(.pds-scope) .section-karriere,
:where(.pds-scope) .section-faq,
:where(.pds-scope) .section-testimonials,
:where(.pds-scope) .section-services,
:where(.pds-scope) .section-benefits,
:where(.pds-scope) .section-features,
:where(.pds-scope) .section-team,
:where(.pds-scope) .section-news,
:where(.pds-scope) .section-blog,
:where(.pds-scope) .section-posts,
:where(.pds-scope) .section-references,
:where(.pds-scope) .section-downloads,
:where(.pds-scope) .section-form {
  position: relative;
  width: 100%;
  padding-top: var(--pds-section-space);
  padding-bottom: var(--pds-section-space);
}

:where(.pds-scope) .section-soft {
  background: rgba(220, 231, 233, 0.32);
}

:where(.pds-scope) .section-hero {
  position: relative;
  width: 100%;
  padding-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
  color: var(--pds-cream);
  background:
    radial-gradient(
      circle at 82% 24%,
      rgba(0, 194, 209, 0.24),
      transparent 28%
    ),
    linear-gradient(
      115deg,
      var(--pds-primary) 0%,
      var(--pds-deep) 58%,
      var(--pds-structure) 135%
    );
}

:where(.pds-scope) .section-cta {
  position: relative;
  width: 100%;
  padding-top: var(--pds-section-compact);
  padding-bottom: var(--pds-section-compact);
  color: var(--pds-cream);
  background: var(--pds-primary);
}

:where(.pds-scope) .section-footer {
  color: rgba(255, 254, 250, 0.76);
  background: var(--pds-primary);
}

:where(.pds-scope) a.ffe-button,
:where(.pds-scope) button.ffe-button,
:where(.pds-scope) .ffe-button .elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--pds-radius-s);
  font-family: var(--pds-font-body);
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

:where(.pds-scope) a.ffe-button--primary,
:where(.pds-scope) button.ffe-button--primary,
:where(.pds-scope) .ffe-button--primary .elementor-button {
  color: var(--pds-primary);
  background: var(--pds-action);
  border-color: var(--pds-action);
}

:where(.pds-scope) .ffe-card,
:where(.pds-scope) .ffe-link-card {
  padding: var(--pds-card-padding);
  color: var(--pds-primary);
  background: var(--pds-cream);
  border: 1px solid var(--pds-divider);
  border-radius: var(--pds-radius-m);
  box-shadow: var(--pds-shadow-soft);
}

@media (max-width: 64rem) {
  :where(.pds-scope) .section-grid-3,
  :where(.pds-scope) .section-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  :where(.pds-scope) .section-sticky {
    position: static;
  }
}

@media (max-width: 47.9375rem) {
  :where(.pds-scope) .section-grid-2,
  :where(.pds-scope) .section-grid-3,
  :where(.pds-scope) .section-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* End PDS Core CSS v1.0.4 */

/* ==========================================================================
   14 ELEMENTOR HOMEPAGE INTEGRATION
   ========================================================================== */

:where(.pds-scope) > .e-con,
:where(.pds-scope) > .elementor-element {
  min-width: 0;
}

:where(.pds-scope) .pds-process {
  margin-top: var(--pds-space-7);
}

:where(.pds-scope) .pds-process__row {
  display: grid;
  grid-template-columns: 4rem minmax(12rem, 0.7fr) minmax(0, 1.3fr);
  gap: var(--pds-grid-gap);
  align-items: start;
  padding: var(--pds-space-5) 0;
  border-top: 1px solid var(--pds-divider);
}

:where(.pds-scope) .pds-process__index {
  color: var(--pds-structure);
  font-family: "Roboto Mono", monospace;
  font-size: var(--pds-small-size);
  font-weight: 700;
}

:where(.pds-scope) .pds-contact__panel {
  padding: var(--pds-card-padding);
  color: var(--pds-primary);
  background: var(--pds-cream);
  border-top: 0.25rem solid var(--pds-action);
  box-shadow: var(--pds-shadow-raised);
}

:where(.pds-scope) .pds-contact__panel h2,
:where(.pds-scope) .pds-contact__panel h3,
:where(.pds-scope) .pds-contact__panel p {
  color: var(--pds-primary);
}

:where(.pds-scope) .elementor-widget-text-editor > .elementor-widget-container > :last-child,
:where(.pds-scope) .elementor-widget-heading > .elementor-widget-container > :last-child {
  margin-bottom: 0;
}

:where(.pds-scope) .pds-section--muted {
  background: #F4F8F8;
  background: color-mix(in srgb, var(--pds-divider) 34%, var(--pds-cream));
}

:where(.pds-scope) .pds-variant {
  align-items: start;
}

:where(.pds-scope) .pds-variant__intro {
  position: sticky;
  top: calc(var(--pds-header-height) + var(--pds-space-5));
}

:where(.pds-scope) .pds-feature-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--pds-divider);
}

:where(.pds-scope) .pds-feature-list__item {
  display: grid;
  grid-template-columns: minmax(10rem, 0.72fr) minmax(0, 1.28fr);
  gap: var(--pds-grid-gap);
  padding: var(--pds-space-5) 0;
  border-bottom: 1px solid var(--pds-divider);
}

:where(.pds-scope) .pds-feature-list__item h3 {
  margin: 0;
  color: var(--pds-structure);
  font-size: 1.125rem;
}

:where(.pds-scope) .pds-feature-list__item p {
  margin: 0;
}

:where(.pds-scope) .pds-post-grid,
:where(.pds-scope) .elementor-posts-container,
:where(.pds-scope) .e-loop-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--pds-grid-gap);
}

:where(.pds-scope) .pds-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--pds-space-2);
  margin-top: var(--pds-space-5);
}

:where(.pds-scope) .pds-category-nav a {
  padding: 0.625rem 0.875rem;
  color: var(--pds-structure);
  background: #F4F8F8;
  border: 1px solid var(--pds-divider);
  border-radius: 999px;
  font-size: var(--pds-small-size);
  font-weight: 700;
  text-decoration: none;
}

:where(.pds-scope) .pds-category-nav a:hover,
:where(.pds-scope) .pds-category-nav a:focus-visible {
  color: var(--pds-primary);
  background: var(--pds-action);
  border-color: var(--pds-action);
}

:where(.pds-scope) .pds-section--content-nav {
  background:
    linear-gradient(135deg, rgba(0, 194, 209, 0.07), transparent 52%),
    #F4F8F8;
}

:where(.pds-scope) .pds-inside-nav {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(15rem, 0.7fr);
  gap: var(--pds-grid-gap);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: var(--pds-space-6);
  border-bottom: 1px solid var(--pds-divider);
}

:where(.pds-scope) .pds-inside-nav h2 {
  margin-bottom: var(--pds-space-4);
}

:where(.pds-scope) .pds-inside-nav__links {
  display: flex;
  flex-direction: column;
  border-top: 0.1875rem solid var(--pds-action);
}

:where(.pds-scope) .pds-inside-nav__links a,
:where(.pds-scope) .pds-article-toc a {
  position: relative;
  display: block;
  padding: 0.875rem 2.25rem 0.875rem 0;
  color: var(--pds-deep);
  border-bottom: 1px solid var(--pds-divider);
  font-family: var(--pds-font-heading);
  font-weight: 700;
  text-decoration: none;
}

:where(.pds-scope) .pds-inside-nav__links a::after {
  position: absolute;
  top: 50%;
  right: 0.25rem;
  color: var(--pds-action);
  content: "→";
  transform: translateY(-50%);
  transition: transform var(--pds-transition);
}

:where(.pds-scope) .pds-inside-nav__links a:hover,
:where(.pds-scope) .pds-inside-nav__links a:focus-visible,
:where(.pds-scope) .pds-article-toc a:hover,
:where(.pds-scope) .pds-article-toc a:focus-visible,
:where(.pds-scope) .pds-article-toc a[aria-current="page"] {
  color: var(--pds-structure);
}

:where(.pds-scope) .pds-inside-nav__links a:hover::after,
:where(.pds-scope) .pds-inside-nav__links a:focus-visible::after {
  transform: translate(0.25rem, -50%);
}

:where(.pds-scope) .pds-related-posts {
  align-items: stretch;
}

:where(.pds-scope) .pds-post-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

:where(.pds-scope) .pds-post-card h3 {
  margin-top: var(--pds-space-5);
}

:where(.pds-scope) .pds-post-card__link {
  margin-top: auto;
  padding-top: var(--pds-space-5);
  color: var(--pds-structure);
  font-size: var(--pds-small-size);
  font-weight: 800;
  letter-spacing: 0.03em;
}

:where(.pds-scope) .pds-article-hero {
  padding: clamp(8.5rem, 13vw, 12rem) var(--pds-gutter) clamp(4.5rem, 8vw, 7rem);
  color: var(--pds-cream);
  background:
    radial-gradient(circle at 78% 24%, rgba(0, 194, 209, 0.2), transparent 28%),
    linear-gradient(135deg, var(--pds-primary), var(--pds-deep));
}

:where(.pds-scope) .pds-article-hero h1,
:where(.pds-scope) .pds-article-hero .pds-lead {
  color: var(--pds-cream);
}

:where(.pds-scope) .pds-template-notice {
  max-width: 45rem;
  margin-top: var(--pds-space-6);
  padding: var(--pds-space-4) var(--pds-space-5);
  color: var(--pds-cream);
  background: rgba(255, 254, 250, 0.08);
  border-left: 0.1875rem solid var(--pds-action);
}

:where(.pds-scope) .pds-article-layout {
  display: grid;
  grid-template-columns: minmax(14rem, 0.55fr) minmax(0, 1.6fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

:where(.pds-scope) .pds-article-toc {
  position: sticky;
  top: calc(var(--pds-header-height) + var(--pds-space-5));
  display: flex;
  flex-direction: column;
  padding-top: var(--pds-space-4);
  border-top: 0.1875rem solid var(--pds-action);
}

:where(.pds-scope) .pds-article-toc a[aria-current="page"]::before {
  margin-right: 0.5rem;
  color: var(--pds-action);
  content: "—";
}

:where(.pds-scope) .pds-article-content > section + section {
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-top: var(--pds-space-6);
  border-top: 1px solid var(--pds-divider);
}

/*
 * Elementor Pro motion compatibility
 * These rules only normalize the widget box. Playback, trigger, speed,
 * renderer, loop and viewport behavior remain controlled by Elementor.
 */
:where(.pds-scope) .elementor-widget-lottie,
:where(.pds-scope) .e-lottie__container,
:where(.pds-scope) .e-lottie__animation {
  min-width: 0;
  max-width: 100%;
}

:where(.pds-scope) .e-lottie__animation {
  line-height: 0;
}

:where(.pds-scope) .e-lottie__animation svg,
:where(.pds-scope) .e-lottie__animation canvas {
  display: block;
  max-width: 100%;
}

:where(.pds-scope) .pds-motion-overflow {
  overflow: visible;
}

:where(.pds-scope) .pds-motion-isolate {
  position: relative;
  isolation: isolate;
}

:where(.pds-scope) .pds-regional-hero {
  position: relative;
  z-index: 1;
  align-items: center;
}

:where(.pds-scope) .pds-proof-grid {
  margin-top: var(--pds-space-6);
}

:where(.pds-scope) .pds-proof-card {
  border-top: 0.25rem solid var(--pds-action);
}

:where(.pds-scope) .pds-proof-card__value {
  margin-bottom: var(--pds-space-3);
  color: var(--pds-structure);
  font-family: var(--pds-font-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
}

:where(.pds-scope) .pds-list--large .elementor-icon-list-item {
  padding: var(--pds-space-3) 0;
  border-bottom: 1px solid var(--pds-divider);
}

:where(.pds-scope) .pds-post-card,
:where(.pds-scope) .elementor-post,
:where(.pds-scope) .e-loop-item {
  min-width: 0;
  overflow: hidden;
  color: var(--pds-primary);
  background: var(--pds-cream);
  border: 1px solid var(--pds-divider);
  border-radius: var(--pds-radius-m);
  box-shadow: var(--pds-shadow-soft);
}

:where(.pds-scope) .pds-post-card__content,
:where(.pds-scope) .elementor-post__text {
  padding: var(--pds-card-padding);
}

:where(.pds-scope) .pds-post-card__meta,
:where(.pds-scope) .elementor-post__meta-data {
  color: var(--pds-muted);
  font-size: var(--pds-small-size);
}

:where(.pds-scope) .pds-pagination,
:where(.pds-scope) .elementor-pagination,
:where(.pds-scope) .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--pds-space-2);
  margin-top: var(--pds-space-7);
}

:where(.pds-scope) .page-numbers {
  display: inline-grid;
  min-width: 2.75rem;
  min-height: 2.75rem;
  place-items: center;
  border: 1px solid var(--pds-divider);
  border-radius: var(--pds-radius-s);
  text-decoration: none;
}

:where(.pds-scope) .page-numbers.current,
:where(.pds-scope) .page-numbers:hover {
  color: var(--pds-primary);
  background: var(--pds-action);
  border-color: var(--pds-action);
}

:where(.pds-scope) .alignwide {
  width: min(calc(100vw - (2 * var(--pds-gutter))), var(--pds-container));
  max-width: var(--pds-container);
  margin-right: auto;
  margin-left: auto;
}

:where(.pds-scope) .alignfull {
  width: 100%;
  max-width: none;
}

@media (max-width: 47.9375rem) {
  :where(.pds-scope) .pds-inside-nav,
  :where(.pds-scope) .pds-article-layout {
    grid-template-columns: 1fr;
  }

  :where(.pds-scope) .pds-article-toc {
    position: static;
  }

  :where(.pds-scope) .pds-post-grid,
  :where(.pds-scope) .elementor-posts-container,
  :where(.pds-scope) .e-loop-layout {
    grid-template-columns: 1fr;
  }

  :where(.pds-scope) .pds-process__row {
    grid-template-columns: 2.5rem minmax(0, 1fr);
  }

  :where(.pds-scope) .pds-process__row > :last-child {
    grid-column: 2;
  }
}

/* End PDS Core CSS v1.8.6 — Energy Sales Hero, Individual Desktop Heroes & Elementor Safe */
