:root{
  --wstd-bg: #f6f7f8;
  --wstd-card: rgba(255,255,255,0.92);
  --wstd-border: rgba(17,24,39,0.08);
  --wstd-border-strong: rgba(17,24,39,0.12);
  --wstd-shadow: 0 18px 48px rgba(15,23,42,0.08);
  --wstd-shadow-soft: 0 8px 24px rgba(15,23,42,0.06);
  --wstd-text: #17202a;
  --wstd-muted: #5f6b76;
  --wstd-teal: #00A5B1;
  --wstd-radius: 24px;
  --wstd-radius-sm: 18px;
  --wstd-gap: 24px;
  --wstd-shell-max: 1440px;
  --wstd-shell-pad-x: 32px;
  --wstd-shell-pad-y: 32px;
  --wstd-shell-radius-lg: 30px;
  --wstd-shadow-shell: 0 18px 48px rgba(15,23,42,0.08);
  --wstd-shadow-shell-soft: 0 8px 24px rgba(15,23,42,0.06);
  --wh-expand: 0;

}

body {
	line-height: 1.5;
}


.zindex50 {
	z-index: 50;
}


/* set max 1440 width ============================================ */
.max1440{
  --pix-container-width: 1440px;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* override theme container widths */
.max1440,
.max1440 .wpb_wrapper,
.max1440 .vc_column-inner{
	
  max-width: 1440px;
  width: 100%;
}

/* breathing room */
.max1440-pad{
  width: min(100% - 40px, 1440px);
  margin-left: auto;
  margin-right: auto;
}

/* tablet */
@media (max-width: 991px){
  .max1440-pad{
    width: min(100% - 32px, 1440px);
  }
}

/* mobile */
@media (max-width: 640px){
  .max1440-pad{
    width: min(100% - 20px, 1440px);
  }
}


/* set max 1100 width ============================================ */
.max1100{
  --pix-container-width: 1100px;
  width: 100%;
  max-width: 1100px;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

/* override theme container widths */
.max1100,
.max1100 .wpb_wrapper,
.max1100 .vc_column-inner{
	
  max-width: 1100px;
  width: 100%;
}

/* breathing room */
.max1100-pad{
  width: min(100% - 40px, 1100px);
  margin-left: auto;
  margin-right: auto;
}

/* tablet */
@media (max-width: 991px){
  .max1100-pad{
    width: min(100% - 32px, 1100px);
  }
}

/* mobile */
@media (max-width: 640px){
  .max1100-pad{
    width: min(100% - 20px, 1100px);
  }
}

/* =========================================================
Walker deep navy gradiant background8
*/
.walker-bg-deep-system{
  position:relative;
  isolation:isolate;
  background:
    radial-gradient(circle at 18% 18%, rgba(47,120,126,.32), transparent 34%),
    radial-gradient(circle at 82% 14%, rgba(183,163,106,.16), transparent 32%),
    linear-gradient(135deg,#0f1b22 0%, #15242b 48%, #0c1419 100%) !important;
  overflow:hidden;
}

.walker-bg-deep-system::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:
    linear-gradient(115deg,rgba(255,255,255,.08),transparent 34%),
    radial-gradient(circle at 50% 120%,rgba(255,255,255,.08),transparent 34%);
  opacity:.72;
}

.walker-bg-deep-system > *{
  position:relative;
  z-index:1;
}

/* =========================================================
   WALKER UI PRIMITIVES
   Shared design-system styles for reusable custom elements
   ========================================================= */

:root {
  /* Brand colors */
  --walker-ui-navy: #123247;
  --walker-ui-teal: #0f7f83;
  --walker-ui-teal-dark: #0b666a;
  --walker-ui-gold: #b7a36a;
  --walker-ui-ink: #17313f;
  --walker-ui-body: #4f6470;

  /* Surfaces */
  --walker-ui-white: #ffffff;
  --walker-ui-soft-teal: rgba(15, 127, 131, 0.07);
  --walker-ui-border: rgba(18, 50, 71, 0.14);
  --walker-ui-border-strong: rgba(18, 50, 71, 0.22);
  --walker-ui-shadow: 0 18px 45px rgba(17, 49, 66, 0.1);
  --walker-ui-shadow-hover: 0 20px 50px rgba(17, 49, 66, 0.14);

  /* Layout */
  --walker-ui-container-wide: 1320px;
  --walker-ui-container-standard: 1180px;
  --walker-ui-container-narrow: 820px;

  /* Shape */
  --walker-ui-radius-panel: 24px;
  --walker-ui-radius-card: 18px;
  --walker-ui-radius-button: 999px;

  /* Motion */
  --walker-ui-transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;

  /* In-page anchor offset for sticky navigation */
  --walker-ui-anchor-offset: 120px;
}


/* =========================================================
   CORE LAYOUT
   ========================================================= */

.walker-ui-section {
  padding-block: clamp(56px, 7vw, 96px);
}

.walker-ui-section--compact {
  padding-block: clamp(36px, 5vw, 64px);
}

.walker-ui-section--flush-top {
  padding-top: 0;
}

.walker-ui-section--flush-bottom {
  padding-bottom: 0;
}

.walker-ui-container {
  width: min(calc(100% - 40px), var(--walker-ui-container-standard));
  margin-inline: auto;
}

.walker-ui-container--wide {
  width: min(calc(100% - 40px), var(--walker-ui-container-wide));
  margin-inline: auto;
}

.walker-ui-container--narrow {
  width: min(calc(100% - 40px), var(--walker-ui-container-narrow));
  margin-inline: auto;
}

.walker-ui-anchor {
  scroll-margin-top: var(--walker-ui-anchor-offset);
}


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

.walker-ui-eyebrow {
  color: var(--walker-ui-teal);
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.walker-ui-heading {
  color: var(--walker-ui-navy);
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0;
}
.walker-ui-container--wide .h1:not(.elementor-heading-title),
.walker-ui-container--wide .h2:not(.elementor-heading-title),
.walker-ui-container--wide .h3:not(.elementor-heading-title),
.walker-ui-container--wide .h4:not(.elementor-heading-title),
.walker-ui-container--wide .h5:not(.elementor-heading-title),
.walker-ui-container--wide .h6:not(.elementor-heading-title),
.walker-ui-container--wide h1:not(.elementor-heading-title),
.walker-ui-container--wide h2:not(.elementor-heading-title),
.walker-ui-container--wide h3:not(.elementor-heading-title),
.walker-ui-container--wide h4:not(.elementor-heading-title),
.walker-ui-container--wide h5:not(.elementor-heading-title),
.walker-ui-container--wide h6:not(.elementor-heading-title) {

    color: var(--walker-ui-navy);

}



.walker-ui-heading--xl {
  font-size: clamp(34px, 4vw, 56px);
}

.walker-ui-heading--lg {
  font-size: clamp(28px, 3vw, 44px);
}

.walker-ui-heading--md {
  font-size: clamp(23px, 2.2vw, 32px);
}

.walker-ui-heading--sm {
  font-size: clamp(19px, 1.8vw, 24px);
}

.walker-ui-copy {
  color: var(--walker-ui-body);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.walker-ui-copy--lead {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.72;
}

.walker-ui-copy--small {
  font-size: 14px;
  line-height: 1.65;
}

.walker-ui-copy--measure {
  max-width: var(--walker-ui-container-narrow);
}

.walker-ui-intro {
  margin-top: 14px;
}

.walker-ui-intro > * + * {
  margin-top: 14px;
}


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

.walker-ui-btn {
  align-items: center;
  background: var(--walker-ui-teal);
  border: 1px solid var(--walker-ui-teal);
  border-radius: var(--walker-ui-radius-button);
  color: var(--walker-ui-white) !important;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  letter-spacing: 0.04em;
  line-height: 1.2;
  padding: 13px 18px;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: var(--walker-ui-transition);
}

.walker-ui-btn:hover {
  background: var(--walker-ui-teal-dark);
  border-color: var(--walker-ui-teal-dark);
  color: var(--walker-ui-white) !important;
  transform: translateY(-2px);
}

.walker-ui-btn:focus-visible {
  outline: 3px solid rgba(15, 127, 131, 0.3);
  outline-offset: 3px;
}

.walker-ui-btn--outline {
  background: transparent;
  border-color: var(--walker-ui-teal);
  color: var(--walker-ui-teal) !important;
}

.walker-ui-btn--outline:hover {
  background: var(--walker-ui-teal);
  border-color: var(--walker-ui-teal);
  color: var(--walker-ui-white) !important;
}

.walker-ui-btn--light {
  background: var(--walker-ui-white);
  border-color: var(--walker-ui-white);
  color: var(--walker-ui-navy) !important;
}

.walker-ui-btn--light:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--walker-ui-navy) !important;
}

.walker-ui-btn__arrow {
  display: inline-block;
  transition: transform 180ms ease;
}

.walker-ui-btn:hover .walker-ui-btn__arrow {
  transform: translateX(3px);
}


/* =========================================================
   SURFACES, PANELS, AND CARDS
   ========================================================= */

.walker-ui-surface {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--walker-ui-border);
  border-radius: var(--walker-ui-radius-panel);
  box-shadow: var(--walker-ui-shadow);
}

.walker-ui-panel {
  padding: clamp(22px, 3vw, 30px);
}

.walker-ui-card {
  border-radius: var(--walker-ui-radius-card);
  padding: 22px;
}

.walker-ui-card--lift {
  transition: var(--walker-ui-transition);
}

.walker-ui-card--lift:hover {
  border-color: rgba(15, 127, 131, 0.56);
  box-shadow: var(--walker-ui-shadow-hover);
  transform: translateY(-4px);
}

.walker-ui-card-topline {
  background: var(--walker-ui-gold);
  height: 4px;
}

.walker-ui-card-topline--teal {
  background: var(--walker-ui-teal);
}


/* =========================================================
   DIVIDERS AND LISTS
   ========================================================= */

.walker-ui-divider {
  border: 0;
  border-top: 1px dotted var(--walker-ui-border-strong);
  margin: 20px 0;
}

.walker-ui-list {
  color: var(--walker-ui-body);
  margin: 0;
  padding-left: 18px;
}

.walker-ui-list li {
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 6px;
}

.walker-ui-list li:last-child {
  margin-bottom: 0;
}


/* =========================================================
   OPTIONAL DARK-SECTION OVERRIDES
   Add .walker-ui-theme--dark to a containing section
   ========================================================= */

.walker-ui-theme--dark {
  --walker-ui-ink: #ffffff;
  --walker-ui-body: rgba(255, 255, 255, 0.78);
  --walker-ui-border: rgba(255, 255, 255, 0.18);
  --walker-ui-border-strong: rgba(255, 255, 255, 0.26);
}

.walker-ui-theme--dark .walker-ui-eyebrow {
  color: var(--walker-ui-gold);
}

.walker-ui-theme--dark .walker-ui-heading {
  color: #ffffff;
}

.walker-ui-theme--dark .walker-ui-copy,
.walker-ui-theme--dark .walker-ui-list {
  color: rgba(255, 255, 255, 0.78);
}

.walker-ui-theme--dark .walker-ui-surface {
  background: rgba(10, 36, 50, 0.88);
  border-color: rgba(255, 255, 255, 0.16);
}


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

@media (prefers-reduced-motion: reduce) {
  .walker-ui-btn,
  .walker-ui-btn__arrow,
  .walker-ui-card--lift {
    transition: none;
  }

  .walker-ui-btn:hover,
  .walker-ui-card--lift:hover {
    transform: none;
  }
}

@media (max-width: 680px) {
  .walker-ui-container,
  .walker-ui-container--wide,
  .walker-ui-container--narrow {
    width: min(calc(100% - 28px), var(--walker-ui-container-standard));
  }
}
/* =========================================================
   Walker Gravity Forms
   Dark + Light variants
   Form classes:
   - formondark
   - formonlight

   Wrapper classes Gravity Forms outputs:
   - .formondark_wrapper
   - .formonlight_wrapper
========================================================= */

.gform_wrapper.formondark_wrapper,
.gform_wrapper.formonlight_wrapper {
  --walker-teal: #24949b;
  --walker-teal-dark: #1d747a;
  --walker-gold: #b7a36a;
  --walker-ink: #26302f;

  width: min(100%, 1440px);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 52px);
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  font-family: "Helvetica Neue", Arial, sans-serif;

  --gf-color-primary: var(--walker-teal) !important;
  --gf-color-primary-darker: var(--walker-teal-dark) !important;
  --gf-radius: 14px !important;
}

