/*
 Theme Name:   Bridge Child
 Theme URI:    http://localhost
 Description:  Bridge Child Theme with custom mega menu
 Author:       Axis Studios
 Template:     bridge
 Version:      1.0.0
 Text Domain:  bridge-child
*/

/* =========================================================================
   TEXT STYLES
   Responsive typography
   Breakpoints:
     - Mobile:  < 1024px
     - Tablet:  >= 1024px
     - Desktop: >= 1440px

   Typefaces:
     - Dosis (Medium 500, SemiBold 600)
     - Inter (Regular 400, Medium 500, SemiBold 600)
   ========================================================================= */

/* -------------------------------------------------------------------------
   Fonts imported from Google Fonts
   ------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@500;600&family=Inter:wght@400;500;600&display=swap");

/* -------------------------------------------------------------------------
   Font family variables
   ------------------------------------------------------------------------- */
:root {
  --font-display: "Dosis", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

/* =========================================================================
   COLOR SYSTEM
   Color variables (HEX + RGB for opacities).
   ========================================================================= */
:root {
  /* Pelorous */
  --color-pelorous: #34b4b9;
  --color-pelorous-rgb: 52, 180, 185;
  /* Zeus */
  --color-zeus: #221d1a;
  --color-zeus-rgb: 34, 29, 26;
  /* River Bed */
  --color-river-bed: #475259;
  --color-river-bed-rgb: 71, 82, 89;
  /* Slate Blue */
  --color-slate-blue: #6c8e9b;
  --color-slate-blue-rgb: 108, 142, 155;
  /* Mid Gray */
  --color-mid-gray: #5e5f68;
  --color-mid-gray-rgb: 94, 95, 104;
  /* Yellow Green */
  --color-yellow-green: #b2bb1a;
  --color-yellow-green-rgb: 178, 187, 26;
  /* Dark Pelorous */
  --color-dark-pelorous: #1e676a;
  --color-dark-pelorous-rgb: 30, 103, 106;
  /* Light Coral */
  --color-light-coral: #e85963;
  --color-light-coral-rgb: 232, 89, 99;
  /* Anzac */
  --color-anzac: #e5ae47;
  --color-anzac-rgb: 229, 174, 71;
  /* Goldenrod */
  --color-goldenrod: #faad1d;
  --color-goldenrod-rgb: 250, 173, 29;
  /* White */
  --color-white: #ffffff;
  --color-white-rgb: 255, 255, 255;
}

/* -------------------------------------------------------------------------
   Color classes at 100% (no suffix)
   Format: .bg-{name} / .text-color-{name} / .border-{name}
   NOTE: For text, use .text-color-* and NOT .text-* to avoid
   collisions with typography classes (.text-body, .text-hero-h1, etc.)
   ------------------------------------------------------------------------- */
.bg-pelorous {
  background-color: var(--color-pelorous);
}

.text-color-pelorous {
  color: var(--color-pelorous);
}

.border-pelorous {
  border-color: var(--color-pelorous);
}

.bg-zeus {
  background-color: var(--color-zeus);
}

.text-color-zeus * {
  color: var(--color-zeus);
}

.border-zeus {
  border-color: var(--color-zeus);
}

.bg-river-bed {
  background-color: var(--color-river-bed);
}

.text-color-river-bed * {
  color: var(--color-river-bed);
}

.border-river-bed {
  border-color: var(--color-river-bed);
}

.bg-slate-blue {
  background-color: var(--color-slate-blue);
}

.text-color-slate-blue {
  color: var(--color-slate-blue);
}

.border-slate-blue {
  border-color: var(--color-slate-blue);
}

.bg-mid-gray {
  background-color: var(--color-mid-gray);
}

.text-color-mid-gray * {
  color: var(--color-mid-gray);
}

.border-mid-gray {
  border-color: var(--color-mid-gray);
}

.bg-yellow-green {
  background-color: var(--color-yellow-green);
}

.text-color-yellow-green {
  color: var(--color-yellow-green);
}

.border-yellow-green {
  border-color: var(--color-yellow-green);
}

.bg-dark-pelorous {
  background-color: var(--color-dark-pelorous);
}

.text-color-dark-pelorous {
  color: var(--color-dark-pelorous);
}

.border-dark-pelorous {
  border-color: var(--color-dark-pelorous);
}

.bg-light-coral {
  background-color: var(--color-light-coral);
}

.text-color-light-coral {
  color: var(--color-light-coral);
}

.border-light-coral {
  border-color: var(--color-light-coral);
}

.bg-anzac {
  background-color: var(--color-anzac);
}

.text-color-anzac {
  color: var(--color-anzac);
}

.border-anzac {
  border-color: var(--color-anzac);
}

.bg-goldenrod {
  background-color: var(--color-goldenrod);
}

.text-color-goldenrod {
  color: var(--color-goldenrod);
}

.border-goldenrod {
  border-color: var(--color-goldenrod);
}

.bg-white {
  background-color: var(--color-white);
}

.text-color-white * {
  color: var(--color-white);
}

.border-white {
  border-color: var(--color-white);
}

/* -------------------------------------------------------------------------
   Color classes with opacity from 10% to 90% (steps of 10)
   Format: .bg-{name}-{alpha} / .text-color-{name}-{alpha} / .border-{name}-{alpha}
   Example: .bg-pelorous-50 => background with 50% alpha
   ------------------------------------------------------------------------- */

/* Pelorous */
.bg-pelorous-10 {
  background-color: rgba(var(--color-pelorous-rgb), 0.1);
}

.text-color-pelorous-10 {
  color: rgba(var(--color-pelorous-rgb), 0.1);
}

.border-pelorous-10 {
  border-color: rgba(var(--color-pelorous-rgb), 0.1);
}

.bg-pelorous-20 {
  background-color: rgba(var(--color-pelorous-rgb), 0.2);
}

.text-color-pelorous-20 {
  color: rgba(var(--color-pelorous-rgb), 0.2);
}

.border-pelorous-20 {
  border-color: rgba(var(--color-pelorous-rgb), 0.2);
}

.bg-pelorous-30 {
  background-color: rgba(var(--color-pelorous-rgb), 0.3);
}

.text-color-pelorous-30 {
  color: rgba(var(--color-pelorous-rgb), 0.3);
}

.border-pelorous-30 {
  border-color: rgba(var(--color-pelorous-rgb), 0.3);
}

.bg-pelorous-40 {
  background-color: rgba(var(--color-pelorous-rgb), 0.4);
}

.text-color-pelorous-40 {
  color: rgba(var(--color-pelorous-rgb), 0.4);
}

.border-pelorous-40 {
  border-color: rgba(var(--color-pelorous-rgb), 0.4);
}

.bg-pelorous-50 {
  background-color: rgba(var(--color-pelorous-rgb), 0.5);
}

.text-color-pelorous-50 {
  color: rgba(var(--color-pelorous-rgb), 0.5);
}

.border-pelorous-50 {
  border-color: rgba(var(--color-pelorous-rgb), 0.5);
}

.bg-pelorous-60 {
  background-color: rgba(var(--color-pelorous-rgb), 0.6);
}

.text-color-pelorous-60 {
  color: rgba(var(--color-pelorous-rgb), 0.6);
}

.border-pelorous-60 {
  border-color: rgba(var(--color-pelorous-rgb), 0.6);
}

.bg-pelorous-70 {
  background-color: rgba(var(--color-pelorous-rgb), 0.7);
}

.text-color-pelorous-70 {
  color: rgba(var(--color-pelorous-rgb), 0.7);
}

.border-pelorous-70 {
  border-color: rgba(var(--color-pelorous-rgb), 0.7);
}

.bg-pelorous-80 {
  background-color: rgba(var(--color-pelorous-rgb), 0.8);
}

.text-color-pelorous-80 {
  color: rgba(var(--color-pelorous-rgb), 0.8);
}

.border-pelorous-80 {
  border-color: rgba(var(--color-pelorous-rgb), 0.8);
}

.bg-pelorous-90 {
  background-color: rgba(var(--color-pelorous-rgb), 0.9);
}

.text-color-pelorous-90 {
  color: rgba(var(--color-pelorous-rgb), 0.9);
}

.border-pelorous-90 {
  border-color: rgba(var(--color-pelorous-rgb), 0.9);
}

/* Zeus */
.bg-zeus-10 {
  background-color: rgba(var(--color-zeus-rgb), 0.1);
}

.text-color-zeus-10 {
  color: rgba(var(--color-zeus-rgb), 0.1);
}

.border-zeus-10 {
  border-color: rgba(var(--color-zeus-rgb), 0.1);
}

.bg-zeus-20 {
  background-color: rgba(var(--color-zeus-rgb), 0.2);
}

.text-color-zeus-20 {
  color: rgba(var(--color-zeus-rgb), 0.2);
}

.border-zeus-20 {
  border-color: rgba(var(--color-zeus-rgb), 0.2);
}

.bg-zeus-30 {
  background-color: rgba(var(--color-zeus-rgb), 0.3);
}

.text-color-zeus-30 {
  color: rgba(var(--color-zeus-rgb), 0.3);
}

.border-zeus-30 {
  border-color: rgba(var(--color-zeus-rgb), 0.3);
}

.bg-zeus-40 {
  background-color: rgba(var(--color-zeus-rgb), 0.4);
}

.text-color-zeus-40 {
  color: rgba(var(--color-zeus-rgb), 0.4);
}

.border-zeus-40 {
  border-color: rgba(var(--color-zeus-rgb), 0.4);
}

.bg-zeus-50 {
  background-color: rgba(var(--color-zeus-rgb), 0.5);
}

.text-color-zeus-50 {
  color: rgba(var(--color-zeus-rgb), 0.5);
}

.border-zeus-50 {
  border-color: rgba(var(--color-zeus-rgb), 0.5);
}

.bg-zeus-60 {
  background-color: rgba(var(--color-zeus-rgb), 0.6);
}

.text-color-zeus-60 {
  color: rgba(var(--color-zeus-rgb), 0.6);
}

.border-zeus-60 {
  border-color: rgba(var(--color-zeus-rgb), 0.6);
}

.bg-zeus-70 {
  background-color: rgba(var(--color-zeus-rgb), 0.7);
}

.text-color-zeus-70 {
  color: rgba(var(--color-zeus-rgb), 0.7);
}

.border-zeus-70 {
  border-color: rgba(var(--color-zeus-rgb), 0.7);
}

.bg-zeus-80 {
  background-color: rgba(var(--color-zeus-rgb), 0.8);
}

.text-color-zeus-80 {
  color: rgba(var(--color-zeus-rgb), 0.8);
}

.border-zeus-80 {
  border-color: rgba(var(--color-zeus-rgb), 0.8);
}

.bg-zeus-90 {
  background-color: rgba(var(--color-zeus-rgb), 0.9);
}

.text-color-zeus-90 {
  color: rgba(var(--color-zeus-rgb), 0.9);
}

.border-zeus-90 {
  border-color: rgba(var(--color-zeus-rgb), 0.9);
}

/* River Bed */
.bg-river-bed-10 {
  background-color: rgba(var(--color-river-bed-rgb), 0.1);
}

.text-color-river-bed-10 {
  color: rgba(var(--color-river-bed-rgb), 0.1);
}

.border-river-bed-10 {
  border-color: rgba(var(--color-river-bed-rgb), 0.1);
}

.bg-river-bed-20 {
  background-color: rgba(var(--color-river-bed-rgb), 0.2);
}

.text-color-river-bed-20 {
  color: rgba(var(--color-river-bed-rgb), 0.2);
}

.border-river-bed-20 {
  border-color: rgba(var(--color-river-bed-rgb), 0.2);
}

.bg-river-bed-30 {
  background-color: rgba(var(--color-river-bed-rgb), 0.3);
}

.text-color-river-bed-30 {
  color: rgba(var(--color-river-bed-rgb), 0.3);
}

.border-river-bed-30 {
  border-color: rgba(var(--color-river-bed-rgb), 0.3);
}

.bg-river-bed-40 {
  background-color: rgba(var(--color-river-bed-rgb), 0.4);
}

.text-color-river-bed-40 {
  color: rgba(var(--color-river-bed-rgb), 0.4);
}

.border-river-bed-40 {
  border-color: rgba(var(--color-river-bed-rgb), 0.4);
}

.bg-river-bed-50 {
  background-color: rgba(var(--color-river-bed-rgb), 0.5);
}

.text-color-river-bed-50 {
  color: rgba(var(--color-river-bed-rgb), 0.5);
}

.border-river-bed-50 {
  border-color: rgba(var(--color-river-bed-rgb), 0.5);
}

.bg-river-bed-60 {
  background-color: rgba(var(--color-river-bed-rgb), 0.6);
}

.text-color-river-bed-60 {
  color: rgba(var(--color-river-bed-rgb), 0.6);
}

.border-river-bed-60 {
  border-color: rgba(var(--color-river-bed-rgb), 0.6);
}

.bg-river-bed-70 {
  background-color: rgba(var(--color-river-bed-rgb), 0.7);
}

.text-color-river-bed-70 {
  color: rgba(var(--color-river-bed-rgb), 0.7);
}

.border-river-bed-70 {
  border-color: rgba(var(--color-river-bed-rgb), 0.7);
}

.bg-river-bed-80 {
  background-color: rgba(var(--color-river-bed-rgb), 0.8);
}

.text-color-river-bed-80 {
  color: rgba(var(--color-river-bed-rgb), 0.8);
}

.border-river-bed-80 {
  border-color: rgba(var(--color-river-bed-rgb), 0.8);
}

.bg-river-bed-90 {
  background-color: rgba(var(--color-river-bed-rgb), 0.9);
}

.text-color-river-bed-90 {
  color: rgba(var(--color-river-bed-rgb), 0.9);
}

.border-river-bed-90 {
  border-color: rgba(var(--color-river-bed-rgb), 0.9);
}

/* Slate Blue */
.bg-slate-blue-10 {
  background-color: rgba(var(--color-slate-blue-rgb), 0.1);
}

.text-color-slate-blue-10 {
  color: rgba(var(--color-slate-blue-rgb), 0.1);
}

.border-slate-blue-10 {
  border-color: rgba(var(--color-slate-blue-rgb), 0.1);
}

.bg-slate-blue-20 {
  background-color: rgba(var(--color-slate-blue-rgb), 0.2);
}

.text-color-slate-blue-20 {
  color: rgba(var(--color-slate-blue-rgb), 0.2);
}

.border-slate-blue-20 {
  border-color: rgba(var(--color-slate-blue-rgb), 0.2);
}

.bg-slate-blue-30 {
  background-color: rgba(var(--color-slate-blue-rgb), 0.3);
}

.text-color-slate-blue-30 {
  color: rgba(var(--color-slate-blue-rgb), 0.3);
}

.border-slate-blue-30 {
  border-color: rgba(var(--color-slate-blue-rgb), 0.3);
}

.bg-slate-blue-40 {
  background-color: rgba(var(--color-slate-blue-rgb), 0.4);
}

.text-color-slate-blue-40 {
  color: rgba(var(--color-slate-blue-rgb), 0.4);
}

.border-slate-blue-40 {
  border-color: rgba(var(--color-slate-blue-rgb), 0.4);
}

.bg-slate-blue-50 {
  background-color: rgba(var(--color-slate-blue-rgb), 0.5);
}

.text-color-slate-blue-50 {
  color: rgba(var(--color-slate-blue-rgb), 0.5);
}

.border-slate-blue-50 {
  border-color: rgba(var(--color-slate-blue-rgb), 0.5);
}

.bg-slate-blue-60 {
  background-color: rgba(var(--color-slate-blue-rgb), 0.6);
}

.text-color-slate-blue-60 {
  color: rgba(var(--color-slate-blue-rgb), 0.6);
}

.border-slate-blue-60 {
  border-color: rgba(var(--color-slate-blue-rgb), 0.6);
}

.bg-slate-blue-70 {
  background-color: rgba(var(--color-slate-blue-rgb), 0.7);
}

.text-color-slate-blue-70 {
  color: rgba(var(--color-slate-blue-rgb), 0.7);
}

.border-slate-blue-70 {
  border-color: rgba(var(--color-slate-blue-rgb), 0.7);
}

.bg-slate-blue-80 {
  background-color: rgba(var(--color-slate-blue-rgb), 0.8);
}

.text-color-slate-blue-80 {
  color: rgba(var(--color-slate-blue-rgb), 0.8);
}

.border-slate-blue-80 {
  border-color: rgba(var(--color-slate-blue-rgb), 0.8);
}

.bg-slate-blue-90 {
  background-color: rgba(var(--color-slate-blue-rgb), 0.9);
}

.text-color-slate-blue-90 {
  color: rgba(var(--color-slate-blue-rgb), 0.9);
}

.border-slate-blue-90 {
  border-color: rgba(var(--color-slate-blue-rgb), 0.9);
}

/* Mid Gray */
.bg-mid-gray-10 {
  background-color: rgba(var(--color-mid-gray-rgb), 0.1);
}

.text-color-mid-gray-10 {
  color: rgba(var(--color-mid-gray-rgb), 0.1);
}

.border-mid-gray-10 {
  border-color: rgba(var(--color-mid-gray-rgb), 0.1);
}

.bg-mid-gray-20 {
  background-color: rgba(var(--color-mid-gray-rgb), 0.2);
}

.text-color-mid-gray-20 {
  color: rgba(var(--color-mid-gray-rgb), 0.2);
}

.border-mid-gray-20 {
  border-color: rgba(var(--color-mid-gray-rgb), 0.2);
}

.bg-mid-gray-30 {
  background-color: rgba(var(--color-mid-gray-rgb), 0.3);
}

.text-color-mid-gray-30 {
  color: rgba(var(--color-mid-gray-rgb), 0.3);
}

.border-mid-gray-30 {
  border-color: rgba(var(--color-mid-gray-rgb), 0.3);
}

.bg-mid-gray-40 {
  background-color: rgba(var(--color-mid-gray-rgb), 0.4);
}

.text-color-mid-gray-40 {
  color: rgba(var(--color-mid-gray-rgb), 0.4);
}

.border-mid-gray-40 {
  border-color: rgba(var(--color-mid-gray-rgb), 0.4);
}

.bg-mid-gray-50 {
  background-color: rgba(var(--color-mid-gray-rgb), 0.5);
}

.text-color-mid-gray-50 {
  color: rgba(var(--color-mid-gray-rgb), 0.5);
}

.border-mid-gray-50 {
  border-color: rgba(var(--color-mid-gray-rgb), 0.5);
}

.bg-mid-gray-60 {
  background-color: rgba(var(--color-mid-gray-rgb), 0.6);
}

.text-color-mid-gray-60 {
  color: rgba(var(--color-mid-gray-rgb), 0.6);
}

.border-mid-gray-60 {
  border-color: rgba(var(--color-mid-gray-rgb), 0.6);
}

.bg-mid-gray-70 {
  background-color: rgba(var(--color-mid-gray-rgb), 0.7);
}

.text-color-mid-gray-70 {
  color: rgba(var(--color-mid-gray-rgb), 0.7);
}

.border-mid-gray-70 {
  border-color: rgba(var(--color-mid-gray-rgb), 0.7);
}

.bg-mid-gray-80 {
  background-color: rgba(var(--color-mid-gray-rgb), 0.8);
}

.text-color-mid-gray-80 {
  color: rgba(var(--color-mid-gray-rgb), 0.8);
}

.border-mid-gray-80 {
  border-color: rgba(var(--color-mid-gray-rgb), 0.8);
}

.bg-mid-gray-90 {
  background-color: rgba(var(--color-mid-gray-rgb), 0.9);
}

.text-color-mid-gray-90 {
  color: rgba(var(--color-mid-gray-rgb), 0.9);
}

.border-mid-gray-90 {
  border-color: rgba(var(--color-mid-gray-rgb), 0.9);
}

/* Yellow Green */
.bg-yellow-green-10 {
  background-color: rgba(var(--color-yellow-green-rgb), 0.1);
}

.text-color-yellow-green-10 {
  color: rgba(var(--color-yellow-green-rgb), 0.1);
}

.border-yellow-green-10 {
  border-color: rgba(var(--color-yellow-green-rgb), 0.1);
}

.bg-yellow-green-20 {
  background-color: rgba(var(--color-yellow-green-rgb), 0.2);
}

.text-color-yellow-green-20 {
  color: rgba(var(--color-yellow-green-rgb), 0.2);
}

.border-yellow-green-20 {
  border-color: rgba(var(--color-yellow-green-rgb), 0.2);
}

.bg-yellow-green-30 {
  background-color: rgba(var(--color-yellow-green-rgb), 0.3);
}

.text-color-yellow-green-30 {
  color: rgba(var(--color-yellow-green-rgb), 0.3);
}

.border-yellow-green-30 {
  border-color: rgba(var(--color-yellow-green-rgb), 0.3);
}

.bg-yellow-green-40 {
  background-color: rgba(var(--color-yellow-green-rgb), 0.4);
}

.text-color-yellow-green-40 {
  color: rgba(var(--color-yellow-green-rgb), 0.4);
}

.border-yellow-green-40 {
  border-color: rgba(var(--color-yellow-green-rgb), 0.4);
}

.bg-yellow-green-50 {
  background-color: rgba(var(--color-yellow-green-rgb), 0.5);
}

.text-color-yellow-green-50 {
  color: rgba(var(--color-yellow-green-rgb), 0.5);
}

.border-yellow-green-50 {
  border-color: rgba(var(--color-yellow-green-rgb), 0.5);
}

.bg-yellow-green-60 {
  background-color: rgba(var(--color-yellow-green-rgb), 0.6);
}

.text-color-yellow-green-60 {
  color: rgba(var(--color-yellow-green-rgb), 0.6);
}

.border-yellow-green-60 {
  border-color: rgba(var(--color-yellow-green-rgb), 0.6);
}

.bg-yellow-green-70 {
  background-color: rgba(var(--color-yellow-green-rgb), 0.7);
}

.text-color-yellow-green-70 {
  color: rgba(var(--color-yellow-green-rgb), 0.7);
}

.border-yellow-green-70 {
  border-color: rgba(var(--color-yellow-green-rgb), 0.7);
}

.bg-yellow-green-80 {
  background-color: rgba(var(--color-yellow-green-rgb), 0.8);
}

.text-color-yellow-green-80 {
  color: rgba(var(--color-yellow-green-rgb), 0.8);
}

.border-yellow-green-80 {
  border-color: rgba(var(--color-yellow-green-rgb), 0.8);
}

.bg-yellow-green-90 {
  background-color: rgba(var(--color-yellow-green-rgb), 0.9);
}

.text-color-yellow-green-90 {
  color: rgba(var(--color-yellow-green-rgb), 0.9);
}

.border-yellow-green-90 {
  border-color: rgba(var(--color-yellow-green-rgb), 0.9);
}

/* Dark Pelorous */
.bg-dark-pelorous-10 {
  background-color: rgba(var(--color-dark-pelorous-rgb), 0.1);
}

.text-color-dark-pelorous-10 {
  color: rgba(var(--color-dark-pelorous-rgb), 0.1);
}

.border-dark-pelorous-10 {
  border-color: rgba(var(--color-dark-pelorous-rgb), 0.1);
}

.bg-dark-pelorous-20 {
  background-color: rgba(var(--color-dark-pelorous-rgb), 0.2);
}

.text-color-dark-pelorous-20 {
  color: rgba(var(--color-dark-pelorous-rgb), 0.2);
}

.border-dark-pelorous-20 {
  border-color: rgba(var(--color-dark-pelorous-rgb), 0.2);
}

.bg-dark-pelorous-30 {
  background-color: rgba(var(--color-dark-pelorous-rgb), 0.3);
}

.text-color-dark-pelorous-30 {
  color: rgba(var(--color-dark-pelorous-rgb), 0.3);
}

.border-dark-pelorous-30 {
  border-color: rgba(var(--color-dark-pelorous-rgb), 0.3);
}

.bg-dark-pelorous-40 {
  background-color: rgba(var(--color-dark-pelorous-rgb), 0.4);
}

.text-color-dark-pelorous-40 {
  color: rgba(var(--color-dark-pelorous-rgb), 0.4);
}

.border-dark-pelorous-40 {
  border-color: rgba(var(--color-dark-pelorous-rgb), 0.4);
}

.bg-dark-pelorous-50 {
  background-color: rgba(var(--color-dark-pelorous-rgb), 0.5);
}

.text-color-dark-pelorous-50 {
  color: rgba(var(--color-dark-pelorous-rgb), 0.5);
}

.border-dark-pelorous-50 {
  border-color: rgba(var(--color-dark-pelorous-rgb), 0.5);
}

.bg-dark-pelorous-60 {
  background-color: rgba(var(--color-dark-pelorous-rgb), 0.6);
}

.text-color-dark-pelorous-60 {
  color: rgba(var(--color-dark-pelorous-rgb), 0.6);
}

.border-dark-pelorous-60 {
  border-color: rgba(var(--color-dark-pelorous-rgb), 0.6);
}

.bg-dark-pelorous-70 {
  background-color: rgba(var(--color-dark-pelorous-rgb), 0.7);
}

.text-color-dark-pelorous-70 {
  color: rgba(var(--color-dark-pelorous-rgb), 0.7);
}

.border-dark-pelorous-70 {
  border-color: rgba(var(--color-dark-pelorous-rgb), 0.7);
}

.bg-dark-pelorous-80 {
  background-color: rgba(var(--color-dark-pelorous-rgb), 0.8);
}

.text-color-dark-pelorous-80 {
  color: rgba(var(--color-dark-pelorous-rgb), 0.8);
}

.border-dark-pelorous-80 {
  border-color: rgba(var(--color-dark-pelorous-rgb), 0.8);
}

.bg-dark-pelorous-90 {
  background-color: rgba(var(--color-dark-pelorous-rgb), 0.9);
}

.text-color-dark-pelorous-90 {
  color: rgba(var(--color-dark-pelorous-rgb), 0.9);
}

.border-dark-pelorous-90 {
  border-color: rgba(var(--color-dark-pelorous-rgb), 0.9);
}

/* Light Coral */
.bg-light-coral-10 {
  background-color: rgba(var(--color-light-coral-rgb), 0.1);
}

.text-color-light-coral-10 {
  color: rgba(var(--color-light-coral-rgb), 0.1);
}

.border-light-coral-10 {
  border-color: rgba(var(--color-light-coral-rgb), 0.1);
}

.bg-light-coral-20 {
  background-color: rgba(var(--color-light-coral-rgb), 0.2);
}

.text-color-light-coral-20 {
  color: rgba(var(--color-light-coral-rgb), 0.2);
}

.border-light-coral-20 {
  border-color: rgba(var(--color-light-coral-rgb), 0.2);
}

.bg-light-coral-30 {
  background-color: rgba(var(--color-light-coral-rgb), 0.3);
}

.text-color-light-coral-30 {
  color: rgba(var(--color-light-coral-rgb), 0.3);
}

.border-light-coral-30 {
  border-color: rgba(var(--color-light-coral-rgb), 0.3);
}

.bg-light-coral-40 {
  background-color: rgba(var(--color-light-coral-rgb), 0.4);
}

.text-color-light-coral-40 {
  color: rgba(var(--color-light-coral-rgb), 0.4);
}

.border-light-coral-40 {
  border-color: rgba(var(--color-light-coral-rgb), 0.4);
}

.bg-light-coral-50 {
  background-color: rgba(var(--color-light-coral-rgb), 0.5);
}

.text-color-light-coral-50 {
  color: rgba(var(--color-light-coral-rgb), 0.5);
}

.border-light-coral-50 {
  border-color: rgba(var(--color-light-coral-rgb), 0.5);
}

.bg-light-coral-60 {
  background-color: rgba(var(--color-light-coral-rgb), 0.6);
}

.text-color-light-coral-60 {
  color: rgba(var(--color-light-coral-rgb), 0.6);
}

.border-light-coral-60 {
  border-color: rgba(var(--color-light-coral-rgb), 0.6);
}

.bg-light-coral-70 {
  background-color: rgba(var(--color-light-coral-rgb), 0.7);
}

.text-color-light-coral-70 {
  color: rgba(var(--color-light-coral-rgb), 0.7);
}

.border-light-coral-70 {
  border-color: rgba(var(--color-light-coral-rgb), 0.7);
}

.bg-light-coral-80 {
  background-color: rgba(var(--color-light-coral-rgb), 0.8);
}

.text-color-light-coral-80 {
  color: rgba(var(--color-light-coral-rgb), 0.8);
}

.border-light-coral-80 {
  border-color: rgba(var(--color-light-coral-rgb), 0.8);
}

.bg-light-coral-90 {
  background-color: rgba(var(--color-light-coral-rgb), 0.9);
}

.text-color-light-coral-90 {
  color: rgba(var(--color-light-coral-rgb), 0.9);
}

.border-light-coral-90 {
  border-color: rgba(var(--color-light-coral-rgb), 0.9);
}

/* Anzac */
.bg-anzac-10 {
  background-color: rgba(var(--color-anzac-rgb), 0.1);
}

.text-color-anzac-10 {
  color: rgba(var(--color-anzac-rgb), 0.1);
}

.border-anzac-10 {
  border-color: rgba(var(--color-anzac-rgb), 0.1);
}

.bg-anzac-20 {
  background-color: rgba(var(--color-anzac-rgb), 0.2);
}

.text-color-anzac-20 {
  color: rgba(var(--color-anzac-rgb), 0.2);
}

.border-anzac-20 {
  border-color: rgba(var(--color-anzac-rgb), 0.2);
}

.bg-anzac-30 {
  background-color: rgba(var(--color-anzac-rgb), 0.3);
}

.text-color-anzac-30 {
  color: rgba(var(--color-anzac-rgb), 0.3);
}

.border-anzac-30 {
  border-color: rgba(var(--color-anzac-rgb), 0.3);
}

.bg-anzac-40 {
  background-color: rgba(var(--color-anzac-rgb), 0.4);
}

.text-color-anzac-40 {
  color: rgba(var(--color-anzac-rgb), 0.4);
}

.border-anzac-40 {
  border-color: rgba(var(--color-anzac-rgb), 0.4);
}

.bg-anzac-50 {
  background-color: rgba(var(--color-anzac-rgb), 0.5);
}

.text-color-anzac-50 {
  color: rgba(var(--color-anzac-rgb), 0.5);
}

.border-anzac-50 {
  border-color: rgba(var(--color-anzac-rgb), 0.5);
}

.bg-anzac-60 {
  background-color: rgba(var(--color-anzac-rgb), 0.6);
}

.text-color-anzac-60 {
  color: rgba(var(--color-anzac-rgb), 0.6);
}

.border-anzac-60 {
  border-color: rgba(var(--color-anzac-rgb), 0.6);
}

.bg-anzac-70 {
  background-color: rgba(var(--color-anzac-rgb), 0.7);
}

.text-color-anzac-70 {
  color: rgba(var(--color-anzac-rgb), 0.7);
}

.border-anzac-70 {
  border-color: rgba(var(--color-anzac-rgb), 0.7);
}

.bg-anzac-80 {
  background-color: rgba(var(--color-anzac-rgb), 0.8);
}

.text-color-anzac-80 {
  color: rgba(var(--color-anzac-rgb), 0.8);
}

.border-anzac-80 {
  border-color: rgba(var(--color-anzac-rgb), 0.8);
}

.bg-anzac-90 {
  background-color: rgba(var(--color-anzac-rgb), 0.9);
}

.text-color-anzac-90 {
  color: rgba(var(--color-anzac-rgb), 0.9);
}

.border-anzac-90 {
  border-color: rgba(var(--color-anzac-rgb), 0.9);
}

/* Goldenrod */
.bg-goldenrod-10 {
  background-color: rgba(var(--color-goldenrod-rgb), 0.1);
}

.text-color-goldenrod-10 {
  color: rgba(var(--color-goldenrod-rgb), 0.1);
}

.border-goldenrod-10 {
  border-color: rgba(var(--color-goldenrod-rgb), 0.1);
}

.bg-goldenrod-20 {
  background-color: rgba(var(--color-goldenrod-rgb), 0.2);
}

.text-color-goldenrod-20 {
  color: rgba(var(--color-goldenrod-rgb), 0.2);
}

.border-goldenrod-20 {
  border-color: rgba(var(--color-goldenrod-rgb), 0.2);
}

.bg-goldenrod-30 {
  background-color: rgba(var(--color-goldenrod-rgb), 0.3);
}

.text-color-goldenrod-30 {
  color: rgba(var(--color-goldenrod-rgb), 0.3);
}

.border-goldenrod-30 {
  border-color: rgba(var(--color-goldenrod-rgb), 0.3);
}

.bg-goldenrod-40 {
  background-color: rgba(var(--color-goldenrod-rgb), 0.4);
}

.text-color-goldenrod-40 {
  color: rgba(var(--color-goldenrod-rgb), 0.4);
}

.border-goldenrod-40 {
  border-color: rgba(var(--color-goldenrod-rgb), 0.4);
}

.bg-goldenrod-50 {
  background-color: rgba(var(--color-goldenrod-rgb), 0.5);
}

.text-color-goldenrod-50 {
  color: rgba(var(--color-goldenrod-rgb), 0.5);
}

.border-goldenrod-50 {
  border-color: rgba(var(--color-goldenrod-rgb), 0.5);
}

.bg-goldenrod-60 {
  background-color: rgba(var(--color-goldenrod-rgb), 0.6);
}

.text-color-goldenrod-60 {
  color: rgba(var(--color-goldenrod-rgb), 0.6);
}

.border-goldenrod-60 {
  border-color: rgba(var(--color-goldenrod-rgb), 0.6);
}

.bg-goldenrod-70 {
  background-color: rgba(var(--color-goldenrod-rgb), 0.7);
}

.text-color-goldenrod-70 {
  color: rgba(var(--color-goldenrod-rgb), 0.7);
}

.border-goldenrod-70 {
  border-color: rgba(var(--color-goldenrod-rgb), 0.7);
}

.bg-goldenrod-80 {
  background-color: rgba(var(--color-goldenrod-rgb), 0.8);
}

.text-color-goldenrod-80 {
  color: rgba(var(--color-goldenrod-rgb), 0.8);
}

.border-goldenrod-80 {
  border-color: rgba(var(--color-goldenrod-rgb), 0.8);
}

.bg-goldenrod-90 {
  background-color: rgba(var(--color-goldenrod-rgb), 0.9);
}

.text-color-goldenrod-90 {
  color: rgba(var(--color-goldenrod-rgb), 0.9);
}

.border-goldenrod-90 {
  border-color: rgba(var(--color-goldenrod-rgb), 0.9);
}

/* White */
.bg-white-10 {
  background-color: rgba(var(--color-white-rgb), 0.1);
}

.text-color-white-10 {
  color: rgba(var(--color-white-rgb), 0.1);
}

.border-white-10 {
  border-color: rgba(var(--color-white-rgb), 0.1);
}

.bg-white-20 {
  background-color: rgba(var(--color-white-rgb), 0.2);
}

.text-color-white-20 {
  color: rgba(var(--color-white-rgb), 0.2);
}

.border-white-20 {
  border-color: rgba(var(--color-white-rgb), 0.2);
}

.bg-white-30 {
  background-color: rgba(var(--color-white-rgb), 0.3);
}

.text-color-white-30 {
  color: rgba(var(--color-white-rgb), 0.3);
}

.border-white-30 {
  border-color: rgba(var(--color-white-rgb), 0.3);
}

.bg-white-40 {
  background-color: rgba(var(--color-white-rgb), 0.4);
}

.text-color-white-40 {
  color: rgba(var(--color-white-rgb), 0.4);
}

.border-white-40 {
  border-color: rgba(var(--color-white-rgb), 0.4);
}

.bg-white-50 {
  background-color: rgba(var(--color-white-rgb), 0.5);
}

.text-color-white-50 {
  color: rgba(var(--color-white-rgb), 0.5);
}

.border-white-50 {
  border-color: rgba(var(--color-white-rgb), 0.5);
}

.bg-white-60 {
  background-color: rgba(var(--color-white-rgb), 0.6);
}

.text-color-white-60 {
  color: rgba(var(--color-white-rgb), 0.6);
}

.border-white-60 {
  border-color: rgba(var(--color-white-rgb), 0.6);
}

.bg-white-70 {
  background-color: rgba(var(--color-white-rgb), 0.7);
}

.text-color-white-70 {
  color: rgba(var(--color-white-rgb), 0.7);
}

.border-white-70 {
  border-color: rgba(var(--color-white-rgb), 0.7);
}

.bg-white-80 {
  background-color: rgba(var(--color-white-rgb), 0.8);
}

.text-color-white-80 {
  color: rgba(var(--color-white-rgb), 0.8);
}

.border-white-80 {
  border-color: rgba(var(--color-white-rgb), 0.8);
}

.bg-white-90 {
  background-color: rgba(var(--color-white-rgb), 0.9);
}

.text-color-white-90 {
  color: rgba(var(--color-white-rgb), 0.9);
}

.border-white-90 {
  border-color: rgba(var(--color-white-rgb), 0.9);
}

/* =========================================================================
   TYPOGRAPHY
   Typography system (mobile-first)
   ========================================================================= */

/* Hero H1 */
.text-hero-h1,
.wp-child-theme-bridge-child .title h1 span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 40px;
  line-height: 110%;
  letter-spacing: -0.01em;
  /* -1% */
  text-transform: none;
}

