/* ==========================================================================
   GROWPEP GLOBAL DESIGN SYSTEM
   File: /assets/css/growpep-global.css
   Version: 1.1.0
   Status: PRODUCTION — FULL REPLACEMENT

   PERMANENT AI GOVERNANCE — DO NOT DELETE
   --------------------------------------------------------------------------
   This block must remain at the top of this file during every partial edit,
   refactor, optimization, or complete rewrite.

   GLOBAL SOURCE OF TRUTH
   - Typography, responsive typography, colors, spacing, buttons, cards,
     forms, shared components, and approved breakpoints belong here.
   - Section CSS may control layout, media, decoration, and arrangement only.
   - Section CSS must not define font-family, font-size, font-weight,
     line-height, letter-spacing, heading/body text color, or new breakpoints.
   - Existing local typography is normalized by the compatibility layer near
     the end of this file. New sections must use the gp-type-* roles.
   - WordPress / Hello Elementor owns the font family. No font is imported or
     forced here or inside a section.
   - Approved font weights: 400, 500, 600, 700.
   - Approved breakpoints: 1280, 1024, 834, 767, 480, and 360px.
   - Brand colors must come from :root variables. Never restore #F5871F.
   - Text must never turn green on hover.
   - No generic header, nav, or menu selectors may be added.
   - Any full-file update must preserve this block and existing token aliases.

   NAMING
   gp-section / gp-container       Global layout
   gp-grid / gp-card / gp-button   Reusable components
   gp-type-*                       Global typography roles
   gp-[page]-[section]             Page-unique section layout
   gp-footer-*                     Custom footer
   gp-portal-*                     Reserved for portal plugin
========================================================================== */


/* ==========================================================================
   1. DESIGN TOKENS
========================================================================== */

:root {
  /* Official GrowPep brand colors */
  --gp-navy: #0F2A4A;
  --gp-emerald: #0F9D74;
  --gp-accent: #F59E0B;
  --gp-amber: var(--gp-accent); /* Compatibility alias */
  --gp-surface: #F8FAFC;
  --gp-white: #FFFFFF;
  --gp-text: #475569;

  /* Functional colors */
  --gp-muted: #64748B;
  --gp-border: #E2E8F0;
  --gp-navy-hover: #1B3A63;
  --gp-emerald-dark: #0A7E5D;
  --gp-amber-hover: #D97706;
  --gp-success: #0F9D74;
  --gp-warning: #F59E0B;
  --gp-error: #DC2626;
  --gp-info: #2563EB;
  --gp-disabled-bg: #E2E8F0;
  --gp-disabled-text: #94A3B8;

  /* Compatibility aliases */
  --gp-color-primary: var(--gp-navy);
  --gp-color-secondary: var(--gp-emerald);
  --gp-color-accent: var(--gp-accent);
  --gp-color-surface: var(--gp-surface);
  --gp-color-white: var(--gp-white);
  --gp-color-text: var(--gp-text);
  --gp-color-muted: var(--gp-muted);
  --gp-color-border: var(--gp-border);

  /* Elementor color bridge */
  --e-global-color-primary: var(--gp-navy);
  --e-global-color-secondary: var(--gp-emerald);
  --e-global-color-accent: var(--gp-accent);
  --e-global-color-text: var(--gp-text);

  /* Layout */
  --gp-container: 1200px;
  --gp-content-narrow: 760px;
  --gp-gutter: 32px;
  --gp-section-space: clamp(80px, 8vw, 120px);
  --gp-section-space-compact: clamp(64px, 6vw, 80px);
  --gp-grid-gap: clamp(24px, 2.5vw, 32px);

  /* Spacing: 4px base system */
  --gp-space-1: 4px;
  --gp-space-2: 8px;
  --gp-space-3: 12px;
  --gp-space-4: 16px;
  --gp-space-5: 20px;
  --gp-space-6: 24px;
  --gp-space-8: 32px;
  --gp-space-10: 40px;
  --gp-space-12: 48px;
  --gp-space-16: 64px;
  --gp-space-20: 80px;
  --gp-space-24: 96px;
  --gp-space-30: 120px;

  /* Typography — WordPress / Hello Elementor font is inherited */
  --gp-font-sans: inherit; /* Compatibility alias only; never force a font */

  /* Global fluid type roles */
  --gp-display-size: clamp(34px, calc(24px + 2.2vw), 48px);
  --gp-section-title-size: clamp(28px, calc(22px + 1.35vw), 40px);
  --gp-subsection-title-size: clamp(22px, calc(19px + 0.65vw), 28px);
  --gp-card-title-size: clamp(19px, calc(17px + 0.38vw), 22px);
  --gp-body-large-size: clamp(16px, calc(15px + 0.22vw), 18px);
  --gp-body-size: 16px;
  --gp-small-size: clamp(14px, calc(13.5px + 0.12vw), 15px);
  --gp-label-size: clamp(11px, calc(10.5px + 0.12vw), 12px);
  --gp-button-size: clamp(14px, calc(13.5px + 0.18vw), 16px);

  /* Semantic heading aliases */
  --gp-h1-size: var(--gp-display-size);
  --gp-h2-size: var(--gp-section-title-size);
  --gp-h3-size: var(--gp-card-title-size);
  --gp-h4-size: clamp(18px, calc(17px + 0.25vw), 20px);
  --gp-h5-size: 18px;
  --gp-h6-size: 16px;

  /* Approved weights */
  --gp-weight-regular: 400;
  --gp-weight-medium: 500;
  --gp-weight-semibold: 600;
  --gp-weight-bold: 700;

  /* Approved line heights */
  --gp-line-display: 1.08;
  --gp-line-section-title: 1.15;
  --gp-line-subsection-title: 1.22;
  --gp-line-card-title: 1.30;
  --gp-line-body-large: 1.65;
  --gp-line-body: 1.70;
  --gp-line-body-small: 1.60;
  --gp-line-label: 1.35;
  --gp-line-button: 1.25;

  /* Radius */
  --gp-radius-button: 8px;
  --gp-radius-input: 10px;
  --gp-radius-card: 16px;
  --gp-radius-image: 16px;
  --gp-radius-panel: 20px;
  --gp-radius-pill: 999px;

  /* Shadows */
  --gp-shadow-card: 0 2px 8px rgba(15, 42, 74, 0.06);
  --gp-shadow-card-hover: 0 14px 36px rgba(15, 42, 74, 0.10);
  --gp-shadow-panel: 0 20px 60px rgba(15, 42, 74, 0.10);
  --gp-shadow-button: 0 6px 16px rgba(15, 42, 74, 0.14);

  /* Motion */
  --gp-motion-fast: 180ms ease;
  --gp-motion-standard: 260ms cubic-bezier(0.22, 1, 0.36, 1);
  --gp-motion-reveal: 650ms cubic-bezier(0.22, 1, 0.36, 1);

  /* Component dimensions */
  --gp-button-height-sm: 40px;
  --gp-button-height: 48px;
  --gp-button-height-lg: 52px;
  --gp-input-height: 50px;

  /* Z-index */
  --gp-z-base: 1;
  --gp-z-dropdown: 100;
  --gp-z-sticky: 500;
  --gp-z-overlay: 900;
  --gp-z-modal: 1000;
}