/* Optional contained edge. Remove if WPBakery glass panel already frames it. */
.gform_wrapper.formondark_wrapper {
  border: 1px solid rgba(255, 255, 255, 0.10) !important;

  --form-title: #35aeb7;
  --form-label: rgba(248, 245, 238, 0.92);
  --form-sublabel: rgba(248, 245, 238, 0.58);
  --form-muted: rgba(248, 245, 238, 0.62);

  --field-bg: rgba(255, 255, 255, 0.075);
  --field-bg-hover: rgba(255, 255, 255, 0.105);
  --field-text: #f7f3eb;
  --field-border: rgba(255, 255, 255, 0.18);
  --field-border-focus: rgba(53, 174, 183, 0.75);
  --field-placeholder: rgba(247, 243, 235, 0.42);
  --field-focus-glow: rgba(53, 174, 183, 0.16);
}

.gform_wrapper.formonlight_wrapper {
  border: 1px solid rgba(38, 48, 47, 0.12) !important;

  --form-title: #1f8f97;
  --form-label: rgba(38, 48, 47, 0.92);
  --form-sublabel: rgba(38, 48, 47, 0.56);
  --form-muted: rgba(38, 48, 47, 0.62);

  --field-bg: rgba(255, 255, 255, 0.68);
  --field-bg-hover: rgba(255, 255, 255, 0.92);
  --field-text: #26302f;
  --field-border: rgba(38, 48, 47, 0.16);
  --field-border-focus: rgba(36, 148, 155, 0.70);
  --field-placeholder: rgba(38, 48, 47, 0.42);
  --field-focus-glow: rgba(36, 148, 155, 0.13);
}

/* Heading */
.gform_wrapper.formondark_wrapper .gform_heading,
.gform_wrapper.formonlight_wrapper .gform_heading {
  margin: 0 0 44px 0 !important;
}

.gform_wrapper.formondark_wrapper .gform_title,
.gform_wrapper.formonlight_wrapper .gform_title {
  margin: 0 !important;
  color: var(--form-title) !important;
  font-size: clamp(32px, 4vw, 46px) !important;
  line-height: 1.05 !important;
  font-weight: 300 !important;
  letter-spacing: 0.14em !important;
}

.gform_wrapper.formondark_wrapper .gform_title::after,
.gform_wrapper.formonlight_wrapper .gform_title::after {
  content: "";
  display: block;
  width: 76px;
  height: 2px;
  margin-top: 20px;
  background: var(--walker-gold);
}

/* Field stack */
.gform_wrapper.formondark_wrapper .gform_fields.left_label,
.gform_wrapper.formonlight_wrapper .gform_fields.left_label {
  display: flex !important;
  flex-direction: column;
  gap: 34px !important;
}