/* Hero Subhead */
.text-hero-subhead,
.wp-child-theme-bridge-child .subtitle {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 165%;
  letter-spacing: -0.01em;
  /* -1% */
  text-transform: none;
}

/* Heading H1 */
.text-heading-h1,
h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  line-height: 113%;
  letter-spacing: -0.01em;
  /* -1% */
  text-transform: none;
}

/* Heading H2 */
.wp-child-theme-bridge-child .text-heading-h2,
.wp-child-theme-bridge-child h2,
.wp-child-theme-bridge-child .data-target-div1 #caf-post-layout4 .caf-post-title h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 30px;
  line-height: 123%;
  letter-spacing: -0.01em;
  /* -1% */
  text-transform: none;
}

/* Heading H3 */
.text-heading-h3,
.wp-child-theme-bridge-child h3,
.wp-child-theme-bridge-child .resources .qode-advanced-tab-container h2,
.wp-child-theme-bridge-child .team .wpb_row .full_section_inner .wpb_column .wpb_text_column h3 a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 127%;
  letter-spacing: -0.005em;
  /* -0.5% */
  text-transform: none;
}

.wp-child-theme-bridge-child .content-block-list .grid_section .wpb_column h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 121%;
}

/* Heading H4 */
.text-heading-h4,
.wp-child-theme-bridge-child .contact-form h4 span,
.wp-child-theme-bridge-child footer h2,
.wp-child-theme-bridge-child footer h5,
.wp-child-theme-bridge-child h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  line-height: 133%;
  letter-spacing: 0;
  text-transform: none;
}