/* ==========================================================================
   2. SAFE GLOBAL FOUNDATION
========================================================================== */

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--gp-white);
  color: var(--gp-text);
  font-size: var(--gp-body-size);
  font-weight: 400;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
}

img,
svg,
video {
  max-width: 100%;
}

img {
  height: auto;
}


/* ==========================================================================
   3. GLOBAL TYPOGRAPHY SYSTEM
   WordPress / Hello Elementor controls the font family.
   Size, weight, line-height, and responsive scaling are controlled here.
========================================================================== */

body :where(h1, h2, h3, h4, h5, h6) {
  color: var(--gp-navy);
  font-family: inherit;
  text-wrap: balance;
  overflow-wrap: break-word;
}

body :where(h1) {
  font-size: var(--gp-h1-size);
  font-weight: var(--gp-weight-bold);
  line-height: var(--gp-line-display);
  letter-spacing: -0.035em;
}

body :where(h2) {
  font-size: var(--gp-h2-size);
  font-weight: var(--gp-weight-bold);
  line-height: var(--gp-line-section-title);
  letter-spacing: -0.025em;
}

body :where(h3) {
  font-size: var(--gp-h3-size);
  font-weight: var(--gp-weight-bold);
  line-height: var(--gp-line-card-title);
  letter-spacing: -0.01em;
}

body :where(h4) {
  font-size: var(--gp-h4-size);
  font-weight: var(--gp-weight-semibold);
  line-height: 1.35;
}

body :where(h5) {
  font-size: var(--gp-h5-size);
  font-weight: var(--gp-weight-semibold);
  line-height: 1.4;
}

body :where(h6) {
  font-size: var(--gp-h6-size);
  font-weight: var(--gp-weight-semibold);
  line-height: 1.4;
}

body :where(p) {
  color: var(--gp-text);
  font-family: inherit;
  font-size: var(--gp-body-size);
  font-weight: var(--gp-weight-regular);
  line-height: var(--gp-line-body);
}

.gp-type-display,
[data-gp-type="display"] {
  margin: 0;
  color: var(--gp-navy) !important;
  font-family: inherit !important;
  font-size: var(--gp-display-size) !important;
  font-weight: var(--gp-weight-bold) !important;
  line-height: var(--gp-line-display) !important;
  letter-spacing: -0.035em !important;
  text-transform: none !important;
  text-wrap: balance;
}

.gp-type-section-title,
[data-gp-type="section-title"] {
  margin: 0;
  color: var(--gp-navy) !important;
  font-family: inherit !important;
  font-size: var(--gp-section-title-size) !important;
  font-weight: var(--gp-weight-bold) !important;
  line-height: var(--gp-line-section-title) !important;
  letter-spacing: -0.025em !important;
  text-transform: none !important;
  text-wrap: balance;
}

.gp-type-subsection-title,
[data-gp-type="subsection-title"] {
  margin: 0;
  color: var(--gp-navy) !important;
  font-family: inherit !important;
  font-size: var(--gp-subsection-title-size) !important;
  font-weight: var(--gp-weight-bold) !important;
  line-height: var(--gp-line-subsection-title) !important;
  letter-spacing: -0.015em !important;
  text-transform: none !important;
  text-wrap: balance;
}

.gp-type-card-title,
[data-gp-type="card-title"],
.gp-card__title {
  color: var(--gp-navy) !important;
  font-family: inherit !important;
  font-size: var(--gp-card-title-size) !important;
  font-weight: var(--gp-weight-bold) !important;
  line-height: var(--gp-line-card-title) !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
}

.gp-type-body-large,
[data-gp-type="body-large"],
.gp-text-large {
  color: var(--gp-text) !important;
  font-family: inherit !important;
  font-size: var(--gp-body-large-size) !important;
  font-weight: var(--gp-weight-regular) !important;
  line-height: var(--gp-line-body-large) !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}

.gp-type-body,
[data-gp-type="body"] {
  color: var(--gp-text) !important;
  font-family: inherit !important;
  font-size: var(--gp-body-size) !important;
  font-weight: var(--gp-weight-regular) !important;
  line-height: var(--gp-line-body) !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}

.gp-type-body-small,
[data-gp-type="body-small"],
.gp-text-small {
  color: var(--gp-muted) !important;
  font-family: inherit !important;
  font-size: var(--gp-small-size) !important;
  font-weight: var(--gp-weight-regular) !important;
  line-height: var(--gp-line-body-small) !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}