.gform_wrapper.formondark_wrapper .gfield,
.gform_wrapper.formonlight_wrapper .gfield {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

/* Desktop left-label grid */
.gform_wrapper.formondark_wrapper .gform_fields.left_label .gfield:not(.gfield--type-honeypot):not(.gfield--type-captcha),
.gform_wrapper.formonlight_wrapper .gform_fields.left_label .gfield:not(.gfield--type-honeypot):not(.gfield--type-captcha) {
  display: grid !important;
  grid-template-columns: 170px minmax(0, 1fr);
  column-gap: 34px;
  align-items: start;
}

/* Main field labels: Name, Email, Address, Message */
.gform_wrapper.formondark_wrapper .gfield_label,
.gform_wrapper.formondark_wrapper .gform-field-label,
.gform_wrapper.formonlight_wrapper .gfield_label,
.gform_wrapper.formonlight_wrapper .gform-field-label {
  color: var(--form-label) !important;
}

.gform_wrapper.formondark_wrapper .gfield_label,
.gform_wrapper.formonlight_wrapper .gfield_label {
  margin: 0 !important;
  padding-bottom: 20px !important;
  font-size: 20px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
}

/* Required marker */
.gform_wrapper.formondark_wrapper .gfield_required,
.gform_wrapper.formonlight_wrapper .gfield_required {
  display: inline-block !important;
  margin-left: 8px !important;
  color: var(--walker-gold) !important;
  font-size: 9px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.11em !important;
  text-transform: uppercase;
  vertical-align: 1px;
}

/* Put inputs/descriptions in right column */
.gform_wrapper.formondark_wrapper .ginput_container,
.gform_wrapper.formondark_wrapper .ginput_complex,
.gform_wrapper.formondark_wrapper .gfield_description,
.gform_wrapper.formondark_wrapper .validation_message,
.gform_wrapper.formonlight_wrapper .ginput_container,
.gform_wrapper.formonlight_wrapper .ginput_complex,
.gform_wrapper.formonlight_wrapper .gfield_description,
.gform_wrapper.formonlight_wrapper .validation_message {
  grid-column: 2;
}

/* Complex rows: first/last, email/confirm, city/state */
.gform_wrapper.formondark_wrapper .ginput_complex.gform-grid-row,
.gform_wrapper.formonlight_wrapper .ginput_complex.gform-grid-row {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px !important;
  margin-top: 0 !important;
}

.gform_wrapper.formondark_wrapper .ginput_complex > span,
.gform_wrapper.formonlight_wrapper .ginput_complex > span {
  width: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Sub-labels: FIRST, LAST, ENTER EMAIL, etc. */
.gform_wrapper.formondark_wrapper .gform-field-label--type-sub,
.gform_wrapper.formonlight_wrapper .gform-field-label--type-sub {
  display: block !important;
  margin: 0 0 9px 0 !important;
  padding: 0 !important;
  color: var(--form-sublabel) !important;
  font-size: 10px !important;
  line-height: 1.1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.13em !important;
  text-transform: uppercase;
}

/* Fix label/input spacing for non-complex fields */
.gform_wrapper.formondark_wrapper .ginput_container:not(.ginput_complex),
.gform_wrapper.formonlight_wrapper .ginput_container:not(.ginput_complex) {
  margin-top: 0 !important;
}

/* Inputs */
.gform_wrapper.formondark_wrapper input[type="text"],
.gform_wrapper.formondark_wrapper input[type="email"],
.gform_wrapper.formondark_wrapper input[type="tel"],
.gform_wrapper.formondark_wrapper input[type="url"],
.gform_wrapper.formondark_wrapper input[type="number"],
.gform_wrapper.formondark_wrapper select,
.gform_wrapper.formondark_wrapper textarea,
.gform_wrapper.formonlight_wrapper input[type="text"],
.gform_wrapper.formonlight_wrapper input[type="email"],
.gform_wrapper.formonlight_wrapper input[type="tel"],
.gform_wrapper.formonlight_wrapper input[type="url"],
.gform_wrapper.formonlight_wrapper input[type="number"],
.gform_wrapper.formonlight_wrapper select,
.gform_wrapper.formonlight_wrapper textarea {
  width: 100% !important;
  min-height: 50px !important;
  padding: 14px 16px !important;
  background: var(--field-bg) !important;
  color: var(--field-text) !important;
  border: 1px solid var(--field-border) !important;
  border-radius: 14px !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 28px rgba(0, 0, 0, 0.06) !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.gform_wrapper.formondark_wrapper input[type="text"],
.gform_wrapper.formondark_wrapper input[type="email"],
.gform_wrapper.formondark_wrapper input[type="tel"],
.gform_wrapper.formondark_wrapper input[type="url"],
.gform_wrapper.formondark_wrapper input[type="number"],
.gform_wrapper.formondark_wrapper select,
.gform_wrapper.formondark_wrapper textarea {
  backdrop-filter: blur(10px);
}

.gform_wrapper.formondark_wrapper textarea,
.gform_wrapper.formonlight_wrapper textarea {
  min-height: 210px !important;
  border-radius: 18px !important;
  resize: vertical;
}

/* Hover */
.gform_wrapper.formondark_wrapper input:hover,
.gform_wrapper.formondark_wrapper select:hover,
.gform_wrapper.formondark_wrapper textarea:hover,
.gform_wrapper.formonlight_wrapper input:hover,
.gform_wrapper.formonlight_wrapper select:hover,
.gform_wrapper.formonlight_wrapper textarea:hover {
  background: var(--field-bg-hover) !important;
}

/* Focus */
.gform_wrapper.formondark_wrapper input:focus,
.gform_wrapper.formondark_wrapper select:focus,
.gform_wrapper.formondark_wrapper textarea:focus,
.gform_wrapper.formonlight_wrapper input:focus,
.gform_wrapper.formonlight_wrapper select:focus,
.gform_wrapper.formonlight_wrapper textarea:focus {
  outline: none !important;
  background: var(--field-bg-hover) !important;
  border-color: var(--field-border-focus) !important;
  box-shadow:
    0 0 0 4px var(--field-focus-glow),
    0 14px 34px rgba(0, 0, 0, 0.10) !important;
  transform: translateY(-1px);
}

.gform_wrapper.formondark_wrapper ::placeholder,
.gform_wrapper.formonlight_wrapper ::placeholder {
  color: var(--field-placeholder) !important;
  opacity: 1;
}

/* Description/helper text */
.gform_wrapper.formondark_wrapper .gfield_description,
.gform_wrapper.formondark_wrapper .ginput_counter,
.gform_wrapper.formonlight_wrapper .gfield_description,
.gform_wrapper.formonlight_wrapper .ginput_counter {
  margin-top: 12px !important;
  max-width: 640px;
  color: var(--form-muted) !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
}

.gform_wrapper.formondark_wrapper .ginput_counter,
.gform_wrapper.formonlight_wrapper .ginput_counter {
  margin-top: 8px !important;
  font-size: 12px !important;
}

/* Submit area */
.gform_wrapper.formondark_wrapper .gform_footer.left_label,
.gform_wrapper.formonlight_wrapper .gform_footer.left_label {
  margin: 36px 0 0 0 !important;
  padding: 0 0 0 204px !important;
}

.gform_wrapper.formondark_wrapper input[type="submit"].gform_button,
.gform_wrapper.formonlight_wrapper input[type="submit"].gform_button {
  appearance: none;
  min-height: 48px !important;
  padding: 0 32px !important;
  background: var(--walker-teal) !important;
  color: #ffffff !important;
  border: 1px solid var(--walker-teal) !important;
  border-radius: 999px !important;
  box-shadow: 0 14px 34px rgba(36, 148, 155, 0.22) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.gform_wrapper.formondark_wrapper input[type="submit"].gform_button:hover,
.gform_wrapper.formonlight_wrapper input[type="submit"].gform_button:hover {
  background: var(--walker-teal-dark) !important;
  border-color: var(--walker-teal-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(36, 148, 155, 0.30) !important;
}

/* Hide invisible CAPTCHA label/space */
.gform_wrapper.formondark_wrapper .gfield--type-captcha,
.gform_wrapper.formonlight_wrapper .gfield--type-captcha {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}

.gform_wrapper.formondark_wrapper .gfield--type-captcha .gfield_label,
.gform_wrapper.formonlight_wrapper .gfield--type-captcha .gfield_label {
  display: none !important;
}

/* Honeypot */
.gform_wrapper.formondark_wrapper .gform_validation_container,
.gform_wrapper.formonlight_wrapper .gform_validation_container {
  display: none !important;
}

/* Validation */
.gform_wrapper.formondark_wrapper .gfield_error input,
.gform_wrapper.formondark_wrapper .gfield_error select,
.gform_wrapper.formondark_wrapper .gfield_error textarea,
.gform_wrapper.formonlight_wrapper .gfield_error input,
.gform_wrapper.formonlight_wrapper .gfield_error select,
.gform_wrapper.formonlight_wrapper .gfield_error textarea {
  border-color: #d96d5f !important;
  box-shadow: 0 0 0 4px rgba(217, 109, 95, 0.16) !important;
}

.gform_wrapper.formondark_wrapper .validation_message,
.gform_wrapper.formonlight_wrapper .validation_message {
  color: #d96d5f !important;
  font-size: 12px !important;
  font-weight: 800 !important;
}

/* Mobile */
@media (max-width: 780px) {
  .gform_wrapper.formondark_wrapper,
  .gform_wrapper.formonlight_wrapper {
    padding: 30px 22px !important;
  }

  .gform_wrapper.formondark_wrapper .gform_title,
  .gform_wrapper.formonlight_wrapper .gform_title {
    letter-spacing: 0.08em !important;
  }

  .gform_wrapper.formondark_wrapper .gform_fields.left_label .gfield:not(.gfield--type-honeypot):not(.gfield--type-captcha),
  .gform_wrapper.formonlight_wrapper .gform_fields.left_label .gfield:not(.gfield--type-honeypot):not(.gfield--type-captcha) {
    display: block !important;
  }

  .gform_wrapper.formondark_wrapper .gfield_label,
  .gform_wrapper.formonlight_wrapper .gfield_label {
    display: block !important;
    margin-bottom: 12px !important;
    padding-top: 0 !important;
  }

  .gform_wrapper.formondark_wrapper .ginput_container,
  .gform_wrapper.formondark_wrapper .ginput_complex,
  .gform_wrapper.formondark_wrapper .gfield_description,
  .gform_wrapper.formondark_wrapper .validation_message,
  .gform_wrapper.formonlight_wrapper .ginput_container,
  .gform_wrapper.formonlight_wrapper .ginput_complex,
  .gform_wrapper.formonlight_wrapper .gfield_description,
  .gform_wrapper.formonlight_wrapper .validation_message {
    grid-column: auto;
  }

  .gform_wrapper.formondark_wrapper .ginput_complex.gform-grid-row,
  .gform_wrapper.formonlight_wrapper .ginput_complex.gform-grid-row {
    grid-template-columns: 1fr;
    gap: 18px !important;
  }

  .gform_wrapper.formondark_wrapper .gform_footer.left_label,
  .gform_wrapper.formonlight_wrapper .gform_footer.left_label {
    padding-left: 0 !important;
  }

  .gform_wrapper.formondark_wrapper input[type="submit"].gform_button,
  .gform_wrapper.formonlight_wrapper input[type="submit"].gform_button {
    width: 100% !important;
  }
}

/* =========================================
   WALKER FAQs
========================================= */
.walker-faqs {
				padding: 72px 24px 96px;
				background: #fff;
			}
			.walker-faqs__inner {
				max-width: 1100px;
				margin: 0 auto;
			}
			.walker-faqs__header {
				margin-bottom: 28px;
			}
			.walker-faqs__eyebrow {
				margin: 0 0 10px;
				font-size: 12px;
				font-weight: 600;
				letter-spacing: 0.12em;
				text-transform: uppercase;
				color: #00a5b1;
			}
			.walker-faqs__title {
				margin: 0;
				font-size: clamp(2rem, 3vw, 3rem);
				line-height: 1.05;
				color: #111111;
				padding-bottom: 10px;
			}
			.walker-faqs__list {
				display: grid;
				gap: 14px;
			}
			.walker-faqs__item {
				background: rgba(255,255,255,0.92);
				border: 1px solid rgba(17,17,17,0.10);
				border-radius: 18px;
				box-shadow: 0 10px 30px rgba(17,17,17,0.06);
				overflow: hidden;
			}
			.walker-faqs__question {
				list-style: none;
				cursor: pointer;
				padding: 22px 60px 22px 24px;
				position: relative;
				font-size: 1.05rem;
				font-weight: 600;
				line-height: 1.35;
				color: #333333;
			}
			.walker-faqs__question::-webkit-details-marker {
				display: none;
			}
			.walker-faqs__question::after {
				content: "+";
				position: absolute;
				right: 22px;
				top: 50%;
				transform: translateY(-50%);
				font-size: 1.5rem;
				line-height: 1;
				font-weight: 400;
				color: #00a5b1;
			}
			.walker-faqs__item[open] .walker-faqs__question::after {
				content: "−";
			}
			.walker-faqs__answer {
				padding: 0 24px 24px;
				color: #2b2b2b;
				font-size: 1rem;
				line-height: 1.7;
			}
			.walker-faqs__answer > *:first-child {
				margin-top: 0;
			}
			.walker-faqs__answer > *:last-child {
				margin-bottom: 0;
			}
			.walker-faqs__answer a {
				color: #00a5b1;
				text-decoration: underline;
				text-underline-offset: 2px;
			}
			@media (max-width: 767px) {
				.walker-faqs {
					padding: 56px 20px 72px;
				}
				.walker-faqs__question {
					padding: 18px 52px 18px 18px;
					font-size: 1rem;
				}
				.walker-faqs__answer {
					padding: 0 18px 18px;
				}
			}





/* =========================================
   WALKER STANDARD PANELS
   Works on normal elements and WPBakery rows
   use wstd-panel wstd-panel--elevated wstd-panel--spacious
   to re-create the white shadowed panel look
========================================= */

.wstd-panel{
  border-radius: var(--wstd-shell-radius-lg, 30px);
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.96));
  border: 1px solid var(--wstd-border);
  box-shadow: var(--wstd-shadow-shell-soft, 0 8px 24px rgba(15,23,42,0.06));
  padding: var(--wstd-shell-pad-y, 32px) var(--wstd-shell-pad-x, 32px);
}

/* When applied to WPBakery row */
.vc_row.wstd-panel{
  margin-left: 0 ;
  margin-right: 0 ;
  overflow: hidden;
}

/* Kill WPBakery's default row fill/background interference */
.vc_row.wstd-panel.vc_row-has-fill{
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.96)) !important;
}

/* Let the row shell own the padding, not the columns */
.vc_row.wstd-panel > .wpb_column{
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Remove inner column chrome when panel is on the row */
.vc_row.wstd-panel > .wpb_column > .vc_column-inner{
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

/* Give the actual content area the breathing room */
.vc_row.wstd-panel > .wpb_column > .vc_column-inner > .wpb_wrapper{
  padding: var(--wstd-shell-pad-y, 32px) var(--wstd-shell-pad-x, 32px);
}

/* Elevated version */
.wstd-panel--elevated{
  box-shadow: var(--wstd-shadow-shell, 0 18px 48px rgba(15,23,42,0.08));
}

/* Glass version */
.wstd-panel--glass{
  background: rgba(255,255,255,0.78) !important;
  border: 1px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 26px 60px rgba(15,23,42,0.14);
}

/* Spacing modifiers */
.wstd-panel--tight{
  padding: 24px;
}

.vc_row.wstd-panel--tight > .wpb_column > .vc_column-inner > .wpb_wrapper{
  padding: 24px;
}

.wstd-panel--spacious{
  padding: 40px;
}

.vc_row.wstd-panel--spacious > .wpb_column > .vc_column-inner > .wpb_wrapper{
  padding: 40px;
}

@media (max-width: 860px){
  .wstd-panel{
    padding: 24px;
    border-radius: 24px;
  }

  .vc_row.wstd-panel > .wpb_column > .vc_column-inner > .wpb_wrapper{
    padding: 24px;
  }
}

@media (max-width: 700px){
  .wstd-panel{
    padding: 18px;
    border-radius: 20px;
  }

  .vc_row.wstd-panel > .wpb_column > .vc_column-inner > .wpb_wrapper{
    padding: 18px;
  }
}
.walker-project-meta-block--people .wkpe-wrap{
  margin: 0;
}

.walker-project-meta-block--people .wkpe-track{
  margin: 0;
  padding: 0;
}

.walker-project-meta-block--people .wkpe-panel-person + .wkpe-panel-person{
  padding-top: 2px;
}














/* =========================================
   WALKER STANDARD SHELL
========================================= */
#page {
	background-color: #F0EFEF;
}
.wstd-shell{
  margin: 0 auto;
  max-width: 1440px;
  padding: 12px 20px 56px;
  color: var(--wstd-text);
}

.wstd-shell--articles{
  padding-top: 80px;
}

.wstd-library-shell{
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.96));
  border: 1px solid var(--wstd-border);
  box-shadow: var(--wstd-shadow-soft);
  padding: 32px;
}