/* Body Large */
.text-body-large,
.wp-child-theme-bridge-child .content-block p,
.wp-child-theme-bridge-child .content-block-backdrop p,
.wp-child-theme-bridge-child .content-block-list p,
.wp-child-theme-bridge-child .card-grid p,
.wp-child-theme-bridge-child .areas-of-specialization p,
.wp-child-theme-bridge-child .card-grid .qode-info-card .qode-info-card-text-holder p,
.wp-child-theme-bridge-child .testimonials-grid p,
.wp-child-theme-bridge-child.team-member .bc-tm-profile .bc-tm-profile__description p,
.wp-child-theme-bridge-child .team .wpb_row .full_section_inner .wpb_column .wpb_text_column h4,
.wp-child-theme-bridge-child .workflow h3,
.wp-child-theme-bridge-child .team .text-body-large p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  letter-spacing: 0;
  text-transform: none;
}

/* Body */
.text-body,
.wp-child-theme-bridge-child .team .wpb_row .full_section_inner .wpb_column .wpb_text_column p,
.wp-child-theme-bridge-child .areas-of-specialization .wpb_row:not(:first-of-type) p,
.wp-child-theme-bridge-child .data-target-div1 #caf-post-layout4 .caf-content,
.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text ol li,
.wp-child-theme-bridge-child .card-grid h4,
.wp-child-theme-bridge-child .resources .qode-advanced-tab-container ul li a,
.wp-child-theme-bridge-child .qode-advanced-tabs .qode-advanced-tabs-nav li a,
.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  text-transform: none;
}

/* Body Small */
.text-body-small,
.wp-child-theme-bridge-child .content-block-list .grid_section .wpb_column p,
.wp-child-theme-bridge-child .periodical-highlights p a,
.wp-child-theme-bridge-child .periodical-highlights p,
.wp-child-theme-bridge-child .resources .qode-advanced-tab-container p,
.wp-child-theme-bridge-child footer p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: 0;
  text-transform: none;
}

/* Body List */
.text-body-list,
.wp-child-theme-bridge-child .content-block-list .grid_section .wpb_column .q_icon_list p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 162.5%;
  letter-spacing: 0;
  text-transform: none;
}

/* Button */
.text-button,
.wp-child-theme-bridge-child footer .footer_top .widget_nav_menu li.menu-item a,
.wp-child-theme-bridge-child .qode-advanced-tabs .qode-advanced-tabs-nav a span,
.wp-child-theme-bridge-child footer a,
.wp-child-theme-bridge-child #caf-filter-layout1.caf-filter-layout ul.caf-filter-container li a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.005em;
  /* 0.5% */
  text-transform: none;
}

/* Nav */
.text-nav {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  line-height: 133%;
  letter-spacing: 0.005em;
  /* 0.5% */
  text-transform: none;
}

/* Nav Active */
.text-nav-active {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  line-height: 133%;
  letter-spacing: 0.005em;
  /* 0.5% */
  text-transform: none;
}

/* Label */
.text-label,
.wp-child-theme-bridge-child footer .footer_bottom a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 133%;
  letter-spacing: 0.02em;
  /* 2% */
  text-transform: none;
}

/* Overline Caption */
.text-overline-caption,
.content-block .text-overline-caption p,
.wp-child-theme-bridge-child .areas-of-specialization .wpb_row:last-of-type .wpb_text_column:last-of-type .wpb_wrapper p,
.wp-child-theme-bridge-child.team-member .bc-tm-hero__eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  line-height: 150%;
  letter-spacing: 0.08em;
  /* 8% */
  text-transform: uppercase;
}

/* Helper Text */
.text-helper {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  line-height: 150%;
  letter-spacing: 0;
  text-transform: none;
}

/* Label Small */
.text-label-small,
.wp-child-theme-bridge-child .contact-form form label,
.wp-child-theme-bridge-child .contact-form form p,
.wp-child-theme-bridge-child .contact-form form input::placeholder,
.wp-child-theme-bridge-child .contact-form form textarea::placeholder,
.wp-child-theme-bridge-child footer .footer-mobile a,
.wp-child-theme-bridge-child .data-target-div1 #caf-post-layout4 .caf-meta-content-cats li a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  line-height: 133%;
  letter-spacing: 0.02em;
  /* 2% */
  text-transform: none;
}

/* Quote */
.text-quote,
.wp-child-theme-bridge-child .content-block-backdrop .text-quote p,
.wp-child-theme-bridge-child .content-block .text-quote p,
.wp-child-theme-bridge-child.team-member .bc-tm-profile blockquote.bc-tm-profile__quote,
.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text h5.blockquote-text,
.wp-child-theme-bridge-child .content-block-backdrop .text-quote p {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 144%;
  letter-spacing: 0;
  text-transform: none;
}

/* Utility - Contact */
.text-utility-contact {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  line-height: 133%;
  letter-spacing: 0;
  text-transform: none;
}

/* =========================================================================
   TABLET (>= 1024px)
   ========================================================================= */
@media (min-width: 1024px) {

  .text-hero-h1,
  .wp-child-theme-bridge-child .title h1 span {
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.005em;
    /* -0.5% */
  }

  .text-hero-subhead,
  .wp-child-theme-bridge-child .subtitle {
    font-weight: 400;
    font-size: 18px;
    line-height: 164%;
    letter-spacing: 0;
  }

  .text-heading-h1,
  h1,
  .wp-child-theme-bridge-child .content-block-wrapper>.section_inner>.section_inner_margin>.wpb_column>.vc_column-inner>.wpb_wrapper>.wpb_text_column>.wpb_wrapper h2,
  .wp-child-theme-bridge-child .areas-of-specialization h2,
  .wp-child-theme-bridge-child .periodical-highlights h2 {
    font-size: 44px;
    line-height: 115%;
    letter-spacing: -0.005em;
    /* -0.5% */
  }

  .text-heading-h2,
  .wp-child-theme-bridge-child h2,
  .wp-child-theme-bridge-child .data-target-div1 #caf-post-layout4 .caf-post-title h2 {
    font-weight: 500;
    font-size: 36px;
    line-height: 119%;
    letter-spacing: 0;
  }

  .wp-child-theme-bridge-child .team .wpb_row .full_section_inner .wpb_column .wpb_text_column h3 a,
  .wp-child-theme-bridge-child .resources .qode-advanced-tab-container h2 {
    font-size: 28px;
    line-height: 121%;
  }

  .text-heading-h3,
  .wp-child-theme-bridge-child .card-grid .qode-info-card-text-holder h3,
  h3,
  .wp-child-theme-bridge-child .areas-of-specialization h3,
  .wp-child-theme-bridge-child .content-block-list .grid_section .wpb_column h3,
  .wp-child-theme-bridge-child .testimonials-grid .q_icon_with_title .icon_text_holder h5.icon_title {
    font-size: 26px;
    line-height: 123%;
    letter-spacing: 0;
  }

  .wp-child-theme-bridge-child .areas-of-specialization h4 {
    font-size: 22px;
    line-height: 127%;
  }

  .text-heading-h4,
  h4,
  .wp-child-theme-bridge-child .contact-form h4 span,
  .wp-child-theme-bridge-child footer h2,
  .wp-child-theme-bridge-child footer h5,
  .wp-child-theme-bridge-child .testimonials-grid p,
  .wp-child-theme-bridge-child h4 {
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0;
  }

  .text-body-large,
  .wp-child-theme-bridge-child .content-block p,
  .wp-child-theme-bridge-child .content-block-backdrop p,
  .wp-child-theme-bridge-child .content-block-list p,
  .wp-child-theme-bridge-child .card-grid p,
  .wp-child-theme-bridge-child .areas-of-specialization p,
  .wp-child-theme-bridge-child .card-grid .qode-info-card .qode-info-card-text-holder p,
  .wp-child-theme-bridge-child.team-member .bc-tm-profile .bc-tm-profile__description p,
  .wp-child-theme-bridge-child .team .wpb_row .full_section_inner .wpb_column .wpb_text_column h4,
  .wp-child-theme-bridge-child .workflow h3,
  .wp-child-theme-bridge-child .periodical-highlights p a,
  .wp-child-theme-bridge-child .periodical-highlights p,
  .wp-child-theme-bridge-child .grid_section.content-block-backdrop p,
  .wp-child-theme-bridge-child .qode-advanced-tabs .qode-advanced-tabs-nav li a,
  .wp-child-theme-bridge-child .team .text-body-large p {
    font-size: 18px;
    line-height: 140%;
  }

  .text-body,
  .wp-child-theme-bridge-child .team .wpb_row .full_section_inner .wpb_column .wpb_text_column p,
  .wp-child-theme-bridge-child .areas-of-specialization .wpb_row:not(:first-of-type) p,
  .wp-child-theme-bridge-child .data-target-div1 #caf-post-layout4 .caf-content,
  .wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text ol li,
  .wp-child-theme-bridge-child .card-grid h4,
  .wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text p {
    font-size: 16px;
    line-height: 150%;
  }

  .text-body-small,
  .wp-child-theme-bridge-child .content-block-list .grid_section .wpb_column p,
  .wp-child-theme-bridge-child footer p {
    font-size: 14px;
    line-height: 143%;
  }

  .text-body-list,
  .wp-child-theme-bridge-child .content-block-list .grid_section .wpb_column .q_icon_list p {
    font-size: 16px;
    line-height: 135%;
  }

  .text-button,
  .wp-child-theme-bridge-child footer .footer_top .widget_nav_menu li.menu-item a,
  .wp-child-theme-bridge-child .qode-advanced-tabs .qode-advanced-tabs-nav a span,
  .wp-child-theme-bridge-child #caf-filter-layout1.caf-filter-layout ul.caf-filter-container li a {
    font-size: 16px;
    line-height: 125%;
    letter-spacing: 0.005em;
    /* 0.5% */
  }

  .text-nav {
    font-size: 15px;
    line-height: 133%;
    letter-spacing: 0.005em;
    /* 0.5% */
  }

  .text-nav-active {
    font-weight: 500;
    font-size: 15px;
    line-height: 133%;
    letter-spacing: 0.005em;
    /* 0.5% */
  }

  .text-label {
    font-size: 14px;
    line-height: 133%;
    letter-spacing: 0.02em;
    /* 2% */
  }

  .text-overline-caption,
  .content-block .text-overline-caption p,
  .wp-child-theme-bridge-child .areas-of-specialization .wpb_row:last-of-type .wpb_text_column:last-of-type .wpb_wrapper p,
  .wp-child-theme-bridge-child.team-member .bc-tm-hero__eyebrow {
    font-size: 13px;
    line-height: 150%;
    letter-spacing: 0.08em;
    /* 8% */
    text-transform: uppercase;
  }

  .text-helper {
    font-size: 13px;
    line-height: 150%;
  }

  .text-label-small,
  .wp-child-theme-bridge-child .contact-form form label,
  .wp-child-theme-bridge-child .contact-form form p,
  .wp-child-theme-bridge-child .contact-form form input::placeholder,
  .wp-child-theme-bridge-child .contact-form form textarea::placeholder,
  .wp-child-theme-bridge-child .data-target-div1 #caf-post-layout4 .caf-meta-content-cats li a {
    font-size: 12px;
    line-height: 133%;
    letter-spacing: 0.02em;
    /* 2% */
  }

  .text-quote,
  .wp-child-theme-bridge-child .content-block-backdrop .text-quote p,
  .wp-child-theme-bridge-child .content-block .text-quote p,
  .wp-child-theme-bridge-child.team-member .bc-tm-profile blockquote.bc-tm-profile__quote,
  .wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text h5.blockquote-text {
    font-size: 20px;
    line-height: 140%;
  }

  .text-utility-contact {
    font-size: 14px;
    line-height: 133%;
  }
}

/* =========================================================================
   DESKTOP (>= 1440px)
   ========================================================================= */
@media (min-width: 1440px) {

  .text-hero-h1,
  .wp-child-theme-bridge-child .title h1 span {
    font-size: 68px;
    line-height: 110%;
    letter-spacing: -0.01em;
    /* -1% */
  }

  .text-hero-subhead,
  .wp-child-theme-bridge-child .subtitle {
    font-weight: 400;
    font-size: 20px;
    line-height: 170%;
    letter-spacing: 0;
  }

  .text-heading-h1,
  h1 {
    font-size: 52px;
    line-height: 112%;
    letter-spacing: -0.005em;
    /* -0.5% */
  }

  .text-heading-h2,
  .wp-child-theme-bridge-child h2,
  .wp-child-theme-bridge-child .data-target-div1 #caf-post-layout4 .caf-post-title h2 {
    font-weight: 500;
    font-size: 44px;
    line-height: 117%;
    letter-spacing: 0;
  }

  .text-heading-h3,
  .wp-child-theme-bridge-child .card-grid .qode-info-card-text-holder h3,
  .wp-child-theme-bridge-child h3,
  .wp-child-theme-bridge-child .testimonials-grid .q_icon_with_title .icon_text_holder h5.icon_title,
  .wp-child-theme-bridge-child .content-block-list .grid_section .wpb_column h3,
  .wp-child-theme-bridge-child .team .wpb_row .full_section_inner .wpb_column .wpb_text_column h3 a {
    font-size: 28px;
    line-height: 121%;
    letter-spacing: 0;
  }

  .text-heading-h4,
  .wp-child-theme-bridge-child footer h2,
  .wp-child-theme-bridge-child footer h5,
  .wp-child-theme-bridge-child .grid_section.content-block-backdrop .text-quote p,
  .wp-child-theme-bridge-child .testimonials-grid p,
  .wp-child-theme-bridge-child h4 {
    font-size: 22px;
    line-height: 127%;
    letter-spacing: 0;
  }

  .wp-child-theme-bridge-child .qode-advanced-tabs .qode-advanced-tabs-nav li a {
    font-size: 20px;
    line-height: 125%;
  }

  .text-body-large,
  .wp-child-theme-bridge-child .content-block p,
  .wp-child-theme-bridge-child .content-block-backdrop p,
  .wp-child-theme-bridge-child .content-block-list p,
  .wp-child-theme-bridge-child .card-grid p,
  .wp-child-theme-bridge-child .areas-of-specialization p,
  .wp-child-theme-bridge-child.team-member .bc-tm-profile .bc-tm-profile__description p,
  .wp-child-theme-bridge-child .periodical-highlights p a,
  .wp-child-theme-bridge-child .periodical-highlights p,
  .wp-child-theme-bridge-child .contact-form h4 span,
  .wp-child-theme-bridge-child .contact-form h4,
  .wp-child-theme-bridge-child .team .wpb_row .full_section_inner .wpb_column .wpb_text_column h4,
  .wp-child-theme-bridge-child .workflow h3,
  .wp-child-theme-bridge-child .team .text-body-large p {
    font-size: 18px;
    line-height: 156%;
  }

  .text-body,
  .wp-child-theme-bridge-child .team .wpb_row .full_section_inner .wpb_column .wpb_text_column p,
  .wp-child-theme-bridge-child .areas-of-specialization .wpb_row:not(:first-of-type) p,
  .wp-child-theme-bridge-child .data-target-div1 #caf-post-layout4 .caf-content,
  .wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text ol li,
  .wp-child-theme-bridge-child .card-grid h4,
  .wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text p {
    font-size: 16px;
    line-height: 150%;
  }

  .text-body-small,
  .wp-child-theme-bridge-child .content-block-list .grid_section .wpb_column p,
  .wp-child-theme-bridge-child footer p,
  .wp-child-theme-bridge-child .card-grid .qode-info-card .qode-info-card-text-holder p,
  .wp-child-theme-bridge-child .card-grid.side-by-side p {
    font-size: 14px;
    line-height: 143%;
  }

  .text-body-list,
  .wp-child-theme-bridge-child .content-block-list .grid_section .wpb_column .q_icon_list p {
    font-size: 16px;
    line-height: 135%;
  }

  .text-button,
  .wp-child-theme-bridge-child footer .footer_top .widget_nav_menu li.menu-item a,
  .wp-child-theme-bridge-child .qode-advanced-tabs .qode-advanced-tabs-nav a span,
  .wp-child-theme-bridge-child #caf-filter-layout1.caf-filter-layout ul.caf-filter-container li a {
    font-size: 16px;
    line-height: 125%;
    letter-spacing: 0.005em;
    /* 0.5% */
  }

  .text-nav {
    font-size: 16px;
    line-height: 125%;
    letter-spacing: 0.005em;
    /* 0.5% */
  }

  .text-nav-active {
    font-weight: 600;
    font-size: 16px;
    line-height: 125%;
    letter-spacing: 0.005em;
    /* 0.5% */
  }

  .text-label {
    font-size: 14px;
    line-height: 133%;
    letter-spacing: 0.02em;
    /* 2% */
  }

  .text-overline-caption,
  .content-block .text-overline-caption p,
  .wp-child-theme-bridge-child .areas-of-specialization .wpb_row:last-of-type .wpb_text_column:last-of-type .wpb_wrapper p,
  .wp-child-theme-bridge-child.team-member .bc-tm-hero__eyebrow {
    font-size: 13px;
    line-height: 150%;
    letter-spacing: 0.08em;
    /* 8% */
    text-transform: uppercase;
  }

  .text-helper {
    font-size: 13px;
    line-height: 150%;
  }

  .text-label-small,
  .wp-child-theme-bridge-child .contact-form form label,
  .wp-child-theme-bridge-child .contact-form form p,
  .wp-child-theme-bridge-child .contact-form form input::placeholder,
  .wp-child-theme-bridge-child .contact-form form textarea::placeholder,
  .wp-child-theme-bridge-child .data-target-div1 #caf-post-layout4 .caf-meta-content-cats li a {
    font-size: 12px;
    line-height: 133%;
    letter-spacing: 0.02em;
    /* 2% */
  }

  .text-quote,
  .wp-child-theme-bridge-child .content-block-backdrop .text-quote p,
  .wp-child-theme-bridge-child .content-block .text-quote p,
  .wp-child-theme-bridge-child.team-member .bc-tm-profile blockquote.bc-tm-profile__quote,
  .wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text h5.blockquote-text {
    font-size: 22px;
    line-height: 136%;
  }

  .text-utility-contact {
    font-size: 14px;
    line-height: 133%;
  }
}

/* =========================================================================
   GLOBAL
   ========================================================================= */

.wp-child-theme-bridge-child * {
  box-sizing: border-box !important;
}

.wp-child-theme-bridge-child>.wrapper>.wrapper_inner>.content {
  margin-top: 88px !important;
}

.wp-child-theme-bridge-child .content {
  /* padding-top has no !important so Bridge JS can override it when the sticky
     header transitions (position:fixed). The sides stay locked to 0. */
  padding-top: 88px;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
}

.wp-child-theme-bridge-child .grid_section .section_inner {
  width: 100%;
  box-sizing: border-box;
}

.wp-child-theme-bridge-child .grid_section .section_inner .section_inner_margin {
  margin-left: 0;
  margin-right: 0;
}

.wp-child-theme-bridge-child .grid_section .section_inner .section_inner_margin .wpb_column {
  padding-left: 16px;
  padding-right: 16px;
}

.wp-child-theme-bridge-child .grid_section .vc_column_container>.vc_column-inner {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

.wp-child-theme-bridge-child .vc_row {
  margin-left: 0px;
  margin-right: 0px;
}

.wp-child-theme-bridge-child .qode-info-card a,
.wp-child-theme-bridge-child a.qbutton,
.wp-child-theme-bridge-child .contact-form form input[type="submit"][class*="-submit"],
.wp-child-theme-bridge-child .data-target-div1 #caf-post-layout4 a.caf-read-more {
  width: fit-content !important;
  border-radius: 23px !important;
  font-size: 16px !important;
  line-height: 125% !important;
  letter-spacing: 0.005em !important;
  height: auto !important;
  padding: 8px 32px !important;
  background-color: var(--color-pelorous) !important;
  border: none !important;
  color: var(--color-white) !important;
}