.gp-type-label,
[data-gp-type="label"],
.gp-label,
.gp-eyebrow {
  color: var(--gp-emerald) !important;
  font-family: inherit !important;
  font-size: var(--gp-label-size) !important;
  font-weight: var(--gp-weight-bold) !important;
  line-height: var(--gp-line-label) !important;
  letter-spacing: 0.075em !important;
  text-transform: uppercase !important;
}

.gp-type-button,
[data-gp-type="button"] {
  font-family: inherit !important;
  font-size: var(--gp-button-size) !important;
  font-weight: var(--gp-weight-semibold) !important;
  line-height: var(--gp-line-button) !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}

.gp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--gp-space-2);
  margin-bottom: var(--gp-space-4);
}

/* Permanent two-line section-title system */
.gp-title-two-line {
  display: grid;
  gap: clamp(4px, 0.5vw, 8px);
}

.gp-title-two-line > .gp-title-line--primary,
.gp-title-two-line > .gp-title-line--accent {
  display: block;
  width: 100%;
}

.gp-title-two-line > .gp-title-line--primary {
  color: var(--gp-navy) !important;
  -webkit-text-fill-color: var(--gp-navy) !important;
}

.gp-title-two-line > .gp-title-line--accent {
  color: var(--gp-accent) !important;
  -webkit-text-fill-color: var(--gp-accent) !important;
}

@media (min-width: 1025px) {
  .gp-title-two-line > .gp-title-line--primary,
  .gp-title-two-line > .gp-title-line--accent {
    white-space: nowrap;
  }
}

.gp-prose {
  width: min(100%, var(--gp-content-narrow));
}

.gp-prose > :first-child {
  margin-top: 0;
}

.gp-prose > :last-child {
  margin-bottom: 0;
}


/* ==========================================================================
   4. COLOR HELPERS
========================================================================== */

.gp-text-navy { color: var(--gp-navy); }
.gp-text-emerald { color: var(--gp-emerald); }
.gp-text-accent,
.gp-text-amber { color: var(--gp-accent); }
.gp-text-slate { color: var(--gp-text); }
.gp-text-muted { color: var(--gp-muted); }

.gp-bg-white { background-color: var(--gp-white); }
.gp-bg-surface { background-color: var(--gp-surface); }

.gp-bg-navy {
  background-color: var(--gp-navy);
  color: var(--gp-white);
}

.gp-bg-navy :where(h1, h2, h3, h4, h5, h6, p) {
  color: var(--gp-white);
}


/* ==========================================================================
   5. SECTION, CONTAINER, AND LAYOUT
========================================================================== */

.gp-section {
  position: relative;
  width: 100%;
  padding-block: var(--gp-section-space);
  color: var(--gp-text);
  font-family: inherit;
  overflow: clip;
}

.gp-section--compact {
  padding-block: var(--gp-section-space-compact);
}

.gp-container {
  width: min(calc(100% - (var(--gp-gutter) * 2)), var(--gp-container));
  margin-inline: auto;
}

.gp-content-narrow {
  width: min(100%, var(--gp-content-narrow));
}

.gp-content-center {
  margin-inline: auto;
  text-align: center;
}

.gp-section-heading {
  width: min(100%, var(--gp-content-narrow));
  margin-bottom: clamp(32px, 5vw, 56px);
}

.gp-section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.gp-section-heading > :first-child {
  margin-top: 0;
}

.gp-section-heading > :last-child {
  margin-bottom: 0;
}

.gp-grid {
  display: grid;
  gap: var(--gp-grid-gap);
}

.gp-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gp-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gp-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gp-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
}

.gp-stack {
  display: flex;
  flex-direction: column;
  gap: var(--gp-space-6);
}

.gp-cluster,
.gp-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--gp-space-4);
}


/* ==========================================================================
   6. BUTTON SYSTEM
   GrowPep Global Button System

   GLOBAL STATES:
   Primary:
   - Normal: Navy + White
   - Hover: Dark Navy + White

   Accent:
   - Normal: Amber Gold + Navy
   - Hover: Dark Amber + White

   Secondary:
   - Normal: Transparent + Navy
   - Hover: Soft Gray + Navy

   No button text becomes green.
========================================================================== */

.gp-button {
    display: inline-flex;
    min-width: 0;
    min-height: var(--gp-button-height);
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 11px 22px;

    border: 1px solid transparent;
    border-radius: var(--gp-radius-button);

    background-color: transparent;
    color: var(--gp-navy);

    font-family: inherit;
    font-size: var(--gp-button-size);
    font-weight: var(--gp-weight-semibold);
    line-height: var(--gp-line-button);

    text-align: center;
    text-decoration: none !important;
    white-space: normal;

    cursor: pointer;
    -webkit-tap-highlight-color: transparent;

    transition:
        transform var(--gp-motion-fast),
        background-color var(--gp-motion-fast),
        border-color var(--gp-motion-fast),
        color var(--gp-motion-fast),
        box-shadow var(--gp-motion-fast);
}


/* ==========================================================================
   GENERAL LINK STATE SAFETY
========================================================================== */

a.gp-button,
a.gp-button:link,
a.gp-button:visited,
a.gp-button:hover,
a.gp-button:focus,
a.gp-button:focus-visible,
a.gp-button:active {
    text-decoration: none !important;
}


/* ==========================================================================
   FOCUS / ACTIVE
========================================================================== */

.gp-button:focus-visible {
    outline: 2px solid var(--gp-accent);
    outline-offset: 2px;
}

.gp-button:active {
    transform: scale(0.98);
}


/* ==========================================================================
   PRIMARY BUTTON
   Navy → Dark Navy
========================================================================== */

.gp-button--primary,
a.gp-button--primary,
a.gp-button--primary:link,
a.gp-button--primary:visited {
    border-color: var(--gp-navy) !important;
    background-color: var(--gp-navy) !important;
    color: var(--gp-white) !important;
    box-shadow: var(--gp-shadow-button);
}