.wstd-library-head{
  margin-bottom: 24px;
}

.wstd-library-head-copy{
  max-width: 860px;
}

.wstd-library-label{
  font-size: .76rem;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--wstd-teal);
  font-weight: 600;
  margin: 0 0 12px;
}

.wstd-library-title{
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.04;
  margin: 0;
  color: #111827;
  letter-spacing: -0.025em;
  max-width: 16ch;
}

.wstd-library-intro{
  margin-top: 16px;
  max-width: 860px;
  color: var(--wstd-muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.wstd-library-intro p:last-child{
  margin-bottom: 0;
}

/* =========================================
   WALKER STANDARD FEATURED HERO
========================================= */

.wstd-featured{
  position: relative;
  margin: 8px 0 58px;
}

.wstd-featured-media{
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: 620px;
  background: #dde5e8;
  box-shadow: var(--wstd-shadow);
}

.wstd-featured-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,15,20,0.08) 0%, rgba(10,15,20,0.18) 100%);
  pointer-events: none;
}

.wstd-featured-media img,
.wstd-featured-placeholder{
  display: block;
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.wstd-featured-placeholder{
  background:
    linear-gradient(135deg, rgba(0,165,177,0.14), rgba(255,255,255,0.18)),
    linear-gradient(180deg, #dfe7ea, #ccd7dd);
}

.wstd-featured-card{
  position: absolute;
  left: 48px;
  bottom: -36px;
  width: min(620px, calc(100% - 96px));
  padding: 30px 32px 28px;
  border-radius: 26px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 26px 60px rgba(15,23,42,0.14);
}

.wstd-featured-label{
  display: inline-block;
  margin-bottom: 10px;
  font-size: .74rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--wstd-teal);
}

.wstd-featured-kicker{
  color: #5a6771;
  font-size: .94rem;
  margin-bottom: 8px;
}

.wstd-featured-title{
  margin: 0 0 14px;
  font-size: clamp(1.85rem, 2.8vw, 2.75rem);
  line-height: 1.03;
  letter-spacing: -0.025em;
}

.wstd-featured-title a,
.wstd-featured-title{
  color: #111827;
  text-decoration: none;
}

.wstd-featured-title a:hover{
  color: var(--wstd-teal);
}

.wstd-featured-excerpt{
  color: #4f5d68;
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 120ch;
}

.wstd-featured-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #667382;
  font-size: 0.92rem;
  font-weight: 600;
}