/* ========================================================================
   LINEAR BACKGROUNDS
   ========================================================================= */
.wp-child-theme-bridge-child .linear-bg-1 {
  background: linear-gradient(0deg, rgba(var(--color-river-bed-rgb), 0.5) 0%, rgba(var(--color-river-bed-rgb), 0.5) 100%), var(--color-white);
}

/* =========================================================================
   SLIDE
   ========================================================================= */

.tp-revslider-mainul .tp-bgimg {
  position: relative;
}

.tp-revslider-mainul .tp-bgimg,
.slot .slotslide>div {
  background-position: 80% center !important;
}

.slot .slotslide>div::after,
.tp-bgimg.defaultimg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg,
      rgba(34, 29, 26, 0) 40.38%,
      rgba(34, 29, 26, 0.8) 80.29%);
  pointer-events: none;
}

.tp-bullets {
  display: flex !important;
  gap: 10px !important;
  width: fit-content !important;
}

.tp-bullets .tp-bullet {
  position: relative !important;
  width: 15px !important;
  height: 15px !important;
  display: inline-block !important;
  border: 1px solid var(--color-pelorous) !important;
  left: auto !important;
  transition:
    width 0.3s ease 0.5s,
    border-radius 0.3s ease 0.5s,
    background-color 0.3s ease 0.5s !important;
}

.tp-bullets .tp-bullet.selected {
  width: 45px !important;
  border-radius: 8px !important;
  background-color: var(--color-zeus) !important;
  border: 1px solid rgba(var(--color-white-rgb), 0.5) !important;
}

/* =========================================================================
   CONTENT BLOCK
   ========================================================================= */

.wp-child-theme-bridge-child .content-block {
  margin: 0 auto;
  padding-top: 32px;
  padding-bottom: 16px;
}

.wp-child-theme-bridge-child .content-block.mobile-full-width {
  padding-top: 0px;
}

.wp-child-theme-bridge-child .content-block .section_inner .section_inner_margin {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.wp-child-theme-bridge-child .content-block .wpb_column:has(.wpb_video_widget),
.wp-child-theme-bridge-child .content-block .wpb_column:has(.wpb_single_image) {
  order: -1;
}

.wp-child-theme-bridge-child .content-block .section_inner .section_inner_margin .wpb_column:has(.wpb_video_widget),
.wp-child-theme-bridge-child .content-block .section_inner .section_inner_margin .wpb_column:has(.wpb_video_widget) .vc_column-inner,
.wp-child-theme-bridge-child .content-block .section_inner .section_inner_margin .wpb_column:has(.wpb_single_image),
.wp-child-theme-bridge-child .content-block .section_inner .section_inner_margin .wpb_column:has(.wpb_single_image) .vc_column-inner {
  padding: 0;
}

.wp-child-theme-bridge-child .content-block .wpb_column:not(:has(.wpb_video_widget)) .vc_column-inner {
  padding: 16px 0;
}

.wp-child-theme-bridge-child .content-block.mobile-full-width .wpb_single_image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0px;
}

.wp-child-theme-bridge-child .content-block:not(.mobile-full-width) .wpb_single_image {
  padding-left: 16px;
  padding-right: 16px;
}

.wp-child-theme-bridge-child .content-block:not(.mobile-full-width) .wpb_single_image img {
  border-radius: 12px;
}

.wp-child-theme-bridge-child .content-block .text-overline-caption p,
.wp-child-theme-bridge-child .content-block .text-quote p,
.wp-child-theme-bridge-child .content-block h2 {
  margin-bottom: 16px !important;
}

.wp-child-theme-bridge-child .content-block .qbutton {
  margin-top: 16px;
}

/* =========================================================================
   CARD GRID
   ========================================================================= */

.wp-child-theme-bridge-child .card-grid {
  padding: 32px 0 16px;
}

.wp-child-theme-bridge-child .card-grid h2 {
  margin-bottom: 12px;
}

.wp-child-theme-bridge-child .card-grid .wpb_wrapper:has(>.wpb_text_column):has(.qode-info-card) .section:has(.qode-info-card) {
  margin-top: 32px;
}

.wp-child-theme-bridge-child .card-grid .section:has(.qode-info-card) .wpb_column:has(.qode-info-card) {
  padding-left: 0;
  padding-right: 0;
}

.wp-child-theme-bridge-child .card-grid .qode-info-card,
.wp-child-theme-bridge-child .card-grid .wpb_row .wpb_column .vc_column-inner>.wpb_wrapper {
  background-color: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
}

.wp-child-theme-bridge-child .card-grid .wpb_row .wpb_column .vc_column-inner>.wpb_wrapper {
  margin-bottom: 32px;
}

.wp-child-theme-bridge-child .card-grid .qode-info-card img,
.wp-child-theme-bridge-child .card-grid .wpb_row .wpb_column .vc_column-inner>.wpb_wrapper img {
  height: 150px;
  width: 100%;
  object-fit: cover;
  object-position: top center;
}

.wp-child-theme-bridge-child .card-grid .wpb_row .wpb_column .vc_column-inner>.wpb_wrapper .vc_single_image-wrapper {
  display: block;
}

.wp-child-theme-bridge-child .card-grid .qode-info-card-text-holder,
.wp-child-theme-bridge-child .card-grid .wpb_row .wpb_column .vc_column-inner>.wpb_wrapper .wpb_text_column {
  padding: 16px;
}

.wp-child-theme-bridge-child .card-grid .qode-info-card {
  text-align: left;
}

.wp-child-theme-bridge-child .card-grid .qode-info-card .qode-info-card-link-holder {
  padding: 16px;
}

.wp-child-theme-bridge-child .card-grid .qode-info-card .qode-info-card-link-holder {
  text-align: right;
}

.wp-child-theme-bridge-child .card-grid .wpb_row .wpb_column .vc_column-inner>.wpb_wrapper .q_elements_holder {
  padding: 0 16px 16px 16px;
  display: flex;
  justify-content: flex-end;
}

.wp-child-theme-bridge-child .card-grid .card-alt .qode-info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.wp-child-theme-bridge-child .card-grid .card-alt .qode-info-card::before {
  position: relative;
  min-height: 260px;
  width: 100%;
  content: "";
}

.wp-child-theme-bridge-child .card-grid .card-alt .qode-info-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: top center !important;
}

.wp-child-theme-bridge-child .card-grid .card-alt .qode-info-card .qode-info-card-text-holder,
.wp-child-theme-bridge-child .card-grid .card-alt .qode-info-card .qode-info-card-link-holder {
  position: relative;
  z-index: 1;
  background-color: rgba(var(--color-white-rgb), 0.85) !important;
}

/* =========================================================================
   CONTENT BLOCK BACKDROP
   ========================================================================= */

.wp-child-theme-bridge-child .content-block-backdrop {
  position: relative;
  height: 503px;
  display: flex;
  align-items: flex-end;
  padding: 32px 16px;
  box-sizing: border-box;
  background-position: center right !important;
}

/* White-20 tint — flat semi-transparent layer over the image */
.wp-child-theme-bridge-child .content-block-backdrop::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg,
      rgba(255, 255, 255, 0.20) 0%,
      rgba(255, 255, 255, 0.20) 100%);
  pointer-events: none;
  z-index: 1;
}

/* White-80 directional gradient — mobile: 42deg diagonal fade */
.wp-child-theme-bridge-child .content-block-backdrop::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(42deg,
      rgba(255, 255, 255, 0.80) 29.81%,
      rgba(255, 255, 255, 0.00) 92.57%);
  pointer-events: none;
  z-index: 2;
}

/* Ensure inner content sits above the pseudo-element layers */
.wp-child-theme-bridge-child .content-block-backdrop .section_inner {
  position: relative;
  z-index: 3;
}

.wp-child-theme-bridge-child .content-block-backdrop .wpb_column {
  padding: 16px;
}

.wp-child-theme-bridge-child .content-block-backdrop h2 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.wp-child-theme-bridge-child .content-block-backdrop .text-quote p {
  margin-bottom: 8px;
}

.wp-child-theme-bridge-child .content-block-backdrop .qbutton {
  margin-top: 16px;
}

/* =========================================================================
   CONTENT BLOCK LIST
   ========================================================================= */

.wp-child-theme-bridge-child .content-block-list {
  position: relative;
}

.wp-child-theme-bridge-child .content-block-list {
  padding: 64px 32px;
}

.wp-child-theme-bridge-child .content-block-list:not(.clear) .grid_section .wpb_column .vc_column-inner>.wpb_wrapper {
  border-radius: 12px;
  background:
    linear-gradient(0deg,
      var(--Anzac-40, rgba(229, 174, 71, 0.4)) 0%,
      var(--Anzac-40, rgba(229, 174, 71, 0.4)) 100%),
    #fff;
  padding: 24px !important;
  margin-bottom: 32px;
}

.wp-child-theme-bridge-child .content-block-list>.section_inner>.section_inner_margin>.wpb_column {
  padding-left: 0;
  padding-right: 0;
}

.wp-child-theme-bridge-child .content-block-list>.section_inner>.section_inner_margin>.wpb_column .wpb_row {
  margin-top: 32px;
}

.wp-child-theme-bridge-child .content-block-list .grid_section .wpb_column h3 {
  margin-bottom: 4px;
}

.wp-child-theme-bridge-child .content-block-list .grid_section .wpb_column p {
  margin-bottom: 16px;
}

.wp-child-theme-bridge-child .content-block-list .grid_section .wpb_column .q_icon_list p {
  margin-top: 8px;
  margin-bottom: 0;
}

.wp-child-theme-bridge-child .content-block-list .q_icon_list .qode-ili-icon-holder,
.wp-child-theme-bridge-child .content-block-list .q_icon_list i {
  width: 15px !important;
  height: 15px !important;
  font-size: 12px !important;
  line-height: 17px !important;
  margin-top: 2px !important;
}

.wp-child-theme-bridge-child .content-block-list .q_icon_list p {
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  line-height: 135% !important;
}

.wp-child-theme-bridge-child .content-block-list .q_icon_list .qode-ili-icon-holder {
  font-size: 12px;
  line-height: 20px;
  height: 20px;
  width: 20px;
}

.wp-child-theme-bridge-child .content-block-list .q_icon_list p {
  padding: 0 0 0 24px;
}

.wp-child-theme-bridge-child .content-block-list .qbutton {
  margin: 0 auto;
  display: block;
}

.wp-child-theme-bridge-child .content-block-list.content-block-list-wrapper .grid_section .wpb_column {
  margin-bottom: 32px;
}

.wp-child-theme-bridge-child .content-block-list.content-block-list-wrapper .grid_section .section_inner_margin {
  display: flex !important;
  flex-direction: column !important;
  max-width: 690px;
  margin: 0 auto !important;
}

.wp-child-theme-bridge-child .content-block-list.content-block-list-wrapper .wpb_row .section_inner .section_inner_margin .wpb_column {
  width: 100% !important;
}

/* =========================================================================
   TEAM
   ========================================================================= */

.wp-child-theme-bridge-child .team {
  position: relative;
  padding: 32px 0;
}

/* Yellow-Green-40 overlay blended on top of the background image */
/*.wp-child-theme-bridge-child .team::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--color-yellow-green-rgb), 0.4);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
  width: 100%;
  height: 100%;
}*/

/* Ensure inner content sits above the overlay pseudo-element */
.wp-child-theme-bridge-child .team .section_inner {
  position: relative;
  z-index: 1;
}

.wp-child-theme-bridge-child .team h2 {
  margin-bottom: 12px;
}

.wp-child-theme-bridge-child .team .section:has(.wpb_single_image) {
  margin-top: 32px;
}

.wp-child-theme-bridge-child .team .wpb_row .full_section_inner .wpb_column>.vc_column-inner>.wpb_wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 338 / 338;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.wp-child-theme-bridge-child .team .wpb_row .full_section_inner .wpb_column .wpb_single_image {
  position: absolute;
  inset: 0;
  margin: 0 !important;
  z-index: 0;
}

.wp-child-theme-bridge-child .team .wpb_row .full_section_inner .wpb_column .wpb_single_image .wpb_wrapper,
.wp-child-theme-bridge-child .team .wpb_row .full_section_inner .wpb_column .wpb_single_image .vc_single_image-wrapper,
.wp-child-theme-bridge-child .team .wpb_row .full_section_inner .wpb_column .wpb_single_image a {
  display: block;
  height: 100%;
  margin: 0 !important;
  border: none !important;
}

.wp-child-theme-bridge-child .team .wpb_row .full_section_inner .wpb_column .wpb_single_image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.wp-child-theme-bridge-child .team .wpb_row .full_section_inner .wpb_column>.vc_column-inner>.wpb_wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.3) 55%,
      rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.wp-child-theme-bridge-child .team .wpb_row .full_section_inner .wpb_column .wpb_text_column {
  position: relative;
  z-index: 2;
  padding: 0 16px 16px;
  margin: 0 !important;
}

.wp-child-theme-bridge-child .team .wpb_row .full_section_inner .wpb_column .vc_empty_space {
  display: none;
}

.wp-child-theme-bridge-child .team .wpb_row .full_section_inner .wpb_column .wpb_text_column h3 a:hover {
  text-decoration: underline;
}

.wp-child-theme-bridge-child .team .wpb_row .full_section_inner .wpb_column {
  margin-bottom: 24px;
}

.wp-child-theme-bridge-child .team .wpb_row .full_section_inner .wpb_column .wpb_text_column * {
  color: var(--color-white) !important;
}

/* =========================================================================
   PERIODICAL HIGHLIGHTS
   ========================================================================= */

.wp-child-theme-bridge-child .periodical-highlights {
  padding: 32px 0;
}

.wp-child-theme-bridge-child .periodical-highlights h2 {
  margin-bottom: 12px;
}

.wp-child-theme-bridge-child .periodical-highlights .section:has(.wpb_single_image) {
  margin-top: 32px;
}

.wp-child-theme-bridge-child .periodical-highlights .grid_section .vc_column_container>.vc_column-inner {
  padding-left: 16px;
  padding-right: 16px;
}

.wp-child-theme-bridge-child .periodical-highlights .image_with_text img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--color-river-bed);
}

.wp-child-theme-bridge-child .periodical-highlights .separator {
  display: none;
}

.wp-child-theme-bridge-child .periodical-highlights p {
  width: 90%;
  margin: 0 auto;
}

.wp-child-theme-bridge-child .periodical-highlights .grid_section .wpb_column {
  margin-bottom: 32px;
}

.wp-child-theme-bridge-child .periodical-highlights p {
  color: #303030;
}

/* =========================================================================
   CONTACT FORM
   ========================================================================= */

.wp-child-theme-bridge-child .contact-form {
  position: relative;
  padding-top: 32px;
  padding-bottom: 32px;
}

.wp-child-theme-bridge-child .contact-form::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--color-river-bed-rgb), 0.3);
  pointer-events: none;
}

.wp-child-theme-bridge-child .contact-form h2 {
  margin-bottom: 8px;
}

.wp-child-theme-bridge-child .contact-form form {
  margin-top: 32px;
}

.wp-child-theme-bridge-child .contact-form form label,
.wp-child-theme-bridge-child .contact-form form p {
  color: rgba(var(--color-zeus-rgb), 0.7);
  margin-bottom: 5px;
}

.wp-child-theme-bridge-child .contact-form form input[type="text"],
.wp-child-theme-bridge-child .contact-form form input[type="email"],
.wp-child-theme-bridge-child .contact-form form input[type="tel"],
.wp-child-theme-bridge-child .contact-form form textarea {
  padding: 12px 14px;
  line-height: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(var(--color-river-bed-rgb), 0.3) !important;
  background: rgba(var(--color-white-rgb), 0.8) !important;
}

.wp-child-theme-bridge-child .contact-form form textarea {
  height: 110px;
}

.wp-child-theme-bridge-child .contact-form form input::placeholder,
.wp-child-theme-bridge-child .contact-form form textarea::placeholder {
  color: rgba(var(--color-river-bed-rgb), 0.5);
}

.wp-child-theme-bridge-child .contact-form form [class*="form-control"][class*="-radio"] {
  display: flex;
  flex-direction: column;
}

.wp-child-theme-bridge-child .contact-form form [class*="form-control"][class*="-radio"] label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--color-white);
  margin-left: 20px;
  margin-bottom: 10px;
}

.wp-child-theme-bridge-child .contact-form form [class*="form-control"][class*="-radio"] .first label span:after {
  content: "\3164We’ll only use this if you prefer a call.";
  color: rgba(var(--color-zeus-rgb), 0.5);
  font-family: var(--font-body);
  font-size: 11px;
  font-style: italic;
  font-weight: 300;
  line-height: 143%;
  /* 15.73px */
}

.wp-child-theme-bridge-child .contact-form form [class*="form-control"] [class*="list-item"] {
  margin-left: 0;
}

.wp-child-theme-bridge-child .contact-form form [class*="form-control"][class*="-radio"] label span {
  display: flex;
  align-items: center;
}

/* Hide native radio input (accessible: still focusable/operable) */
.wp-child-theme-bridge-child .contact-form form [class*="form-control"][class*="-radio"] input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  pointer-events: none;
}

/* Custom circle indicator — default state: mid-gray + white checkmark */
.wp-child-theme-bridge-child .contact-form form [class*="form-control"][class*="-radio"] input[type="radio"]+span::before {
  content: "";
  display: inline-flex;
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: var(--color-mid-gray);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpolyline points='2.5%2C8 6%2C12 13.5%2C4' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px 9px;
  transition: background-color 0.15s ease;
  margin-right: 8px;
}

/* Selected state: zeus background, checkmark stays white */
.wp-child-theme-bridge-child .contact-form form [class*="form-control"][class*="-radio"] input[type="radio"]:checked+span::before {
  background-color: var(--color-zeus);
}

.wp-child-theme-bridge-child .contact-form form input[type="submit"][class*="-submit"] {
  margin: 12px auto 0;
  display: block;
}

/* =========================================================================
   COMMENDATIONS
   ========================================================================= */

.wp-child-theme-bridge-child .commendations {
  padding: 32px;
}

.wp-child-theme-bridge-child .commendations h2 {
  margin-bottom: 8px;
}

.wp-child-theme-bridge-child .commendations .vc_row {
  margin-top: 32px;
}

.wp-child-theme-bridge-child .commendations>.section_inner>.section_inner_margin>.wpb_column {
  padding-left: 0;
  padding-right: 0;
}

/* =========================================================================
   FOOTER
   ========================================================================= */

.wp-child-theme-bridge-child footer .footer-logo {
  max-width: 142px !important;
}

.wp-child-theme-bridge-child footer {
  text-align: center;
  background-color: var(--color-zeus);
}

.wp-child-theme-bridge-child footer .text-body-small {
  max-width: 80% !important;
  margin: 0 auto !important;
}

.wp-child-theme-bridge-child footer .footer_top .column1 .widget_media_image,
.wp-child-theme-bridge-child footer .footer_top .column1 .widget_text {
  margin-bottom: 0px !important;
}

.wp-child-theme-bridge-child footer .footer_top .column1 .column_inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.wp-child-theme-bridge-child footer .column2 .wp-block-columns {
  gap: 32px;
}

.wp-child-theme-bridge-child footer .column3 .widget_block {
  margin-bottom: 32px !important;
}

.wp-child-theme-bridge-child footer .column3 .widget_media_image {
  margin-bottom: 16px !important;
}

.wp-child-theme-bridge-child footer .column3 .logo-mobile {
  margin-bottom: 0px !important;
}

.wp-child-theme-bridge-child footer .bridge-child-cta-social {
  justify-content: center;
  gap: 6px !important;
}