.gp-button--primary:hover,
.gp-button--primary:focus,
.gp-button--primary:focus-visible,
.gp-button--primary:active,
a.gp-button--primary:hover,
a.gp-button--primary:focus,
a.gp-button--primary:focus-visible,
a.gp-button--primary:active {
    border-color: var(--gp-navy-hover) !important;
    background-color: var(--gp-navy-hover) !important;
    color: var(--gp-white) !important;
    box-shadow: 0 10px 24px rgba(15, 42, 74, 0.18);
}


/* ==========================================================================
   ACCENT BUTTON — GLOBAL FINAL
   Normal: Gold + Navy Text
   Hover: Navy + White Text
========================================================================== */

.gp-button--accent,
a.gp-button--accent,
a.gp-button--accent:link,
a.gp-button--accent:visited {
    border-color: var(--gp-accent) !important;
    background-color: var(--gp-accent) !important;
    color: var(--gp-navy) !important;
    text-decoration: none !important;
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.18);
}

.gp-button--accent:hover,
.gp-button--accent:focus,
.gp-button--accent:focus-visible,
.gp-button--accent:active,
a.gp-button--accent:hover,
a.gp-button--accent:focus,
a.gp-button--accent:focus-visible,
a.gp-button--accent:active {
    border-color: var(--gp-navy) !important;
    background-color: var(--gp-navy) !important;
    color: var(--gp-white) !important;
    text-decoration: none !important;
    box-shadow: 0 10px 24px rgba(15, 42, 74, 0.18);
}

.gp-button--accent:focus-visible {
    outline: 2px solid var(--gp-accent);
    outline-offset: 2px;
}
/* ==========================================================================
   SECONDARY BUTTON
========================================================================== */

.gp-button--secondary,
a.gp-button--secondary,
a.gp-button--secondary:link,
a.gp-button--secondary:visited {
    border-color: var(--gp-navy) !important;
    background-color: transparent !important;
    color: var(--gp-navy) !important;
}

.gp-button--secondary:hover,
.gp-button--secondary:focus,
.gp-button--secondary:focus-visible,
.gp-button--secondary:active,
a.gp-button--secondary:hover,
a.gp-button--secondary:focus,
a.gp-button--secondary:focus-visible,
a.gp-button--secondary:active {
    border-color: var(--gp-navy) !important;
    background-color: var(--gp-surface) !important;
    color: var(--gp-navy) !important;
}


/* ==========================================================================
   GHOST BUTTON
========================================================================== */

.gp-button--ghost,
a.gp-button--ghost,
a.gp-button--ghost:link,
a.gp-button--ghost:visited {
    border-color: transparent !important;
    background-color: transparent !important;
    color: var(--gp-text) !important;
}

.gp-button--ghost:hover,
.gp-button--ghost:focus,
.gp-button--ghost:focus-visible,
.gp-button--ghost:active,
a.gp-button--ghost:hover,
a.gp-button--ghost:focus,
a.gp-button--ghost:focus-visible,
a.gp-button--ghost:active {
    border-color: transparent !important;
    background-color: var(--gp-surface) !important;
    color: var(--gp-navy) !important;
}


/* ==========================================================================
   BUTTON SIZES
========================================================================== */

.gp-button--small {
    min-height: var(--gp-button-height-sm);
    padding: 8px 18px;
    font-size: 14px;
}

.gp-button--large {
    min-height: var(--gp-button-height-lg);
    padding: 13px 28px;
    font-size: var(--gp-button-size);
}

.gp-button--full {
    width: 100%;
}


/* ==========================================================================
   DISABLED BUTTON
========================================================================== */

.gp-button:disabled,
.gp-button[aria-disabled="true"],
.gp-button.is-disabled {
    border-color: var(--gp-disabled-bg) !important;
    background-color: var(--gp-disabled-bg) !important;
    color: var(--gp-disabled-text) !important;

    box-shadow: none;
    cursor: not-allowed;
    pointer-events: none;
    transform: none;
}

/* ==========================================================================
   7. CARD SYSTEM
========================================================================== */

.gp-card {
  position: relative;
  height: 100%;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius-card);
  background: var(--gp-white);
  box-shadow: var(--gp-shadow-card);
  transition:
    transform var(--gp-motion-standard),
    border-color var(--gp-motion-standard),
    box-shadow var(--gp-motion-standard);
}

.gp-card:focus-within {
  border-color: rgba(15, 157, 116, 0.45);
  box-shadow: var(--gp-shadow-card-hover);
}

.gp-card > :first-child {
  margin-top: 0;
}

.gp-card > :last-child {
  margin-bottom: 0;
}

.gp-card__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--gp-space-5);
  border-radius: 12px;
  background: rgba(15, 157, 116, 0.10);
  color: var(--gp-emerald);
  transition:
    transform var(--gp-motion-standard),
    background-color var(--gp-motion-standard),
    color var(--gp-motion-standard);
}

.gp-card__icon svg {
  width: 24px;
  height: 24px;
}

.gp-card__title {
  margin-bottom: var(--gp-space-3);
}

.gp-card__text {
  margin-bottom: var(--gp-space-5);
}

.gp-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gp-navy);
  font-weight: 600;
  text-decoration: none;
}

.gp-card__arrow {
  display: inline-flex;
  transition: transform var(--gp-motion-fast);
}

.gp-card--surface {
  background: var(--gp-surface);
  box-shadow: none;
}

.gp-card--featured {
  border-color: rgba(15, 157, 116, 0.35);
  box-shadow: var(--gp-shadow-card-hover);
}


/* ==========================================================================
   8. BADGES, TRUST LINES, AND SUPPORTING UI
========================================================================== */