.wstd-featured-actions{
  margin-top: 22px;
}

.wstd-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: #111827;
  box-shadow: 0 8px 22px rgba(17,24,39,0.16);
  transition: transform .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.wstd-btn:hover{
  color: #fff;
  background: var(--wstd-teal);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0,165,177,0.24);
}
/* =========================================
   WALKER GLASS HERO: IMAGE + VIDEO MEDIA SUPPORT
========================================= */

.walker-glass-hero__media{
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.walker-glass-hero__video{
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

.walker-glass-hero__media-bg{
  z-index: 1;
}

.walker-glass-hero__panel-wrap{
  z-index: 3;
}

.walker-glass-hero--media-video .walker-glass-hero__media{
  background-color: #111827;
}

@media (prefers-reduced-motion: reduce){
  .walker-glass-hero__video{
    display: none;
  }
}

/* =========================================
   WALKER STANDARD CARD GRID
========================================= */

.wstd-card-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--wstd-gap);
  align-items: stretch;
}

.wstd-card{
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 10px 28px rgba(15,23,42,0.06);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.wstd-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15,23,42,0.11);
  border-color: rgba(0,165,177,0.16);
}

.wstd-card-media{
  display: block;
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #e7ecef;
}

.wstd-card-media img,
.wstd-card-media-placeholder{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wstd-card-media img{
  transition: transform .45s ease;
}

/* subtle editorial treatment for article cards */
.wstd-card--article .wstd-card-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.00) 0%, rgba(255,255,255,0.02) 35%, rgba(17,24,39,0.08) 100%);
  pointer-events: none;
  transition: opacity .25s ease;
}

.wstd-card--article:hover .wstd-card-media::after{
  opacity: .75;
}

.wstd-card:hover .wstd-card-media img{
  transform: scale(1.04);
}