.wp-child-theme-bridge-child footer .footer_top .column_inner>div h2 {
  margin-bottom: 16px;
}

.wp-child-theme-bridge-child footer .footer_top .widget_nav_menu li.menu-item:not(:last-child) a {
  margin-bottom: 24px !important;
}

.wp-child-theme-bridge-child footer .q_icon_list {
  width: fit-content !important;
  margin: 0 auto !important;
}

.wp-child-theme-bridge-child footer .footer_bottom_holder .two_columns_50_50 {
  display: flex !important;
  flex-direction: row !important;
  gap: 0px !important;
}

/*
.wp-child-theme-bridge-child footer .footer_bottom {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  flex-direction: column !important;
  height: auto !important;
  padding: 16px 0 !important;
}
*/
.wp-child-theme-bridge-child footer .footer_bottom_holder .column2 .footer_bottom {
  justify-content: flex-end !important;
  vertical-align: top !important;
}

.wp-child-theme-bridge-child footer .footer_bottom_holder .column2 .footer_bottom p {
  text-align: right !important;
}

.wp-child-theme-bridge-child footer .footer_top p {
  max-width: 274px !important;
  margin: 0 auto !important;
}

.wp-child-theme-bridge-child footer .footer_top h2,
.wp-child-theme-bridge-child footer .footer_top h5 {
  color: rgba(var(--color-white-rgb), 0.8) !important;
}

.wp-child-theme-bridge-child footer .footer_top a,
.wp-child-theme-bridge-child footer .footer_top p {
  color: rgba(var(--color-white-rgb), 0.7) !important;
}

.wp-child-theme-bridge-child footer .footer_bottom p,
.wp-child-theme-bridge-child footer .footer_bottom a {
  color: rgba(var(--color-white-rgb), 0.6) !important;
}

.wp-child-theme-bridge-child footer .bridge-child-cta-social svg {
  width: 16px !important;
  height: 16px !important;
}

.wp-child-theme-bridge-child footer .bridge-child-cta-social svg * {
  fill: rgba(var(--color-pelorous-rgb), 0.5) !important;
}

.wp-child-theme-bridge-child footer .bridge-child-cta-social svg:hover * {
  fill: var(--color-pelorous) !important;
}

.wp-child-theme-bridge-child footer .footer_top .three_columns .column2 {
  margin-bottom: 0px !important;
}

.wp-child-theme-bridge-child footer .footer_top .email,
.wp-child-theme-bridge-child footer .footer_top .tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.wp-child-theme-bridge-child footer .footer_top .footer-mobile {
  border-top: 1px solid rgba(var(--color-white-rgb), 0.2);
  border-bottom: 1px solid rgba(var(--color-white-rgb), 0.2);
  padding-top: 32px;
  width: 302px;
  margin: 42px auto 0 auto;
}

.wp-child-theme-bridge-child footer .footer_top .footer-mobile .bc-mobile-nav__footer-calendly-btn {
  font-family: var(--font-display) !important;
  color: var(--color-white) !important;
  padding: 4px 20px !important;
  line-height: 125% !important;
  margin-bottom: 32px !important;
}

.wp-child-theme-bridge-child footer .footer_top .footer-mobile .bc-mobile-nav__footer-calendly-btn span {
  font-size: 12px !important;
  font-family: var(--font-display) !important;
  line-height: 133% !important;
}

.wp-child-theme-bridge-child footer .footer_top .footer-mobile .q_icon_list .q_icon_list .qode-ili-icon-holder {
  float: none !important;
  display: inline-block !important;
}

.wp-child-theme-bridge-child footer .footer_top .footer-mobile .q_icon_list {
  width: auto !important;
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  align-items: center !important;
  margin-bottom: 16px !important;
}

.wp-child-theme-bridge-child footer .footer_top .footer-mobile .q_icon_list p {
  padding-left: 0px !important;
  max-width: none !important;
  margin: 0 !important;
}

.wp-child-theme-bridge-child footer .footer_top .footer-mobile .bridge-child-cta-social-footer {
  display: flex !important;
  gap: 24px !important;
  justify-content: center !important;
  margin: 32px auto !important;
}

.wp-child-theme-bridge-child footer .footer_top .footer-mobile hr {
  max-width: 300px !important;
  background-color: rgba(var(--color-white-rgb), 0.2) !important;
  height: 1px !important;
  border: none !important;
}

.wp-child-theme-bridge-child footer .footer_top .logo-mobile img {
  width: 86px !important;
  height: auto !important;
}

.wp-child-theme-bridge-child footer .footer_top {
  padding-top: 30px;
  padding-bottom: 0px;
}

.wp-child-theme-bridge-child footer .footer_bottom a,
.wp-child-theme-bridge-child footer .footer_bottom p {
  white-space: nowrap;
}

.wp-child-theme-bridge-child footer .footer_bottom_holder {
  padding-bottom: 60px;
}

.wp-child-theme-bridge-child footer .footer_bottom_holder .container .container_inner {
  padding: 0 16px;
}

/* Footer Middle */
.wp-child-theme-bridge-child .footer_middle_holder {
  width: 100%;
}

.wp-child-theme-bridge-child .footer_middle {
  padding: 24px 16px;
  text-align: center;
  background-color: var(--color-zeus);
}

.wp-child-theme-bridge-child .footer_middle p {
  font-size: 10px !important;
  color: rgba(var(--color-white-rgb), 0.6) !important;
}

.wp-child-theme-bridge-child .footer_middle .wp-block-separator {
  border-top: 1px solid rgba(var(--color-white-rgb), 0.2) !important;
  width: 302px;
  margin: 0px auto 24px !important;
}

/* =========================================================================
   TITLE BLOCK
   ========================================================================= */

.wp-child-theme-bridge-child .title .image {
  height: 480px;
  position: relative;
  overflow: hidden;
}

.wp-child-theme-bridge-child .title .title_subtitle_holder {
  padding-top: 0 !important;
}

/* Zeus gradient — normal layer over the <img> */
.wp-child-theme-bridge-child .title .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(var(--color-zeus-rgb), 0.5) 30%,
      rgba(var(--color-zeus-rgb), 0) 60%);
  pointer-events: none;
  z-index: 1;
}

/* Goldenrod gradient — overlay blend over image + Zeus layer */
.wp-child-theme-bridge-child .title .image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(var(--color-goldenrod-rgb), 0.5) 0%,
      rgba(var(--color-goldenrod-rgb), 0.1) 100%);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 2;
}

/* Zeus gradient — normal layer over the <img> (page-id-2) */
.wp-child-theme-bridge-child.page-id-2 .title .image::before,
.wp-child-theme-bridge-child.page-id-411 .title .image::before,
.wp-child-theme-bridge-child.page-id-490 .title .image::before,
.wp-child-theme-bridge-child.page-id-320 .title .image::before,
.wp-child-theme-bridge-child.page-id-374 .title .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(var(--color-zeus-rgb), 0.5) 30%,
      rgba(var(--color-zeus-rgb), 0) 60%);
  pointer-events: none;
  z-index: 1;
}

/* Goldenrod gradient — overlay blend (page-id-2) */
.wp-child-theme-bridge-child.page-id-2 .title .image::after,
.wp-child-theme-bridge-child.page-id-411 .title .image::after,
.wp-child-theme-bridge-child.page-id-490 .title .image::after,
.wp-child-theme-bridge-child.page-id-320 .title .image::after,
.wp-child-theme-bridge-child.page-id-374 .title .image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(var(--color-goldenrod-rgb), 0.2) 0%,
      rgba(var(--color-goldenrod-rgb), 0.04) 100%);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 2;
}

.wp-child-theme-bridge-child .title .image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: right top !important;
}

.wp-child-theme-bridge-child .content .title_outer.with_image .title .container_inner {
  width: 100%;
  padding: 16px 32px !important;
}

.wp-child-theme-bridge-child .title h1 {
  margin-bottom: 8px;
}

.wp-child-theme-bridge-child .title .subtitle {
  display: block !important;
  margin-top: 16px;
}

.wp-child-theme-bridge-child .title.title_size_large h1 {
  line-height: 50px !important;
}

/* =========================================================================
   AREAS OF SPECIALIZATION
   ========================================================================= */

.wp-child-theme-bridge-child .grid_section.areas-of-specialization .section_inner .section_inner_margin .wpb_column {
  padding-left: 0;
  padding-right: 0;
}

.wp-child-theme-bridge-child .areas-of-specialization .full_section_inner .wpb_column .vc_column-inner {
  padding-left: 0;
  padding-right: 0;
}

.wp-child-theme-bridge-child .areas-of-specialization .wpb_row {
  padding: 48px 16px;
}

.wp-child-theme-bridge-child .areas-of-specialization .wpb_row h2 {
  margin-bottom: 20px;
}

.wp-child-theme-bridge-child .areas-of-specialization .wpb_row h3 {
  margin-bottom: 32px;
}

.wp-child-theme-bridge-child .areas-of-specialization .wpb_row h4 {
  margin-bottom: 4px;
}

.wp-child-theme-bridge-child .areas-of-specialization .wpb_row:not(:first-of-type) p {
  margin-bottom: 16px;
}

.wp-child-theme-bridge-child .areas-of-specialization .wpb_row:nth-child(odd) {
  background-color: rgba(var(--color-river-bed-rgb), 0.1) !important;
}

.wp-child-theme-bridge-child .areas-of-specialization .wpb_row:not(:first-of-type) .wpb_text_column:not(:first-of-type) .wpb_wrapper {
  padding-left: 16px;
}

.wp-child-theme-bridge-child .areas-of-specialization .wpb_row:last-of-type .wpb_text_column:last-of-type .wpb_wrapper {
  padding-left: 0;
  text-align: center;
}

.wp-child-theme-bridge-child .areas-of-specialization .qbutton {
  margin: 0 auto;
  display: block;
}

@media (max-width: 1023px) {
  .wp-child-theme-bridge-child .areas-of-specialization .qbutton {
    margin-top: 24px;
  }

  /* SIO-211 fix, homepage instance: this "Looking for something specific? /
     How We Help" block on the homepage has no .areas-of-specialization
     class at all (that only exists on the full /about-us/ section) — the
     rule above never matched it. Target by its unique href instead. */
  .wp-child-theme-bridge-child a.qbutton[href="/about-us/#areas-of-specialization"] {
    margin-top: 24px;
  }
}

/* =========================================================================
   TESTIMONIALS GRID
   ========================================================================= */

.wp-child-theme-bridge-child .testimonials-grid {
  padding: 48px 0;
}

.wp-child-theme-bridge-child .testimonials-grid .wpb_row {
  margin-top: 32px;
}

.wp-child-theme-bridge-child .testimonials-grid h2 {
  margin-bottom: 16px;
}

.wp-child-theme-bridge-child .testimonials-grid .wpb_row .wpb_column .wpb_wrapper {
  border: 1px solid var(--color-river-bed) !important;
  border-radius: 12px !important;
  padding: 32px 32px 24px !important;
  margin-bottom: 32px !important;
}

.wp-child-theme-bridge-child .testimonials-grid .wpb_row .wpb_column .wpb_wrapper .icon_holder {
  margin-bottom: 20px;
}

.wp-child-theme-bridge-child .testimonials-grid .wpb_row .wpb_column .wpb_wrapper .icon_holder img {
  height: 130px !important;
  width: 130px !important;
  object-fit: cover !important;
  object-position: top center !important;
  border-radius: 50% !important;
}

.wp-child-theme-bridge-child .testimonials-grid .wpb_row .wpb_column .wpb_wrapper .icon_text_inner {
  padding-bottom: 0;
}

.wp-child-theme-bridge-child .testimonials-grid .q_icon_with_title .icon_text_holder h5.icon_title {
  font-weight: 500 !important;
}

.wp-child-theme-bridge-child .testimonials-grid p {
  line-height: 162% !important;
  font-weight: 500 !important;
}

.wp-child-theme-bridge-child .testimonials-grid .wpb_row .wpb_column .wpb_wrapper h5,
.wp-child-theme-bridge-child .testimonials-grid .wpb_row .wpb_column .wpb_wrapper p {
  text-align: left;
}

.wp-child-theme-bridge-child .testimonials-grid .wpb_row .wpb_column .wpb_wrapper h5 {
  margin-bottom: 8px;
}

.wp-child-theme-bridge-child .testimonials-grid .wpb_row .wpb_column .wpb_wrapper p::before {
  content: "\02BB\02BB";
  position: absolute;
  left: -1.2rem;
  top: 0.425em;
  font-size: 72px;
  line-height: 1;
  color: var(--color-mid-gray);
  font-family: var(--font-body), sans-serif;
  letter-spacing: -2rem;
  font-weight: 500;
}

.wp-child-theme-bridge-child .testimonials-grid .wpb_row .wpb_column .wpb_wrapper p::after {
  content: "\02BB\02BB";
  position: absolute;
  right: -3rem;
  bottom: -0.65em;
  line-height: 2;
  color: #e6e6e6;
  font-family: var(--font-body), sans-serif;
  font-size: 325px;
  pointer-events: none;
  z-index: -1;
  letter-spacing: -1rem;
  transform: rotate(180deg);
  font-weight: 700;
}

/* =========================================================================
   MAP
   ========================================================================= */

.wp-child-theme-bridge-child .map .vc_column-inner {
  padding-left: 0;
  padding-right: 0;
}

/* -- bc_map label tooltips --------------------------------- */
.bc-map-label {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  color: #1a3a4a !important;
  white-space: nowrap !important;
  padding: 0 !important;
}

.bc-map-label::before {
  display: none !important;
}

/* Map - crisp tile rendering when upscaled past native zoom */
.bc-map-container .leaflet-tile {
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

/* -- [bc_map] image-based map with pins -------------------- */
.bc-map-container {
  position: relative;
  width: 100%;
  display: block;
  line-height: 0;
  border-radius: 8px;
  overflow: hidden;
}

.bc-map-container__img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(3) translate(-22.75%, 1%);
}

.bc-map-container__placeholder {
  background: #f0f0f0;
  padding: 40px;
  text-align: center;
  color: #666;
  font-size: 14px;
}

.bc-map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
  opacity: 0.35;
  transition:
    opacity 0.2s,
    transform 0.2s;
}

.bc-map-pin--active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.35);
  z-index: 5;
}

.bc-map-pin__dot {
  width: 24px;
  height: 24px;
  background-color: #4a6fa5;
  border: 2.5px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s;
  position: relative;
}

.bc-map-pin__dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.bc-map-pin:hover .bc-map-pin__dot {
  transform: rotate(-45deg) scale(1.25);
}

.bc-map-pin__label {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  color: #888;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  padding: 2px 6px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 1;
}

/* -- [bc_map] location list overlay ------------------------ */
.bc-map-outer {
  position: relative;
}

.bc-map-location-list {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-height: calc(100% - 32px);
  overflow-y: auto;
  padding-right: 4px;
}

.bc-map-location-list::-webkit-scrollbar {
  width: 4px;
}

.bc-map-location-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 2px;
}

.bc-map-location-btn {
  background: transparent;
  border: 1.5px solid #000;
  color: #000;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
  transition:
    background 0.15s,
    border-color 0.15s,
    color 0.15s;
}

.bc-map-location-btn:hover,
.bc-map-location-btn:focus {
  background: rgba(15, 15, 25, 0.82);
  border-color: rgba(15, 15, 25, 0.82);
  color: #f0f0f0;
  text-shadow: none;
  outline: none;
}

.bc-map-location-btn--active {
  background: rgba(15, 15, 25, 0.82);
  border-color: rgba(15, 15, 25, 0.82);
  color: #f0f0f0;
  text-shadow: none;
}

/* ── [bc_imagemap] component ─────────────────────────────── */
.bc-imagemap-wrap {
  display: block;
  width: 100%;
}

.bc-imagemap-sidebar {
  display: none;
}

.bc-imagemap-sidebar__btn {
  background: transparent;
  border-radius: 999px;
  padding: 4px 16px;
  text-align: center;
  cursor: pointer;
  font-family: var(--font-display), sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  line-height: 125%;
  letter-spacing: 1.08px;
  color: #fff;
  background-color: var(--color-pelorous);
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
  white-space: nowrap;
  width: 100%;
  border: none;
}

/* Base map – both desktop and mobile share these */
.bc-imagemap-map {
  position: relative;
}

.bc-imagemap-map__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.bc-imagemap-buttons {
  position: absolute;
  bottom: 3%;
  left: 64px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: calc(100% - 32px);
}

.bc-imagemap-btn-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: max-content;
  max-width: 100%;
  position: absolute;
  bottom: 16px;
  left: 0;
  z-index: 10;
}

.bc-imagemap-title {
  position: absolute;
  top: 0px;
  left: 0%;
  right: 0%;
  z-index: 10;
  margin: 0 auto;
  text-align: center;
}

h1.bc-imagemap-title {
  color: var(--color-river-bed);
  font-family: var(--font-display), sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 72px */
  letter-spacing: -0.96px;
}

.bc-imagemap-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
  z-index: 2;
  cursor: default;
}

.bc-imagemap-pin--active {
  transform: translate(-50%, -50%) scale(1.5);
  z-index: 10;
}

.bc-imagemap-pin--active .bc-imagemap-pin__label {
  opacity: 1;
}

.bc-imagemap-pin__dot {
  width: 20px;
  height: 24px;
  display: block;
}

.bc-imagemap-pin__dot path {
  fill: #384ea2 !important;
}

/* Desktop map: visible ≥1025px */
.bc-imagemap-map--desktop {
  display: block;
  overflow: hidden;
  /*aspect-ratio: 1440 / 675;*/
}

.bc-imagemap-map--desktop .bc-imagemap-map__img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Tablet map: hidden by default */
.bc-imagemap-map--tablet {
  display: none;
}

/* Mobile map: hidden by default */
.bc-imagemap-map--mobile {
  display: none;
}

@media (min-width: 767px) and (max-width: 1439px) {
  .bc-imagemap-map--desktop {
    display: none;
  }

  .bc-imagemap-map--tablet {
    display: block;
    /*aspect-ratio: 1220 / 600;*/
    height: auto;
    overflow: hidden;
  }

  .bc-imagemap-map--tablet .bc-imagemap-map__img {
    height: 100%;
    object-fit: cover;
  }

  .bc-imagemap-sidebar__btn {
    font-size: 12px;
    padding: 9px 16px;
    width: 100%;
  }

}

@media (max-width: 1439px) {
  .bc-imagemap-pin__dot {
    width: 10px;
    height: 12px;
  }

  .bc-imagemap-pin--active {
    transform: translate(-50%, -50%) scale(1.25);
  }


}

@media (min-width: 1024px) and (max-width: 1439px) {
  .bc-imagemap-buttons {
    position: absolute;
    top: auto;
    left: 64px;
    bottom: 64px;
    max-width: calc(100% - 32px);
    gap: 8px;
  }
}


@media (min-width: 768px) and (max-width: 1023px) {
  .bc-imagemap-buttons {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: calc(100% - 32px);
    gap: 8px;
  }

  .bc-imagemap-btn-group {
    gap: 8px;
    bottom: 0px;
  }
}

@media (min-width: 601px) and (max-width: 767px) {
  .bc-imagemap-buttons {
    bottom: 200px;
  }
}

@media (max-width: 600px) {
  .bc-imagemap-buttons {
    position: absolute;
    top: auto;
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: calc(100% - 32px);
    gap: 8px;
  }
}

