@font-face {
  font-family: "Abril Text";
  src: url("/_files/fonts/abril-text-regular.woff2") format("woff2"),
       url("/_files/fonts/abril-text-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Abril Text";
  src: url("/_files/fonts/abril-text-bold.woff2") format("woff2"),
       url("/_files/fonts/abril-text-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Abril Text";
  src: url("/_files/fonts/abril-text-italic.woff2") format("woff2"),
       url("/_files/fonts/abril-text-italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

.barlow-condensed-regular {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.barlow-condensed-medium {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.barlow-condensed-semibold {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.barlow-condensed-bold {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
}

:root {

  /* --- Colors --- */
  --primary:      #ba0c2f;
  --secondary:    #eab000;
  --light-gold:   #fcf4e3;
  --dark-gold:    #c9a96e;
  --black:        #18191a;
  --white:        #ffffff;
  --gray:         #2f3942;
  --gray-muted:   #888888;
  --gray-steel:   #5d666f;
  --gray-light:   #f0f0f0;
  --bg:           #f4f6f8;
  --divider:      rgba(0, 0, 0, 0.1);

  /* --- Text --- */
  --text-body:    #000000;
  --text-heading: var(--black);
  --text-red: var(--primary);
  --text-primary:  var(--primary);
  --text-white: var(--white);
  --text-medium:  #506380;
  --text-muted:   var(--gray-muted);
  --link-color:   #000000;
  --link-hover:   var(--primary);
  --primary-hover:      #000000;

  /* --- Backgrounds --- */
  --bg-primary:    var(--primary);
  --bg-primary-hover: #d10f36;
  --bg-black:      #000000;
  --bg-gray-light: var(--gray-light);
  --bg-steel: var(--gray-steel);
  --card-bg:       var(--white);

  /* --- Typography --- */
  --font-heading: "Abril Text", serif;
  --font-body:    "Roboto", sans-serif;
  --font-ui:      "Barlow Condensed", sans-serif;
  --font-eyebrow: "Barlow Condensed", sans-serif;

  --weight-regular:  400;
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;

  --lh-tight:   1.2;
  --lh-title:   1.15;
  --lh-snug:    1.25;
  --lh-base:    1.5;
  --lh-loose:   1.65;
  --lh-relaxed: 1.7;

  --ls-tight:  -0.03em;
  --ls-wide:    0.06em;
  --ls-wider:   0.12em;

  /* --- Type Scale (fluid clamp — calibrated for 1100px, 16px base) ---
     ts-3xs  ~11–12px   all-caps tags, micro labels
     ts-xxs  ~12–14px   captions, bylines, card meta
     ts-xs   ~14–16px   card body, nav links, secondary
     ts-base ~16–18px   body copy
     ts-sm   ~16–22px   UI text, buttons, nav
     ts-md   ~18–30px   card titles, h3
     ts-lg   ~22–38px   subheadings, story deck
     ts-xl   ~26–46px   page headings, h2
     ts-2xl  ~30–56px   section titles
     ts-xxl  ~36–66px   hero h1, display
  -------------------------------------------------------------------- */
  --ts-3xs:  clamp(0.6875rem, 0.4vw  + 0.56rem,  0.75rem);
  --ts-xxs:  clamp(0.75rem,   0.5vw  + 0.6rem,   0.875rem);
  --ts-xs:   clamp(0.875rem,  0.6vw  + 0.68rem,  1rem);
  --ts-base: clamp(1rem,      0.5vw  + 0.9rem,   1.125rem);
  --ts-sm:   clamp(1rem,      1.2vw  + 0.8rem,   1.375rem);
  --ts-md:   clamp(1.125rem,  1.8vw  + 0.85rem,  1.575rem);
  --ts-lg:   clamp(1.375rem,  2.5vw  + 0.95rem,  2.375rem);
  --ts-xl:   clamp(1.625rem,  3vw    + 1rem,     2.875rem);
  --ts-2xl:  clamp(1.875rem,  3.8vw  + 1rem,     3.5rem);
  --ts-xxl:  clamp(2.25rem,   4.8vw  + 1rem,     4.125rem);

  /* --- Spacing --- */
  --space-xs:  clamp(.35rem, .3rem + .2vw, .5rem);
  --space-sm:  clamp(.65rem, .55rem + .35vw, .9rem);
  --space-md:  clamp(1rem, .85rem + .6vw, 1.35rem);
  --space-lg:  clamp(1.4rem, 1.1rem + 1vw, 2rem);
  --space-xl:  clamp(2rem, 1.5rem + 1.75vw, 3rem);
  --space-2xl: clamp(3rem, 2.2rem + 2.75vw, 4.75rem);
  --space-3xl: clamp(4rem, 3rem + 3.5vw, 6.5rem);
  --space-4xl: clamp(5rem, 4rem + 5vw, 8rem);
  --space-5xl: clamp(6.5rem, 5rem + 7vw, 11rem);

  /* --- Page Rhythm --- */
  --section-space: var(--space-xl);
  --section-space-tight: var(--space-2xl);
  --section-header-space: var(--space-xl);
  --grid-gap: var(--space-xl);
  --card-gap: var(--space-md);
  --card-padding: var(--space-lg);
  --text-gap: var(--space-sm);
  --wrap: 1180px;

  /* --- Layout --- */
  --container-max:    1180px;
  --container-mid:    900px;
  --container-narrow: 820px;
  --container-pad:    1.5rem;

  /* --- Navigation --- */
  --nav-bg:           var(--white);
  --nav-height:       110px;
  --offcanvas-bg:     var(--white);
  --offcanvas-width:  300px;
  
  /** TRANSITIONS **/
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --scale-hover: 1.04;
  --transition-opacity: opacity 0.2s;
  --transition-cta-arrow: transform 0.2s ease, background-image 0.2s ease;
  --transition-bg: background 0.2s;
}

/* Layout containers */
.container{width: min(100%, var(--container-max));}
.container-narrow { width: min(100%, var(--container-narrow)); margin-inline: auto; padding-inline: var(--container-pad); }
.container-mid    { width: min(100%, var(--container-mid));    margin-inline: auto; padding-inline: var(--container-pad); }


/* --- Type scale: sm-up (≥ 480px) --- */
@media (min-width: 480px) {
  :root {

    --ts-md:  clamp(1.25rem,  2vw   + 0.85rem, 1.875rem);
    --ts-lg:  clamp(1.5rem,   2.8vw + 0.95rem, 2.375rem);
    --ts-xl:  clamp(1.75rem,  3.2vw + 1rem,    2.875rem);
    --ts-2xl: clamp(2rem,     4vw   + 1rem,    3.5rem);
    --ts-xxl: clamp(2.375rem, 5vw   + 1rem,    4.125rem);
  }
}

/* --- Type scale: md-up (≥ 768px) --- */
@media (min-width: 768px) {
  :root {

    --ts-md:  clamp(1.375rem, 2.2vw + 0.87rem, 1.575rem);
    --ts-lg:  clamp(1.625rem, 3vw   + 0.97rem, 2.375rem);
    --ts-xl:  clamp(1.875rem, 3.5vw + 1rem,    2.875rem);
    --ts-2xl: clamp(2.25rem,  4.5vw + 1rem,    3.5rem);
    --ts-xxl: clamp(2.625rem, 5.5vw + 1rem,    4.125rem);
  }
}

/* --- Type scale: lg-up (≥ 1080px) --- */
@media (min-width: 1080px) {
  :root {
    --ts-lg:  clamp(1.75rem,  3vw   + 1rem, 2.375rem);
    --ts-xl:  clamp(2rem,     3.5vw + 1rem, 2.875rem);
    --ts-2xl: clamp(2.375rem, 4.5vw + 1rem, 3.5rem);
    --ts-xxl: clamp(2.875rem, 5.5vw + 1rem, 4.125rem);
  }
}

*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  overflow-y: scroll;
  background: var(--white);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: var(--ts-base);
  font-weight: var(--weight-regular);
  line-height: var(--lh-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p { margin: 0 0 var(--space-md); }

strong { font-weight: var(--weight-bold); }
em     { font-style: italic; }

a {
  color: var(--link-color);
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  color: var(--link-hover);
  text-decoration: none;
  outline: none;
}


.screen-reader-shortcut {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-shortcut:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: #111111;
  color: #ffffff;
  font-size: var(--ts-xs);
  font-weight: var(--weight-semibold);
  text-decoration: none;
}


/* =============================================================================
   TYPE SCALE — NUMERIC CLASSES  (fixed px, non-responsive)
   ============================================================================= */

.ts-11 { font-size: 0.6875rem  !important; }
.ts-12 { font-size: 0.75rem    !important; }
.ts-14 { font-size: 0.875rem   !important; }
.ts-16 { font-size: 1rem       !important; }
.ts-18 { font-size: 1.125rem   !important; }
.ts-20 { font-size: 1.25rem    !important; }
.ts-23 { font-size: 1.4375rem  !important; }
.ts-26 { font-size: 1.625rem   !important; }
.ts-29 { font-size: 1.8125rem  !important; }
.ts-32 { font-size: 2rem       !important; }
.ts-36 { font-size: 2.25rem    !important; }
.ts-41 { font-size: 2.5625rem  !important; }
.ts-46 { font-size: 2.875rem   !important; }
.ts-52 { font-size: 3.25rem    !important; }
.ts-58 { font-size: 3.625rem   !important; }
.ts-64 { font-size: 4rem       !important; }
.ts-72 { font-size: 4.5rem     !important; }
.ts-80 { font-size: 5rem       !important; }


/* =============================================================================
   TYPE SCALE — NAMED FLUID CLASSES
   ============================================================================= */

.ts-3xs  { font-size: var(--ts-3xs)  !important; }
.ts-xxs  { font-size: var(--ts-xxs)  !important; }
.ts-xs   { font-size: var(--ts-xs)   !important; }
.ts-base { font-size: var(--ts-base) !important; }
.ts-sm   { font-size: var(--ts-sm)   !important; }
.ts-md   { font-size: var(--ts-md)   !important; }
.ts-lg   { font-size: var(--ts-lg)   !important; }
.ts-xl   { font-size: var(--ts-xl)   !important; }
.ts-2xl  { font-size: var(--ts-2xl)  !important; }
.ts-xxl  { font-size: var(--ts-xxl)  !important; }

/* Breakpoint modifier classes */
@media (min-width: 480px) {
  .ts-3xs-sm-up  { font-size: var(--ts-3xs)  !important; }
  .ts-xxs-sm-up  { font-size: var(--ts-xxs)  !important; }
  .ts-xs-sm-up   { font-size: var(--ts-xs)   !important; }
  .ts-base-sm-up { font-size: var(--ts-base) !important; }
  .ts-sm-sm-up   { font-size: var(--ts-sm)   !important; }
  .ts-md-sm-up   { font-size: var(--ts-md)   !important; }
  .ts-lg-sm-up   { font-size: var(--ts-lg)   !important; }
  .ts-xl-sm-up   { font-size: var(--ts-xl)   !important; }
  .ts-2xl-sm-up  { font-size: var(--ts-2xl)  !important; }
  .ts-xxl-sm-up  { font-size: var(--ts-xxl)  !important; }
}

@media (min-width: 768px) {
  .ts-3xs-md-up  { font-size: var(--ts-3xs)  !important; }
  .ts-xxs-md-up  { font-size: var(--ts-xxs)  !important; }
  .ts-xs-md-up   { font-size: var(--ts-xs)   !important; }
  .ts-base-md-up { font-size: var(--ts-base) !important; }
  .ts-sm-md-up   { font-size: var(--ts-sm)   !important; }
  .ts-md-md-up   { font-size: var(--ts-md)   !important; }
  .ts-lg-md-up   { font-size: var(--ts-lg)   !important; }
  .ts-xl-md-up   { font-size: var(--ts-xl)   !important; }
  .ts-2xl-md-up  { font-size: var(--ts-2xl)  !important; }
  .ts-xxl-md-up  { font-size: var(--ts-xxl)  !important; }
}

@media (min-width: 1080px) {
  .ts-3xs-lg-up  { font-size: var(--ts-3xs)  !important; }
  .ts-xxs-lg-up  { font-size: var(--ts-xxs)  !important; }
  .ts-xs-lg-up   { font-size: var(--ts-xs)   !important; }
  .ts-base-lg-up { font-size: var(--ts-base) !important; }
  .ts-sm-lg-up   { font-size: var(--ts-sm)   !important; }
  .ts-md-lg-up   { font-size: var(--ts-md)   !important; }
  .ts-lg-lg-up   { font-size: var(--ts-lg)   !important; }
  .ts-xl-lg-up   { font-size: var(--ts-xl)   !important; }
  .ts-2xl-lg-up  { font-size: var(--ts-2xl)  !important; }
  .ts-xxl-lg-up  { font-size: var(--ts-xxl)  !important; }
}


/* =============================================================================
   UTILITY CLASSES
   ============================================================================= */

/* Font weight */
.fw-400 { font-weight: 400 !important; }
.fw-500 { font-weight: 500 !important; }
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }

/* Font family */
.font-body    { font-family: var(--font-body)    !important; }
.font-heading,
.serif-font   { font-family: var(--font-heading) !important; }
.font-ui      { font-family: var(--font-ui)      !important; }
.font-eyebrow { font-family: var(--font-eyebrow) !important; }
.sans-font    { font-family: var(--font-body)    !important; }

/* Line height */
.lh-tight   { line-height: var(--lh-tight)   !important; }
.lh-title   { line-height: var(--lh-title)   !important; }
.lh-snug    { line-height: var(--lh-snug)    !important; }
.lh-base    { line-height: var(--lh-base)    !important; }
.lh-loose   { line-height: var(--lh-loose)   !important; }
.lh-relaxed { line-height: var(--lh-relaxed) !important; }

/* Text alignment & color */
.text-left    { text-align: left    !important; }
.text-center  { text-align: center  !important; }
.text-right   { text-align: right   !important; }
.text-black   { color: var(--text-body)    !important; }
.text-primary { color: var(--text-primary) !important; }
.text-red { color: var(--text-primary) !important; }
.text-uppercase {
  text-transform: uppercase !important;
  letter-spacing: 0.06em   !important;
}

/* Background */
.bg-primary    { background-color: var(--bg-primary)   !important; color: var(--text-white) !important; }
.bg-black      { background-color: var(--bg-black); }
.bg-gray-light { background-color: var(--bg-gray-light); }

/* Spacing — vertical padding */
.p-vertical-md  { padding-block: var(--space-md); }
.p-vertical-lg  { padding-block: var(--space-lg); }
.p-vertical-xl  { padding-block: var(--space-xl); }
.p-vertical-2xl { padding-block: var(--space-2xl); }
.p-vertical-3xl,
.section-xl-vertical { padding-block: var(--space-3xl); }
.p-vertical-4xl { padding-block: var(--space-4xl); }
.p-vertical-5xl { padding-block: var(--space-5xl); }

/* Spacing — vertical margin */
.m-vertical-md  { margin-block: var(--space-md); }
.m-vertical-lg  { margin-block: var(--space-lg); }
.m-vertical-xl  { margin-block: var(--space-xl); }
.m-vertical-2xl { margin-block: var(--space-2xl); }
.m-vertical-3xl { margin-block: var(--space-3xl); }
.m-vertical-4xl { margin-block: var(--space-4xl); }
.m-vertical-5xl { margin-block: var(--space-5xl); }

/* Scoped spacing overrides */
@media (min-width: 768px) {
  .p-vertical-md-scoped { padding-block: var(--space-md) !important; }
  .m-vertical-md-scoped { margin-block:  var(--space-md) !important; }
}

@media (min-width: 992px) {
  .p-vertical-lg-scoped { padding-block: var(--space-lg) !important; }
  .m-vertical-lg-scoped { margin-block:  var(--space-lg) !important; }
}

@media (min-width: 1200px) {
  .p-vertical-xl-scoped { padding-block: var(--space-xl) !important; }
  .m-vertical-xl-scoped { margin-block:  var(--space-xl) !important; }
}

@media (min-width: 1400px) {
  .p-vertical-2xl-scoped { padding-block: var(--space-2xl) !important; }
  .m-vertical-2xl-scoped { margin-block:  var(--space-2xl) !important; }
}

.section {
      padding-block: var(--section-space);
    }

.section--tight {
      padding-block: var(--section-space-tight);
    }
    
/* ── BOTH top and bottom ── */
.section-gap--none  { padding-top: 0;      padding-bottom: 0; }
.section-gap--sm    { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.section-gap--md    { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.section-gap--lg    { padding-top: 4rem;   padding-bottom: 4rem; }
.section-gap--xl    { padding-top: 5rem;   padding-bottom: 5rem; }

/* ── TOP only ── */
.section-gap-top--none  { padding-top: 0; }
.section-gap-top--sm    { padding-top: 1.5rem; }
.section-gap-top--md    { padding-top: 2.5rem; }
.section-gap-top--lg    { padding-top: 4rem; }
.section-gap-top--xl    { padding-top: 5rem; }

/* ── BOTTOM only ── */
.section-gap-bottom--none  { padding-bottom: 0; }
.section-gap-bottom--sm    { padding-bottom: 1.5rem; }
.section-gap-bottom--md    { padding-bottom: 2.5rem; }
.section-gap-bottom--lg    { padding-bottom: 4rem; }
.section-gap-bottom--xl    { padding-bottom: 5rem; }

/* ── Tablet (768px+) ── */
@media (min-width: 768px) {
  .section-gap--sm    { padding-top: 1.5rem;   padding-bottom: 1.5rem; }
  .section-gap--md    { padding-top: 4rem;   padding-bottom: 4rem; }
  .section-gap--lg    { padding-top: 6rem;   padding-bottom: 6rem; }
  .section-gap--xl    { padding-top: 8rem;   padding-bottom: 8rem; }

  .section-gap-top--sm    { padding-top: 2rem; }
  .section-gap-top--md    { padding-top: 4rem; }
  .section-gap-top--lg    { padding-top: 6rem; }
  .section-gap-top--xl    { padding-top: 8rem; }

  .section-gap-bottom--sm    { padding-bottom: 2rem; }
  .section-gap-bottom--md    { padding-bottom: 4rem; }
  .section-gap-bottom--lg    { padding-bottom: 6rem; }
  .section-gap-bottom--xl    { padding-bottom: 8rem; }
}

/* ── Desktop (1200px+) ── */
@media (min-width: 1200px) {
  .section-gap--sm    { padding-top: 2.1rem; padding-bottom: 2.1rem; }
  .section-gap--md    { padding-top: 5rem;   padding-bottom: 5rem; }
  .section-gap--lg    { padding-top: 8rem;   padding-bottom: 8rem; }
  .section-gap--xl    { padding-top: 10rem;  padding-bottom: 10rem; }

  .section-gap-top--sm    { padding-top: 2.5rem; }
  .section-gap-top--md    { padding-top: 5rem; }
  .section-gap-top--lg    { padding-top: 8rem; }
  .section-gap-top--xl    { padding-top: 10rem; }

  .section-gap-bottom--sm    { padding-bottom: 2.5rem; }
  .section-gap-bottom--md    { padding-bottom: 5rem; }
  .section-gap-bottom--lg    { padding-bottom: 8rem; }
  .section-gap-bottom--xl    { padding-bottom: 10rem; }
}


/* =============================================================================
   HEADINGS
   ============================================================================= */

h1, .h1, .post-body.text-content p.h1 {
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  line-height: var(--lh-base);
  font-size: var(--ts-xxl);
  
}
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: var(--font-body);
  line-height: var(--lh-tight);
}
h1, .h1 {
     font-family: var(--font-heading);
     font-weight: var(--weight-semibold);
     line-height: var(--lh-title);
}
 h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6{
     font-family: var(--font-body);
     line-height: var(--lh-tight);
}
 h2, .h2, p.h2, .post-body.text-content p.h2{
     font-size:var(--ts-lg);
}
 h3, .h3, .post-body.text-content  p.h3{
     font-size:var(--ts-md);
}
 h4, .h4, p.h4, .post-body.text-content p.h4{
     font-size:var(--ts-sm);
}
 h5, .h5, p.h5, .post-body.text-content p.h5{
     font-size:var(--ts-xs);
}
h6, .h6{
    font-weight:var(--weight-bold);
}



/* =============================================================================
   RICH TEXT
   ============================================================================= */

p a {
  color: var(--link-color);
  text-decoration: underline;
  text-decoration-color: var(--primary);
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 0.375rem;
}

p a:hover,
p a:focus {
  color: var(--primary);
}


.post-body blockquote p,
blockquote p, blockquote {
  margin-bottom: 1rem;
  padding-right: 5%;
  font-family: var(--font-heading);
  font-size: var(--ts-md)!important;
  line-height: 1.5em!important;
}

.blockquote__citation {
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: var(--ts-xxs);
  font-style: normal;
  font-weight: var(--weight-bold);
  letter-spacing: 1.6px;
  line-height: 1.4;
  padding-right: 15%;
  text-transform: uppercase;
}

.blockquote__citation::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  margin: 0 5px 3px;
  background: var(--text-body);
}


/* Base pull styles shared by both directions */
.blockquote--pull-left,
.blockquote--pull-right {
  width: 42%;
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
  padding: 0 2rem;
}

/* Pull left — floats out to the left */
.blockquote--pull-left {
  float: left;
  margin-left: -20%;   /* how far outside the container it bleeds */
  margin-right: 2rem;
  padding-left: 0;
}

/* Pull right — floats out to the right */
.blockquote--pull-right {
  float: right;
  margin-right: -20%;  /* how far outside the container it bleeds */
  margin-left: 2rem;
  padding-right: 0;
}

/* Clearfix so the container wraps the float properly */
.post-body::after {
  content: "";
  display: table;
  clear: both;
}

/* Collapse to normal block on small screens */
@media (max-width: 768px) {
  .blockquote--pull-left,
  .blockquote--pull-right {
    float: none;
    width: 100%;
    margin: 1.5rem 0;
    padding: 0;
  }
}


/* =============================================================================
   BUTTONS
   ============================================================================= */

/* ── BASE BUTTON ── */
.btn, .clive-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem!important;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--font-ui);
  font-size: var(--ts-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.02rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition-bg), color var(--transition-bg), border-color var(--transition-bg);
}

/* ── PRIMARY ── */
.btn--primary, .clive-submit {
  background: var(--primary)!important;
  color: var(--white) !important;
  border-color: var(--primary)!important;
  transition:var(--transition-bg)!important;
}
.btn--primary:hover,
.btn--primary:focus,
.clive-submit:hover,
.clive-submit:focus{
  background: var(--bg-primary-hover)!important;
  color: var(--white) !important!important;
  border-color: var(--bg-primary-hover)!important;
}

/* ── SECONDARY ── */
.btn--secondary {
  background: var(--black);
  color: var(--white)!important;
  border-color: var(--black);
}
.btn--secondary:hover,
.btn--secondary:focus {
  background: var(--white);
  color: var(--black)!important;
  border-color: var(--black);
  transition:var(--transition-bg);
}

/* ── GHOST ── */
.btn--ghost {
  background: transparent;
  color: var(--text-body);
  border-color: var(--black);
  transition:var(--transition-bg);
}
.btn--ghost:hover,
.btn--ghost:focus {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ── POST BODY RESET ── */

.hh-news{padding-top:0px}

.post-body a.btn--primary,
.post-body a.btn--primary:hover,
.post-body a.btn--primary:focus-visible,
.post-body a.btn--secondary,
.post-body a.btn--secondary:focus-visible{
  padding: 0.5rem 1rem !important;
  padding-bottom: 0.5rem !important;
  color: var(--white) !important;
}
.post-body a.btn--secondary:hover{
    color:var(--black)!important
}
.post-body a.btn--primary::before,
.post-body a.btn--primary::after,
.post-body a.btn--secondary::before,
.post-body a.btn--secondary::after {
  display: none;
}

/* CTA text link */
a.cta-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #0e71e2;
  font-weight: var(--weight-bold);
  text-decoration: none !important;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

a.cta-link:hover {
  color: #308ef8;
  padding-left: 2px;
}

a.cta-link::after {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  position: relative;
  top: 0.1rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230e71e2' viewBox='0 0 16 16'%3E%3Cpath d='M1 7h10.844L7.737 2.146 9.263.854 15.31 8l-6.047 7.146-1.526-1.292L11.844 9H1V7Z'/%3E%3C/svg%3E") no-repeat center;
  transition: transform 0.2s ease, background-image 0.2s ease;
}

a.cta-link:hover::after {
  transform: translateX(3px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23308ef8' viewBox='0 0 16 16'%3E%3Cpath d='M1 7h10.844L7.737 2.146 9.263.854 15.31 8l-6.047 7.146-1.526-1.292L11.844 9H1V7Z'/%3E%3C/svg%3E");
}

/*FADE EFFECTS*/
.element-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  display: block;
}
.element-fade--in-viewport {
  opacity: 1;
  transform: translateY(0);
}

/*RESPONSIVE IMBEDS*/

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Ratio modifiers */
.embed-responsive-21by9::before {
  padding-top: 42.857143%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}


/* CTA link on dark backgrounds */
.bg-primary a.cta-link,
.bg-water   a.cta-link,
.bg-steel   a.cta-link { color: #fff; }

.bg-primary a.cta-link::after,
.bg-water   a.cta-link::after,
.bg-steel   a.cta-link::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M1 7h10.844L7.737 2.146 9.263.854 15.31 8l-6.047 7.146-1.526-1.292L11.844 9H1V7Z'/%3E%3C/svg%3E");
}

.bg-primary a.cta-link:hover::after,
.bg-water   a.cta-link:hover::after,
.bg-steel   a.cta-link:hover::after {
  transform: translateX(3px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23e0e0e0' viewBox='0 0 16 16'%3E%3Cpath d='M1 7h10.844L7.737 2.146 9.263.854 15.31 8l-6.047 7.146-1.526-1.292L11.844 9H1V7Z'/%3E%3C/svg%3E");
}


/* =============================================================================
   SITE HEADER & NAVBAR
   ============================================================================= */

.site-header__region {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e9e9e9
}

.site-header__inner,
.site-navbar__inner {
  width: 100%;
  margin: 0 auto;
}

.site-navbar {
  width: 100%;
  background: var(--nav-bg);
  border-bottom: 1px solid #e9e9e9
}

.site-navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
  gap: var(--space-lg);
  padding-block: var(--space-md);
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__nav a {
  display: inline-flex;
  align-items: center;
  height: 100%;
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.site-header__nav a:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 3px;
}

.site-header__umsl-link {
  color: #111111;
  font-family: var(--font-ui);
  font-size:var(--ts-xxs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
}

.site-header__umsl-link:hover,
.site-header__umsl-link:focus-visible {
  color: var(--primary);
}

.site-header__give-link {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background-color: var(--black);
  color: #ffffff;
  font-family: var(--font-ui);
  font-size:var(--ts-xxs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s;
}

.site-header__give-link:hover,
.site-header__give-link:focus-visible {
  background-color: var(--primary);
  color: #fff;
}

.site-header__give-link-mobile {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  margin-top: 50px;
  background: #000;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: var(--weight-medium);
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header__give-link-mobile:hover {
  background: var(--primary);
  color: var(--white);
}

/* Responsive nav adjustments */
@media (min-width: 600px) {
  a.site-header__give-link {
    padding: 9px;
    height: auto;
  }
}

@media (max-width: 600px) {
  .site-navbar,
  .site-navbar__inner { height: 72px; margin: initial; };
}

@media (max-width: 480px) {
  .nav-tagline    { display: none; }
  .nav-logo-mark  { width: 178px; }
}

@media (max-width: 380px) {
  .site-header__region    { display: none; }
  .site-navbar,
  .site-navbar__inner     { height: 50px; margin: initial; }
  .nav-left               { display: none; }
  a.site-header__give-link { display: none; }
}

/* Nav layout */
.nav-left,
.nav-right  { flex: 1; }
.nav-center { flex: 0 0 auto; }
.nav-right  { display: flex; justify-content: flex-end; }

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  width: 100%;
  text-decoration: none;
  user-select: none;
}

.nav-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: auto;
  flex-shrink: 0;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
}
@media (max-width: 992px) {
  .nav-logo-mark { width: 200px; }
}
@media (max-width: 600px) {
  .nav-logo-mark { width: 200px; }
}

/* Visually hidden logo name (SEO/a11y) */
.nav-logo-name {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* UI font applied to navigation elements */
.nav-tagline,
.nav-link,
.nav-issue,
.feature-banner__meta,
.feature-banner__category,
.feature-banner__issue,
.feature-banner__cta,
.post-header__category,
.post-header__issue,
.card__issue,
.card-list__eyebrow,
.card-list__category,
.card-list__meta,
.cat-card__tag,
.cat-card__author,
.cat-card__date,
.cat-card__cta,
.section-heading__text,
.footer-col-heading,
.utility-bar__home-link {
  font-family: var(--font-ui);
}

.nav-tagline {
  font-size: 14px;
  display:none;
}
.nav-tagline:hover {
  color: var(--black);
}
@media (max-width: 600px) {
.nav-tagline { display: none; }
}
/* Issue link with animated underline */
.nav-issue {
  --base-h: 1px;
  position: relative;
  padding-bottom: 0.12em;
  color: var(--text-body);
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .98rem;
  white-space: nowrap;
}

.nav-issue span { color: var(--accent); }

.nav-issue::before,
.nav-issue::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
}

.nav-issue::before {
  width: 100%;
  height: var(--base-h);
  background: var(--base);
}

.nav-issue::after {
  width: 100%;
  height: var(--fill-h);
  background: var(--fill);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-issue:hover::after,
.nav-issue:focus-visible::after {
  transform: scaleX(0);
}

/* Hamburger */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  transition: background 0.2s;
}

.hamburger-btn:hover { background: #ffffff; }

.hamburger-btn .bar {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--bg-primary);
  transition: background 0.2s, transform 0.3s, opacity 0.3s;
}

.hamburger-btn[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger-btn[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.hamburger-btn[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* =============================================================================
   OFF-CANVAS NAV
   ============================================================================= */

.offcanvas.offcanvas-end {
  width: var(--offcanvas-width);
  background: var(--offcanvas-bg);
  border-left: 1px solid var(--divider);
}

.offcanvas-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--divider);
}

.offcanvas-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 180px;
  text-decoration: none;
}

.offcanvas-body {
  padding: 0 0 24px;
  overflow-y: auto;
}

.btn-close-panel {
  margin-left: auto;
  padding: 4px;
  border: none;
  background: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}

.btn-close-panel:hover { color: var(--text-primary); }

.nav-section-label {
  padding: 18px 24px 8px;
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.panel-nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 11px 24px;
  border: 0;
  background: #fff;
  color: var(--black);
  font-size: 1.1rem;
  font-weight: var(--weight-medium);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.panel-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  border-bottom: 1px solid #d5d9de;
}

.panel-nav-link:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--black);
}

.panel-nav-sub {
  font-size: 0.9rem;
  margin-left: 10px;
}
.panel-nav-sub a:hover{
    color:var(--text-primary);
}
.panel-nav-sub::after { border-bottom: 0; }

.panel-nav-link.active { color: #cccccc; }

.panel-nav-link.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: #cccccc;
  border-radius: 0 2px 2px 0;
}

.panel-nav-link i {
  width: 18px;
  font-size: 0.6rem;
  text-align: center;
}

.panel-nav-dropdown { color: var(--black); }
.panel-nav-dropdown[aria-expanded="true"] { color: var(--primary); }
.panel-nav-dropdown[aria-expanded="true"] .panel-chevron { transform: rotate(180deg); }
.panel-chevron { transition: transform 0.2s ease; }

.panel-nav-issue .nav-issue {
  padding: 11px 24px;
  font-size: 12px;
  font-weight: var(--weight-bold);
  display: inline-block;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  margin: 0;
  line-height: 48px;
}

.panel-divider {
  height: 1px;
  margin: 10px 24px;
  background: var(--divider);
}

.panel-footer { padding: 16px 24px 0; }

.panel-footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s;
}

.panel-footer-link:hover { color: var(--text-primary); }

.offcanvas-backdrop { background: rgba(0, 0, 0, 0.7); }

body.offcanvas-open { overflow: hidden; }


/* =============================================================================
   PAGE HEADER
   ============================================================================= */

.page-header {
  margin-top: 60px;
  margin-bottom: 48px;
  padding: 80px 11%;
  background-color: #f8f8f8;
  border-bottom: 1px solid #e0e0e0;
}

.page-header h1 {
  margin: 0;
  color: #1a1a1a;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}


/* =============================================================================
   FEATURE BANNER
   ============================================================================= */

.feature-banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 90vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
}

.feature-banner__image {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.feature-banner__image--default { background-color: var(--black); }

.feature-banner__overlay {
  position: absolute;
  inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .15), rgba(0, 0, 0, .62));}

.feature-banner__content {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  color: var(--white);
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
}

.feature-banner__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto;
  padding-bottom: 16px;
}

/* Shared eyebrow styles */
.feature-banner__category,
.feature-banner__issue,
.post-header__category,
.post-header__issue,
.card__issue,
.card-list__eyebrow,
.card-list__category,
.cat-card__tag,
.cat-card__author,
.cat-card__date,
.cat-card__cta,
.section-heading__text,
.footer-col-heading {
  font-size: var(--ts-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.section__subheading{
    font-size: calc(12px + 2 * ((100vw - 480px) / 960));
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
}
.feature-banner__category,
.post-header__category,
.card-list__eyebrow,
.card-list__category,
.cat-card__tag,
.cat-card__cta { font-weight: var(--weight-semibold); }

.feature-banner__issue,
.post-header__issue,
.card__issue,
.cat-card__author,
.cat-card__date,
.card-list__meta { font-weight: var(--weight-medium); }

/* Banner heading/title shared styles */
.feature-banner__title,
.post-banner__title,
.post-header--full-width .post-header__title,
.cat-card__title,
.card-list__title {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  line-height: 1.15;
}

 .eyebrow-title, .post-body.text-content p.eyebrow-title {
     color: var(--text-body);
     font-family: var(--font-body);
     font-size: var(--ts-xxs);
     font-style: normal;
     font-weight: var(--weight-bold);
     letter-spacing: 1.6px;
     line-height: 1.4;
     padding-right: 15%;
     text-transform: uppercase;
}
 .eyebrow-title::after, .post-body.text-content p.eyebrow-title::after {
     content: "";
     display: inline-block;
     width: 40px;
     height: 1px;
     margin: 0 5px 3px;
     background: var(--text-body);
}

.feature-banner__category,
.feature-banner__title,
.feature-banner__subheading,
.feature-banner__author,
.feature-banner__cta { color: var(--white); }

.feature-banner__title {
  margin: 0 0 16px;
  font-size: var(--ts-lg);
  text-align: center;
}

.feature-banner__title a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

.feature-banner__title a:hover { opacity: 0.85; }

.feature-banner__subheading {
  margin: 0 0 16px;
  font-size: var(--ts-md);
  line-height: var(--lh-snug);
  text-align: center;
}

.feature-banner__author {
  display: flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: var(--ts-xxs);
  letter-spacing: 0.05em;
  justify-content: center;
}

/* Banner byline */
.feature-banner__byline {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.feature-banner__byline--two-col {
  display:flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}

.feature-banner__byline--two-col .feature-banner__author { width: 100%; }

@media (max-width: 768px) {
  .feature-banner             { height: 70vh; }
  .feature-banner__content    { padding: 24px; }
  .feature-banner__byline--two-col,.feature-banner__byline { flex-direction: column; }
}

/* ── MOBILE: two-row layout (image on top, text below) ── */
@media (max-width: 767px) {

  /* Switch from overlay stack to normal block flow */
  .feature-banner {
    display: block;
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: visible;
  }

  /* Image becomes a fixed-height block row */
  .feature-banner__image {
    position: relative;
    inset: auto;
    width: 100%;
    height: 260px;
    display: block;
  }

  /* Hide the gradient overlay — no longer needed */
  .feature-banner__overlay {
    display: none;
  }

  /* Text row sits below the image, on a white background */
  .feature-banner__content {
    position: static;
    background: var(--white);
    padding: 1.5rem 1.25rem;
    color: var(--black);
  }

  /* Reset white text colours set for the overlay layout */
  .feature-banner__category,
  .feature-banner__title,
  .feature-banner__subheading,
  .feature-banner__author,
  .feature-banner__cta {
    color: var(--black);
  }

  /* Category eyebrow keeps its red colour */
  .feature-banner__category {
    color: var(--primary);
  }

  /* Kill the hover zoom — image is no longer inside the clipping container */
  .feature-banner:hover .feature-banner__image {
    transform: none;
  }
}


/* =============================================================================
   SHARE BUTTONS
   ============================================================================= */

.post-share {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.post-share__label {
  font-size:var(--ts-xxs);
  font-weight:var(--weight-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 0.25rem;
}

.post-share__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: inherit;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s, background-color 0.2s, color 0.2s;
}

.post-share__btn svg { width: 1rem; height: 1rem; }

.post-share__btn:hover                { opacity: 1; }
.post-share__btn--twitter:hover       { background-color:var(--bg-primary);    color: #fff; }
.post-share__btn--facebook:hover      { background-color:var(--bg-primary);  color: #fff; }
.post-share__btn--linkedin:hover      { background-color:var(--bg-primary);  color: #fff; }
.post-share__btn--email:hover         { background-color:var(--bg-primary);   color: #fff; }

@media (max-width:750px){
    .post-share{
        justify-content:center;
    }
}
/* =============================================================================
   POST HEADER
   ============================================================================= */

.post-header--full-width { position: relative; width: 100%; }
.post-header--no-image{
        padding: 6.5rem  0rem 0rem 0rem
}
.post-header--full-width .post-header__image {
  display: block;
  width: 100%;
  height: 750px;
  min-height: 350px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.post-header--full-width .post-header__overlay--light { display: none; }

.post-header--full-width .post-header__content {
  margin: 0 auto;
  color: var(--black);
  text-align: center;
}

.post-header__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.post-header__category { color: var(--text-primary); text-align: center; }
.post-header__issue    { color: var(--gray); }

.post-header--full-width .post-header__title {
  margin: 0 0 16px;
  color: var(--black);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.post-header__subheading {
  margin: 0 0 16px;
  color: var(--gray);
  font-family: var(--font-body);
  font-size: var(--ts-lg);
  line-height: 1.6;
}
.post-header--full-width .post-header__content{padding-top:3rem!important};

 .post-header__byline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 0.75rem;
    padding-bottom: 32px;
    color: var(--gray);
    font-family: var(--font-body);
    font-size: var(--ts-xs);
    gap: 16px;
    border-bottom: 1px solid var(--divider);
}
.post-header__byline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 0.75rem;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--divider);
  color: var(--gray);
  font-family: var(--font-body);
  font-size: var(--ts-xs);
}

.post-header__byline--two-col {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Full-width author/CTA inside two-col byline */
.post-header__byline--two-col .post-header__author,
.post-header__byline--two-col .feature-banner__author,
.feature-banner__byline--two-col .feature-banner__author,
.post-header__byline--two-col .feature-banner__cta,
.post-header__byline--two-col .post-banner__cta,
.feature-banner__byline--two-col .feature-banner__cta { width: 100%; }

.post-banner__title {
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-align: center;
}

.post-banner__cta { width: auto; }

/* Two-col post header alignment overrides */
.post-header--two-col .post-header__meta,
.post-header--two-col .post-header__subheading,
.post-header--two-col .post-header__byline {
  display:block;
  justify-content: left;
  text-align: left;
}

.post-header--two-col .post-banner__title {
  color: var(--text-body);
  text-align: left;
}

@media (max-width: 768px) {
  .post-header__byline--two-col            { flex-direction: column; }
  .post-header--full-width .post-header__image { height: 40vh; min-height: 250px; }
  .post-header--full-width .post-header__content { padding: 24px 16px 0; }
}


/* =============================================================================
   POST BODY
   ============================================================================= */

/* Animated underline on post body links */
.post-body a {
  --base: #000;
  --fill: var(--primary);
  --base-h: 1px;
  --fill-h: 2px;

  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  padding-bottom: 0.14em;
}

.post-body a::before,
.post-body a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.post-body a::before {
  height: var(--base-h);
  background: var(--base);
}

.post-body a::after {
  height: var(--fill-h);
  background: var(--fill);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.post-body a:hover::after,
.post-body a:focus-visible::after {
  transform: scaleX(1);
}


/* Body text content*/

.post-body.text-content p {
  font-size: 1.125rem;
  line-height: 1.7777777778;
  letter-spacing: -0.0111111111em;
}

.post-body.text-content a { font-weight: 600; }

@media (min-width: 1024px) {
  .post-body.text-content {
    font-size: 1.3125rem;
    line-height: 1.7142857143;
    letter-spacing: -0.0114285714em;
  }
}
@media (max-width:768px) {
    .post-body.text-content p{
        font-size: var(--ts-base);
    }
}

 
/* Drop cap */
.drop-cap::first-letter {
  float: left;
  margin-top: 8px;
  margin-right: 8px;
  margin-bottom:0px;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: var(--ts-lg);
  font-weight: var(--weight-bold);
  line-height: 0.75;
}
 .post-body .text-content > p:first-of-type::first-letter, .drop-cap::first-letter {
     font-family: var(--font-heading);
     font-size: 5rem;
     font-weight: var(--weight-bold);
     line-height: 0.75;
     float: left;
     margin-right: 8px;
     margin-top: 8px;
}

/* =============================================================================
   MEDIA
   ============================================================================= */

.post-fullwidth-img {
  position: relative;
  right: 50%;
  left: 50%;
  width: 100vw !important;
  max-width: initial !important;
  margin: 40px -50vw 10px;
}

.media-breakout-img {
  position: relative;
  width: 100vw !important;
  max-width: 100rem;
  margin: 40px auto;
}

.media-full { margin: 40px 0; }

.media-full img {
  display: block;
  width: 100%;
  height: auto;
}

.media-full figcaption,
figcaption,
.wp-caption-text {
  color: var(--gray);
  font-family: var(--font-body) !important;
  font-size: var(--ts-xxs) !important;
  font-style: normal;
  font-weight: var(--weight-regular);
  line-height: 1.6 !important;
}

.media-full figcaption { margin-top: 12px; }
figcaption, .wp-caption-text { padding-top: 5px; }


/* =============================================================================
   CARDS
   ============================================================================= */

.card {
  background: var(--card-bg);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 480px) {
  .card { margin-bottom: 15px; }
}

.card__body  { padding: var(--space-lg); }

.card__image img {
  display: block;
  width: 100%;
}

.card__eyebrow {
  margin-bottom: 0.5rem;
  color: #000000;
  font-size: 0.888rem;
  font-weight: 600;
}

.card__issue   { color: var(--gray); }

.card__title {
  margin: var(--space-sm) 0;
  font-size: 1.25rem;
  line-height: 1.3;
  
}

.card__title a { color: #0e71e2; text-decoration: none; }

.card__content {
  margin-top: 1rem;
  color: #000000;
  font-size: 0.95rem;
}

.card__meta {
  margin-top: 0.5rem;
  margin-bottom: 0;
  color: #000000;
  font-size: 0.9rem;
  line-height: 1.5rem;
}

.card__meta p {
  margin-bottom: 0.08rem;
  font-size: 0.84rem !important;
}

/* Small card variant */
.card--sm .card__body    { padding-top: 1rem; }
.card--sm .card__eyebrow { margin-bottom: 0.35rem; font-size: 0.82rem; }
.card--sm .card__title   { margin: 0.35rem 0; font-size: 1.125rem; line-height: 1.25; }
.card--sm .card__meta    { font-size: 0.82rem; line-height: 1.35rem; }

/* Horizontal card variant */
.card--horizontal {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
}

.card--horizontal .card__image {
  width: 25%;
  max-width: var(--image-max-width, 180px);
  flex-shrink: 0;
}

.card--horizontal .card__body,
.card--horizontal .card__content { padding-top: 0; }
.card--horizontal .card__content { flex-grow: 0; }

@media (min-width: 768px) {
  .card--horizontal .card__image { width: 33%; }
}

@media (max-width: 768px) {
  .card--horizontal .card__title { padding-right: 4rem; font-size: 1.125rem; }
  .card--horizontal .card__title a::before { margin-top: -1rem; }
}


/* =============================================================================
   CARD LIST
   ============================================================================= */

.card-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}

.card-list__item            { border-top: 1px solid var(--divider); }
.card-list__item:last-child { border-bottom: 1px solid var(--divider); }

.card-list__card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  color: inherit;
  text-decoration: none;
}

.card-list__image {
  display: block;
  width: 180px;
  height: 120px;
  flex-shrink: 0;
  object-fit: cover;
}

.card-list__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
}

.card-list__eyebrow,
.card-list__category { color: var(--primary); }

.card-list__category { margin-bottom: 10px; }

.card-list__title {
  margin: 0;
  color: var(--black);
  font-size: var(--ts-lg);
  line-height: 1.25;
  transition: color 0.2s;
}

.card-list__card:hover .card-list__title { color: var(--primary); }

.card-list__teaser {
  margin: 0;
  color: var(--gray);
  font-family: var(--font-body);
  font-size: var(--ts-sm);
  line-height: 1.6;
}

.card-list__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray);
  font-size: var(--ts-xs);
}

.card-list__meta-divider {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gray);
}

@media (max-width: 576px) {
  .card-list__card  { flex-direction: column; }
  .card-list__image { width: 100%; height: 200px; }
}


/* =============================================================================
   FLEX SECTIONS
   ============================================================================= */
   
 .feature-two-col {gap: var(--grid-gap); border: 1px solid rgba(0, 0, 0, 0.08);}
 
.flex-section__image-frame{
    overflow:hidden;
}
.flex-section__img { 
    width: 100%;
}
.flex-section__img{
    transition: transform 0.4s ease;
}
.flex-section__img:hover { 
    transform: scale(1.04);
}

.flex-section__content-heading {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--ts-lg);
}
.flex-section__cta{
    display: block;
    margin-top: 20px;
    text-decoration:none;
}
.content-full__text { position: relative; z-index: 1; }


/* =============================================================================
   SECTION HEADING
   ============================================================================= */

.section-heading {
  display: flex;
  align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--section-header-space);
}

.section-heading::before,
.section-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--black);
}

.section-heading__text {
  color: var(--black);
  font-weight: var(--weight-bold);
    letter-spacing: .18em;
    font-size: .92rem;
  white-space: nowrap;
}


/* =============================================================================
   CATEGORY SECTION
   ============================================================================= */

.cat-section {
  padding-block: var(--space-5xl);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cat-section__inner,
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.cat-section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}

.cat-section__heading {
  margin: 0;
  color: var(--black);
  font-family: var(--font-heading);
  font-size: var(--ts-2xl);
  font-weight: var(--weight-bold);
}

.cat-section__view-all {
  color: var(--primary);
  font-family: var(--font-ui);
  font-size: var(--ts-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.cat-section__view-all:hover { color: var(--primary); opacity: 0.75; }

.cat-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 992px) { .cat-section__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .cat-section__grid { grid-template-columns: 1fr; } }


/* =============================================================================
   CATEGORY CARD
   ============================================================================= */

.cat-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.cat-card__image-link { display: block; overflow: hidden; }

.cat-card__image {
  width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.4s ease;
}

.cat-card__image-link:hover .cat-card__image { transform: scale(1.04); }

.cat-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.cat-card__tag    { margin-bottom: 10px; color: var(--primary); }

.cat-card__title  { margin: 0 0 12px; font-size: var(--ts-md); line-height: 1.25; }

.cat-card__title a { color: var(--black); text-decoration: none; transition: color 0.2s; }
.cat-card__title a:hover { color: var(--primary); }

.cat-card__teaser {
  flex: 1;
  margin: 0 0 16px;
  color: var(--gray);
  font-family: var(--font-body);
  font-size: var(--ts-xs);
}

.cat-card__meta { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }

.cat-card__author,
.cat-card__date { color: var(--gray); font-size: var(--ts-xxs); }

.cat-card__cta {
  align-self: flex-start;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--primary);
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.2s;
}

.cat-card__cta:hover { color: var(--primary); opacity: 0.75; }


/* =============================================================================
   PAGINATION
   ============================================================================= */

.pagination-nav { width: 100%; margin: 50px 0; }

.page-link,
.page-item:last-child .page-link { border: 0; font-weight: bold; }

.page-item:first-child .page-link,
.page-item.active .page-link     { border-radius: 0; }

.page-item.active .page-link {
  background: #ffffff;
  border: 0;
  border-bottom: 2px solid var(--primary);
  color: #000000;
  font-weight: bold;
}
/* =============================================================================
   VIEW  ALL
   ============================================================================= */
.section__footer{
    display:flex;
    padding-top:var(--space-sm);
}
.flex-section__view-all{
margin-left: auto;
    white-space: nowrap;
    font-size: var(--ts-xxs);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    border-bottom: 2px solid var(--primary);
    padding-bottom: .15rem;
}
/* =============================================================================
   ARCHIVE BLOCK
   ============================================================================= */
.archive-card {
    border: 0;
    background: transparent;
    gap: var(--space-md);
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid #e7e7e7;
}

.archive-card .card img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}
.archive-card img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}



/* =============================================================================
   FORM
   ============================================================================= */
   
.clive-form {
    font-family: 'Roboto', sans-serif;
}
.clive-label-left .clive-field-wrapper{display:flex; flex-direction: column;}

.clive-form-description-wrapper > span{font-size:1rem}

.clive-label-left .clive-field-wrapper > label{
    font-size: 1.1rem!important;
    margin: 20px 0px!important;
    padding-left:0px!important;
    display: inline-block!important;
}


/* =============================================================================
   FOOTER
   ============================================================================= */

#site-footer {
  margin-top:80px;
  padding: 60px 0 0;
  background-color: var(--black);
  color: var(--white);
}