.wstd-card-media-placeholder{
  background:
    linear-gradient(135deg, rgba(0,165,177,0.10), rgba(255,255,255,0.25)),
    linear-gradient(180deg, #dde6ea, #cfd9df);
}

.wstd-card-body{
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
}

.wstd-card-kicker{
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #667480;
  margin: 0;
}

.wstd-card-title{
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.22;
  letter-spacing: -0.01em;
  min-height: 2.5em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wstd-card-title a{
  color: #111827;
  text-decoration: none;
}

.wstd-card-title a:hover{
  color: var(--wstd-teal);
}

.wstd-card-excerpt{
  color: #5a6873;
  line-height: 1.68;
  font-size: .96rem;
  min-height: 5em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =========================================
   WALKER STANDARD CHIPS
========================================= */

.wstd-chip-row{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 2px;
}

.wstd-chip.is-current{
	background: #111827;
	color: #fff;
	border-color: #111827;
	pointer-events: none;
}

.wstd-chip{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease;
}

.wstd-chip:hover{
  transform: translateY(-1px);
}

.wstd-chip-row--glass .wstd-chip{
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(15,23,42,0.10);
  color: #22313d;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.wstd-chip-row--glass .wstd-chip:hover{
  background: rgba(255,255,255,0.92);
  border-color: rgba(0,165,177,0.22);
  color: #111827;
} 

/* =========================================
   WALKER STANDARD PAGINATION
========================================= */

.wstd-pagination{
  margin-top: 30px;
}

.wstd-pagination .nav-links{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.wstd-pagination .page-numbers{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 34, 0.08);
  background: #fff;
  color: #101923;
  text-decoration: none !important;
  font-weight: 600;
}

.wstd-pagination .page-numbers.current{
  background: #101923;
  color: #fff;
  border-color: #101923;
}

.wstd-empty{
  margin: 8px 0 0;
  color: #5f6b76;
}



/* =========================================
   WALKER STANDARD EXTENSION: GLASS HERO WIDGET
========================================= */

.walker-glass-hero{
  position: relative;
  margin: 0 0 72px;
}
.walker-glass-hero--fixed{
  margin-top: 20px;
}
.walker-glass-hero__inner--full{
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.walker-glass-hero--full .walker-glass-hero__feature{
  margin-left: 0;
  margin-right: 0;
}

.walker-glass-hero--full .walker-glass-hero__media{
  border-radius: 0;
}

.walker-glass-hero__feature{
  position: relative;
}

.walker-glass-hero__media{
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 620px;
}

.walker-glass-hero__media-bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,15,20,0.05) 0%, rgba(10,15,20,0.14) 100%);
  pointer-events: none;
}

.walker-glass-hero__card{
  z-index: 3;
}

.walker-glass-hero--align-left .walker-glass-hero__card{
  left: 48px;
  right: auto;
}

.walker-glass-hero--align-center .walker-glass-hero__card{
  left: auto;
  right: auto;
  transform: none;
}

.walker-glass-hero--align-right .walker-glass-hero__card{
  left: auto;
  right: 48px;
}

.walker-glass-hero--panel-sm .walker-glass-hero__card{
  width: min(480px, calc(100% - 96px));
}

.walker-glass-hero--panel-md .walker-glass-hero__card{
  width: min(620px, calc(100% - 96px));
}

.walker-glass-hero--panel-lg .walker-glass-hero__card{
  width: min(820px, calc(100% - 96px));
}

.walker-glass-hero__card-copy{
  max-width: 100%;
}

.walker-glass-hero__card .wstd-featured-title{
  max-width: 18ch;
}

.walker-glass-hero__card .wstd-featured-excerpt{
  max-width: 120ch;
}

.wstd-shell--full{
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* Walker Glass Hero panel wrapper controls alignment */
.walker-glass-hero__panel-wrap{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
  transform: translateY(14%);
  z-index: 3;
  display: flex;
  pointer-events: none;
}

.walker-glass-hero--align-left .walker-glass-hero__panel-wrap{
  justify-content: flex-start;
}

.walker-glass-hero--align-center .walker-glass-hero__panel-wrap{
  justify-content: center;
}

.walker-glass-hero--align-right .walker-glass-hero__panel-wrap{
  justify-content: flex-end;
}



/* On full-width, constrain alignment area to 1440px */
.walker-glass-hero__panel-wrap{
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Reset old featured-card positioning inside this widget */
.walker-glass-hero__card.wstd-featured-card{
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  margin-top: 0;
  pointer-events: auto;
}


/* Width options now belong to the card itself */
.walker-glass-hero--panel-sm .walker-glass-hero__card{
  width: 480px;
  max-width: 100%;
}

.walker-glass-hero--panel-md .walker-glass-hero__card{
  width: 620px;
  max-width: 100%;
}

.walker-glass-hero--panel-lg .walker-glass-hero__card{
  width: 820px;
  max-width: 100%;
}

  .walker-glass-hero--full {
	  margin-top: -90px;
  }

/* =========================================
   RESPONSIVE
========================================= */

/* Make full-width version taller on desktop */
@media (min-width: 861px){
  .walker-glass-hero--full .walker-glass-hero__media{
    min-height: 720px;

  }
}

@media (max-width: 860px){
  .walker-glass-hero__panel-wrap{
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    display: block;
    max-width: none;
    margin: -34px 0 0;
    padding: 0;
  }

  .walker-glass-hero--full .walker-glass-hero__panel-wrap{
    padding-left: 0;
    padding-right: 0;
  }

  .walker-glass-hero__card.wstd-featured-card{
    width: 100%;
  }
}

@media (min-width: 861px){
  .walker-glass-hero--full .walker-glass-hero__media{
    min-height: 720px;
  }
}
@media (max-width: 1180px){
  .walker-glass-hero__media{
    min-height: 520px;
  }
}

@media (max-width: 860px){
  .walker-glass-hero--align-center .walker-glass-hero__card,
  .walker-glass-hero--align-left .walker-glass-hero__card,
  .walker-glass-hero--align-right .walker-glass-hero__card{
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    margin-top: -34px;
  }
}

@media (max-width: 700px){
  .walker-glass-hero{
    margin-bottom: 56px;
  }

  .walker-glass-hero__media{
    min-height: 340px;
    border-radius: 22px;
  }

  .walker-glass-hero--full .walker-glass-hero__media{
    border-radius: 0;
  }
}


@media (max-width: 1180px){
  .wstd-card-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wstd-featured-media{
    min-height: 520px;
  }

  .wstd-featured-media img,
  .wstd-featured-placeholder{
    height: 520px;
  }
}

@media (max-width: 860px){
  .wstd-shell--articles{
    padding-top: 64px;
  }

  .wstd-featured-card{
    position: relative;
    left: 0;
    bottom: auto;
    width: 100%;
    margin-top: -34px;
  }

  .wstd-library-shell{
    padding: 24px;
  }
}

@media (max-width: 700px){
  .wstd-shell{
    padding-left: 14px;
    padding-right: 14px;
  }

  .wstd-shell--articles{
    padding-top: 56px;
  }

  .wstd-card-grid{
    grid-template-columns: 1fr;
  }

  .wstd-featured-media{
    min-height: 340px;
    border-radius: 22px;
  }

  .wstd-featured-media img,
  .wstd-featured-placeholder{
    height: 340px;
  }

  .wstd-featured-card{
    padding: 22px 20px;
    border-radius: 20px;
  }

  .wstd-library-shell{
    border-radius: 24px;
    padding: 18px;
  }

  .wstd-card{
    border-radius: 18px;
  }

  .wstd-card-media{
    height: 220px;
  }
}

 







/* =========================================
   PROJECT HERO MORPH
========================================= */

:root{
  --wh-bg: none;
  --wh-p: 0;
  --wh-expand: 0;
  --wh-blur-max: 4px;
  --wh-desaturate-max: 0.55;
  --wh-hero-visibility: 1;
    /* bridge new system → legacy video system */
  --p: var(--wh-p);
  --blur-max: var(--wh-blur-max);
  --desaturate-max: var(--wh-desaturate-max);
}

body{
  background: #f7f5f1;
}
 .max1440 {
	 max-width: 1440px !important;
	   margin-left: auto;
  margin-right: auto;
  width: 100%;
	 
 }
/* -----------------------------------------
   FIXED HERO MEDIA LAYERS
----------------------------------------- */

.wh-fixed-bg,
.wh-fixed-video-wrap,
.wh-fixed-video{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.wh-fixed-bg{
  opacity: var(--wh-hero-visibility);
  background-image: var(--wh-bg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: opacity .22s linear;
  will-change: filter, transform, opacity;
  filter:
    blur(calc(var(--wh-p) * var(--wh-blur-max)))
    saturate(calc(1 - (var(--wh-p) * var(--wh-desaturate-max))));
  transform: scale(calc(1 + (var(--wh-p) * 0.015)));
  transform-origin: center center;
}

.wh-fixed-bg.is-ready{
  opacity: var(--wh-hero-visibility);
}

/* wrapper support if your video is wrapped */
.wh-fixed-video-wrap{
  opacity: 0;
  transition: opacity .22s linear;
  overflow: hidden;
}

/* direct video support */
.wh-fixed-video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .22s linear;
  will-change: filter, transform, opacity;
  filter:
    blur(calc(var(--wh-p) * var(--wh-blur-max)))
    saturate(calc(1 - (var(--wh-p) * var(--wh-desaturate-max))));
  transform: scale(calc(1 + (var(--wh-p) * 0.015)));
  transform-origin: center center;
}

/* if the page switches to video mode, hide the image layer and use the same visibility var */
body.walker-video-ready .wh-fixed-bg{
  opacity: 0;
}

body.walker-video-ready .wh-fixed-video-wrap{
  opacity: var(--wh-hero-visibility);
}

body.walker-video-ready .wh-fixed-video{
  opacity: var(--wh-hero-visibility);
}

/* if the video is inside a wrapper, don't double-fade the inner video */
body.walker-video-ready .wh-fixed-video-wrap .wh-fixed-video{
  opacity: 1;
}
.wh-fixed-video{
  opacity: 0;
  transition: opacity .18s linear;
}

/* when active, use the same fade system as image */
body.walker-video-ready .wh-fixed-video{
  opacity: var(--wh-hero-visibility);
}

/* -----------------------------------------
   HERO / PAGE STACKING
----------------------------------------- */

.walker-project-single,
.walker-template-vc,
.walker-project-morph-hero{
  position: relative;
  z-index: 1;
}

.walker-project-morph-hero{
  --hero-shell-pad: 24px;
  --hero-bottom-gap: 20px;
  --hero-title-glass-width: 760px;
  --hero-panel-radius-start: 999px;
  --hero-panel-radius-end: 30px;
  --hero-panel-pad-x-start: 26px;
  --hero-panel-pad-x-end: 48px;
  --hero-panel-pad-y-start: 10px;
  --hero-panel-pad-y-end: 36px;
  --hero-max-width: 1440px;

  --hero-start-top: 0px;
  --hero-frame-top: 0px;
  --hero-frame-width: 760px;
  --hero-release-top: 140px;
  --hero-panel-collapsed-height: 64px;
  --hero-panel-expanded-height: 420px;
  --hero-body-open-height: 0px;
  --hero-live-bottom: 520px;

  margin: 0 0 56px;
}

.walker-project-morph-hero__spacer{
  height: calc(100vh - 120px);
  min-height: 560px;
}

@supports (height: 100svh){
  .walker-project-morph-hero__spacer{
    height: calc(100svh - 120px);
  }
}

.walker-project-morph-hero__shell{
  position: relative;
  min-height: calc(var(--hero-live-bottom) + 120px);
  margin-top: calc(-1 * (100vh - 120px));
  padding: 0 var(--hero-shell-pad);
  pointer-events: none;
}

@supports (height: 100svh){
  .walker-project-morph-hero__shell{
    min-height: calc(var(--hero-live-bottom) + 120px);
    margin-top: calc(-1 * (100svh - 120px));
  }
}

/* -----------------------------------------
   FRAME / PANEL
----------------------------------------- */

.walker-project-morph-hero__frame{
  position: fixed;
  left: 50%;
  top: var(--hero-frame-top);
  width: var(--hero-frame-width);
  max-width: var(--hero-max-width);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 30;
}

.walker-project-morph-hero.is-released .walker-project-morph-hero__frame{
  position: absolute;
  left: 50%;
  top: var(--hero-release-top);
  width: var(--hero-frame-width);
  transform: translateX(-50%);
}

.walker-project-morph-hero__panel{
  box-sizing: border-box;
  pointer-events: auto;
  min-height: var(--hero-panel-collapsed-height);
  border-radius: calc(
    var(--hero-panel-radius-start) +
    ((var(--hero-panel-radius-end) - var(--hero-panel-radius-start)) * var(--wh-p))
  );
  padding:
    calc(var(--hero-panel-pad-y-start) + ((var(--hero-panel-pad-y-end) - var(--hero-panel-pad-y-start)) * var(--wh-p)))
    calc(var(--hero-panel-pad-x-start) + ((var(--hero-panel-pad-x-end) - var(--hero-panel-pad-x-start)) * var(--wh-p)));
  overflow: hidden;
  position: relative;

  background:
    linear-gradient(
      180deg,
      rgba(92, 101, 84, calc(.64 - (.48 * var(--wh-p)))) 0%,
      rgba(78, 89, 64, calc(.72 - (.56 * var(--wh-p)))) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255,255,255, calc(.10 - (.07 * var(--wh-p)))) 0%,
      rgba(255,255,255, calc(.03 - (.02 * var(--wh-p)))) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255,255,255, calc(.00 + (.96 * var(--wh-p)))) 0%,
      rgba(248,250,252, calc(.00 + (.98 * var(--wh-p)))) 100%
    );

  border: 1px solid rgba(
    calc(255 - (230 * var(--wh-p))),
    calc(255 - (236 * var(--wh-p))),
    calc(255 - (242 * var(--wh-p))),
    calc(.24 - (.12 * var(--wh-p)))
  );

  box-shadow:
    0 calc(12px + (12px * var(--wh-p))) calc(26px + (18px * var(--wh-p))) rgba(12,20,34,calc(.18 - (.04 * var(--wh-p)))),
    inset 0 1px 0 rgba(255,255,255,calc(.24 - (.18 * var(--wh-p))));

  backdrop-filter: blur(calc(10px - (5px * var(--wh-p))));
  -webkit-backdrop-filter: blur(calc(10px - (5px * var(--wh-p))));
}

.walker-project-morph-hero__panel::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,calc(.10 + (.46 * var(--wh-p)))) 0%,
      rgba(255,255,255,calc(.00 + (.16 * var(--wh-p)))) 100%
    );
}