@media (max-width: 470px) {
  .bc-imagemap-btn-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .bc-imagemap-map--desktop {
    display: none;
  }

  .bc-imagemap-map--tablet {
    display: none;
  }

  .bc-imagemap-map--mobile {
    display: block;
    /*aspect-ratio: 402 / 700;*/
    height: auto;
    overflow: hidden;
  }


  .bc-imagemap-map--mobile .bc-imagemap-map__img {
    height: 100%;
    object-fit: cover;
  }

  .bc-imagemap-sidebar__btn {
    font-size: 16px;
    padding: 4px 12px;
    width: 100%;
    letter-spacing: 0.16px;

  }
}

@media (min-width: 1024px) {
  h1.bc-imagemap-title {
    position: absolute;
    top: auto;
    bottom: 420px;
    left: 64px;
    right: auto;
    text-align: left;
    transform: translateY(calc(-100% - 16px));
    font-size: 36px;
  }

  .bc-imagemap-btn-group {
    position: static;
    bottom: auto;
    left: auto;
  }

  .bc-imagemap-sidebar__btn {
    padding: 8px 20px;
  }
}

@media (min-width: 1440px) {
  h1.bc-imagemap-title {
    font-size: 48px;
    padding-bottom: 1rem;
  }
}

/* ── bc_imagemap pin labels ──────────────────────────────── */
.bc-imagemap-pin__label {
  position: absolute;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  color: #000;
  opacity: 0.2;
  background: transparent;
  padding: 2px 2px;
  line-height: 1.5;
  pointer-events: none;
  z-index: 1;
  text-transform: uppercase;
}

.bc-imagemap-pin--label-up .bc-imagemap-pin__label {
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 2px;
}

.bc-imagemap-pin--label-down .bc-imagemap-pin__label {
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 2px;
}

.bc-imagemap-pin--label-left .bc-imagemap-pin__label {
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 2px;
}

.bc-imagemap-pin--label-right .bc-imagemap-pin__label {
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 2px;
}

/* =========================================================================
   SECTION WRAPPER
   ========================================================================= */

.wp-child-theme-bridge-child .section-wrapper {
  padding: 32px 0 48px;
}

.wp-child-theme-bridge-child .section-wrapper h2 {
  margin-bottom: 16px;
}

.wp-child-theme-bridge-child .section-wrapper .qbutton {
  margin-top: 24px;
}

/* =========================================================================
   INFOGRAPHIC
   ========================================================================= */

.wp-child-theme-bridge-child .infographic {
  padding: 32px 0;
  border-top: 1px solid rgba(var(--color-river-bed-rgb), 0.5);
}

/* =========================================================================
   TEAM MEMBER
   ========================================================================= */

.wp-child-theme-bridge-child.team-member .bc-tm-hero {
  padding-top: 32px;
  padding-left: 16px;
  padding-right: 16px;
}

.wp-child-theme-bridge-child.team-member .bc-tm-profile {
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 32px;
}

.wp-child-theme-bridge-child.team-member .bc-tm-profile img {
  margin-top: 24px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  object-position: top center;
}

.wp-child-theme-bridge-child.team-member .bc-tm-profile blockquote.bc-tm-profile__quote {
  padding: 0;
  margin-top: 24px;
  border: 0;
}

.wp-child-theme-bridge-child.team-member .bc-tm-profile .bc-tm-profile__description {
  margin-top: 24px;
}

.wp-child-theme-bridge-child.team-member .bc-tm-profile .bc-tm-profile__video {
  margin-top: 32px;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 */
}

.wp-child-theme-bridge-child.team-member .bc-tm-profile .bc-tm-profile__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vc_custom_1778147435931 {
  background-image: url(/wp-content/uploads/2026/04/DS-contentBlock.list_.jpg) !important;
}

/* =========================================================================
   ADVANCED TABS
   ========================================================================= */

/* Pre-hide tab panels before jQuery UI initializes to prevent FOUC.
   bc-tabs-loading is added synchronously by mobile-nav.js before DOMContentLoaded
   and removed per-instance on the jQuery UI `tabscreate` event. */
.wp-child-theme-bridge-child .qode-advanced-tabs.bc-tabs-loading .qode-advanced-tab-container {
  display: none;
}

/* Loading spinner — visible while bc-tabs-loading class is present */
@keyframes bc-tabs-spin {
  to {
    transform: rotate(360deg);
  }
}

.wp-child-theme-bridge-child .qode-advanced-tabs.bc-tabs-loading {
  position: relative;
  min-height: 120px;
}

.wp-child-theme-bridge-child .qode-advanced-tabs.bc-tabs-loading::after {
  content: "";
  display: block;
  position: absolute;
  top: 75%;
  left: 50%;
  width: 32px;
  height: 32px;
  margin: -16px 0 0 -16px;
  border: 3px solid rgba(var(--color-pelorous-rgb), 0.25);
  border-top-color: var(--color-pelorous);
  border-radius: 50%;
  animation: bc-tabs-spin 0.7s linear infinite;
}

.wp-child-theme-bridge-child .qode-advanced-tabs .qode-advanced-tabs-nav {
  display: flex;
  border-bottom: 1px solid rgba(var(--color-river-bed-rgb), 0.5);
}

.wp-child-theme-bridge-child .qode-advanced-tabs .qode-advanced-tabs-nav li.ui-tabs-tab.ui-state-active {
  position: relative;
}

.wp-child-theme-bridge-child .qode-advanced-tabs .qode-advanced-tabs-nav li.ui-tabs-tab.ui-state-active::after {
  content: "";
  display: block;
  height: 4px;
  background: var(--color-zeus);
  border-radius: 2px 2px 0 0;
  margin-top: -4px;
  animation: bc-underline-in 0.15s ease;
  color: var(--color-zeus) !important;
  left: 0;
  width: 100%;
  position: absolute;
}

.wp-child-theme-bridge-child #caf-filter-layout1.caf-filter-layout ul.caf-filter-container {
  border-bottom: 1px solid var(--color-zeus);
}

.wp-child-theme-bridge-child #caf-filter-layout1.caf-filter-layout ul.caf-filter-container li a {
  padding: 0px 10px;
  background: transparent;
  color: var(--color-pelorous);
  position: relative;
  margin: 0;
}

.wp-child-theme-bridge-child #caf-filter-layout1.caf-filter-layout ul.caf-filter-container li a.active {
  color: var(--color-zeus);
}

.wp-child-theme-bridge-child #caf-filter-layout1.caf-filter-layout ul.caf-filter-container li a.active::after {
  content: "";
  display: block;
  height: 4px;
  background: var(--color-zeus);
  border-radius: 2px 2px 0 0;
  margin-top: 17px;
  animation: bc-underline-in 0.15s ease;
  color: var(--color-zeus) !important;
  left: 0;
  width: 100%;
  position: absolute;
}

/* =========================================================================
   BLOG CARDS
   ========================================================================= */

.wp-child-theme-bridge-child .caf-row {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.wp-child-theme-bridge-child .caf-row article {
  padding-left: 0px;
  padding-right: 0px;
}

.wp-child-theme-bridge-child .caf-row article a div.caf-featured-img-box {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-radius: 12px;
}

.wp-child-theme-bridge-child .caf-row article h2 {
  color: var(--color-zeus) !important;
}

.wp-child-theme-bridge-child .data-target-div1 #caf-post-layout4 .caf-meta-content-cats li a {
  background: rgba(var(--color-goldenrod-rgb), 0.8) !important;
  border-radius: 50px !important;
  color: var(--color-white) !important;
  padding: 4px 8px !important;
  /*width: 32px !important;
  height: 32px !important;*/
  display: flex !important;
}

.wp-child-theme-bridge-child .data-target-div1 #caf-post-layout4 .caf-content {
  color: var(--color-zeus) !important;
}

.wp-child-theme-bridge-child .caf-pagination {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 16px !important;
}

.wp-child-theme-bridge-child .data-target-div1 ul#caf-layout-pagination.post-layout4 li a {
  border-radius: 50px !important;
  border: 1px solid var(--color-pelorous) !important;
  background: var(--color-white) !important;
  color: var(--color-pelorous) !important;
  font-family: var(--font-display), serif !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: 125% !important;
  width: 32px !important;
  height: 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.wp-child-theme-bridge-child .data-target-div1 ul#caf-layout-pagination.post-layout4 li a:hover {
  background: rgb(var(--color-pelorous-rgb), 0.1) !important;
  color: #1E676A !important;
  border-color: #1E676A !important;
}

.wp-child-theme-bridge-child .data-target-div1 ul#caf-layout-pagination.post-layout4 span.page-numbers.current {
  border-radius: 50px !important;
  background: var(--color-zeus) !important;
  color: var(--color-white) !important;
  border: 1px solid var(--color-zeus) !important;
}

.wp-child-theme-bridge-child .caf-pagination li {
  margin: 0 0 !important;
}

/* Next/Prev chevron — hide text, show SVG arrow, no border */
.wp-child-theme-bridge-child .data-target-div1 ul#caf-layout-pagination.post-layout4 li a.next.page-numbers,
.wp-child-theme-bridge-child .data-target-div1 ul#caf-layout-pagination.post-layout4 li a.prev.page-numbers {
  border: none !important;
  background: transparent !important;
  color: transparent !important;
  font-size: 0 !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
}

.wp-child-theme-bridge-child .data-target-div1 ul#caf-layout-pagination.post-layout4 li a.next.page-numbers::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: var(--color-pelorous);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.wp-child-theme-bridge-child .data-target-div1 ul#caf-layout-pagination.post-layout4 li a.prev.page-numbers::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: var(--color-pelorous);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.wp-child-theme-bridge-child .data-target-div1 ul#caf-layout-pagination.post-layout4 li a.next.page-numbers:hover::after,
.wp-child-theme-bridge-child .data-target-div1 ul#caf-layout-pagination.post-layout4 li a.prev.page-numbers:hover::before {
  background-color: #1E676A;
}

.wp-child-theme-bridge-child .caf-pagination li span.current {
  width: 38px !important;
  height: 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-display), serif !important;
  font-size: 28px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: 121% !important;
}


/* =========================================================================
   BLOG POST
   ========================================================================= */

.wp-child-theme-bridge-child .container_inner:has(.post.type-post) {
  width: 100%;
  background-color: var(--color-white);

}

.wp-child-theme-bridge-child .container_inner:has(.post.type-post) * {
  color: var(--color-river-bed);
}

.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text {
  padding-left: 16px;
  padding-right: 16px;
  color: var(--color-river-bed) !important;
}

.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text h2 {
  margin-bottom: 16px;
  color: var(--color-river-bed) !important;
}

.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text p {
  margin-bottom: 16px;
}

.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text .qbutton {
  margin-bottom: 24px;
}

.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text blockquote {
  padding: 0;
  border: 0;
  margin-bottom: 16px;
}

.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text blockquote .blockquote-text {
  color: var(--color-river-bed) !important;
}

.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text ol {
  list-style: none;
  counter-reset: bc-list-counter;
  padding-left: 0;
}

.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text ol li {
  counter-increment: bc-list-counter;
  position: relative;
  padding-left: 96px;
  padding-top: 16px;
}

.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text ol li::before {
  content: counter(bc-list-counter) ".";
  position: absolute;
  left: 0;
  font-size: 96px;
  font-weight: 600;
}

.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text ol li strong:first-of-type {
  font-size: 22px;
  font-family: var(--font-display), serif;
  display: block;
  margin-bottom: 16px;
}

.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text ol {
  margin-bottom: 16px;
}

/* --- Imagen destacada -------------------------------------------------- */
.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_image img {
  width: 100%;
  height: 226px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* --- Ocultar fecha dentro del h2 del título (ya aparece en .post_info) - */
.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .entry_title .date.entry_date {
  display: none;
}

/* --- Título del post (tratado como H1 visual) -------------------------- */
.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text .entry_title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.13;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  /* !important: sobrescribe color:zeus !important heredado de .post_text */
  color: var(--color-river-bed) !important;
}

/* --- Meta del post (.post_info) ---------------------------------------- */
.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_info {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-river-bed);
  margin-top: 8px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_info a {
  color: var(--color-pelorous);
  text-decoration: none;
}

.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_info a:hover {
  text-decoration: underline;
}

.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_info .time,
.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_info .post_author {
  color: var(--color-mid-gray);
}

/* --- H3 / H4 en el cuerpo del post ------------------------------------- */
.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.23;
  color: var(--color-river-bed);
  margin-bottom: 8px;
}

.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-river-bed);
  margin-bottom: 8px;
}

/* --- Listas <ul> en el cuerpo del post --------------------------------- */
.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text ul li {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-river-bed);
}

/* --- Tablas en el cuerpo del post -------------------------------------- */
/* table-layout:fixed + width:100% fuerza la tabla a caber en su contenedor
   sin importar el contenido de las celdas (listas, texto largo, etc.)     */
.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text table {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
  word-break: break-word;
  border-collapse: collapse;
}

.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text table tr th {
  background-color: rgba(var(--color-river-bed-rgb), 0.2);
}

.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text table tr td {
  background-color: rgba(var(--color-river-bed-rgb), 0.05);
}

/* Dentro de una celda, el padding del ul se recorta para no sumar ancho */
.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text td ul,
.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text th ul {
  padding-left: 16px;
}

/* --- Links en el cuerpo del post --------------------------------------- */
.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text a {
  color: var(--color-pelorous);
  text-decoration: underline;
}

.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text a:hover {
  color: var(--color-dark-pelorous);
}

/* --- Blockquote / Big Quote -------------------------------------------- */
.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text blockquote p {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 500;
  line-height: 2;
  color: var(--color-river-bed);
  margin-bottom: 0;
}

.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text img {
  border-radius: 12px;
}

/* =========================================================================
   WORKFLOW
   ========================================================================= */

.wp-child-theme-bridge-child .workflow {
  padding: 40px 0;
}

.wp-child-theme-bridge-child .workflow h2 {
  margin-bottom: 24px;
}

.wp-child-theme-bridge-child .workflow a.qbutton {
  margin: 24px auto 0;
  display: block;
}

.wp-child-theme-bridge-child .workflow .qode-workflow-image img {
  border-radius: 12px;
}

/* =========================================================================
   CONTENT BLOCK WRAPPER
   ========================================================================= */

.wp-child-theme-bridge-child .content-block-wrapper {
  padding: 32px 0 48px;
}

.wp-child-theme-bridge-child .content-block-wrapper .content-block {
  padding: 32px 0;
}

.wp-child-theme-bridge-child .content-block-wrapper .content-block .wpb_single_image {
  padding-left: 0;
  padding-right: 0;
}

.wp-child-theme-bridge-child .content-block-wrapper .content-block .wpb_single_image img {
  width: 100%;
}

.wp-child-theme-bridge-child .content-block-wrapper .content-block .vc_column_container:has(.wpb_text_column) {
  padding-left: 0;
  padding-right: 0;
}

/* =========================================================================
   RESOURCES
   ========================================================================= */

.wp-child-theme-bridge-child .resources {
  padding: 51px 0;
}

.wp-child-theme-bridge-child .resources .qode-advanced-tab-container:nth-of-type(2),
.wp-child-theme-bridge-child .resources .qode-advanced-tab-container:nth-of-type(3) {
  background-color: rgba(var(--color-anzac-rgb), 0.4);
  padding: 20px;
  border-radius: 12px;
  margin-top: 52px;
}

.wp-child-theme-bridge-child .resources .qode-advanced-tab-container .qode_icon_element {
  background-color: var(--color-yellow-green) !important;
  width: 15px !important;
  border-radius: 50% !important;
  height: 15px !important;
  display: inline-block !important;
}

.wp-child-theme-bridge-child .resources .qode-advanced-tab-container .list-item {
  margin-top: 24px !important;
}

.wp-child-theme-bridge-child .resources .qode-advanced-tab-container .list-item a {
  text-decoration: none !important;
}