#site-footer a,
#site-footer a:hover 
{ color: var(--white); font-size:var(--ts-xs)}

.footer-col { margin-bottom: 40px; }

.footer-logo-img {
  width: auto;
  height: 38px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

@media (max-width:768px){
    .footer-logo-img{
        margin-bottom: 20px;
        width:250px;
    }
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: var(--ts-xs);
  font-style: normal;
}


/* Animated underline on footer address links */
.footer-address a,
a.footer-nav-link {
  --base-h: 1px;
  --fill-h: 2px;
  position: relative;
  padding-bottom: 0.12em;
  color: var(--white);
  text-decoration: none;
}

.footer-address a::before,
.footer-address a::after,
a.footer-nav-link::before,
a.footer-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.footer-address a::before,
a.footer-nav-link::before {
  height: var(--base-h);
  background: rgba(255, 255, 255, 0.3);
}
a.footer-nav-link::before {
  height: 0px;
  background: rgba(255, 255, 255, 0.3);
}
.footer-address a::after,
a.footer-nav-link::after {
  height: var(--fill-h);
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.footer-address a:hover::after,
a.footer-nav-link:hover::after {  /* ← :hover was missing here */
  transform: scaleX(1);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.footer-social li a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* Footer column heading with animated underline */
.footer-col-heading {
  --base: var(--primary);
  --fill: var(--primary);
  --base-h: 1px;
  --fill-h: 2px;
  position: relative;
  padding-bottom: 0.12em;
  margin-bottom: 16px;
  color: var(--white);
  font-weight: var(--weight-semibold);
  text-decoration: none;
}

.footer-col-heading::before,
.footer-col-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
}

.footer-col-heading::before {
  height: var(--base-h);
  background: var(--base);
}

.footer-col-heading::after {
  height: var(--fill-h);
  background: var(--fill);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav-link {
  display: block;
  color: var(--white);
  font-size: var(--ts-xs);
  text-decoration: none;
}

.footer-nav-link:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--ts-3xs);
}

@media (max-width: 920px) {
  .footer-bottom .d-flex { display: initial !important; }
}

.footer-bottom a {
  text-decoration: none;
  font-size: var(--ts-xxs) !important;
}

.footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--ts-xs);
  text-align: center;
}