.walker-project-morph-hero__title-wrap,
.walker-project-morph-hero__body{
  position: relative;
  z-index: 1;
}

.walker-project-morph-hero__title-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding-top: 4px;
  padding-bottom: 0;
}

.walker-project-morph-hero__title{
  margin: 0;
  font-size: clamp(1.1rem, 1.8vw, 1.75rem);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.025em;
  text-wrap: balance;
  text-align: center;
  color: rgb(
    calc(255 - (255 * var(--wh-p))),
    calc(255 - (90 * var(--wh-p))),
    calc(255 - (78 * var(--wh-p)))
  ) !important;
  text-shadow: 0 4px 12px rgba(10,18,32,calc(.14 - (.12 * var(--wh-p))));
}

.walker-project-morph-hero__body{
  height: var(--hero-body-open-height);
  overflow: hidden;
}

.walker-project-morph-hero__meta{
  opacity: var(--wh-expand);
  transform: translateY(calc(10px * (1 - var(--wh-expand))));
  margin-top: calc(60px * var(--wh-expand));
  pointer-events: auto;
}

.walker-project-morph-hero:not(.is-released) .walker-project-morph-hero__meta{
  pointer-events: none;
}

.walker-project-morph-hero.is-released .walker-project-morph-hero__meta{
  pointer-events: auto;
}

.walker-project-morph-hero__meta,
.walker-project-panel-details,
.walker-project-panel-details__main,
.walker-project-panel-details__side{
  max-height: none !important;
}

.walker-project-morph-hero + .vc_row,
.walker-project-morph-hero + .wpb_row{
  position: relative;
  z-index: 2;
  margin-top: 0;
}

/* -----------------------------------------
   RESPONSIVE
----------------------------------------- */

@media (max-width: 991px){
  .walker-project-morph-hero{
    --hero-shell-pad: 18px;
    --hero-title-glass-width: min(92vw, 620px);
    --hero-panel-pad-x-start: 20px;
    --hero-panel-pad-x-end: 26px;
    --hero-panel-pad-y-start: 9px;
    --hero-panel-pad-y-end: 28px;
    --hero-panel-collapsed-height: 58px;
    margin-bottom: 36px;
  }

  .walker-project-morph-hero__spacer{
    min-height: 480px;
    height: calc(100vh - 88px);
  }

  @supports (height: 100svh){
    .walker-project-morph-hero__spacer{
      height: calc(100svh - 88px);
    }
  }

  .walker-project-morph-hero__shell{
    min-height: calc(var(--hero-live-bottom) + 110px);
    margin-top: calc(-1 * (100vh - 88px));
  }

  @supports (height: 100svh){
    .walker-project-morph-hero__shell{
      min-height: calc(var(--hero-live-bottom) + 110px);
      margin-top: calc(-1 * (100svh - 88px));
    }
  }

  .walker-project-morph-hero__title{
    font-size: clamp(1rem, 4.5vw, 1.35rem);
    line-height: 1.06;
  }
}

@media (max-width: 640px){
  .walker-project-morph-hero__panel{
    border-radius: calc(24px + ((30px - 24px) * var(--wh-p)));
  }
}

@media (prefers-reduced-motion: reduce){
  .wh-fixed-bg,
  .wh-fixed-video,
  .wh-fixed-video-wrap{
    filter: none;
    transform: none;
  }

  .walker-project-morph-hero__meta{
    transform: none;
  }
}






/* =========================================
   PROJECT PANEL DETAILS
========================================= */

.walker-project-panel-details{
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.walker-project-panel-details__main{
  min-width: 0;
}

.walker-project-panel-details__description{
  color: #56657c;
  font-size: 1.02rem;
  line-height: 1.85;
}

.walker-project-panel-details__description > *:first-child{
  margin-top: 0;
}

.walker-project-panel-details__description > *:last-child{
  margin-bottom: 0;
}

.walker-project-panel-details__description p{
  margin: 0 0 1.1em;
}

.walker-project-panel-details__description h2,
.walker-project-panel-details__description h3,
.walker-project-panel-details__description h4{
  margin: 1.2em 0 .45em;
}

.walker-project-panel-details__side{
  display: grid;
  gap: 22px;
  min-width: 0;
  align-content: start;
}

.walker-project-meta-block{
  position: relative;
  padding: 2px 0 2px 20px;
  background: none;
  border: 0;
  border-left: 1px solid rgba(19,35,60,.14);
  border-radius: 0;
  box-shadow: none;
}

.walker-project-meta-block__header{
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
}

.walker-project-meta-block__icon{
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: var(--wstd-teal);
  flex: 0 0 auto;
}

.walker-project-meta-block__icon svg{
  width: 100%;
  height: 100%;
  display: block;
}

.walker-project-meta-block__title{
  margin: 0;
  font-size: .9rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #13233c;
}

.walker-project-meta-block__content{
  min-width: 0;
}

.walker-project-meta-block__single{
  margin: 0;
  color: #334155;
  line-height: 1.65;
}







.walker-project-meta-block__list{
  list-style: none !important;
  margin: 4px 0 0;
  padding: 0;
  display: block;
}

.walker-project-meta-block__list li{
  list-style: none !important;
  position: relative;
  margin: 0 !important;
  padding: 5px 0 5px !important;
  color: #334155;
  line-height: 1.5;
  border-top: 1px solid rgba(19,35,60,.14);
}

.walker-project-meta-block__list li:last-child{
  border-bottom: 1px solid rgba(19,35,60,.14);
}

.walker-project-meta-block__list li::marker{
  content: "";
}

.walker-project-meta-block__list li::before,
.walker-project-meta-block__list li::after{
  content: none !important;
  display: none !important;
}










@media (max-width: 991px){
  .walker-project-panel-details{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .walker-project-panel-details__side{
    gap: 18px;
  }

  .walker-project-meta-block{
    padding-left: 18px;
  }
}



/* =========================================
   WALKER CATEGORY LIST PAGE
========================================= */
/* Category page hero offset from menu */
.walker-page-has-featured-hero .walker-featured {
	margin-top: 80px;
}

/* Keep mobile tighter */
@media (max-width: 700px) {
	.walker-page-has-featured-hero .walker-featured {
		margin-top: 56px;
	}
}
.walker-category-page {
	background: #F0EFEF !important;
	padding-top: 12px;
	padding-bottom: 44px;
}

/* set the default width to 1440 */
  --pix-container-width: 1440px;
  
/* =========================================
   WALKER SINGLE BLOG POST
========================================= */

.walker-post-hero {
	position: relative;
	width: 100%;
	min-height: 560px;
	display: flex;
	align-items: flex-end;
	background-color: #111;

	overflow: hidden;
}
.walker-post-hero.has-image {
	background-size: cover !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
}


.walker-post-hero.no-image {
	background: linear-gradient(135deg, #0d0f12 0%, #1c232b 100%);
	min-height: 420px;
}

.walker-post-hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to top, rgba(10, 12, 16, 0.82) 0%, rgba(10, 12, 16, 0.48) 42%, rgba(10, 12, 16, 0.20) 100%),
		linear-gradient(to right, rgba(6, 9, 14, 0.45) 0%, rgba(6, 9, 14, 0.10) 45%, rgba(6, 9, 14, 0.35) 100%);
}

.walker-post-hero-inner {
	position: relative;
	z-index: 2;
	padding: 150px 0 80px;
	max-width: 900px;
}

.walker-post-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 24px;
}

.walker-post-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(8px);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none !important;
	transition: all 0.2s ease;
}

.walker-post-badge:hover {
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.45);
	color: #fff;
	transform: translateY(-1px);
}