.gp-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border: 1px solid rgba(15, 157, 116, 0.22);
  border-radius: var(--gp-radius-pill);
  background: rgba(15, 157, 116, 0.08);
  color: var(--gp-emerald-dark);
  font-size: var(--gp-label-size);
  font-weight: var(--gp-weight-bold);
  line-height: var(--gp-line-label);
}

.gp-trust-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--gp-space-4);
  color: var(--gp-muted);
  font-size: var(--gp-small-size);
}

.gp-divider {
  width: 100%;
  height: 1px;
  border: 0;
  background: var(--gp-border);
}


/* ==========================================================================
   9. MEDIA AND IMAGE SYSTEM
========================================================================== */

.gp-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--gp-radius-image);
  background: var(--gp-surface);
}

.gp-media img {
  display: block;
  width: 100%;
  height: auto;
}

.gp-media--cover {
  aspect-ratio: 4 / 3;
}

.gp-media--wide {
  aspect-ratio: 16 / 9;
}

.gp-media--square {
  aspect-ratio: 1 / 1;
}

.gp-media--cover img,
.gp-media--wide img,
.gp-media--square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ==========================================================================
   10. FORM SYSTEM
   Wrap custom or Forminator forms with .gp-form-scope.
========================================================================== */

.gp-form-scope {
  color: var(--gp-text);
  font-family: inherit;
}

.gp-form-scope label,
.gp-form-scope .gp-form-label {
  display: block;
  margin-bottom: var(--gp-space-2);
  color: var(--gp-navy);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.gp-form-scope input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.gp-form-scope select,
.gp-form-scope textarea,
.gp-form-scope .forminator-input,
.gp-form-scope .forminator-select,
.gp-form-scope .forminator-textarea {
  width: 100%;
  min-height: var(--gp-input-height);
  padding: 12px 14px;
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius-input);
  background: var(--gp-white);
  color: var(--gp-navy);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.5;
  outline: none;
  transition:
    border-color var(--gp-motion-fast),
    box-shadow var(--gp-motion-fast),
    background-color var(--gp-motion-fast);
}

.gp-form-scope textarea,
.gp-form-scope .forminator-textarea {
  min-height: 140px;
  resize: vertical;
}

.gp-form-scope input:focus,
.gp-form-scope select:focus,
.gp-form-scope textarea:focus,
.gp-form-scope .forminator-input:focus,
.gp-form-scope .forminator-select:focus,
.gp-form-scope .forminator-textarea:focus {
  border-color: var(--gp-emerald);
  box-shadow: 0 0 0 3px rgba(15, 157, 116, 0.14);
}

.gp-form-scope input::placeholder,
.gp-form-scope textarea::placeholder {
  color: var(--gp-muted);
  opacity: 0.9;
}

.gp-form-scope input[type="checkbox"],
.gp-form-scope input[type="radio"] {
  accent-color: var(--gp-emerald);
}

.gp-form-help {
  margin-top: var(--gp-space-2);
  color: var(--gp-muted);
  font-size: 14px;
  line-height: 1.5;
}

.gp-form-error,
.gp-form-scope .forminator-error-message {
  margin-top: var(--gp-space-2);
  color: var(--gp-error);
  font-size: 14px;
  line-height: 1.5;
}

.gp-form-success {
  padding: var(--gp-space-4);
  border: 1px solid rgba(15, 157, 116, 0.30);
  border-radius: var(--gp-radius-input);
  background: rgba(15, 157, 116, 0.08);
  color: var(--gp-emerald-dark);
}


/* ==========================================================================
   11. MOTION AND REVEAL SYSTEM
========================================================================== */

.gp-reveal {
  opacity: 1;
  transform: none;
}

.gp-reveal.is-gp-reveal-ready {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--gp-motion-reveal),
    transform var(--gp-motion-reveal);
  will-change: opacity, transform;
}

.gp-reveal--left.is-gp-reveal-ready {
  transform: translateX(-24px);
}

.gp-reveal--right.is-gp-reveal-ready {
  transform: translateX(24px);
}

.gp-reveal--scale.is-gp-reveal-ready {
  transform: scale(0.97);
}

.gp-reveal.is-gp-visible {
  opacity: 1;
  transform: none;
}

.gp-delay-1 { transition-delay: 80ms !important; }
.gp-delay-2 { transition-delay: 160ms !important; }
.gp-delay-3 { transition-delay: 240ms !important; }
.gp-delay-4 { transition-delay: 320ms !important; }


/* ==========================================================================
   12. CUSTOM FOOTER SYSTEM
========================================================================== */

.gp-footer {
  position: relative;
  overflow: hidden;
  background: var(--gp-navy);
  color: rgba(255, 255, 255, 0.78);
  font-family: inherit;
}

.gp-footer__main {
  padding-block: clamp(64px, 7vw, 96px);
}

.gp-footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(32px, 5vw, 64px);
}

.gp-footer__brand-panel {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--gp-white);
}

.gp-footer__logo {
  display: block;
  width: min(100%, 190px);
  height: auto;
}

.gp-footer__description {
  max-width: 420px;
  margin-top: var(--gp-space-5);
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.gp-footer__heading {
  margin: 0 0 var(--gp-space-5);
  color: var(--gp-white);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.gp-footer__list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.gp-footer__link {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  transition:
    color var(--gp-motion-fast),
    transform var(--gp-motion-fast);
}

.gp-footer__link:hover,
.gp-footer__link:focus-visible {
  color: var(--gp-white);
}

.gp-footer__link:focus-visible {
  outline: 2px solid var(--gp-accent);
  outline-offset: 3px;
}

.gp-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--gp-space-5);
}

.gp-footer__social-link {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: var(--gp-radius-button);
  color: var(--gp-white);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background-color var(--gp-motion-fast),
    border-color var(--gp-motion-fast);
}

.gp-footer__social-link:hover {
  border-color: var(--gp-emerald);
  background: var(--gp-emerald);
  color: var(--gp-white);
}