.wp-child-theme-bridge-child .resources .qode-advanced-tab-container .list-item .wpb_column {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.wp-child-theme-bridge-child .resources .qode-advanced-tab-container .list-item .wpb_wrapper {
  display: flex;
  gap: 8px;
}

.wp-child-theme-bridge-child .resources .qode-advanced-tab-container .qode_icon_element:before {
  content: "\24" !important;
  font-size: 12px !important;
  line-height: 17px !important;
  color: var(--color-white) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.wp-child-theme-bridge-child .resources .qode-advanced-tab-container * {
  color: var(--color-mid-gray) !important;
}

.wp-child-theme-bridge-child .resources .qode-advanced-tab-text-after-icon,
.qode-advanced-tabs.qode-advanced-horizontal-tab .qode-advanced-tabs-nav li a span {
  text-align: center;
}

/* =========================================================================
    CALENDLY BADGE WIDGET
    ========================================================================= */

.calendly-badge-widget {
  bottom: 16px !important;
  right: 16px !important;
}

/* =========================================================================
   TABLET (>= 1024px)
   ========================================================================= */

@media (max-width: 1023px) {
  /* Parent theme's .container_inner steps in fixed px per breakpoint
     (600px, 768px, etc.) instead of scaling fluidly, causing a visible
     jump right at each boundary (e.g. 420px->600px crossing 600->601px).
     Make the footer's own container fluid across this whole range so
     it doesn't inherit that staircase. */
  .wp-child-theme-bridge-child footer .container_inner {
    width: 100% !important;
    max-width: calc(100% - 32px) !important;
  }

  .wp-child-theme-bridge-child footer .three_columns>.column1,
  .wp-child-theme-bridge-child footer .three_columns>.column2,
  .wp-child-theme-bridge-child footer .three_columns>.column3 {
    width: 100% !important;
    float: none !important;
    text-align: center !important;
    margin: 0 0 25px !important;
  }

  /* Parent theme's responsive.css only zeroes this margin at max-width:600px
     (.footer_top .three_columns .column2/.column3 .column_inner>div). Above
     600px and below the 1024px desktop layout, no rule covers this gap, so
     the parent's unconditional default (margin: 0 0 0 10px) comes back and
     misaligns the footer nav/contact columns. Extend the zeroed margin to
     the whole mobile/tablet range so there's no 601-1023px gap. */
  .wp-child-theme-bridge-child footer .footer_top .three_columns .column2 .column_inner>div,
  .wp-child-theme-bridge-child footer .footer_top .three_columns .column3 .column_inner>div,
  .wp-child-theme-bridge-child footer .footer_top .four_columns .column2 .column_inner>div,
  .wp-child-theme-bridge-child footer .footer_top .four_columns .column3 .column_inner>div,
  .wp-child-theme-bridge-child footer .footer_top .four_columns .column4 .column_inner>div,
  .wp-child-theme-bridge-child footer .footer_top .two_columns_50_50 .column2 .column_inner>div {
    margin: 0 !important;
  }

  /* Same 601-1023px gap as above, but for padding: parent's stylesheet.css
     gives .column_inner itself an asymmetric base padding (e.g. three_columns
     column2/column3: 0 5px 0 10px / 0 0 0 15px), and responsive.css only
     zeroes it back to 0 at max-width:600px. Above 600px the padding returns,
     nudging the footer nav/contact columns sideways right at the 601px
     boundary. Zero it across the whole mobile/tablet range too. */
  .wp-child-theme-bridge-child footer .footer_top .three_columns>.column1>.column_inner,
  .wp-child-theme-bridge-child footer .footer_top .three_columns>.column2>.column_inner,
  .wp-child-theme-bridge-child footer .footer_top .three_columns>.column3>.column_inner,
  .wp-child-theme-bridge-child footer .footer_top .four_columns>.column1>.column_inner,
  .wp-child-theme-bridge-child footer .footer_top .four_columns>.column2>.column_inner,
  .wp-child-theme-bridge-child footer .footer_top .four_columns>.column3>.column_inner,
  .wp-child-theme-bridge-child footer .footer_top .four_columns>.column4>.column_inner,
  .wp-child-theme-bridge-child footer .footer_top .two_columns_50_50>.column1>.column_inner,
  .wp-child-theme-bridge-child footer .footer_top .two_columns_50_50>.column2>.column_inner {
    padding: 0 !important;
  }
}

@media (min-width: 1024px) {
  /* =========================================================================
     GLOBAL
     ========================================================================= */

  .wp-child-theme-bridge-child>.wrapper>.wrapper_inner>.content {
    margin-top: 0px !important;
  }

  .wp-child-theme-bridge-child .content {
    /* Reset the mobile 88px. No !important on padding-top so Bridge JS inline
       style (padding-top: headerHeight) can override when header goes sticky. */
    padding-top: 0;
    margin-top: 0;
  }

  .wp-child-theme-bridge-child .content-block .section_inner .section_inner_margin {
    display: block;
  }

  .wp-child-theme-bridge-child .grid_section {
    padding-left: 32px;
    padding-right: 32px;
  }

  /* =========================================================================
   SLIDE
   ========================================================================= */

  .tp-revslider-mainul .tp-bgimg,
  .slot .slotslide>div {
    background-position: left center !important;
  }

  /* =========================================================================
   CONTENT BLOCK
   ========================================================================= */
  /*home*/
  .wp-child-theme-bridge-child .content-block {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .wp-child-theme-bridge-child .grid_section .section_inner {
    max-width: 977px;
  }

  .wp-child-theme-bridge-child .content-block.mobile-full-width {
    padding-top: 48px;
  }

  .wp-child-theme-bridge-child .content-block:has(.wpb_video_widget) {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .wp-child-theme-bridge-child .content-block:has(.wpb_video_widget) .wpb_wrapper:has(.wpb_text_column) {
    max-width: 85%;
  }

  .wp-child-theme-bridge-child .content-block .wpb_column:not(:has(.wpb_video_widget)) .vc_column-inner {
    padding: 0;
  }

  .wp-child-theme-bridge-child .content-block .qbutton {
    margin-top: 24px;
  }

  .wp-child-theme-bridge-child .content-block .wpb_column .wpb_single_image img {
    border-radius: 12px;
    object-fit: cover;
    object-position: top center;
    width: 432px;
    height: 368px;
  }

  .wp-child-theme-bridge-child .grid_section.content-block .section_inner .section_inner_margin {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .wp-child-theme-bridge-child .content-block .wpb_column:has(.wpb_video_widget),
  .wp-child-theme-bridge-child .content-block .wpb_column:has(.wpb_single_image) {
    order: initial;
  }

  /*
  .wp-child-theme-bridge-child .content-block .section_inner .section_inner_margin .wpb_column:has(.wpb_video_widget) .vc_column-inner,
  .wp-child-theme-bridge-child .content-block .section_inner .section_inner_margin .wpb_column:has(.wpb_single_image) .vc_column-inner {
    padding: 0 16px;
  }
*/
  .wp-child-theme-bridge-child .content-block .wpb_column .text-quote p,
  .wp-child-theme-bridge-child .content-block .wpb_column h2 {
    margin-bottom: 16px
  }


  .wp-child-theme-bridge-child .content-block .wpb_column:has(.wpb_single_image):first-of-type {
    padding-left: 16px !important;
  }

  .wp-child-theme-bridge-child .content-block .wpb_column:has(.wpb_single_image):last-of-type,
  .wp-child-theme-bridge-child .content-block .wpb_column:has(.wpb_video_widget):last-of-type {
    padding-right: 16px !important;
  }

  /*
  .wp-child-theme-bridge-child .content-block .wpb_column:has(.wpb_text_column):last-of-type {
    padding-left: 32px;
    padding-right: 16px;
  }
*/

  .wp-child-theme-bridge-child .content-block:not(.mobile-full-width) .wpb_single_image {
    padding-left: 0px;
    padding-right: 0px;
  }



  /* =========================================================================
   CARD GRID
   ========================================================================= */
  /*home*/
  .wp-child-theme-bridge-child .card-grid {
    padding: 64px 32px;
  }

  .wp-child-theme-bridge-child .card-grid .full_section_inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }

  .wp-child-theme-bridge-child .card-grid .full_section_inner::after,
  .wp-child-theme-bridge-child .card-grid .full_section_inner::before {
    display: none;
  }

  .wp-child-theme-bridge-child .card-grid .full_section_inner .wpb_column {
    width: 100%;
  }

  .wp-child-theme-bridge-child .card-grid .qode-info-card img {
    height: 230px;
  }

  .wp-child-theme-bridge-child .card-grid .card-alt .qode-info-card::before {
    position: relative;
    height: 230px;
    min-height: auto;
    width: 100%;
    content: "";
  }

  .wp-child-theme-bridge-child .card-grid p {
    max-width: 720px;
  }

  /* =========================================================================
   CONTENT BLOCK BACKDROP
   ========================================================================= */

  .wp-child-theme-bridge-child .content-block-backdrop {
    position: relative;
    min-height: 420px;
    height: auto;
    display: flex;
    align-items: center;
    padding: 64px 48px;
  }

  .wp-child-theme-bridge-child .grid_section.content-block-backdrop .section_inner .section_inner_margin {
    margin-left: 0;
    margin-right: 0;
  }

  .wp-child-theme-bridge-child .grid_section.content-block-backdrop .section_inner .section_inner_margin .wpb_column {
    padding-left: 0;
    padding-right: 0;
    max-width: 400px;
  }

  .wp-child-theme-bridge-child .grid_section.content-block-backdrop h2 {
    margin-bottom: 16px;
  }

  /* White-80 directional gradient — tablet+: left solid fade to transparent */
  .wp-child-theme-bridge-child .content-block-backdrop::after {
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.80) 28.38%,
        rgba(255, 255, 255, 0.00) 62%);
  }

  /* =========================================================================
   CONTENT BLOCK LIST
   ========================================================================= */

  .wp-child-theme-bridge-child .content-block-list {
    padding: 48px 96px;
  }

  .wp-child-theme-bridge-child .content-block-list .grid_section {
    padding-left: 0px;
    padding-right: 0px;
  }

  .wp-child-theme-bridge-child .content-block-list .wpb_row .section_inner .section_inner_margin {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 32px;
  }

  .wp-child-theme-bridge-child .content-block-list .grid_section .wpb_column {
    margin-bottom: 0;
  }

  .wp-child-theme-bridge-child .content-block-list .wpb_row .section_inner .section_inner_margin::after,
  .wp-child-theme-bridge-child .content-block-list .wpb_row .section_inner .section_inner_margin::before {
    display: none;
  }

  .wp-child-theme-bridge-child .content-block-list .wpb_row .section_inner .section_inner_margin .wpb_column {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .wp-child-theme-bridge-child .content-block-list .qbutton {
    margin-top: 24px;
  }

  .wp-child-theme-bridge-child .content-block-list:not(.clear) .grid_section .wpb_column .vc_column-inner>.wpb_wrapper {
    padding: 20px !important;
    height: auto;
  }

  /* =========================================================================
   TEAM
   ========================================================================= */

  .wp-child-theme-bridge-child .team {
    padding: 48px 32px;
  }

  .wp-child-theme-bridge-child .team .wpb_row .full_section_inner .wpb_column>.vc_column-inner>.wpb_wrapper {
    aspect-ratio: 288 / 398;
  }

  .wp-child-theme-bridge-child .team .wpb_row .full_section_inner .wpb_column {
    width: 33%;
    margin-bottom: 36px;
  }

  .wp-child-theme-bridge-child .team .wpb_row .full_section_inner .wpb_column .wpb_text_column {
    padding: 32px !important;
  }

  .wp-child-theme-bridge-child .team .wpb_wrapper:has(h2):has(p) p {
    max-width: 720px;
    margin: 0 auto;
  }

  .wp-child-theme-bridge-child .team .wpb_row .full_section_inner::after,
  .wp-child-theme-bridge-child .team .wpb_row .full_section_inner::before {
    display: none;
  }

  .wp-child-theme-bridge-child .team .wpb_row .full_section_inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .wp-child-theme-bridge-child .team .wpb_row .full_section_inner .wpb_column {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }

  /* =========================================================================
   PERIODICAL HIGHLIGHTS
   ========================================================================= */
  .wp-child-theme-bridge-child .periodical-highlights {
    padding: 48px 0 138px;
  }

  .wp-child-theme-bridge-child .periodical-highlights .grid_section .vc_column_container>.vc_column-inner {
    padding-left: 0px;
    padding-right: 0px;
  }

  .wp-child-theme-bridge-child .periodical-highlights .image_with_text img {
    height: 282px;
    margin-bottom: 16px;
    border-radius: 16px;
  }

  .wp-child-theme-bridge-child .periodical-highlights h2 {
    margin-bottom: 24px;
  }

  .wp-child-theme-bridge-child .periodical-highlights p {
    width: 80%;
  }

  .wp-child-theme-bridge-child .periodical-highlights .grid_section .section_inner .section_inner_margin {
    display: flex;
  }

  .wp-child-theme-bridge-child .periodical-highlights .grid_section .section_inner .wpb_column:nth-of-type(1) {
    order: 2;
  }

  .wp-child-theme-bridge-child .periodical-highlights .grid_section .section_inner .wpb_column:nth-of-type(2) {
    order: 3
  }

  .wp-child-theme-bridge-child .periodical-highlights .grid_section .section_inner .wpb_column:nth-of-type(3) {
    order: 1;
  }

  /* =========================================================================
   CONTACT FORM
   ========================================================================= */

  .wp-child-theme-bridge-child .contact-form {
    padding: 48px;
  }

  .wp-child-theme-bridge-child .contact-form form {
    width: 80%;
    margin: 32px auto 0;
  }

  .wp-child-theme-bridge-child .contact-form h4 {
    max-width: 600px;
    margin: 0 auto;
  }

  /* =========================================================================
   COMMENDATIONS
   ========================================================================= */

  .wp-child-theme-bridge-child .commendations {
    padding: 48px 0;
  }

  /* =========================================================================
   FOOTER
   ========================================================================= */

  .wp-child-theme-bridge-child footer {
    text-align: left;
  }

  .wp-child-theme-bridge-child footer .bridge-child-cta-social {
    justify-content: flex-start;
  }

  .wp-child-theme-bridge-child footer .column1 .column_inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 83%;
  }

  .wp-child-theme-bridge-child footer .column3 .column_inner .email,
  .wp-child-theme-bridge-child footer .column3 .column_inner .tel {
    display: flex;
    gap: 9px;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
  }

  .wp-child-theme-bridge-child footer .footer_top {
    padding-top: 50px;
    padding-bottom: 114px;
  }

  .wp-child-theme-bridge-child footer .container_inner {
    width: 884px;
  }

  .wp-child-theme-bridge-child footer .footer_top .column_inner>div h2 {
    margin-bottom: 16px;
  }

  .wp-child-theme-bridge-child footer .footer_top .widget_nav_menu li.menu-item:not(:last-child) a {
    margin-bottom: 24px !important;
  }

  .wp-child-theme-bridge-child footer .three_columns>.column1 {
    width: 30%;
  }

  .wp-child-theme-bridge-child footer .three_columns>.column2 {
    width: 40%;
  }

  .wp-child-theme-bridge-child footer .three_columns>.column2 .wp-block-columns {
    gap: 0;
  }

  .wp-child-theme-bridge-child footer .three_columns>.column3 {
    width: 30%;
  }

  .wp-child-theme-bridge-child footer .three_columns>.column3 svg {
    min-width: 18px;
  }

  .wp-child-theme-bridge-child footer .three_columns>.column1 p {
    max-width: 210px;
  }

  .wp-child-theme-bridge-child footer .three_columns>.column3 .column_inner {
    padding-left: 74px;
  }

  .wp-child-theme-bridge-child footer .footer-mobile,
  .wp-child-theme-bridge-child footer .logo-mobile {
    display: none;
  }

  .wp-child-theme-bridge-child footer .column3 .column_inner .email,
  .wp-child-theme-bridge-child footer .column3 .column_inner .tel {
    justify-content: flex-start;
  }

  .wp-child-theme-bridge-child footer .footer_top p {
    margin-left: 0 !important;
  }

  .wp-child-theme-bridge-child footer h5 {
    margin-bottom: 16px;
  }

  .wp-child-theme-bridge-child .footer_middle .wp-block-separator {
    width: 896px;
  }

  .wp-child-theme-bridge-child footer .footer_bottom_holder .container .container_inner {
    padding-left: 0;
    padding-right: 0;
  }


  /*  =========================================================================
   TITLE BLOCK
   ========================================================================= */

  .wp-child-theme-bridge-child .title .image {
    height: 360px;
  }

  .wp-child-theme-bridge-child .title .title_subtitle_holder_inner {
    width: 55%;
  }

  .wp-child-theme-bridge-child .content .title_outer.with_image .title .container_inner {
    padding: 16px 48px !important;
  }

  /* =========================================================================
   AREAS OF SPECIALIZATION
   ========================================================================= */

  .wp-child-theme-bridge-child .areas-of-specialization {
    padding-left: 0;
    padding-right: 0;
  }

  .wp-child-theme-bridge-child .areas-of-specialization .grid_section .section_inner .section_inner_margin .wpb_column {
    padding-left: 0px;
    padding-right: 0px;
  }

  .wp-child-theme-bridge-child .areas-of-specialization .wpb_row {
    padding: 48px;
  }

  .wp-child-theme-bridge-child .areas-of-specialization .wpb_row:not(:first-of-type) {
    padding: 48px 142px;
  }

  .wp-child-theme-bridge-child .areas-of-specialization .wpb_row:not(:first-of-type) .wpb_text_column:not(:first-of-type) .wpb_wrapper {
    padding-left: 46px;
  }

  .wp-child-theme-bridge-child .areas-of-specialization .wpb_row:first-of-type p {
    max-width: 640px;
  }

  .wp-child-theme-bridge-child .areas-of-specialization .wpb_row {
    border-bottom: 1px solid rgba(var(--color-river-bed-rgb), 0.5);
  }

  .wp-child-theme-bridge-child .areas-of-specialization .wpb_row:last-of-type .wpb_text_column:last-of-type {
    margin-top: 60px
  }

  /* =========================================================================
   TESTIMONIALS GRID
   ========================================================================= */

  .wp-child-theme-bridge-child .testimonials-grid>.section_inner>.section_inner_margin>.vc_column_container {
    padding-left: 0;
    padding-right: 0;
  }

  .wp-child-theme-bridge-child .testimonials-grid .grid_section .section_inner_margin {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
    row-gap: 48px;
  }

  .wp-child-theme-bridge-child .testimonials-grid .grid_section .section_inner_margin::after,
  .wp-child-theme-bridge-child .testimonials-grid .grid_section .section_inner_margin::before {
    display: none;
  }

  .wp-child-theme-bridge-child .testimonials-grid .grid_section .section_inner_margin .wpb_column {
    width: 100%;
  }

  .wp-child-theme-bridge-child .testimonials-grid .grid_section {
    padding-left: 0;
    padding-right: 0;
  }

  .wp-child-theme-bridge-child .grid_section .vc_column_container>.vc_column-inner,
  .wp-child-theme-bridge-child .grid_section .vc_column_container>.vc_column-inner .wpb_wrapper {
    height: 100%;
    margin-bottom: 0 !important;
  }

  /* =========================================================================
   TEAM MEMBER
   ========================================================================= */

  .wp-child-theme-bridge-child.team-member .bc-tm-hero {
    padding-left: 32px;
    padding-right: 32px;
  }

  .wp-child-theme-bridge-child.team-member .bc-tm-profile {
    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 96px;
  }

  .wp-child-theme-bridge-child.team-member .bc-tm-profile__image {
    display: flex;
    gap: 24px;
  }

  .wp-child-theme-bridge-child.team-member .bc-tm-profile__image img {
    flex: 1 0 75%;
    max-height: 400px;
  }

  .wp-child-theme-bridge-child.team-member .bc-tm-profile .bc-tm-profile__video {
    max-width: 832px;
    margin: 96px auto 0;
  }

  /* =========================================================================
   BLOG CARDS
   ========================================================================= */

  .wp-child-theme-bridge-child .caf-row {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
  }

  .wp-child-theme-bridge-child #caf-post-layout4 {
    display: flex;
    flex-direction: column;
    width: calc(50% - 16px);
    flex: 0 0 calc(50% - 16px);
  }

  .wp-child-theme-bridge-child #caf-post-layout4 a.caf-f-img,
  .wp-child-theme-bridge-child #caf-post-layout4 #manage-post-area {
    width: 100% !important;
  }

  /* =========================================================================
   BLOG POST
   ========================================================================= */

  .wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_image img {
    height: 360px;
  }

  .wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text .entry_title {
    font-size: 44px;
    line-height: 1.115;
    letter-spacing: -0.005em;
  }

  .wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text h3 {
    font-size: 28px;
  }

  /* =========================================================================
   CONTENT BLOCK WRAPPER
   ========================================================================= */

  .wp-child-theme-bridge-child .content-block-wrapper {
    padding: 64px 16px 48px;
  }

  .wp-child-theme-bridge-child .content-block-wrapper .content-block {
    padding: 48px 0;
  }

  .wp-child-theme-bridge-child .content-block-wrapper>.section_inner>.section_inner_margin>.wpb_column>.vc_column-inner>.wpb_wrapper>.wpb_text_column>.wpb_wrapper h2 {
    margin-left: 32px;
  }

  /* =========================================================================
   RESOURCES
   ========================================================================= */

  .wp-child-theme-bridge-child .resources {
    padding: 64px 48px;
  }

  .wp-child-theme-bridge-child .qode-advanced-tabs .qode-advanced-tabs-nav {
    max-width: 400px;
    margin: 0 auto;
  }

  .wp-child-theme-bridge-child .resources .qode-advanced-tab-container:nth-of-type(2),
  .wp-child-theme-bridge-child .resources .qode-advanced-tab-container:nth-of-type(3) {
    max-width: 640px;
    margin: 64px auto 0;
  }

  /* =========================================================================
   SECTION WRAPPER
   ========================================================================= */

  .wp-child-theme-bridge-child .grid_section.section-wrapper .section_inner {
    max-width: 864px;
    margin: 0 auto;
  }

}

/* =========================================================================
   DESKTOP (>= 1440px)
   ========================================================================= */