.walker-post-title {
	margin: 0 0 24px;
	color: #fff;
	font-size: clamp(2.4rem, 4vw, 4.6rem);
	line-height: 1.04;
	font-weight: 700;
	letter-spacing: -0.03em;
	max-width: 16ch;
	text-wrap: balance;
}

.walker-post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	align-items: center;
}

.walker-post-meta-item {
	display: flex;
	align-items: center;
	gap: 14px;
	color: rgba(255, 255, 255, 0.92);
}

.walker-post-author-avatar img,
img.walker-post-author-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, 0.28);
}

.walker-post-meta-text {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
}

.walker-post-meta-label {
	display: block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.62);
	margin-bottom: 3px;
}

.walker-post-author-link,
.walker-post-date {
	color: #fff !important;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
}

.walker-post-container {
	max-width: 1440px;
}

.walker-post-shell {
	position: relative;
	margin-top: -48px;
	z-index: 3;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.walker-post-main {
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 18px 60px rgba(10, 16, 28, 0.10);
	padding: 52px 64px 30px;
}

.walker-post-content {
	color: #1c2430;
	font-size: 1.08rem;
	line-height: 1.9;
}

.walker-post-content > *:first-child {
	margin-top: 0;
}

.walker-post-content p {
	margin-bottom: 1.35em;
}

.walker-post-content h2,
.walker-post-content h3,
.walker-post-content h4 {
	color: #0e1722;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-top: 2.1em;
	margin-bottom: 0.65em;
}

.walker-post-content h2 {
	font-size: 2rem;
}

.walker-post-content h3 {
	font-size: 1.5rem;
}

.walker-post-content img {
	border-radius: 18px;
	height: auto;
}

.walker-post-content a {
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.walker-post-content blockquote {
	margin: 2.2em 0;
	padding: 1.2em 1.4em;
	border-left: 4px solid #00a5b1;
	background: #f5f8fa;
	border-radius: 12px;
	color: #15202b;
}

.walker-post-related-wrap {
	margin-top: 42px;
}

.walker-post-related-section {
	margin-top: 40px;
	padding-top: 28px;
	border-top: 1px solid rgba(15, 23, 34, 0.08);
}

.walker-post-section-head {
	margin-bottom: 20px;
}

.walker-post-section-kicker {
	margin-bottom: 6px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #7a8592;
}

.walker-post-section-title {
	margin: 0;
	font-size: 1.7rem;
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #101923;
}

.walker-post-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.walker-post-tag {
	display: inline-flex;
	align-items: center;
	padding: 10px 14px;
	border: 1px solid rgba(15, 23, 34, 0.10);
	border-radius: 999px;
	background: rgba(255,255,255,0.72);
	backdrop-filter: blur(10px);
	color: #1a2330;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none !important;
	transition: all 0.2s ease;
}

.walker-post-tag:hover {
	border-color: rgba(0, 165, 177, 0.35);
	color: #0b5b66;
	transform: translateY(-1px);
}

.walker-post-service-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.walker-post-service-chip {
	display: inline-flex;
	align-items: center;
	padding: 12px 16px;
	border: 1px solid rgba(15, 23, 34, 0.10);
	border-radius: 999px;
	background: rgba(255,255,255,0.72);
	backdrop-filter: blur(10px);
	color: #123042;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-decoration: none !important;
	transition: all 0.2s ease;
	box-shadow: 0 8px 24px rgba(10, 16, 28, 0.04);
}

.walker-post-service-chip:hover {
	transform: translateY(-1px);
	border-color: rgba(0, 165, 177, 0.35);
	color: #0b5b66;
	box-shadow: 0 12px 30px rgba(10, 16, 28, 0.08);
}

.walker-related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.walker-related-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid rgba(15, 23, 34, 0.08);
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(248,250,252,0.98) 100%);
	box-shadow: 0 12px 38px rgba(10, 16, 28, 0.06);
	overflow: hidden;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.walker-related-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 48px rgba(10, 16, 28, 0.10);
	border-color: rgba(0, 165, 177, 0.22);
}

.walker-related-card-media {
	display: block;
	position: relative;
	aspect-ratio: 16 / 10;
	background: #dfe6eb;
	overflow: hidden;
}

.walker-related-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.walker-related-card-media-fallback,
.walker-related-person-image-fallback {
	width: 100%;
	height: 100%;
	background:
		linear-gradient(135deg, rgba(0,165,177,0.18) 0%, rgba(16,25,35,0.12) 100%),
		linear-gradient(180deg, #eef3f6 0%, #dde6ec 100%);
}

.walker-related-card-body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 22px 22px 24px;
}

.walker-related-card-chip {
	display: inline-flex;
	align-self: flex-start;
	margin-bottom: 14px;
	padding: 8px 12px;
	border: 1px solid rgba(16, 25, 35, 0.08);
	border-radius: 999px;
	background: rgba(255,255,255,0.72);
	backdrop-filter: blur(10px);
	color: #314152;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.walker-related-card-title {
	margin: 0 0 10px;
	font-size: 1.25rem;
	line-height: 1.15;
	font-weight: 500 !important;
	letter-spacing: -0.02em;
	color: #101923;
}

.walker-related-card-title a {
	color: inherit;
	text-decoration: none;
}

.walker-related-card-text {
	margin: 0 0 18px;
	color: #465566;
	line-height: 1.75;
	font-size: 0.98rem;
}

.walker-related-card-link {
	margin-top: auto;
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: #0d6771;
	text-decoration: none;
}

.walker-related-card-link:hover {
	color: #084b52;
}

.walker-related-people-card {
	padding: 22px;
}

.walker-related-person-head {
	display: grid;
	grid-template-columns: 84px 1fr;
	gap: 16px;
	align-items: center;
	margin-bottom: 16px;
	text-decoration: none;
}

.walker-related-person-image-wrap {
	width: 84px;
	height: 84px;
	border-radius: 18px;
	overflow: hidden;
	background: #e7edf1;
	flex-shrink: 0;
}

.walker-related-person-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.walker-related-person-role {
	margin-top: 6px;
	color: #5a6877;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.4;
}

.walker-post-author-box {
	display: grid;
	grid-template-columns: 96px 1fr;
	gap: 24px;
	align-items: start;
	margin-top: 42px;
	padding: 28px;
	border: 1px solid rgba(15, 23, 34, 0.08);
	border-radius: 22px;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
}

.walker-post-author-box-avatar img,
.walker-post-author-box-image {
	width: 96px;
	height: 96px;
	border-radius: 18px;
	object-fit: cover;
}

.walker-post-author-box-kicker {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #6b7683;
	margin-bottom: 6px;
}

.walker-post-author-box-name a {
	color: #101923;
	font-size: 1.35rem;
	font-weight: 700;
	text-decoration: none;
}

.walker-post-author-box-role {
	margin-top: 6px;
	color: #4f5d6c;
	font-size: 0.96rem;
	font-weight: 600;
}

.walker-post-author-box-bio {
	margin-top: 14px;
	color: #334150;
	line-height: 1.75;
}

.walker-post-author-box-link {
	margin-top: 14px;
}

.walker-post-author-box-link a {
	font-weight: 700;
	text-decoration: none;
}

.walker-post-social {
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid rgba(15, 23, 34, 0.08);
}

@media (max-width: 1199.98px) {
	.walker-post-main {
		padding: 44px 40px 24px;
	}

	.walker-related-grid {
		gap: 20px;
	}
}

@media (max-width: 991.98px) {
	.walker-post-hero {
		min-height: 480px;
	}

	.walker-post-hero-inner {
		padding: 120px 0 80px;
	}

	.walker-post-shell {
		max-width: 100%;
		margin-top: -36px;
	}

	.walker-post-main {
		padding: 38px 32px 18px;
	}

	.walker-related-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767.98px) {
	.walker-post-hero {
		min-height: 430px;
	}

	.walker-post-hero-inner {
		padding: 110px 0 80px;
	}

	.walker-post-title {
		max-width: none;
		font-size: 2.2rem;
	}

	.walker-post-main {
		padding: 90px 20px 16px;
		border-radius: 18px;
	}

	.walker-post-author-box {
		grid-template-columns: 1fr;
	}

	.walker-post-meta {
		gap: 16px;
	}

	.walker-related-person-head {
		grid-template-columns: 72px 1fr;
	}

	.walker-related-person-image-wrap {
		width: 72px;
		height: 72px;
		border-radius: 16px;
	}
}