.gp-footer__bottom {
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.gp-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--gp-space-4);
}

.gp-footer__copyright,
.gp-footer__legal {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.6;
}

.gp-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gp-space-4);
}


/* ==========================================================================
   13. ACCESSIBILITY HELPERS
========================================================================== */

.gp-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.gp-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: var(--gp-z-modal);
  padding: 10px 14px;
  border-radius: var(--gp-radius-button);
  background: var(--gp-accent);
  color: var(--gp-navy);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform var(--gp-motion-fast);
}

.gp-skip-link:focus {
  transform: translateY(0);
}


/* ==========================================================================
   14. POINTER-AWARE HOVER EFFECTS
========================================================================== */

@media (hover: hover) and (pointer: fine) {
  .gp-button:not(:disabled):not([aria-disabled="true"]):not(.is-disabled):hover {
    transform: translateY(-2px);
  }

  .gp-card:hover {
    transform: translateY(-5px);
    border-color: rgba(15, 157, 116, 0.30);
    box-shadow: var(--gp-shadow-card-hover);
  }

  .gp-card:hover .gp-card__icon {
    transform: translateY(-2px) scale(1.04);
    background: rgba(15, 157, 116, 0.14);
  }

  .gp-card:hover .gp-card__arrow {
    transform: translateX(4px);
  }

  .gp-footer__link:hover {
    transform: translateX(2px);
  }
}


/* ==========================================================================
   15. RESPONSIVE SYSTEM
   Typography scales fluidly through :root clamp() tokens.
   Breakpoints below control layout and spacing only.
========================================================================== */

/* Desktop default: above 1280px */