@media (min-width: 1440px) {
  /* =========================================================================
     GLOBAL
     ========================================================================= */

  .wp-child-theme-bridge-child .grid_section>.section_inner>.section_inner_margin>.wpb_column {
    padding-left: 0px;
    padding-right: 0px;
  }

  .wp-child-theme-bridge-child .grid_section .section_inner {
    max-width: 1312px;
  }

  .wp-child-theme-bridge-child .grid_section {
    padding-left: 64px;
    padding-right: 64px;
  }

  /* =========================================================================
   CONTENT BLOCK
   ========================================================================= */

  .wp-child-theme-bridge-child .content-block {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .wp-child-theme-bridge-child .content-block.mobile-full-width {
    padding-top: 96px;
  }

  .wp-child-theme-bridge-child .content-block .wpb_wrapper:has(.wpb_text_column) {
    max-width: 90%;
  }

  .wp-child-theme-bridge-child .content-block .section_inner:has(.wpb_video_widget) .wpb_wrapper:has(.wpb_text_column) {
    max-width: 80%;
  }

  .wp-child-theme-bridge-child .content-block .text-quote p {
    margin-bottom: 16px;
  }

  .wp-child-theme-bridge-child .content-block .wpb_column:has(.wpb_video_widget) {
    width: 56%;
  }

  .wp-child-theme-bridge-child .content-block .section_inner .section_inner_margin .wpb_column:has(.wpb_video_widget) .vc_column-inner,
  .wp-child-theme-bridge-child .content-block .section_inner .section_inner_margin .wpb_column:has(.wpb_single_image) .vc_column-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .wp-child-theme-bridge-child .content-block .wpb_column .wpb_single_image img {
    max-height: 528px;
  }

  .wp-child-theme-bridge-child .content-block .section_inner .section_inner_margin .wpb_column:has(.wpb_single_image) .vc_column-inner img {
    width: 600px;
    height: 528px;
  }

  .wp-child-theme-bridge-child .content-block .wpb_column:has(.wpb_single_image):first-of-type {
    padding-left: 0px !important;
  }

  .wp-child-theme-bridge-child .content-block .wpb_column:has(.wpb_single_image):last-of-type,
  .wp-child-theme-bridge-child .content-block .wpb_column:has(.wpb_video_widget):last-of-type {
    padding-right: 0px !important;
  }

  /* =========================================================================
   CARD GRID
   ========================================================================= */

  .wp-child-theme-bridge-child .card-grid {
    padding: 64px 64px 94px;
  }

  .wp-child-theme-bridge-child.page-id-320 .card-grid {
    padding: 96px 64px 94px;
  }

  .wp-child-theme-bridge-child .card-grid .full_section_inner {
    row-gap: 64px;
    column-gap: 96px;
  }

  .wp-child-theme-bridge-child .card-grid .wpb_wrapper:has(>.wpb_text_column):has(.qode-info-card) .section:has(.qode-info-card) {
    margin-top: 84px;
  }

  .wp-child-theme-bridge-child .grid_section .vc_column_container>.vc_column-inner {
    height: 100%;
  }

  .wp-child-theme-bridge-child .card-grid .qode-info-card-text-holder {
    padding: 24px;
  }

  .wp-child-theme-bridge-child .card-grid .qode-info-card .qode-info-card-text {
    margin-top: 6px;
  }

  .wp-child-theme-bridge-child .card-grid .qode-info-card .qode-info-card-link-holder {
    padding: 88px 24px 24px;
  }

  .wp-child-theme-bridge-child .card-grid .qode-info-card img,
  .wp-child-theme-bridge-child .card-grid .wpb_row .wpb_column .vc_column-inner>.wpb_wrapper img {
    height: 230px;
  }

  .wp-child-theme-bridge-child .card-grid .wpb_row .wpb_column.card-alt .vc_column-inner>.wpb_wrapper img {
    width: 100%;
    height: 100%;
  }

  .wp-child-theme-bridge-child .card-grid.side-by-side {
    padding: 64px 16px;
  }

  .wp-child-theme-bridge-child .card-grid.side-by-side .section_inner {
    max-width: 1440px;
  }

  .wp-child-theme-bridge-child .card-grid.side-by-side .full_section_inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
  }

  .wp-child-theme-bridge-child .card-grid.side-by-side .wpb_row {
    display: flex;
    align-items: stretch;
  }

  .wp-child-theme-bridge-child .card-grid.side-by-side .wpb_row .wpb_column,
  .wp-child-theme-bridge-child .card-grid.side-by-side .wpb_row .wpb_column .vc_column-inner,
  .wp-child-theme-bridge-child .card-grid.side-by-side .wpb_row .wpb_column .vc_column-inner>.wpb_wrapper {
    height: 100%;
  }

  .wp-child-theme-bridge-child .card-grid.side-by-side .wpb_row .wpb_column .vc_column-inner>.wpb_wrapper {
    display: grid;
    grid-template-columns: 40% 60%;
    grid-template-rows: 1fr auto;
  }

  .wp-child-theme-bridge-child .card-grid.side-by-side .wpb_row .wpb_column .vc_column-inner>.wpb_wrapper .wpb_single_image {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .wp-child-theme-bridge-child .card-grid.side-by-side .wpb_row .wpb_column .vc_column-inner>.wpb_wrapper .wpb_text_column {
    grid-column: 2;
    grid-row: 1;
  }

  .wp-child-theme-bridge-child .card-grid.side-by-side .wpb_row .wpb_column .vc_column-inner>.wpb_wrapper .q_elements_holder {
    grid-column: 2;
    grid-row: 2;
  }

  .wp-child-theme-bridge-child .card-grid.side-by-side .wpb_text_column h3,
  .wp-child-theme-bridge-child .card-grid.side-by-side .wpb_text_column h4 {
    margin-bottom: 4px;
  }

  .wp-child-theme-bridge-child .card-grid.side-by-side .wpb_row .wpb_column .vc_column-inner>.wpb_wrapper .wpb_single_image * {
    height: 100%;
  }

  .wp-child-theme-bridge-child .card-grid p {
    max-width: 864px;
  }

  /* =========================================================================
   CONTENT BLOCK BACKDROP
   ========================================================================= */

  .wp-child-theme-bridge-child .content-block-backdrop {
    height: 520px;
    padding: 64px 64px;
  }

  .wp-child-theme-bridge-child .content-block-backdrop h2 {
    margin-top: 0;
    margin-bottom: 16px;
  }

  .wp-child-theme-bridge-child .content-block-backdrop .text-quote p {
    margin-bottom: 16px;
  }

  .wp-child-theme-bridge-child .content-block-backdrop .wpb_content_element:not(.text-quote) p {
    /*width: 80%;*/
  }

  .wp-child-theme-bridge-child .content-block-backdrop .qbutton {
    margin-top: 32px;
  }

  .wp-child-theme-bridge-child .content-block-list:not(.clear) .grid_section .wpb_column .vc_column-inner>.wpb_wrapper {
    padding: 24px !important;
  }

  .wp-child-theme-bridge-child .grid_section.content-block-backdrop .section_inner .section_inner_margin .wpb_column {
    max-width: 500px;
  }

  /* =========================================================================
   CONTENT BLOCK LIST
   ========================================================================= */

  .wp-child-theme-bridge-child .content-block-list>.section_inner>.section_inner_margin>.wpb_column .wpb_row {
    padding-left: 0;
    padding-right: 0;
    max-width: 1200px;
    margin: 48px auto !important;
  }

  .wp-child-theme-bridge-child .content-block-list .wpb_row .section_inner .section_inner_margin {
    display: block;
  }

  .wp-child-theme-bridge-child .content-block-list h2 {
    margin-bottom: 16px;
  }

  .wp-child-theme-bridge-child .content-block-list:not(.clear) .grid_section .wpb_column .vc_column-inner>.wpb_wrapper {
    margin: 0 14px;
  }

  .wp-child-theme-bridge-child .content-block-list .grid_section .wpb_column p {
    margin-bottom: 25px;
  }

  .wp-child-theme-bridge-child .content-block-list .wpb_row .section_inner .section_inner_margin .wpb_column {
    width: 25%;
  }

  /* =========================================================================
    TEAM
    ========================================================================= */


  .wp-child-theme-bridge-child .team {
    padding: 64px;
  }

  .wp-child-theme-bridge-child .team .wpb_wrapper:has(h2):has(p) p {
    max-width: none;
  }


  .wp-child-theme-bridge-child .grid_section.team .section_inner {
    /*max-width: 1230px;*/
    /*padding: 48px 0 72px;*/
    /*home*/
  }

  .wp-child-theme-bridge-child .team .wpb_row .full_section_inner .wpb_column>.vc_column-inner>.wpb_wrapper {
    aspect-ratio: 373 / 414;
  }

  .wp-child-theme-bridge-child .team .text-body-large {
    max-width: 70%;
    margin: 0 auto;
  }

  .wp-child-theme-bridge-child .team .section:has(.wpb_single_image) {
    margin-top: 86px;
  }

  .wp-child-theme-bridge-child .team .wpb_row .full_section_inner .wpb_column .wpb_text_column {
    padding: 0 32px 32px;
  }


  /* =========================================================================
    PERIODICAL HIGHLIGHTS
    ========================================================================= */

  .wp-child-theme-bridge-child .periodical-highlights {
    padding: 96px 64px 226px;
  }

  .wp-child-theme-bridge-child .periodical-highlights h2 {
    margin-bottom: 32px;
  }

  .wp-child-theme-bridge-child .periodical-highlights .image_with_text img {
    height: 340px;
    border-radius: 16px;
    width: 88%;
    margin: 0 auto 22px;
  }

  .wp-child-theme-bridge-child .periodical-highlights p {
    width: 100%;
  }

  .wp-child-theme-bridge-child .periodical-highlights .grid_section>.section_inner>.section_inner_margin {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }

  .wp-child-theme-bridge-child .periodical-highlights .grid_section .section_inner .wpb_column:nth-of-type(1) {
    order: 1;
  }

  .wp-child-theme-bridge-child .periodical-highlights .grid_section .section_inner .wpb_column:nth-of-type(2) {
    order: 2;
  }

  .wp-child-theme-bridge-child .periodical-highlights .grid_section .section_inner .wpb_column:nth-of-type(3) {
    order: 3;
  }

  .wp-child-theme-bridge-child .periodical-highlights .grid_section>.section_inner>.section_inner_margin::after,
  .wp-child-theme-bridge-child .periodical-highlights .grid_section>.section_inner>.section_inner_margin::before {
    display: none;
  }

  .wp-child-theme-bridge-child .periodical-highlights .grid_section>.section_inner>.section_inner_margin>.wpb_column {
    width: 100%;
  }

  .wp-child-theme-bridge-child .grid_section.periodical-highlights .section_inner {
    max-width: 1360px;
  }

  .wp-child-theme-bridge-child .periodical-highlights .grid_section {
    padding-left: 0;
    padding-right: 0;
  }

  /* =========================================================================
    CONTACT FORM
    ========================================================================= */

  .wp-child-theme-bridge-child .contact-form {
    padding: 96px 64px 48px;
  }

  .wp-child-theme-bridge-child .contact-form h2 {
    margin-bottom: 16px;
  }

  .wp-child-theme-bridge-child .contact-form form {
    width: 66%;
    margin-top: 50px;
  }

  .wp-child-theme-bridge-child .contact-form h4,
  .wp-child-theme-bridge-child .contact-form h4 * {
    font-family: var(--font-body);
    max-width: 55%;
    display: block;
    margin: 0 auto;
  }

  .wp-child-theme-bridge-child .contact-form form input[type="text"],
  .wp-child-theme-bridge-child .contact-form form input[type="email"],
  .wp-child-theme-bridge-child .contact-form form input[type="tel"],
  .wp-child-theme-bridge-child .contact-form form textarea {
    margin-bottom: 24px;
  }

  .wp-child-theme-bridge-child .contact-form form input[type="submit"][class*="-submit"] {
    margin-top: 54px;
    padding: 8px 64px !important;
  }

  .wp-child-theme-bridge-child .contact-form h4 {
    max-width: 752px;
  }

  /* =========================================================================
    COMMENDATIONS
    ========================================================================= */

  .wp-child-theme-bridge-child .commendations {
    padding: 64px;
  }

  .wp-child-theme-bridge-child .commendations .grid_section {
    padding-left: 0;
    padding-right: 0;
    max-width: 1028px;
    margin: 32px auto 0;
  }

  /* =========================================================================
    FOOTER
    ========================================================================= */

  .wp-child-theme-bridge-child footer .footer_top .column_inner>div h2 {
    margin-bottom: 12px;
  }

  .wp-child-theme-bridge-child footer .footer_top .widget_nav_menu li.menu-item:not(:last-child) a {
    margin-bottom: 18px !important;
  }

  .wp-child-theme-bridge-child footer .container_inner {
    width: 1312px;
  }

  .wp-child-theme-bridge-child footer .footer_top {
    padding: 64px 64px 110px;
  }

  .wp-child-theme-bridge-child footer .column1 .column_inner {
    gap: 32px;
  }

  .wp-child-theme-bridge-child footer .three_columns>.column1 {
    width: 40%;
  }

  .wp-child-theme-bridge-child footer .three_columns>.column2 {
    width: 32%;
  }

  .wp-child-theme-bridge-child footer .three_columns>.column2 .wp-block-columns {
    gap: 0;
  }

  .wp-child-theme-bridge-child footer .three_columns>.column3 {
    width: 28%;
  }

  .wp-child-theme-bridge-child footer .three_columns>.column1 p {
    max-width: 260px;
  }

  .wp-child-theme-bridge-child footer .three_columns>.column3 .column_inner {
    padding-left: 82px;
  }

  .wp-child-theme-bridge-child .footer_middle .wp-block-separator {
    width: 1312px;
  }

  /*  =========================================================================
   TITLE BLOCK
   ========================================================================= */

  .wp-child-theme-bridge-child .title .image {
    height: 460px;
  }

  .wp-child-theme-bridge-child .title .title_subtitle_holder_inner {
    width: 60%;
  }

  .wp-child-theme-bridge-child .content .title_outer.with_image .title .container_inner {
    padding: 16px 64px !important;
  }

  .wp-child-theme-bridge-child .title .subtitle {
    max-width: 480px;
  }

  /* =========================================================================
   AREAS OF SPECIALIZATION
   ========================================================================= */

  .wp-child-theme-bridge-child .areas-of-specialization {
    padding-left: 0;
    padding-right: 0;
  }

  .wp-child-theme-bridge-child .areas-of-specialization .wpb_row {
    padding: 64px;
  }

  .wp-child-theme-bridge-child .areas-of-specialization .wpb_row:not(:first-of-type) {
    padding: 96px 200px;
  }

  .wp-child-theme-bridge-child .areas-of-specialization .wpb_row:not(:first-of-type) .wpb_text_column:not(:first-of-type) .wpb_wrapper {
    padding-left: 48px;
    max-width: 870px;
  }

  .wp-child-theme-bridge-child .areas-of-specialization .wpb_row:first-of-type p {
    max-width: 765px;
  }

  /* =========================================================================
   TESTIMONIALS GRID
   ========================================================================= */

  .wp-child-theme-bridge-child .testimonials-grid {
    padding: 96px 64px;
  }

  .wp-child-theme-bridge-child .testimonials-grid .grid_section .section_inner_margin {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 64px;
  }

  .wp-child-theme-bridge-child .testimonials-grid .wpb_row {
    margin-top: 48px;
  }

  .wp-child-theme-bridge-child .testimonials-grid .wpb_row .wpb_column .wpb_wrapper {
    padding: 32px 48px 32px !important;
  }

  /* =========================================================================
   TEAM MEMBER
   ========================================================================= */

  .wp-child-theme-bridge-child.team-member .bc-tm-hero {
    padding-left: 96px;
    padding-right: 96px;
  }

  .wp-child-theme-bridge-child.team-member .bc-tm-profile {
    padding-left: 96px;
    padding-right: 96px;
    padding-bottom: 96px;
  }

  .wp-child-theme-bridge-child.team-member .bc-tm-profile__image img {
    max-height: 550px;
  }

  .wp-child-theme-bridge-child.team-member .bc-tm-profile .bc-tm-profile__video {
    max-width: none;
  }

  /* =========================================================================
   BLOG POST
   ========================================================================= */

  .wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text {
    max-width: 1312px;
    margin: 0 auto;

  }

  .wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text .entry_title {
    font-size: 52px;
    line-height: 1.115;
    letter-spacing: -0.005em;
  }


  /* =========================================================================
   CONTENT BLOCK WRAPPER
   ========================================================================= */

  .wp-child-theme-bridge-child .content-block-wrapper {
    padding: 96px 64px 96px;
  }

  .wp-child-theme-bridge-child .content-block-wrapper .content-block {
    padding: 64px 0;
  }

  .wp-child-theme-bridge-child .content-block-wrapper>.section_inner>.section_inner_margin>.wpb_column>.vc_column-inner>.wpb_wrapper>.wpb_text_column>.wpb_wrapper h2 {
    margin-left: 0px;
  }

  /* =========================================================================
   RESOURCES
   ========================================================================= */

  .wp-child-theme-bridge-child .resources .qode-advanced-tabs .qode-advanced-tab-container {
    max-width: 864px;
    margin: 0 auto;
  }

  .wp-child-theme-bridge-child .resources .qode-advanced-tab-container:nth-of-type(2),
  .wp-child-theme-bridge-child .resources .qode-advanced-tab-container:nth-of-type(3) {
    margin-top: 64px;
  }

  .wp-child-theme-bridge-child .qode-advanced-tabs .qode-advanced-tabs-nav {
    max-width: 420px;
  }
}

/* =========================================================================
   RELATED ARTICLES WIDGET
   Used in the BlogPostBottom widget area on single blog posts.
   ========================================================================= */

.wp-child-theme-bridge-child .container_inner:has(.bc-related-articles) {
  width: 100%;
}

.bc-related-articles {
  padding: 32px 16px;
  background-color: rgba(var(--color-goldenrod-rgb), 0.1);
}

.bc-related-articles .bc-related-articles__title,
.bc-related-articles .bc-related-articles__grid {
  max-width: 1312px;
  margin: 0 auto;
}

.bc-related-articles__title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--color-zeus);
  margin-top: 0;
  margin-bottom: 32px;
  text-align: left;
}

.bc-related-articles__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* Mobile: each card is full-width */
.bc-related-articles__card {
  width: 100%;
  border: 1px solid rgba(var(--color-river-bed-rgb), 0.2);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

/* Tablet / Desktop: 3 columns at ~30% each */
@media (min-width: 1024px) {
  .bc-related-articles {
    padding: 32px;
  }

  .bc-related-articles__card {
    width: calc(33.333% - 16px);
  }
}

.bc-related-articles__img-link {
  display: block;
  overflow: hidden;
}

.bc-related-articles__img,
.bc-related-articles__img-link img {
  display: block;
  width: 100%;
  height: 207px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bc-related-articles__img-link:hover img {
  transform: scale(1.04);
}

.bc-related-articles__img-placeholder {
  width: 100%;
  height: 207px;
  background: #f0f4f6;
}

.bc-related-articles__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.bc-related-articles__card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-zeus);
  margin: 0;
  line-height: 1.3;
  flex-grow: 1;
}

.bc-related-articles__btn {
  display: inline-block;
  align-self: flex-start;
  padding: 8px 24px;
  background-color: var(--color-pelorous);
  color: #ffffff;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.15s ease;
}

.bc-related-articles__btn:hover,
.bc-related-articles__btn:focus {
  background-color: var(--color-dark-pelorous);
  color: #ffffff;
}

/* Pre-hide tab panels before jQuery UI initializes to prevent FOUC */
.qode-advanced-tabs:not(.ui-tabs) .qode-advanced-tab-container {
  display: none;
}
/* =========================================================================
   SIO-212 — Areas of Specialization: content max-width (style guide)
   Contenido centrado a 864 (desktop) / 720 (tablet); las barras grises
   (.wpb_row, fondo) siguen full width; el heading (:first-of-type) queda
   alineado a la izquierda, intacto.
   Causa real: el "revert" previo dejo .section_inner en width:100% -> el
   contenido llenaba todo el ancho pegado a la izquierda. Aqui se re-centra.
   ========================================================================= */
@media (min-width: 1024px) {
  .wp-child-theme-bridge-child .areas-of-specialization .wpb_row:not(:first-of-type) .section_inner {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1440px) {
  .wp-child-theme-bridge-child .areas-of-specialization .wpb_row:not(:first-of-type) .section_inner {
    max-width: 864px;
  }
}

/* ---- Go-live QA (2026-07-10): CTA sin subrayado en blog + foto team detail centrada ---- */
.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text a.qbutton,
.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text a.wp-block-button__link,
.wp-child-theme-bridge-child .container_inner:has(.post.type-post) .post_text a.wp-element-button {
  text-decoration: none;
}
.wp-child-theme-bridge-child.team-member .bc-tm-profile img {
  object-position: center center;
}