/* Laptop */
@media (max-width: 1280px) {
  :root {
    --gp-gutter: 28px;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --gp-gutter: 24px;
    --gp-section-space: clamp(64px, 7vw, 80px);
    --gp-section-space-compact: clamp(56px, 6vw, 72px);
  }

  .gp-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gp-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Tablet Portrait */
@media (max-width: 834px) {
  .gp-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gp-split {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   MOBILE — 767PX
   GLOBAL RESPONSIVE TYPOGRAPHY
========================================================================== */

@media (max-width: 767px) {
  :root {
    --gp-gutter: 18px;

    --gp-section-space: clamp(48px, 12vw, 64px);
    --gp-section-space-compact: clamp(44px, 10vw, 56px);
    --gp-grid-gap: clamp(16px, 5vw, 24px);

    /* Global mobile typography */
    --gp-display-size: 30px;
    --gp-section-title-size: 27px;
    --gp-subsection-title-size: 22px;
    --gp-card-title-size: 19px;

    /* Semantic aliases automatically inherit */
    --gp-h1-size: var(--gp-display-size);
    --gp-h2-size: var(--gp-section-title-size);
    --gp-h3-size: var(--gp-card-title-size);
  }

  .gp-grid--2,
  .gp-grid--3,
  .gp-grid--4,
  .gp-footer__grid {
    grid-template-columns: 1fr;
  }

  .gp-actions--stack-mobile {
    align-items: stretch;
    flex-direction: column;
  }

  .gp-actions--stack-mobile .gp-button {
    width: 100%;
  }

  .gp-card {
    padding: 24px;
  }

  .gp-footer__bottom-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  /*
   Keep the intended two-part title structure.
   Allow wrapping only when the available width genuinely requires it.
  */
  .gp-title-two-line > .gp-title-line--primary,
  .gp-title-two-line > .gp-title-line--accent {
    width: 100%;
    white-space: normal;
    text-wrap: balance;
  }
}


/* ==========================================================================
   SMALL MOBILE — 480PX
========================================================================== */

@media (max-width: 480px) {
  :root {
    --gp-gutter: 16px;

    /* Smaller global titles */
    --gp-display-size: 27px;
    --gp-section-title-size: 25px;
    --gp-subsection-title-size: 21px;
    --gp-card-title-size: 18px;

    --gp-h1-size: var(--gp-display-size);
    --gp-h2-size: var(--gp-section-title-size);
    --gp-h3-size: var(--gp-card-title-size);
  }

  .gp-card {
    padding: 22px;
  }

  .gp-button--large {
    padding-inline: 22px;
  }
}


/* ==========================================================================
   VERY SMALL MOBILE — 360PX
========================================================================== */

@media (max-width: 360px) {
  :root {
    --gp-gutter: 14px;

    /* Compact but still readable */
    --gp-display-size: 24px;
    --gp-section-title-size: 23px;
    --gp-subsection-title-size: 20px;
    --gp-card-title-size: 18px;

    --gp-h1-size: var(--gp-display-size);
    --gp-h2-size: var(--gp-section-title-size);
    --gp-h3-size: var(--gp-card-title-size);
  }

  .gp-button {
    padding-inline: 16px;
  }
}


/* ==========================================================================
   16. LEGACY SECTION TYPOGRAPHY NORMALIZATION
   --------------------------------------------------------------------------
   Safely normalizes current Elementor HTML sections that still contain
   local typography declarations.

   PARSER-SAFE VERSION:
   - No :is() selectors
   - Keeps existing Elementor / theme compatibility
   - Does not target header, navigation, portal, or native Elementor widgets
   - New sections should continue using gp-type-* roles
========================================================================== */


/* ==========================================================================
   BASE FONT INHERITANCE
========================================================================== */

body .elementor-widget-html section[class*="gp"] {
  font-family: inherit !important;
}

body .elementor-widget-html section[class*="gp"] h1,
body .elementor-widget-html section[class*="gp"] h2,
body .elementor-widget-html section[class*="gp"] h3,
body .elementor-widget-html section[class*="gp"] h4,
body .elementor-widget-html section[class*="gp"] h5,
body .elementor-widget-html section[class*="gp"] h6,
body .elementor-widget-html section[class*="gp"] p,
body .elementor-widget-html section[class*="gp"] a,
body .elementor-widget-html section[class*="gp"] button,
body .elementor-widget-html section[class*="gp"] input,
body .elementor-widget-html section[class*="gp"] select,
body .elementor-widget-html section[class*="gp"] textarea,
body .elementor-widget-html section[class*="gp"] label,
body .elementor-widget-html section[class*="gp"] small,
body .elementor-widget-html section[class*="gp"] strong,
body .elementor-widget-html section[class*="gp"] em,
body .elementor-widget-html section[class*="gp"] span {
  font-family: inherit !important;
}


/* ==========================================================================
   HERO / PAGE DISPLAY TITLE
========================================================================== */

body .elementor-widget-html section[class*="gp"] h1 {
  font-size: var(--gp-display-size) !important;
  font-weight: var(--gp-weight-bold) !important;
  line-height: var(--gp-line-display) !important;
  letter-spacing: -0.035em !important;
}


/* ==========================================================================
   MAIN SECTION TITLE
========================================================================== */

body .elementor-widget-html section[class*="gp"] h2 {
  font-size: var(--gp-section-title-size) !important;
  font-weight: var(--gp-weight-bold) !important;
  line-height: var(--gp-line-section-title) !important;
  letter-spacing: -0.025em !important;
}


/* ==========================================================================
   CARD / SUBSECTION TITLE
========================================================================== */

body .elementor-widget-html section[class*="gp"] h3 {
  font-size: var(--gp-card-title-size) !important;
  font-weight: var(--gp-weight-bold) !important;
  line-height: var(--gp-line-card-title) !important;
  letter-spacing: -0.01em !important;
}


/* ==========================================================================
   H4
========================================================================== */

body .elementor-widget-html section[class*="gp"] h4 {
  font-size: var(--gp-h4-size) !important;
  font-weight: var(--gp-weight-semibold) !important;
  line-height: 1.35 !important;
}


/* ==========================================================================
   H5
========================================================================== */

body .elementor-widget-html section[class*="gp"] h5 {
  font-size: var(--gp-h5-size) !important;
  font-weight: var(--gp-weight-semibold) !important;
  line-height: 1.4 !important;
}


/* ==========================================================================
   H6
========================================================================== */

body .elementor-widget-html section[class*="gp"] h6 {
  font-size: var(--gp-h6-size) !important;
  font-weight: var(--gp-weight-semibold) !important;
  line-height: 1.4 !important;
}


/* ==========================================================================
   BODY COPY
========================================================================== */

body .elementor-widget-html section[class*="gp"] p {
  font-size: var(--gp-body-size) !important;
  font-weight: var(--gp-weight-regular) !important;
  line-height: var(--gp-line-body) !important;
  letter-spacing: normal !important;
}


/* ==========================================================================
   COMPACT SUPPORTING COPY
   Parser-safe replacement for previous :is() selector
========================================================================== */

body .elementor-widget-html section[class*="gp"] [class*="title"] > p,
body .elementor-widget-html section[class*="gp"] [class*="note"] > p,
body .elementor-widget-html section[class*="gp"] [class*="meta"] > p,
body .elementor-widget-html section[class*="gp"] [class*="caption"] > p,
body .elementor-widget-html section[class*="gp"] [class*="support"] > p {
  font-size: var(--gp-small-size) !important;
  line-height: var(--gp-line-body-small) !important;
}


/* ==========================================================================
   SUPPORTING METADATA
========================================================================== */

body .elementor-widget-html section[class*="gp"] small {
  font-size: var(--gp-label-size) !important;
  font-weight: var(--gp-weight-medium) !important;
  line-height: var(--gp-line-label) !important;
}


/* ==========================================================================
   EYEBROW / KICKER / LABEL / BADGE / STATUS / TAG
   Parser-safe replacement for previous :is() selector
========================================================================== */

body .elementor-widget-html section[class*="gp"] [class*="eyebrow"],
body .elementor-widget-html section[class*="gp"] [class*="kicker"],
body .elementor-widget-html section[class*="gp"] [class*="label"],
body .elementor-widget-html section[class*="gp"] [class*="badge"],
body .elementor-widget-html section[class*="gp"] [class*="status"],
body .elementor-widget-html section[class*="gp"] [class*="tag"] {
  font-size: var(--gp-label-size) !important;
  font-weight: var(--gp-weight-bold) !important;
  line-height: var(--gp-line-label) !important;
}


/* ==========================================================================
   BUTTON TYPOGRAPHY
   Parser-safe replacement for previous :is() selector
========================================================================== */

body .elementor-widget-html section[class*="gp"] button,
body .elementor-widget-html section[class*="gp"] [role="button"],
body .elementor-widget-html section[class*="gp"] a[class*="button"] {
  font-size: var(--gp-button-size) !important;
  font-weight: var(--gp-weight-semibold) !important;
  line-height: var(--gp-line-button) !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}


/* ==========================================================================
   DARK SECTION TEXT
========================================================================== */

.gp-bg-navy {
  color: var(--gp-white) !important;
}

.gp-bg-navy h1,
.gp-bg-navy h2,
.gp-bg-navy h3,
.gp-bg-navy h4,
.gp-bg-navy h5,
.gp-bg-navy h6,
.gp-bg-navy p {
  color: var(--gp-white) !important;
}
/* ==========================================================================
   17. REDUCED MOTION
========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .gp-button,
  .gp-card,
  .gp-card__icon,
  .gp-card__arrow,
  .gp-footer__link,
  .gp-reveal,
  .gp-reveal.is-gp-reveal-ready {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}
/* ==========================================================================
   GROWPEP — GLOBAL ACCENT BUTTON COLOR LOCK
   KEEP THIS AT THE VERY END OF growpep-global.css

   Normal:
   Gold background + Navy text

   Hover / Focus / Active:
   Navy background + White text

   Prevents Elementor / Theme link hover colors from turning text green.
========================================================================== */

a.gp-button.gp-button--accent,
a.gp-button.gp-button--accent:link,
a.gp-button.gp-button--accent:visited,
button.gp-button.gp-button--accent {
    border-color: var(--gp-accent) !important;
    background-color: var(--gp-accent) !important;
    color: var(--gp-navy) !important;
    text-decoration: none !important;
}

a.gp-button.gp-button--accent:hover,
a.gp-button.gp-button--accent:focus,
a.gp-button.gp-button--accent:focus-visible,
a.gp-button.gp-button--accent:active,
button.gp-button.gp-button--accent:hover,
button.gp-button.gp-button--accent:focus,
button.gp-button.gp-button--accent:focus-visible,
button.gp-button.gp-button--accent:active {
    border-color: var(--gp-navy) !important;
    background-color: var(--gp-navy) !important;
    color: var(--gp-white) !important;
    text-decoration: none !important;
}

/* Keep nested button text/icons consistent */
a.gp-button.gp-button--accent:hover *,
a.gp-button.gp-button--accent:focus *,
a.gp-button.gp-button--accent:focus-visible *,
a.gp-button.gp-button--accent:active * {
    color: inherit !important;
}

/* SVG icons follow button text color */
a.gp-button.gp-button--accent svg,
button.gp-button.gp-button--accent svg {
    color: inherit !important;
    stroke: currentColor;
}

/* Accessible keyboard focus */
a.gp-button.gp-button--accent:focus-visible,
button.gp-button.gp-button--accent:focus-visible {
    outline: 2px solid var(--gp-accent) !important;
    outline-offset: 3px;
}
/* ==========================================================================
   GROWPEP SINGLE BLOG POST — ARTICLE PROSE TYPOGRAPHY
   GLOBAL CSS EXTENSION

   APPLY TO:
   Post Content widget CSS class:
   gp-single-post-content
========================================================================== */


/* ==========================================================================
   ARTICLE H2
========================================================================== */

.gp-single-post-content h2 {
    color: var(--gp-navy) !important;

    font-family: inherit !important;

    font-size: var(--gp-subsection-title-size) !important;
    font-weight: var(--gp-weight-bold) !important;

    line-height: var(--gp-line-subsection-title) !important;

    letter-spacing: -0.015em !important;

    word-break: normal !important;
    overflow-wrap: normal !important;

    hyphens: none !important;

    text-wrap: balance;
}


/* ==========================================================================
   ARTICLE H3
========================================================================== */

.gp-single-post-content h3 {
    color: var(--gp-navy) !important;

    font-family: inherit !important;

    font-size: var(--gp-card-title-size) !important;
    font-weight: var(--gp-weight-bold) !important;

    line-height: var(--gp-line-card-title) !important;

    letter-spacing: -0.01em !important;

    word-break: normal !important;
    overflow-wrap: normal !important;

    hyphens: none !important;
}


/* ==========================================================================
   ARTICLE H4
========================================================================== */

.gp-single-post-content h4 {
    color: var(--gp-navy) !important;

    font-family: inherit !important;

    font-size: var(--gp-h4-size) !important;
    font-weight: var(--gp-weight-semibold) !important;

    line-height: 1.35 !important;
}


/* ==========================================================================
   ARTICLE H5
========================================================================== */

.gp-single-post-content h5 {
    color: var(--gp-navy) !important;

    font-family: inherit !important;

    font-size: var(--gp-h5-size) !important;
    font-weight: var(--gp-weight-semibold) !important;

    line-height: 1.4 !important;
}


/* ==========================================================================
   ARTICLE H6
========================================================================== */

.gp-single-post-content h6 {
    color: var(--gp-navy) !important;

    font-family: inherit !important;

    font-size: var(--gp-h6-size) !important;
    font-weight: var(--gp-weight-semibold) !important;

    line-height: 1.4 !important;
}


/* ==========================================================================
   ARTICLE BODY COPY
========================================================================== */

.gp-single-post-content p,
.gp-single-post-content li {
    color: var(--gp-text) !important;

    font-family: inherit !important;

    font-size: var(--gp-body-size) !important;
    font-weight: var(--gp-weight-regular) !important;

    line-height: var(--gp-line-body) !important;
}


/* ==========================================================================
   ARTICLE LINKS
========================================================================== */

.gp-single-post-content a {
    color: var(--gp-navy) !important;

    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}


.gp-single-post-content a:hover,
.gp-single-post-content a:focus-visible {
    color: var(--gp-navy-hover) !important;
}


/* ==========================================================================
   TABLET — 1024PX
   Uses existing global tokens
========================================================================== */

@media (max-width: 1024px) {

    .gp-single-post-content h2 {
        font-size: var(--gp-subsection-title-size) !important;
    }

}


/* ==========================================================================
   TABLET PORTRAIT — 834PX
========================================================================== */

@media (max-width: 834px) {

    .gp-single-post-content h2 {
        font-size: var(--gp-subsection-title-size) !important;
    }

}


/* ==========================================================================
   MOBILE — 767PX
   FINAL H2 = 22PX
========================================================================== */

@media (max-width: 767px) {

    .gp-single-post-content h2 {
        font-size: 22px !important;
        line-height: 1.22 !important;
    }

}


/* ==========================================================================
   SMALL MOBILE — 480PX
   KEEP H2 = 22PX
========================================================================== */

@media (max-width: 480px) {

    .gp-single-post-content h2 {
        font-size: 22px !important;
        line-height: 1.22 !important;
    }

}


/* ==========================================================================
   VERY SMALL MOBILE — 360PX
   KEEP H2 = 22PX
========================================================================== */

@media (max-width: 360px) {

    .gp-single-post-content h2 {
        font-size: 22px !important;
        line-height: 1.22 !important;
    }

}