@charset "UTF-8";
/*
    Theme Name: GoldenPress
    Text Domain: goldenvolunteer.com
    Version: 1.0.0
    Author: Golden
*/
/* --------------------------------------------------------- */
/* GLOBAL STYLES */
/* --------------------------------------------------------- */
/* 
  _____  ______  _____ ______ _______ 
 |  __ \|  ____|/ ____|  ____|__   __|
 | |__) | |__  | (___ | |__     | |   
 |  _  /|  __|  \___ \|  __|    | |   
 | | \ \| |____ ____) | |____   | |   
 |_|  \_\______|_____/|______|  |_|   

*/
/* --------------------------------------------------------- */
/*///////////// GLOBAL-STYLES/RESET start /////////////*/
/* Based on this article https://andy-bell.co.uk/a-modern-css-reset/ */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
* {
  margin: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
li > h1,
li > h2,
li > h3,
li > h4,
li > h5,
li > h6 {
  display: inline;
}

/*///////////// GLOBAL-STYLES/RESET end /////////////*/
/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* 
   _____ ______ _   _ ______ _____            _      
  / ____|  ____| \ | |  ____|  __ \     /\   | |     
 | |  __| |__  |  \| | |__  | |__) |   /  \  | |     
 | | |_ |  __| | . ` |  __| |  _  /   / /\ \ | |     
 | |__| | |____| |\  | |____| | \ \  / ____ \| |____ 
  \_____|______|_| \_|______|_|  \_\/_/    \_\______|


*/
/* --------------------------------------------------------- */
/*///////////// GLOBAL-STYLES/GENERAL start /////////////*/
html {
  scroll-behavior: smooth;
}

* {
  scroll-margin-top: 120px;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
  margin-bottom: 80px;
  padding-top: 160px;
}

main:has(.cover) {
  padding-top: 0px;
}

main:has(> hr:last-child) {
  margin-bottom: 0;
}

@media (min-width: 900px) {
  main {
    margin-bottom: 160px;
  }
}
/*///////////// GLOBAL-STYLES/GENERAL end /////////////*/
/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* 
  _________     _______   ____   _____ _____            _____  _    ___     __
 |__   __\ \   / /  __ \ / __ \ / ____|  __ \     /\   |  __ \| |  | \ \   / /
    | |   \ \_/ /| |__) | |  | | |  __| |__) |   /  \  | |__) | |__| |\ \_/ / 
    | |    \   / |  ___/| |  | | | |_ |  _  /   / /\ \ |  ___/|  __  | \   /  
    | |     | |  | |    | |__| | |__| | | \ \  / ____ \| |    | |  | |  | |   
    |_|     |_|  |_|     \____/ \_____|_|  \_\/_/    \_\_|    |_|  |_|  |_|   

*/
/* --------------------------------------------------------- */
/*///////////// GLOBAL-STYLES/TYPOGRAPHY start /////////////*/
* {
  font-kerning: normal;
  font-size: inherit;
}

html {
  font-size: 16px;
}

/* FONT FAMILIES */
:root {
  --sans-serif-font-family: "Figtree";
  --serif-font-family: "Lora";
  --mono-font-family: "Anonymous Pro";
  --display-font-family: var(--sans-serif-font-family);
  --body-text-font-family: var(--serif-font-family);
  --captions-font-family: var(--sans-serif-font-family);
  --sans-fallback-fonts: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --serif-fallback-fonts: serif;
}

* {
  font-family: var(--captions-font-family), var(--sans-fallback-fonts);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--display-font-family), var(--sans-fallback-fonts);
}

p, main li, p strong, p span, main li strong, th, td {
  font-family: var(--body-text-font-family), var(--sans-fallback-fonts);
}

button, a.button, small, .mini {
  font-family: var(--captions-font-family), var(--sans-fallback-fonts);
}

pre, code, pre code, pre code span {
  font-family: var(--mono-font-family), monospace;
}

em, i, article a {
  font-family: inherit;
}

/* TEXT WRAP */
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

/* Word break handling for single article paragraphs */
.single article p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
}

/* LIGATURES */
* {
  -ms-font-feature-settings: "kern";
  font-feature-settings: "kern";
}

h1, h2, h3, h4, h5, h6, button, a.button, a small, small {
  font-variant-ligatures: discretionary-ligatures;
  -ms-font-feature-settings: "kern", "liga", "calt";
  font-feature-settings: "kern", "liga", "calt";
}

p, li, p strong, p span, li strong {
  -ms-font-feature-settings: "kern", "liga", "clig", "calt";
  font-feature-settings: "kern", "liga", "clig", "calt";
}

/* TEXT STYLES */
main p a, main li a {
  text-decoration: underline;
  position: relative;
  transition: color 0.2s ease;
}
main p a:hover, main li a:hover {
  color: var(--primary-accent-500) !important;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  text-decoration: underline;
  position: relative;
  transition: color 0.2s ease;
}
@media (min-width: 1200px) {
  h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    text-decoration: none;
  }
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
  color: var(--primary-accent-500) !important;
}
h1 a::after, h2 a::after, h3 a::after, h4 a::after, h5 a::after, h6 a::after {
  content: "→";
  margin-left: 0.25em;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0;
  transform: translateX(-0.25em);
}
h1 a:hover::after, h2 a:hover::after, h3 a:hover::after, h4 a:hover::after, h5 a:hover::after, h6 a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.page-id-15 h3 a::after {
  display: none;
}

.title-1 {
  font-size: 2.65rem;
  line-height: 110%;
  letter-spacing: -0.25px;
  margin-bottom: 2.5rem;
  font-weight: 900;
}

.title-2 {
  font-size: 2.5rem;
  line-height: 110%;
  letter-spacing: -0.25px;
  margin-bottom: 2rem;
  font-weight: 900;
}

.title-3 {
  font-size: 2.2rem;
  line-height: 110%;
  letter-spacing: -0.25px;
  margin-bottom: 2rem;
  font-weight: 900;
}

h1, .heading-1 {
  font-size: 2rem;
  line-height: 115%;
  letter-spacing: -0.25px;
  margin-bottom: 4rem;
  font-weight: 900;
}

h2, .heading-2 {
  font-size: 1.75rem;
  line-height: 120%;
  letter-spacing: -0.5px;
  margin-bottom: 2rem;
  font-weight: 900;
}

h3, .heading-3, .wp-block-details summary {
  font-size: 1.5rem;
  line-height: 120%;
  letter-spacing: -0.1px;
  margin-bottom: 1rem;
  font-weight: 800;
}

h4, .heading-4 {
  font-size: 1.375rem;
  line-height: 120%;
  margin-bottom: 1rem;
  font-weight: 800;
}

h5, .heading-5 {
  font-size: 1.25rem;
  line-height: 120%;
  margin-bottom: 1rem;
  font-weight: 700;
}

h6, .heading-6 {
  font-size: 1.2rem;
  line-height: 120%;
  margin-bottom: 1rem;
  font-weight: 700;
}

p, ul {
  margin-bottom: 2rem;
}

p, li, p strong, p span, li strong, th, td {
  font-size: 1.2rem;
  line-height: 150%;
  letter-spacing: 0.02px;
}

pre, code, pre code {
  font-size: 1.2rem;
  line-height: 133%;
}

small, .caption {
  font-size: 1rem;
  line-height: 133%;
  font-family: var(--captions-font-family), var(--sans-fallback-fonts);
}

.mini {
  font-size: 0.85rem;
  letter-spacing: 0.25px;
}

@media (min-width: 720px) {
  .title-1 {
    font-size: 3.75rem;
  }
  .title-2 {
    font-size: 3rem;
  }
  .title-3 {
    font-size: 2.875rem;
  }
  h1, .heading-1 {
    font-size: 2.75rem;
  }
  h2, .heading-2 {
    font-size: 2.5rem;
  }
  h3, .heading-3, .wp-block-details summary {
    font-size: 2.1rem;
  }
  h4, .heading-4 {
    font-size: 1.75rem;
  }
  h5, .heading-5 {
    font-size: 1.6rem;
  }
  h6, .heading-6 {
    font-size: 1.4rem;
  }
}
@media (min-width: 1200px) {
  .title-1 {
    font-size: 5.25rem;
    line-height: 100%;
    letter-spacing: -4.2px;
  }
  .title-2 {
    font-size: 4.25rem;
    letter-spacing: -1px;
  }
  .title-3 {
    font-size: 3.7rem;
    letter-spacing: -0.5px;
  }
  h1, .heading-1 {
    font-size: 3.25rem;
    letter-spacing: 0.5px;
  }
  p, li, p strong, p span, li strong, th, td {
    font-size: 1.25rem;
  }
}
@media (min-width: 1380px) {
  .title-1 {
    font-size: 7.75rem;
  }
  .title-2 {
    font-size: 5rem;
  }
  .title-3 {
    font-size: 4.2rem;
  }
}
/* TEXT ALIGNMENT UTILITIES */
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

@media (max-width: 899px) {
  .mobile-text-left {
    text-align: left !important;
  }
  .mobile-text-center {
    text-align: center !important;
  }
  .mobile-text-right {
    text-align: right !important;
  }
  .mobile-text-justify {
    text-align: justify !important;
  }
}
@media (max-width: 899px) {
  .mobile-title-1 {
    font-size: 2.65rem !important;
    line-height: 110% !important;
    letter-spacing: -0.25px !important;
    margin-bottom: 2.5rem !important;
    font-weight: 900 !important;
  }
  .mobile-title-2 {
    font-size: 2.5rem !important;
    line-height: 110% !important;
    letter-spacing: -0.25px !important;
    margin-bottom: 2rem !important;
    font-weight: 900 !important;
  }
  .mobile-title-3 {
    font-size: 2.2rem !important;
    line-height: 110% !important;
    letter-spacing: -0.25px !important;
    margin-bottom: 2rem !important;
    font-weight: 900 !important;
  }
  .mobile-heading-1 {
    font-size: 2rem !important;
    line-height: 115% !important;
    letter-spacing: -0.25px !important;
    margin-bottom: 4rem !important;
    font-weight: 900 !important;
  }
  .mobile-heading-2 {
    font-size: 1.75rem !important;
    line-height: 120% !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 2rem !important;
    font-weight: 900 !important;
  }
  .mobile-heading-3 {
    font-size: 1.5rem !important;
    line-height: 120% !important;
    letter-spacing: -0.1px !important;
    margin-bottom: 1rem !important;
    font-weight: 800 !important;
  }
  .mobile-heading-4, .wp-block-details summary {
    font-size: 1.375rem !important;
    line-height: 120% !important;
    margin-bottom: 1rem !important;
    font-weight: 800 !important;
  }
  .mobile-heading-5 {
    font-size: 1.25rem !important;
    line-height: 120% !important;
    margin-bottom: 1rem !important;
    font-weight: 700 !important;
  }
  .mobile-heading-6 {
    font-size: 1.2rem !important;
    line-height: 120% !important;
    margin-bottom: 1rem !important;
    font-weight: 700 !important;
  }
  .mobile-caption {
    font-size: 1rem !important;
    line-height: 133% !important;
    font-family: var(--captions-font-family), var(--sans-fallback-fonts) !important;
  }
  .mobile-caption.uppercase {
    text-transform: uppercase !important;
  }
  .mobile-mini {
    font-size: 0.85rem !important;
    letter-spacing: 0.25px !important;
  }
}
/*///////////// SUBATOMICS/TYPOGRAPHY end /////////////*/
/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/*
    _____ ____  _      ____  _____   _____ 
  / ____/ __ \| |    / __ \|  __ \ / ____|
 | |   | |  | | |   | |  | | |__) | (___  
 | |   | |  | | |   | |  | |  _  / \___ \ 
 | |___| |__| | |___| |__| | | \ \ ____) |
  \_____\____/|______\____/|_|  \_\_____/ 

*/
/* --------------------------------------------------------- */
/*///////////// SUBATOMICS/COLORS start /////////////*/
:root {
  --primary-accent-100: hsl(14 100% 96%);
  --primary-accent-500: hsl(14, 100%, 56%);
  --primary-accent-600: hsl(14, 100%, 37%);
  --primary-accent-700: hsl(14, 100%, 27%);
  --primary-accent-800: hsl(14, 100%, 18%);
  --primary-accent-900: hsl(14, 100%, 12%);
  --primary-accent-950: hsl(14, 80%, 7%);
  --primary-accent-90pct: hsla(14, 100%, 56%, 0.9);
  --primary-accent-50pct: hsla(14, 100%, 56%, 0.5);
  --primary-accent-30pct: hsla(14, 100%, 56%, 0.3);
  --primary-accent-10pct: hsla(14, 100%, 56%, 0.1);
  --secondary-accent-500: hsl(40, 100%, 50%);
  --secondary-accent-600: hsl(40, 100%, 44%);
  --secondary-accent-700: hsl(40, 100%, 37%);
  --accent-gradient-start: var(--primary-accent-600);
  --accent-gradient-end: var(--secondary-accent-500);
  --accent-gradient: linear-gradient(45deg, var(--accent-gradient-start), var(--accent-gradient-end));
  --white: hsl(0, 0%, 100%);
  --white-90pct: hsla(0, 0%, 100%, 0.9);
  --white-80pct: hsla(0, 0%, 100%, 0.8);
  --white-70pct: hsla(0, 0%, 100%, 0.7);
  --white-60pct: hsla(0, 0%, 100%, 0.6);
  --white-50pct: hsla(0, 0%, 100%, 0.5);
  --white-40pct: hsla(0, 0%, 100%, 0.4);
  --white-30pct: hsla(0, 0%, 100%, 0.3);
  --white-20pct: hsla(0, 0%, 100%, 0.2);
  --white-10pct: hsla(0, 0%, 100%, 0.1);
  --white-5pct: hsla(0, 0%, 100%, 0.05);
  --gray-050: hsl(24, 38%, 97%);
  --gray-100: hsl(24, 28%, 95%);
  --gray-200: hsl(24, 18%, 87%);
  --gray-300: hsl(24, 18%, 80%);
  --gray-400: hsl(24, 18%, 70%);
  --gray-500: hsl(24, 18%, 60%);
  --gray-600: hsl(24, 0%, 63%);
  --gray-800: hsl(24, 0%, 27%);
  --gray-900: hsl(0, 0%, 11%);
  --black: hsl(0, 0%, 0%);
  --black-90pct: hsla(0, 0%, 0%, 0.9);
  --black-80pct: hsla(0, 0%, 0%, 0.8);
  --black-70pct: hsla(0, 0%, 0%, 0.7);
  --black-60pct: hsla(0, 0%, 0%, 0.6);
  --black-50pct: hsla(0, 0%, 0%, 0.5);
  --black-40pct: hsla(0, 0%, 0%, 0.4);
  --black-30pct: hsla(0, 0%, 0%, 0.3);
  --black-20pct: hsla(0, 0%, 0%, 0.2);
  --black-10pct: hsla(0, 0%, 0%, 0.1);
  --black-5pct: hsla(0, 0%, 0%, 0.05);
  --ivory-050: hsl(33, 26%, 94%);
  --ivory-100: #EFEAE4;
  --ivory-200: #E0D5C9;
  --slate-050: hsl(231, 64%, 96%);
  --slate-050-90pct: hsla(231, 64%, 96%, 0.9);
  --slate-050-80pct: hsla(231, 64%, 96%, 0.8);
  --slate-050-70pct: hsla(231, 64%, 96%, 0.7);
  --slate-050-60pct: hsla(231, 64%, 96%, 0.6);
  --slate-050-50pct: hsla(231, 64%, 96%, 0.5);
  --slate-050-40pct: hsla(231, 64%, 96%, 0.4);
  --slate-050-30pct: hsla(231, 64%, 96%, 0.3);
  --slate-050-20pct: hsla(231, 64%, 96%, 0.2);
  --slate-050-10pct: hsla(231, 64%, 96%, 0.1);
  --slate-100: hsl(203, 11%, 85%);
  --slate-200: hsl(203, 7%, 76%);
  --slate-300: hsl(203, 7%, 68%);
  --slate-400: hsl(203, 8%, 60%);
  --slate-500: hsl(203, 10%, 50%);
  --slate-600: hsl(203, 12%, 42%);
  --slate-700: hsl(203, 15%, 32%);
  --slate-800: hsl(203, 27%, 18%);
  --slate-800-80pct: hsla(203, 27%, 18%, 0.8);
  --slate-900: hsl(203, 31%, 12%);
  --slate-900-80pct: hsla(203, 31%, 12%, 0.8);
  --slate-950: hsl(203, 31%, 6%);
  --slate-950-90pct: hsla(203, 61%, 6%, 0.9);
  --slate-950-80pct: hsla(203, 61%, 6%, 0.8);
  --slate-950-70pct: hsla(203, 61%, 6%, 0.7);
  --slate-950-60pct: hsla(203, 61%, 6%, 0.6);
  --slate-950-50pct: hsla(203, 61%, 6%, 0.5);
  --slate-950-40pct: hsla(203, 61%, 6%, 0.4);
  --slate-950-30pct: hsla(203, 61%, 6%, 0.3);
  --slate-950-20pct: hsla(203, 61%, 6%, 0.2);
  --slate-950-10pct: hsla(203, 61%, 6%, 0.1);
}

/* --------------------------------------------------------- */
.has-primary-accent-500-background-color {
  background-color: var(--primary-accent-500) !important;
}

.has-primary-accent-500-color {
  color: var(--primary-accent-500) !important;
}

.has-secondary-accent-500-background-color {
  background-color: var(--secondary-accent-500) !important;
}

.has-secondary-accent-500-color {
  color: var(--secondary-accent-500) !important;
}

.has-black-background-color {
  background-color: var(--black) !important;
}

.has-black-color {
  color: var(--black) !important;
}

.has-black-80pct-background-color {
  background-color: var(--black-80pct) !important;
}

.has-black-80pct-color {
  color: var(--black-80pct) !important;
}

.has-white-background-color {
  background-color: var(--white) !important;
}

.has-white-color {
  color: var(--white) !important;
}

.has-white-80pct-background-color {
  background-color: var(--white-80pct) !important;
}

.has-white-80pct-color {
  color: var(--white-80pct) !important;
}

.has-slate-400-background-color {
  background-color: var(--slate-400) !important;
}

.has-slate-400-color {
  color: var(--slate-400) !important;
}

.has-slate-500-background-color {
  background-color: var(--slate-500) !important;
}

.has-slate-500-color {
  color: var(--slate-500) !important;
}

.has-slate-600-background-color {
  background-color: var(--slate-600) !important;
}

.has-slate-600-color {
  color: var(--slate-600) !important;
}

.has-slate-700-background-color {
  background-color: var(--slate-700) !important;
}

.has-slate-700-color {
  color: var(--slate-700) !important;
}

.has-slate-800-background-color {
  background-color: var(--slate-800) !important;
}

.has-slate-800-color {
  color: var(--slate-800) !important;
}

.has-slate-800-80pct-background-color {
  background-color: var(--slate-800-80pct) !important;
}

.has-slate-800-80pct-color {
  color: var(--slate-800-80pct) !important;
}

.has-slate-900-background-color {
  background-color: var(--slate-900) !important;
}

.has-slate-900-color {
  color: var(--slate-900) !important;
}

.has-slate-950-background-color {
  background-color: var(--slate-950) !important;
}

.has-slate-950-color {
  color: var(--slate-950) !important;
}

.has-ivory-050-background-color {
  background-color: var(--ivory-050) !important;
}

.has-ivory-050-color {
  color: var(--ivory-050) !important;
}

.has-ivory-100-background-color {
  background-color: var(--ivory-100) !important;
}

.has-ivory-100-color {
  color: var(--ivory-100) !important;
}

.has-ivory-200-background-color {
  background-color: var(--ivory-200) !important;
}

.has-ivory-200-color {
  color: var(--ivory-200) !important;
}

.has-inline-background-color.has-primary-accent-500-background-color {
  background-color: var(--primary-accent-500) !important;
}

.has-inline-color.has-primary-accent-500-color {
  color: var(--primary-accent-500) !important;
}

.has-inline-background-color.has-secondary-accent-500-background-color {
  background-color: var(--secondary-accent-500) !important;
}

.has-inline-color.has-secondary-accent-500-color {
  color: var(--secondary-accent-500) !important;
}

.has-inline-background-color.has-black-background-color {
  background-color: var(--black) !important;
}

.has-inline-color.has-black-color {
  color: var(--black) !important;
}

.has-inline-background-color.has-black-80pct-background-color {
  background-color: var(--black-80pct) !important;
}

.has-inline-color.has-black-80pct-color {
  color: var(--black-80pct) !important;
}

.has-inline-background-color.has-white-background-color {
  background-color: var(--white) !important;
}

.has-inline-color.has-white-color {
  color: var(--white) !important;
}

.has-inline-background-color.has-white-80pct-background-color {
  background-color: var(--white-80pct) !important;
}

.has-inline-color.has-white-80pct-color {
  color: var(--white-80pct) !important;
}

.has-inline-background-color.has-slate-400-background-color {
  background-color: var(--slate-400) !important;
}

.has-inline-color.has-slate-400-color {
  color: var(--slate-400) !important;
}

.has-inline-background-color.has-slate-500-background-color {
  background-color: var(--slate-500) !important;
}

.has-inline-color.has-slate-500-color {
  color: var(--slate-500) !important;
}

.has-inline-background-color.has-slate-600-background-color {
  background-color: var(--slate-600) !important;
}

.has-inline-color.has-slate-600-color {
  color: var(--slate-600) !important;
}

.has-inline-background-color.has-slate-700-background-color {
  background-color: var(--slate-700) !important;
}

.has-inline-color.has-slate-700-color {
  color: var(--slate-700) !important;
}

.has-inline-background-color.has-slate-800-background-color {
  background-color: var(--slate-800) !important;
}

.has-inline-color.has-slate-800-color {
  color: var(--slate-800) !important;
}

.has-inline-background-color.has-slate-800-80pct-background-color {
  background-color: var(--slate-800-80pct) !important;
}

.has-inline-color.has-slate-800-80pct-color {
  color: var(--slate-800-80pct) !important;
}

.has-inline-background-color.has-slate-900-background-color {
  background-color: var(--slate-900) !important;
}

.has-inline-color.has-slate-900-color {
  color: var(--slate-900) !important;
}

.has-inline-background-color.has-slate-950-background-color {
  background-color: var(--slate-950) !important;
}

.has-inline-color.has-slate-950-color {
  color: var(--slate-950) !important;
}

.has-inline-background-color.has-ivory-050-background-color {
  background-color: var(--ivory-050) !important;
}

.has-inline-color.has-ivory-050-color {
  color: var(--ivory-050) !important;
}

.has-inline-background-color.has-ivory-100-background-color {
  background-color: var(--ivory-100) !important;
}

.has-inline-color.has-ivory-100-color {
  color: var(--ivory-100) !important;
}

.has-inline-background-color.has-ivory-200-background-color {
  background-color: var(--ivory-200) !important;
}

.has-inline-color.has-ivory-200-color {
  color: var(--ivory-200) !important;
}

.has-primary-accent-700-background-color {
  background-color: var(--primary-accent-700) !important;
}

.has-primary-accent-700-color {
  color: var(--primary-accent-700) !important;
}

.has-secondary-accent-700-background-color {
  background-color: var(--secondary-accent-700) !important;
}

.has-secondary-accent-700-color {
  color: var(--secondary-accent-700) !important;
}

/* --------------------------------------------------------- */
/* 
    __  __  ____  _____  ______  _____ 
 |  \/  |/ __ \|  __ \|  ____|/ ____|
 | \  / | |  | | |  | | |__  | (___  
 | |\/| | |  | | |  | |  __|  \___ \ 
 | |  | | |__| | |__| | |____ ____) |
 |_|  |_|\____/|_____/|______|_____/ 

*/
/* --------------------------------------------------------- */
/*///////////// GLOBAL-STYLES/MODES start /////////////*/
:root {
  --light-mode-display-text: var(--slate-800);
  --light-mode-body-text: var(--slate-800-80pct);
  --light-mode-caption-text: var(--gray-600);
  --light-mode-background: var(--ivory-100);
  --light-mode-background-90pct: var(--white-90pct);
  --light-mode-background-70pct: var(--white-70pct);
  --dark-mode-display-text: white;
  --dark-mode-body-text: var(--white-80pct);
  --dark-mode-caption-text: var(--gray-400);
  --dark-mode-background: var(--slate-900);
  --dark-mode-background-90pct: var(--slate-950-90pct);
  --dark-mode-background-70pct: var(--slate-950-70pct);
}

.light-mode {
  background: white;
}

.light-mode:has(main.alternative-color-palette):not(.single) {
  background: var(--ivory-050);
}

.dark-mode {
  background: var(--dark-mode-background);
}

.dark-mode .card {
  background: var(--slate-950);
  border-color: var(--slate-700);
}

.light-mode h1, .light-mode h2, .light-mode h3, .light-mode h4, .light-mode h5, .light-mode h6, .light-mode .bold, .light-mode strong {
  color: var(--light-mode-display-text);
}

.dark-mode h1, .dark-mode h2, .dark-mode h3, .dark-mode h4, .dark-mode h5, .dark-mode h6, .dark-mode .bold, .dark-mode strong {
  color: var(--dark-mode-display-text);
}

.light-mode p, .light-mode li, .light-mode pre code, .light-mode {
  color: var(--light-mode-body-text);
}

.dark-mode p, .dark-mode li, .dark-mode pre code, .dark-mode {
  color: var(--dark-mode-body-text);
}

.light-mode hr {
  border-color: var(--black-20pct);
}

.dark-mode hr {
  border-color: var(--white-20pct);
}

.light-mode a:not(.button, .wp-element-button) {
  color: var(--light-mode-display-text);
}

.dark-mode a:not(.button, .wp-element-button) {
  color: var(--dark-mode-display-text);
}

@media (min-width: 768px) {
  .light-mode a:not(.button, .wp-element-button) {
    color: var(--light-mode-body-text);
  }
  .dark-mode a:not(.button, .wp-element-button) {
    color: var(--dark-mode-body-text);
  }
}
.light-mode a:not(.button, .wp-element-button):hover {
  color: var(--primary-accent-500);
}

.dark-mode a:not(.button, .wp-element-button):hover {
  color: var(--primary-accent-500);
}

.light-mode small {
  color: var(--light-mode-display-text);
}

.dark-mode small {
  color: var(--dark-mode-display-text);
}

/*///////////// GLOBAL-STYLES/MODES end ////////////*/
/* --------------------------------------------------------- */
/* 

*/
/* --------------------------------------------------------- */
/*///////////// GLOBAL-STYLES/CONTAINERS start /////////////*/
.container, .container-narrow,
article > .wp-block-columns,
article > .wp-block-group, main > .wp-block-columns,
main > .wp-block-group {
  width: calc(100% - 24px);
  margin: 0 auto;
}

.container,
article > .wp-block-columns,
article > .wp-block-group, main > .wp-block-columns,
main > .wp-block-group {
  max-width: 1440px;
}

.container-narrow {
  max-width: 840px;
}

.full-width {
  max-width: none !important;
}

.width-100 {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

@media (min-width: 750px) {
  .container, .container-narrow,
  article > .wp-block-columns,
  article > .wp-block-group, main > .wp-block-columns,
  main > .wp-block-group {
    width: calc(100% - 80px);
  }
}
/* Mobile Grid Layout */
@media (max-width: 899px) {
  .wp-block-group.is-layout-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
  .mobile-margin-bottom-000 {
    margin-bottom: 0 !important;
  }
  .mobile-margin-bottom-025 {
    margin-bottom: 0.25rem !important;
  }
  .mobile-margin-bottom-050 {
    margin-bottom: 0.5rem !important;
  }
  .mobile-margin-bottom-100 {
    margin-bottom: 1rem !important;
  }
  .mobile-margin-bottom-175 {
    margin-bottom: 1.75rem !important;
  }
  .mobile-margin-bottom-200 {
    margin-bottom: 2rem !important;
  }
  .mobile-margin-bottom-250 {
    margin-bottom: 2.5rem !important;
  }
  .mobile-margin-bottom-300 {
    margin-bottom: 3rem !important;
  }
  .mobile-margin-bottom-400 {
    margin-bottom: 4rem !important;
  }
  .mobile-margin-bottom-500 {
    margin-bottom: 5rem !important;
  }
  .mobile-margin-bottom-600 {
    margin-bottom: 6rem !important;
  }
  .mobile-margin-top-000 {
    margin-top: 0 !important;
  }
  .mobile-margin-top-025 {
    margin-top: 0.25rem !important;
  }
  .mobile-margin-top-050 {
    margin-top: 0.5rem !important;
  }
  .mobile-margin-top-100 {
    margin-top: 1rem !important;
  }
  .mobile-margin-top-175 {
    margin-top: 1.75rem !important;
  }
  .mobile-margin-top-200 {
    margin-top: 2rem !important;
  }
  .mobile-margin-top-250 {
    margin-top: 2.5rem !important;
  }
  .mobile-margin-top-300 {
    margin-top: 3rem !important;
  }
  .mobile-margin-top-400 {
    margin-top: 4rem !important;
  }
  .mobile-margin-top-500 {
    margin-top: 5rem !important;
  }
  .mobile-margin-top-600 {
    margin-top: 6rem !important;
  }
  .mobile-padding-bottom-000 {
    padding-bottom: 0 !important;
  }
  .mobile-padding-bottom-050 {
    padding-bottom: 0.5rem !important;
  }
  .mobile-padding-bottom-100 {
    padding-bottom: 1rem !important;
  }
  .mobile-padding-bottom-175 {
    padding-bottom: 1.75rem !important;
  }
  .mobile-padding-bottom-200 {
    padding-bottom: 2rem !important;
  }
  .mobile-padding-bottom-250 {
    padding-bottom: 2.5rem !important;
  }
  .mobile-padding-bottom-300 {
    padding-bottom: 3rem !important;
  }
  .mobile-padding-bottom-400 {
    padding-bottom: 4rem !important;
  }
  .mobile-padding-bottom-500 {
    padding-bottom: 5rem !important;
  }
  .mobile-padding-bottom-600 {
    padding-bottom: 6rem !important;
  }
  .mobile-padding-top-000 {
    padding-top: 0 !important;
  }
  .mobile-padding-top-050 {
    padding-top: 0.5rem !important;
  }
  .mobile-padding-top-100 {
    padding-top: 1rem !important;
  }
  .mobile-padding-top-175 {
    padding-top: 1.75rem !important;
  }
  .mobile-padding-top-200 {
    padding-top: 2rem !important;
  }
  .mobile-padding-top-250 {
    padding-top: 2.5rem !important;
  }
  .mobile-padding-top-300 {
    padding-top: 3rem !important;
  }
  .mobile-padding-top-400 {
    padding-top: 4rem !important;
  }
  .mobile-padding-top-500 {
    padding-top: 5rem !important;
  }
  .mobile-padding-top-600 {
    padding-top: 6rem !important;
  }
  .mobile-gap-000 {
    gap: 0 !important;
  }
  .mobile-gap-050 {
    gap: 0.5rem !important;
  }
  .mobile-gap-100 {
    gap: 1rem !important;
  }
  .mobile-gap-175 {
    gap: 1.75rem !important;
  }
  .mobile-gap-200 {
    gap: 2rem !important;
  }
  .mobile-gap-300 {
    gap: 3rem !important;
  }
  .mobile-gap-400 {
    gap: 4rem !important;
  }
  .mobile-gap-500 {
    gap: 5rem !important;
  }
  .mobile-gap-600 {
    gap: 6rem !important;
  }
  [class*=margin-bottom-].mobile-margin-bottom-000 {
    margin-bottom: 0 !important;
  }
  [class*=margin-bottom-].mobile-margin-bottom-025 {
    margin-bottom: 0.25rem !important;
  }
  [class*=margin-bottom-].mobile-margin-bottom-050 {
    margin-bottom: 0.5rem !important;
  }
  [class*=margin-bottom-].mobile-margin-bottom-100 {
    margin-bottom: 1rem !important;
  }
  [class*=margin-bottom-].mobile-margin-bottom-175 {
    margin-bottom: 1.75rem !important;
  }
  [class*=margin-bottom-].mobile-margin-bottom-200 {
    margin-bottom: 2rem !important;
  }
  [class*=margin-bottom-].mobile-margin-bottom-250 {
    margin-bottom: 2.5rem !important;
  }
  [class*=margin-bottom-].mobile-margin-bottom-300 {
    margin-bottom: 3rem !important;
  }
  [class*=margin-bottom-].mobile-margin-bottom-400 {
    margin-bottom: 4rem !important;
  }
  [class*=margin-bottom-].mobile-margin-bottom-500 {
    margin-bottom: 5rem !important;
  }
  [class*=margin-bottom-].mobile-margin-bottom-600 {
    margin-bottom: 6rem !important;
  }
  [class*=margin-top-].mobile-margin-top-000 {
    margin-top: 0 !important;
  }
  [class*=margin-top-].mobile-margin-top-025 {
    margin-top: 0.25rem !important;
  }
  [class*=margin-top-].mobile-margin-top-050 {
    margin-top: 0.5rem !important;
  }
  [class*=margin-top-].mobile-margin-top-100 {
    margin-top: 1rem !important;
  }
  [class*=margin-top-].mobile-margin-top-175 {
    margin-top: 1.75rem !important;
  }
  [class*=margin-top-].mobile-margin-top-200 {
    margin-top: 2rem !important;
  }
  [class*=margin-top-].mobile-margin-top-250 {
    margin-top: 2.5rem !important;
  }
  [class*=margin-top-].mobile-margin-top-300 {
    margin-top: 3rem !important;
  }
  [class*=margin-top-].mobile-margin-top-400 {
    margin-top: 4rem !important;
  }
  [class*=margin-top-].mobile-margin-top-500 {
    margin-top: 5rem !important;
  }
  [class*=margin-top-].mobile-margin-top-600 {
    margin-top: 6rem !important;
  }
  [class*=padding-bottom-].mobile-padding-bottom-000 {
    padding-bottom: 0 !important;
  }
  [class*=padding-bottom-].mobile-padding-bottom-050 {
    padding-bottom: 0.5rem !important;
  }
  [class*=padding-bottom-].mobile-padding-bottom-100 {
    padding-bottom: 1rem !important;
  }
  [class*=padding-bottom-].mobile-padding-bottom-175 {
    padding-bottom: 1.75rem !important;
  }
  [class*=padding-bottom-].mobile-padding-bottom-200 {
    padding-bottom: 2rem !important;
  }
  [class*=padding-bottom-].mobile-padding-bottom-250 {
    padding-bottom: 2.5rem !important;
  }
  [class*=padding-bottom-].mobile-padding-bottom-300 {
    padding-bottom: 3rem !important;
  }
  [class*=padding-bottom-].mobile-padding-bottom-400 {
    padding-bottom: 4rem !important;
  }
  [class*=padding-bottom-].mobile-padding-bottom-500 {
    padding-bottom: 5rem !important;
  }
  [class*=padding-bottom-].mobile-padding-bottom-600 {
    padding-bottom: 6rem !important;
  }
  [class*=padding-top-].mobile-padding-top-000 {
    padding-top: 0 !important;
  }
  [class*=padding-top-].mobile-padding-top-050 {
    padding-top: 0.5rem !important;
  }
  [class*=padding-top-].mobile-padding-top-100 {
    padding-top: 1rem !important;
  }
  [class*=padding-top-].mobile-padding-top-175 {
    padding-top: 1.75rem !important;
  }
  [class*=padding-top-].mobile-padding-top-200 {
    padding-top: 2rem !important;
  }
  [class*=padding-top-].mobile-padding-top-250 {
    padding-top: 2.5rem !important;
  }
  [class*=padding-top-].mobile-padding-top-300 {
    padding-top: 3rem !important;
  }
  [class*=padding-top-].mobile-padding-top-400 {
    padding-top: 4rem !important;
  }
  [class*=padding-top-].mobile-padding-top-500 {
    padding-top: 5rem !important;
  }
  [class*=padding-top-].mobile-padding-top-600 {
    padding-top: 6rem !important;
  }
  .mobile-max-width-100 {
    max-width: 100px !important;
  }
  .mobile-max-width-150 {
    max-width: 150px !important;
  }
  .mobile-max-width-175 {
    max-width: 175px !important;
  }
  .mobile-max-width-200 {
    max-width: 200px !important;
  }
  .mobile-max-width-225 {
    max-width: 225px !important;
  }
  .mobile-max-width-250 {
    max-width: 250px !important;
  }
  .mobile-max-width-275 {
    max-width: 275px !important;
  }
  .mobile-max-width-300 {
    max-width: 300px !important;
  }
  .mobile-max-width-350 {
    max-width: 350px !important;
  }
  .mobile-max-width-400 {
    max-width: 400px !important;
  }
  .mobile-center-with-margins {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
/* Custom Grid System */
.grid-layout {
  display: grid;
  gap: 2rem;
}

/* Default mobile layout - single column */
@media (max-width: 899px) {
  .grid-layout {
    grid-template-columns: 1fr;
  }
  .grid-layout.mobile-2-cols {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-layout.mobile-3-cols {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-layout.mobile-4-cols {
    grid-template-columns: repeat(4, 1fr);
  }
  /* Reset WordPress columns on mobile */
  /*.wp-block-columns {
    display: block !important;

    > .wp-block-column {
      margin-left: 0 !important;
      margin-bottom: 2rem !important;

      &:last-child {
        margin-bottom: 0 !important;
      }
    }
  }
  */
}
/*///////////// GLOBAL-STYLES/CONTAINERS end /////////////*/
/* --------------------------------------------------------- */
.row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 900px) {
  .row {
    flex-direction: row;
  }
}
.row .col {
  flex-grow: 1;
  width: 100%;
}

:root {
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
}

.margin-top-000 {
  margin-top: 0 !important;
}

.margin-top-025 {
  margin-top: 0.25rem !important;
}

.margin-top-050 {
  margin-top: 0.5rem !important;
}

.margin-top-100 {
  margin-top: 1rem !important;
}

.margin-top-175 {
  margin-top: 1.75rem !important;
}

.margin-top-200 {
  margin-top: 2rem !important;
}

.margin-top-250 {
  margin-top: 2.5rem !important;
}

.margin-top-300 {
  margin-top: 3rem !important;
}

.margin-top-400 {
  margin-top: 4rem !important;
}

.margin-top-500 {
  margin-top: 5rem !important;
}

.margin-top-600 {
  margin-top: 6rem !important;
}

.margin-bottom-000 {
  margin-bottom: 0 !important;
}

.margin-bottom-025 {
  margin-bottom: 0.25rem !important;
}

.margin-bottom-050 {
  margin-bottom: 0.5rem !important;
}

.margin-bottom-100 {
  margin-bottom: 1rem !important;
}

.margin-bottom-175 {
  margin-bottom: 1.75rem !important;
}

.margin-bottom-200 {
  margin-bottom: 2rem !important;
}

.margin-bottom-250 {
  margin-bottom: 2.5rem !important;
}

.margin-bottom-300 {
  margin-bottom: 3rem !important;
}

.margin-bottom-400 {
  margin-bottom: 4rem !important;
}

.margin-bottom-500 {
  margin-bottom: 5rem !important;
}

.margin-bottom-600 {
  margin-bottom: 6rem !important;
}

.padding-top-000 {
  padding-top: 0 !important;
}

.padding-top-050 {
  padding-top: 0.5rem !important;
}

.padding-top-100 {
  padding-top: 1rem !important;
}

.padding-top-200 {
  padding-top: 2rem !important;
}

.padding-top-300 {
  padding-top: 3rem !important;
}

.padding-top-400 {
  padding-top: 4rem !important;
}

.padding-top-500 {
  padding-top: 5rem !important;
}

.padding-top-600 {
  padding-top: 6rem !important;
}

.padding-bottom-000 {
  padding-bottom: 0 !important;
}

.padding-bottom-050 {
  padding-bottom: 0.5rem !important;
}

.padding-bottom-100 {
  padding-bottom: 1rem !important;
}

.padding-bottom-200 {
  padding-bottom: 2rem !important;
}

.padding-bottom-300 {
  padding-bottom: 3rem !important;
}

.padding-bottom-400 {
  padding-bottom: 4rem !important;
}

.gap-000 {
  gap: 0rem !important;
}

.gap-050 {
  gap: 0.5rem !important;
}

.gap-100 {
  gap: 1rem !important;
}

.gap-150 {
  gap: 1.5rem !important;
}

.gap-175 {
  gap: 1.75rem !important;
}

.gap-200 {
  gap: 2rem !important;
}

.gap-300 {
  gap: 3rem !important;
}

.gap-400 {
  gap: 4rem !important;
}

.gap-500 {
  gap: 5rem !important;
}

.gap-600 {
  gap: 6rem !important;
}

/* --------------------------------------------------------- */
hr {
  margin-block: 3rem;
  border-width: 1px;
  border-style: solid;
  width: calc(100% - 2rem);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.secondary-separator {
  max-width: 300px;
}

hr.vertical-hr {
  width: unset;
}

.light-mode hr {
  border-color: var(--black-10pct);
}

.transparent-separator {
  opacity: 0;
}

.small-separator {
  margin-block: 2rem;
}

.large-separator {
  margin-block: 4.5rem;
}

@media (min-width: 900px) {
  .small-separator {
    margin-block: 4rem;
  }
  hr {
    margin-block: 6rem;
  }
  .large-separator {
    margin-block: 8rem;
  }
}
/* --------------------------------------------------------- */
:root {
  --box-shadow-stroke: 0 0 0px 0.65px rgba(0, 0, 0, 0.2);
  --box-shadow-stroke-50pct: 0 0 0px 0.5px rgba(0, 0, 0, 0.1);
  --box-shadow-stroke-10pct: 0 0 0px 0.5px rgba(0, 0, 0, 0.1);
  --box-shadow-stroke-dark: 0 0 0px 0.5px rgba(255, 255, 255, 0.2);
  --box-shadow-stroke-darlk-50pct: 0 0 0px 0.5px rgba(255, 255, 255, 0.1);
  --box-shadow-stroke-darlk-10pct: 0 0 0px 0.5px rgba(255, 255, 255, 0.1);
}

/* --------------------------------------------------------- */
/*
  ____  _    _ _______ _______ ____  _   _  _____ 
 |  _ \| |  | |__   __|__   __/ __ \| \ | |/ ____|
 | |_) | |  | |  | |     | | | |  | |  \| | (___  
 |  _ <| |  | |  | |     | | | |  | | . ` |\___ \ 
 | |_) | |__| |  | |     | | | |__| | |\  |____) |
 |____/ \____/   |_|     |_|  \____/|_| \_|_____/                                                  
*/
/* --------------------------------------------------------- */
/*///////////// GLOBAL-STYLES/BUTTONS start /////////////*/
.wp-block-button, .wp-block-button__link, .wp-element-button {
  all: unset;
}

.wp-block-buttons .wp-block-button__link {
  width: -moz-fit-content;
  width: fit-content;
}

.wp-block-buttons {
  margin: 0;
}

button, a.button, input.button, .wp-element-button {
  font-size: 1rem;
  font-weight: 600;
}

button.small-button, a.small-button, input.small-button, .wp-element-button.small-button {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

:where(button, .button, .wp-element-button):not(.search-submit, .goldenpress-popup-close) {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  max-width: 240px;
  padding-inline: 24px;
  border: 2px solid var(--primary-accent-500);
  border-radius: var(--border-radius-sm);
  background-color: var(--primary-accent-500);
  color: white;
  letter-spacing: 0.25px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-width: 180px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  :where(button, .button, .wp-element-button):not(.search-submit, .goldenpress-popup-close):focus {
    outline: 2px solid var(--primary-accent-500);
    outline-offset: 2px;
  }
}

@media (min-width: 768px) {
  button, .button, .wp-element-button {
    background-color: var(--primary-accent-90pct);
  }
}
button:hover, a.button:hover, input.button:hover, .wp-element-button:hover {
  text-decoration: none;
  background-color: var(--primary-accent-700);
}

/* ARROW LINK STYLE */
.arrow-link {
  text-decoration: none;
  color: var(--primary-accent-500);
  transition: color 0.2s ease;
}
.arrow-link:hover {
  color: var(--primary-accent-700);
}
.arrow-link:hover::after {
  content: " →";
  display: inline-block;
  margin-left: 4px;
  transition: margin-left 0.2s ease;
}
.arrow-link:hover::after {
  margin-left: 8px;
}

/* Override for custom-dropdown to prevent double arrows */
.custom-dropdown .arrow-link:hover::after {
  content: none;
}

/* BUTTON SIZES */
.small-button {
  height: 32px;
  min-width: 120px;
  width: -moz-fit-content;
  width: fit-content;
}

.large-button {
  height: 60px;
  min-width: 260px;
  width: -moz-fit-content;
  width: fit-content;
}

/* SECONDARY BUTTON */
.secondary-button:not(:hover) {
  color: var(--primary-accent-500);
  background: none;
}
@media (min-width: 768px) {
  .secondary-button:focus {
    outline: 2px solid var(--primary-accent-500);
    outline-offset: 2px;
  }
}

.ios-button, .android-button {
  background: var(--black);
  border: 2px solid var(--black);
  color: var(--white);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  max-width: unset;
  height: 50px;
  font-weight: 600;
  font-size: 1rem;
  padding-inline: 24px 24px;
  border-radius: var(--border-radius-sm);
  box-sizing: border-box;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  transition: none;
  width: 260px;
}

.ios-button:hover, .android-button:hover {
  border-color: var(--primary-accent-500);
}

.ios-button::before, .android-button::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-right: 12px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.ios-button::before {
  background-image: url("assets/images/app-store-logo.svg");
}

.android-button::before {
  background-image: url("assets/images/play-store-logo.svg");
}

.wp-block-search__button {
  min-width: unset;
}

/* MOBILE CENTER ALIGN FOR BUTTONS */
@media (max-width: 899px) {
  .mobile-center-align {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
  }
  .mobile-center-align .wp-block-button__link,
  .mobile-center-align button,
  .mobile-center-align a.button,
  .mobile-center-align input.button,
  .mobile-center-align .wp-element-button {
    margin: 0 auto !important;
  }
}
/*///////////// GLOBAL-STYLES/BUTTONS end /////////////*/
/* --------------------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s, transform 0.65s;
}

.visible {
  opacity: 1;
  transform: translateY(0);
  transition-timing-function: ease-out;
}

.post-card.fade-in {
  opacity: 0;
  transform: unset;
  transition: opacity 0.65s;
}

.post-card.visible {
  opacity: 1;
  transform: unset;
  transition-timing-function: ease-out;
}

input {
  padding: 8px;
  border-radius: 2px;
  border: 1px solid var(--slate-300);
}

.search-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  width: 100%;
}
.search-form .search-type-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}
.search-form .search-type-selector .search-type-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-400);
  white-space: nowrap;
}
.search-form .search-type-selector .search-type-select-wrapper {
  position: relative;
}
.search-form .search-type-selector .search-type-select-wrapper::after {
  content: "▼";
  font-size: 12px;
  color: var(--slate-400);
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.search-form .search-type-selector .search-type-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 6px 30px 6px 12px;
  border: 1px solid var(--slate-300);
  border-radius: 4px;
  background-color: var(--wp--preset--color--background);
  color: var(--slate-400);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  min-width: 160px;
}
.search-form .search-type-selector .search-type-select:focus {
  outline: none;
  border-color: var(--primary-accent-500);
}
.search-form .search-type-selector .search-type-select:hover {
  border-color: var(--slate-400);
}
.search-form .search-type-selector .search-type-select option {
  background-color: var(--white);
  color: var(--slate-900);
}
.search-form .search-input-container {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
}
.search-form .search-field {
  width: 300px;
  height: 38px;
  flex: 1;
  padding: 8px 12px;
  border-radius: 4px 0 0 4px;
  border: 1px solid var(--slate-500);
  border-right: none;
  background-color: var(--wp--preset--color--background);
  color: var(--wp--preset--color--foreground);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.search-form .search-field:focus {
  outline: none;
  border-color: var(--primary-accent-500);
}
.search-form .search-field:not(:-moz-placeholder-shown) {
  background-color: var(--white);
}
.search-form .search-field:hover, .search-form .search-field:focus, .search-form .search-field:not(:placeholder-shown) {
  background-color: var(--white);
}
.search-form .search-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  height: 38px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--wp--preset--color--foreground);
  transition: color 0.2s ease, background-color 0.2s ease;
  color: white;
  border: 1px solid var(--slate-600);
  border-radius: 0 4px 4px 0;
}
.search-form .search-submit:hover {
  background: var(--primary-accent-500) !important;
}
.search-form .search-submit svg {
  width: 20px;
  height: 20px;
}
.search-form .search-input-container:has(.search-field:not(:-moz-placeholder-shown)) .search-submit {
  background: var(--slate-700);
}
.search-form .search-input-container:has(.search-field:hover) .search-submit,
.search-form .search-input-container:has(.search-field:focus) .search-submit,
.search-form .search-input-container:has(.search-field:not(:placeholder-shown)) .search-submit {
  background: var(--slate-700);
}

@media (max-width: 719px) {
  .search-form .search-type-selector {
    flex-direction: column;
    gap: 8px;
  }
  .search-form .search-type-selector .search-type-select {
    min-width: 200px;
  }
}
/* --------------------------------------------------------- */
/* 

*/
/* --------------------------------------------------------- */
ul {
  list-style: none; /* Remove default bullets */
}

main ul {
  margin-bottom: 2rem;
}

main ul li::before {
  content: "•";
  color: var(--primary-accent-500);
  font-weight: bold;
  display: inline-block;
  width: 0.75em;
  margin-left: -0.9em;
}

.wp-block-list {
  padding-left: 20px;
}

.hanging-list {
  padding-left: 24px;
}

.checkmark-bullet li::before {
  content: "✓";
}

.spaced-list li {
  margin-bottom: 1.2rem;
}

.no-bullets li:before {
  display: none;
}

.wp-block-list li {
  margin-bottom: 0.5rem;
}

.hanging-list.no-bullets {
  padding-left: 0;
}

/* --------------------------------------------------------- */
/* DISPLAY */
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

/* MARGIN */
.margin-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.margin-right-auto {
  margin-left: 0 !important;
  margin-right: auto !important;
}

.margin-left-auto {
  margin-right: 0 !important;
  margin-left: auto !important;
}

/* PADDING */
.padding-top-000 {
  padding-top: 0 !important;
}

.padding-top-050 {
  padding-top: 0.5rem !important;
}

.padding-top-100 {
  padding-top: 1rem !important;
}

.padding-top-175 {
  padding-top: 1.75rem !important;
}

.padding-top-200 {
  padding-top: 2rem !important;
}

.padding-top-250 {
  padding-top: 2.5rem !important;
}

.padding-top-300 {
  padding-top: 3rem !important;
}

.padding-top-400 {
  padding-top: 4rem !important;
}

.padding-top-500 {
  padding-top: 5rem !important;
}

.padding-top-600 {
  padding-top: 6rem !important;
}

.padding-bottom-000 {
  padding-bottom: 0 !important;
}

.padding-bottom-050 {
  padding-bottom: 0.5rem !important;
}

.padding-bottom-100 {
  padding-bottom: 1rem !important;
}

.padding-bottom-175 {
  padding-bottom: 1.75rem !important;
}

.padding-bottom-200 {
  padding-bottom: 2rem !important;
}

.padding-bottom-250 {
  padding-bottom: 2.5rem !important;
}

.padding-bottom-300 {
  padding-bottom: 3rem !important;
}

.padding-bottom-400 {
  padding-bottom: 4rem !important;
}

.padding-bottom-500 {
  padding-bottom: 5rem !important;
}

.padding-bottom-600 {
  padding-bottom: 6rem !important;
}

/* OPACITY */
.opacity-0pct {
  opacity: 0;
}

.opacity-40pct {
  opacity: 0.4;
}

.opacity-30pct {
  opacity: 0.3;
}

.opacity-50pct {
  opacity: 0.5;
}

.opacity-75pct {
  opacity: 0.75;
}

.opacity-100pct {
  opacity: 1;
}

/* COLOR */
.color-primary-accent {
  color: var(--primary-accent-500) !important;
}

.color-secondary-accent {
  color: var(--secondary-accent-500) !important;
}

.color-white {
  color: white !important;
}

.color-black {
  color: black !important;
}

.light-mode .color-body-text {
  color: var(--light-mode-text) !important;
}

.dark-mode .color-body-text {
  color: var(--dark-mode-text) !important;
}

/*Color on filter mode */
.accent-filter {
  filter: brightness(0) saturate(100%) invert(15%) sepia(66%) saturate(6358%) hue-rotate(339deg) brightness(96%) contrast(101%);
}

/* Font Weight */
.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.caption.uppercase {
  font-weight: 800;
}

.font-weight-100 {
  font-weight: 100 !important;
  font-variation-settings: "wght" 100 !important;
}

.font-weight-200 {
  font-weight: 200 !important;
  font-variation-settings: "wght" 200 !important;
}

.font-weight-300 {
  font-weight: 300 !important;
  font-variation-settings: "wght" 300 !important;
}

.font-weight-400 {
  font-weight: 400 !important;
  font-variation-settings: "wght" 400 !important;
}

.font-weight-500 {
  font-weight: 500 !important;
  font-variation-settings: "wght" 500 !important;
}

.font-weight-600 {
  font-weight: 600 !important;
  font-variation-settings: "wght" 600 !important;
}

.font-weight-700 {
  font-weight: 700 !important;
  font-variation-settings: "wght" 700 !important;
}

.font-weight-800 {
  font-weight: 800 !important;
  font-variation-settings: "wght" 800 !important;
}

.font-weight-900 {
  font-weight: 900 !important;
  font-variation-settings: "wght" 900 !important;
}

/* Font Family */
.font-family-sans-serif {
  font-family: var(--sans-serif-font-family), var(--sans-fallback-fonts) !important;
}

.font-family-serif {
  font-family: var(--serif-font-family), var(--serif-fallback-fonts) !important;
}

.font-family-mono {
  font-family: var(--mono-font-family), monospace !important;
}

.font-size-inherit {
  font-size: inherit !important;
}

.child-font-size-inherit > * {
  font-size: inherit !important;
}

.align-center {
  text-align: center;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.align-justify {
  text-align: justify;
}

@media (max-width: 768px) {
  .mobile-reverse-order {
    flex-direction: column-reverse;
  }
  .mobile-d-none {
    display: none !important;
  }
  .mobile-flex-direction-row {
    flex-direction: row !important;
  }
  .mobile-flex-direction-column {
    flex-direction: column !important;
  }
  .mobile-flex-direction-row-reverse {
    flex-direction: row-reverse !important;
  }
  .mobile-flex-direction-column-reverse {
    flex-direction: column-reverse !important;
  }
}
@media (min-width: 769px) {
  .desktop-d-none {
    display: none !important;
  }
}
/* POSITION */
.sticky-on-scroll {
  position: sticky !important;
  top: 140px !important;
  z-index: 100 !important;
}

/* RESPONSIVE HIDE CLASSES */
/* Hide on mobile devices (≤1199px) */
@media (max-width: 1199px) {
  .hide-on-mobile {
    display: none !important;
  }
}
/* Hide on desktop devices (>1199px) */
@media (min-width: 1200px) {
  .hide-on-desktop {
    display: none !important;
  }
}
/* MOBILE IMAGE ALIGNMENT */
@media (max-width: 899px) {
  .mobile-alignleft {
    float: left !important;
    margin: 0.5em 1em 0.5em 0 !important;
  }
  .mobile-aligncenter {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
  }
  .mobile-alignright {
    float: right !important;
    margin: 0.5em 0 0.5em 1em !important;
  }
  .mobile-alignnone {
    float: none !important;
    margin: 0 !important;
  }
}
.archive-content-area {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.archive-content-area.no-sidebar {
  display: block;
}
.archive-content-area.no-sidebar .posts-wrapper {
  max-width: 1080px;
  margin: 0 auto;
}

.posts-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  width: inherit;
}

.posts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.navigation.pagination {
  width: 100%;
}
.navigation.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 4rem;
}

.page-numbers {
  font-size: 1.2rem;
  padding: 0.5rem 0.75rem;
  border-radius: 3px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

ul.page-numbers {
  margin-top: 4rem;
}

.page-numbers li {
  background: var(--gray-200);
  margin-inline: 0.25rem;
}

.page-numbers li:hover {
  background: var(--primary-accent-500);
}

.page-numbers.current {
  opacity: 0.4;
}

.page-numbers:hover {
  color: white !important;
}

.sidebar-widget {
  margin-bottom: 2rem;
}

a.tag {
  margin-right: 8px;
}

.post-card img {
  margin-bottom: 1.5rem;
  width: calc(100% + 50px);
  margin-left: -25px;
  margin-top: -25px;
  max-width: unset;
  border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.post-card a.post-thumbnail-link {
  text-decoration: none;
}
.post-card a.post-thumbnail-link h2 {
  color: var(--primary-accent-500) !important;
  text-decoration: underline;
}
.post-card a.post-thumbnail-link:hover h2 {
  color: var(--primary-accent-700) !important;
}

.post-card .article-meta, .cover .article-meta {
  margin-bottom: 1.5rem;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.post-navigation > .post-card {
  flex: 1;
}
.post-navigation:has(> :only-child) {
  justify-content: center;
}
.post-navigation:has(> :only-child) .card {
  max-width: 600px;
  width: 100%;
  flex-grow: 1;
}

.archive-page aside {
  width: 300px;
}

.post-author-section {
  margin: 4rem 0;
}

.author-card {
  display: flex;
  gap: 2rem;
  align-items: start;
  padding: 2rem;
  background: var(--color-surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.author-avatar {
  flex-shrink: 0;
}

.author-avatar img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.author-info {
  flex-grow: 1;
}

.author-name {
  margin: 0;
  font-size: var(--font-size-lg);
  font-weight: 600;
}

.author-role {
  margin: 0.5rem 0;
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}

.author-bio {
  margin-top: 1rem;
  font-size: var(--font-size-base);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .author-card {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
  .author-avatar img {
    width: 120px;
    height: 120px;
  }
}
.author-profile {
  display: flex;
  gap: 3rem;
  margin: 4rem 0;
  padding: 2rem;
  background: var(--color-surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}
.author-profile .author-avatar {
  flex-shrink: 0;
  width: 300px;
}
.author-profile .author-avatar .author-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  -o-object-fit: cover;
     object-fit: cover;
}
.author-profile .author-content {
  flex-grow: 1;
}
.author-profile .author-content .author-bio {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--color-text-secondary);
}

.author-posts {
  margin-top: 4rem;
}
.author-posts .posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .author-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .author-profile .author-avatar {
    width: 200px;
  }
}
.webinar-section-title {
  width: 100%;
  display: block;
  grid-column: 1/-1;
  margin-top: 0;
  margin-bottom: 2.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--wp--preset--color--slate-400);
}
.webinar-section-title:first-child {
  margin-top: 0;
}

.webinar-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.webinar-section {
  width: 100%;
  display: block;
  grid-column: 1/-1;
  margin-bottom: 4rem;
}

/* Overrides for logo-based post types */
.post-card.partner_marketplace img,
.post-card.original_research img,
.post-card.logo-post-type img {
  width: 100%;
  margin: 0 0 1.5rem 0;
  -o-object-fit: contain;
     object-fit: contain;
  background: white;
  border-radius: var(--border-radius-md);
  padding: 80px;
  box-sizing: border-box;
  border: 0.5px solid var(--ivory-200);
}

@media (max-width: 768px) {
  .post-card.partner_marketplace img, .post-card.original_research img, .post-card.logo-post-type img {
    padding: 40px;
  }
}
.post-meta {
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 1200px) {
  .post-card a.post-thumbnail-link h2, .article-meta a {
    text-decoration: none;
  }
  .article-meta a:hover {
    color: var(--primary-accent-500) !important;
  }
}
.archive-page .cover, .single-post .cover, .single-press .cover, .single-original_research .cover, .single-partner_marketplace .cover, .single-webinar .cover, .single-ebook .cover, .single-case_study .cover {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .archive-content-area {
    display: block;
  }
  .archive-content-area .archive-sidebar,
  .archive-content-area aside {
    width: 100% !important;
    max-width: 100vw;
    margin-bottom: 2rem;
    padding: 0;
  }
  .posts-wrapper {
    width: 100% !important;
    max-width: 100vw;
  }
  .posts-container,
  .posts-grid {
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
  }
  .webinar-cards-grid {
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
  }
  .post-card {
    margin-bottom: 0.5rem;
    box-shadow: var(--shadow-sm);
    border-radius: var(--border-radius-md);
    padding: 1rem 0.5rem 1.5rem 0.5rem;
  }
  .post-card img {
    width: 100% !important;
    margin: 0 0 1rem 0 !important;
    max-width: 100%;
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
  }
  .sidebar-widget {
    margin-bottom: 1.5rem;
  }
  .categories-list,
  .tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
  }
  .categories-list li,
  .tags-cloud .tag {
    flex: 0 0 auto;
  }
  .navigation.pagination .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem 0.25rem;
    margin-top: 2rem;
  }
  .page-numbers {
    font-size: 1rem;
    padding: 0.4rem 0.6rem;
  }
  .post-card .article-meta {
    font-size: 0.95rem;
  }
  .post-card .post-thumbnail-cover-button {
    text-align: center;
    margin-top: 1rem;
  }
  .archive-page .cover {
    margin-bottom: 2rem;
  }
  .tags-widget {
    display: none !important;
  }
  .post-navigation {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }
  .post-navigation > .post-card {
    max-width: 100%;
    margin-bottom: 0;
  }
}
.categories-widget .categories-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 0.5rem;
}
.categories-widget .categories-accordion-toggle {
  background: none;
  border: none;
  padding: 0 0.5em;
  cursor: pointer;
  display: flex;
  align-items: center;
  min-width: 2.25em;
  transition: background 0.2s;
}
.categories-widget .chevron-icon {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background: url("/wp-content/themes/goldenpress/assets/images/chevron-down.svg") no-repeat center center;
  background-size: 1.5em 1.5em;
  transform: rotate(-90deg);
  transition: transform 0.2s;
}
.categories-widget .categories-accordion-toggle[aria-expanded=true] .chevron-icon {
  transform: rotate(0deg);
}
.categories-widget .categories-accordion-list {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  margin: 0.5em 0 0.5em 0;
  padding: 0.5em 0 0.5em 0;
  background: none;
  transition: max-height 0.2s;
}

@media (min-width: 769px) {
  .categories-widget .categories-accordion-header {
    cursor: default;
  }
  .categories-widget .categories-accordion-toggle {
    cursor: default;
  }
  .categories-widget .chevron-icon {
    display: none !important;
  }
  .categories-widget .categories-accordion-list {
    display: block !important;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin: 0.5em 0 0.5em 0;
    padding: 0.5em 0 0.5em 0;
  }
}
@media (max-width: 768px) {
  .categories-widget .categories-accordion-list {
    padding-left: 0;
    margin-left: 0;
    background: white;
    padding: 16px;
    border-radius: var(--border-radius-md);
    border: 1px solid lightgray;
  }
  .categories-widget .categories-accordion-header {
    font-size: 1.1rem;
    background: white;
    padding: 16px;
    border-radius: var(--border-radius-md);
    border: 1px solid lightgray;
  }
}
.categories-accordion-list[hidden] {
  display: none !important;
}

@media (min-width: 769px) {
  .categories-accordion-list[hidden] {
    display: block !important;
  }
}
.post-navigation .logo-image {
  width: 100%;
  margin: 0 0 1.5rem 0;
  -o-object-fit: contain;
     object-fit: contain;
  background: white;
  border-radius: var(--border-radius-md);
  padding: 20px;
  box-sizing: border-box;
}

.single-ebook article .card, .single-webinar article .card {
  border: 4px solid var(--primary-accent-500) !important;
}

.single-ebook article .card {
  background: var(--ivory-050) !important;
}

.single-webinar article .card, .single-webinar article .card iframe body {
  background: hsl(351.43, 14.89%, 90.78%) !important;
}

/* Article content image styling */
.single-post .wp-block-image img,
.single-press .wp-block-image img,
.single-original_research .wp-block-image img,
.single-partner_marketplace .wp-block-image img,
.single-webinar .wp-block-image img,
.single-ebook .wp-block-image img,
.single-case_study .wp-block-image img {
  border-radius: 8px;
}

/* COMPONENT STYLES */
/* --------------------------------------------------------- */
/* 
  _    _ ______          _____  ______ _____  
 | |  | |  ____|   /\   |  __ \|  ____|  __ \ 
 | |__| | |__     /  \  | |  | | |__  | |__) |
 |  __  |  __|   / /\ \ | |  | |  __| |  _  / 
 | |  | | |____ / ____ \| |__| | |____| | \ \ 
 |_|  |_|______/_/    \_\_____/|______|_|  \_\
*/
/* --------------------------------------------------------- */
/* HEADER start */
header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 500;
  border-bottom: 0.5px solid var(--gray-500);
}

header .button {
  min-width: unset;
}

.header-inner {
  padding: 16px;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  max-width: 1440px;
}

.header-logo img {
  margin: 0 !important;
  height: 30px;
}

@media (min-width: 1200px) {
  header {
    border: none;
  }
  .header-inner {
    margin-top: 16px;
    margin-inline: auto;
    width: calc(100% - 80px);
    border-radius: var(--border-radius-md);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  }
  .menu-buttons {
    display: none;
  }
}
/* NAVIGATION MENU */
.header-menu ul {
  list-style: none;
}

@media (max-width: 1199px) {
  .open-menu-button, .close-menu-button {
    height: 42px;
    width: 42px;
    min-width: unset;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: var(--border-radius);
  }
  .close-menu-button, .menu-links, .open-menu .open-menu-button {
    display: none;
  }
  .open-menu .menu-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    overflow-x: scroll;
    padding-top: 100px;
    padding-bottom: 60px;
    background: var(--white-90pct);
  }
  .open-menu .close-menu-button {
    display: flex;
    position: relative;
  }
  .open-menu li:not(.custom-dropdown li):not(.sub-menu li):first-child {
    border-top: 1px solid hsla(0, 0%, 50%, 0.5);
  }
  .open-menu li:not(.custom-dropdown li):not(.sub-menu li) {
    font-size: 1.5rem;
    border-block: 0.5px solid hsla(0, 0%, 50%, 0.5);
    padding-block: 16px;
  }
  .open-menu .button {
    margin-inline: 20px;
    font-size: 1.5rem;
    padding: 30px 60px;
    font-weight: 600;
    font-variation-settings: "wght" 600;
    width: calc(100% - 40px);
    margin-bottom: 1rem;
  }
  .menu-links > ul {
    padding-inline: 24px;
    max-width: 100%;
    width: 100%;
  }
  .custom-dropdown, .sub-menu {
    border: 1px dashed gray;
    padding: 16px;
    margin-top: 8px;
    border-radius: 5px;
  }
  .header-menu .submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: none;
    border: none;
    padding: 0 0 0 0.5em;
    margin-left: auto;
    cursor: pointer;
    vertical-align: middle;
    height: 100%;
    min-width: 2.25em;
  }
  .header-menu .chevron-icon {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    background: url("/wp-content/themes/goldenpress/assets/images/chevron-down.svg") no-repeat center center;
    background-size: 1.5em 1.5em;
    transform: rotate(-90deg);
    transition: transform 0.2s;
  }
  .header-menu li.open .submenu-toggle .chevron-icon {
    transform: rotate(0deg);
  }
  .header-menu .collapsible-menu {
    display: block;
    border: none;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin: 0.5em 0 0.5em 0;
    padding: 0.5em 0 0.5em 1.5em;
    background: none;
  }
  .header-menu .collapsible-menu[hidden] {
    display: none !important;
  }
  .header-menu .custom-dropdown,
  .header-menu .sub-menu {
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 24px 0 0 0;
    border-radius: 0;
  }
  .header-menu > ul > li {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-menu .menu-link-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0.5em;
  }
  .sub-menu {
    margin-top: 12px;
    margin-bottom: 0.5rem;
  }
  ul.sub-menu .menu-item {
    margin-bottom: 0.75rem;
    margin-left: 16px;
  }
  ul.sub-menu {
    list-style: disc;
    padding-left: 15px;
  }
  .header-menu a[data-has-submenu=true] {
    pointer-events: none;
  }
  .header-menu a[data-has-submenu=true]:hover {
    text-decoration: none;
  }
  /* iOS and Android buttons should be 100% width in mobile */
  .open-menu .wp-block-buttons .wp-block-button__link.wp-element-button {
    width: 100%;
    max-width: none;
  }
  /* Default buttons (Log In, Book Demo) get margin constraints */
  .open-menu .button, .open-menu .wp-block-button {
    width: calc(100% - 40px);
    max-width: none;
  }
  /* Secondary button (Learn More) should be constrained but not iOS/Android */
  .open-menu .secondary-button:not(.ios-button):not(.android-button) {
    width: calc(100% - 40px) !important;
    max-width: none !important;
    min-width: auto !important;
  }
  /* Fix Learn More button overflow - ensure it fits within its parent container */
  .open-menu .wp-block-button .wp-block-button__link.secondary-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  /* Ensure For Volunteers text wraps properly */
  .open-menu .menu-link-row a[data-has-submenu=true] {
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.2;
  }
}
@media (min-width: 1200px) {
  .header-menu .submenu-toggle {
    display: none !important;
  }
  .menu-links {
    display: flex;
  }
  .menu-links > ul {
    flex-direction: row;
    display: flex;
    gap: 16px;
    padding-left: 0;
    margin-right: 20px;
    margin-bottom: 0;
    align-items: center;
  }
  .header-menu li {
    font-size: 1rem;
    margin-bottom: 0;
    position: relative; /* Ensure the submenu is positioned relative to the parent */
  }
  .header-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white-90pct);
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .header-menu li:hover > .sub-menu {
    display: block;
    width: -moz-max-content;
    width: max-content;
    padding: 16px 20px 12px 12px;
    border-radius: 4px;
    background: white;
  }
  .sub-menu li {
    margin-bottom: 8px;
  }
  .header-menu li.menu-item-has-children::after,
  .header-menu li.menu-item-has-dropdown::after {
    display: none !important;
  }
  .header-menu .menu-link-row {
    display: flex;
    align-items: center;
    gap: 0.25em;
  }
  .header-menu .menu-caret {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 4px;
    vertical-align: middle;
    transition: border-top-color 0.2s ease;
  }
  .header-menu li.menu-item-has-children:hover .menu-caret,
  .header-menu li.menu-item-has-dropdown:hover .menu-caret {
    border-top-color: var(--primary-accent-500);
  }
  nav a {
    text-decoration: none;
  }
  header .button:not(:first-of-type) {
    margin-left: 8px;
  }
  /* Desktop-specific styles for iOS and Android buttons in dropdown */
  .custom-dropdown .wp-block-button__link.ios-button,
  .custom-dropdown .wp-block-button__link.android-button {
    width: 280px !important;
    padding-inline: 16px !important;
    min-width: 280px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  .header-menu li.menu-item-has-dropdown {
    position: relative;
  }
  .header-menu li.menu-item-has-dropdown .custom-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 740px;
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 1.5px 4px rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    padding: 32px 40px 32px 32px;
    z-index: 1000;
    transition: opacity 0.2s, transform 0.2s;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
  }
  .header-menu li.menu-item-has-dropdown:hover > .custom-dropdown,
  .header-menu li.menu-item-has-dropdown:focus-within > .custom-dropdown {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
header a:not(.button):not(.wp-element-button):hover {
  color: var(--primary-accent-500) !important;
}

.current_page_item > a,
.custom-dropdown-current, .current-menu-item > a {
  opacity: 0.5;
}

.custom-dropdown p.heading-6 {
  font-family: var(--display-font-family);
  font-weight: 600;
}

.custom-dropdown ul {
  list-style: disc;
  padding-left: 15px;
}

.custom-dropdown a:not(.wp-element-button) {
  color: var(--slate-900);
}

.custom-dropdown .arrow-link a:not(.wp-element-button):hover:after {
  content: " →";
  display: inline-block;
  margin-left: 4px;
}

.custom-dropdown .wp-block-columns .wp-block-column:first-child:has(.wp-block-search__button) {
  background: var(--primary-accent-10pct);
  margin: -32px;
  padding: 32px;
}

.custom-dropdown .wp-block-search__inside-wrapper {
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
}

@media (min-width: 900px) {
  .wp-block-column:has(.menu-phone-mockup) {
    margin: -32px -32px -32px 0;
    background: var(--ivory-050);
  }
}
footer {
  padding: 40px 16px 24px;
  background: white;
  width: 100%;
  border-top: 1px solid lightgray;
  position: relative;
  margin-top: 60px;
}

footer::before {
  background: linear-gradient(to top, #F6F0E8 0%, rgba(255, 255, 255, 0) 100%);
  height: 60px;
  width: 100%;
  display: block;
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
}

body:has(.alternative-color-palette) footer::before {
  display: none;
}

footer .container.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 32px;
}

.footer-left {
  flex: 0 0 260px;
  min-width: 260px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.footer-right {
  flex: 1 1 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 32px 40px;
  justify-content: flex-end;
}

.footer-right .secondary-menu {
  min-width: 0;
  margin-bottom: 0;
}

.footer-right .secondary-menu:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.footer-right .secondary-menu:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.footer-right .secondary-menu:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.footer-right .secondary-menu:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
}

.footer-right .secondary-menu:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}

.footer-right .secondary-menu:nth-child(6) {
  grid-column: 3;
  grid-row: 2;
}

.footer-logo {
  grid-area: footer_logo;
  display: flex;
  justify-content: center;
}

.secondary-menu h3 {
  margin-bottom: 0.5rem;
  border-bottom: 1px solid lightgray;
  padding-bottom: 0.5rem;
}

.volunteer-portal-button-container {
  grid-area: volunteer_portal_button;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.footer-legal {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e8e8e8;
  flex-direction: row;
  grid-column: 1/-1;
}

.footer-legal small {
  text-align: center;
  width: 100%;
}

.mobile-footer-logo {
  display: block;
}

.desktop-footer-logo {
  display: none;
}

footer li {
  font-size: 1rem;
}

footer li a {
  color: black;
  font-size: 1rem;
  text-decoration: none;
}

footer li a:hover {
  color: var(--primary-accent-500);
}

.footer-social {
  margin-top: 1rem;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.footer-social ul {
  display: flex;
  padding-left: 0;
  gap: 40px;
  margin-bottom: 1rem;
}

.footer-social img {
  filter: invert(49%) sepia(94%) saturate(4510%) hue-rotate(356deg) brightness(100%) contrast(102%);
}

.social-label {
  display: none;
}

.social-icons li a {
  margin-bottom: 0.25rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.social-icons img {
  margin-right: 8px;
}

.footer-legal small:nth-child(2) {
  max-width: 190px;
}

.footer-legal a {
  color: black;
}

.footer-legal a:hover {
  color: var(--accent-color);
}

footer small {
  display: block;
  text-align: center;
  font-weight: 400;
  font-variation-settings: "wght" 400;
}

.secondary-menu {
  margin-bottom: 2rem;
}

.partner-badges {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: flex-start;
}

.partner-badges img {
  width: auto;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.partner-badges span {
  margin-inline: 8px;
  opacity: 0.3;
}

@media (min-width: 920px) {
  footer {
    padding-top: 60px;
  }
  footer .container {
    grid-template-areas: "footer_logo secondary_menu_1 secondary_menu_2 secondary_menu_3 secondary_menu_4" "footer_social secondary_menu_1 secondary_menu_2 secondary_menu_3 secondary_menu_4" "volunteer_portal_button secondary_menu_1 secondary_menu_2 secondary_menu_3 secondary_menu_5" "volunteer_portal_button secondary_menu_1 secondary_menu_2 secondary_menu_3 partner_badges" "footer_legal footer_legal footer_legal footer_legal footer_legal";
    grid-template-rows: 30px 185px auto;
  }
  .footer-logo {
    display: unset;
  }
  .footer-social {
    justify-content: flex-start;
  }
  .footer-social ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-social li a {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .social-label {
    display: block;
  }
  .footer-legal {
    margin-top: 0;
    flex-direction: row;
    justify-content: center;
  }
  .footer-legal small:nth-child(2) {
    max-width: unset;
  }
  .volunteer-portal-button-container {
    display: unset;
    margin-top: unset;
  }
  .partner-badges {
    flex-direction: column;
    position: relative;
    margin-top: 0;
  }
}
@media (max-width: 920px) {
  footer .container.footer-grid {
    flex-direction: column;
    gap: 2.5rem;
  }
  .footer-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    max-width: 100%;
  }
  .footer-left {
    align-items: center;
    max-width: 100%;
    min-width: 0;
    flex: 1 1 0;
  }
  .footer-social {
    justify-content: center;
  }
  .volunteer-portal-button-container {
    justify-content: center;
  }
  .partner-badges {
    justify-content: center;
  }
  .footer-right .secondary-menu {
    width: 100%;
  }
}
.cover {
  padding-top: 120px;
  padding-bottom: 80px;
  background: var(--ivory-100);
  width: 100% !important;
  max-width: none !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cover h1, .cover h2, .cover h3, .cover h4, .cover h5, .cover h6, .cover p, .cover li {
  color: var(--light-mode-display-text);
  width: 100%;
}

.cover > div {
  width: 100%;
}

.alternative-color-palette .cover {
  background: var(--slate-900);
}
.alternative-color-palette .cover h1, .alternative-color-palette .cover h2, .alternative-color-palette .cover h3, .alternative-color-palette .cover h4, .alternative-color-palette .cover h5, .alternative-color-palette .cover h6, .alternative-color-palette .cover p, .alternative-color-palette .cover li {
  color: var(--dark-mode-display-text);
}

.cover-search-form {
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--space-300);
  max-width: 480px;
  width: -moz-fit-content !important;
  width: fit-content !important;
}

body.home .cover .container {
  flex-direction: column-reverse;
}

.cover-phone-mockup {
  background: var(--ivory-200);
  width: 295px;
  height: 495px;
  border-radius: 48px 48px 0 0;
  padding: 16px 16px 0 16px;
  margin-bottom: -80px;
  display: flex;
  align-items: flex-end;
}

.cover-phone-mockup img {
  border-radius: 32px 32px 0 0;
}

@media (min-width: 900px) {
  .cover {
    padding-top: 160px;
  }
  body.home .cover .container {
    flex-direction: row;
  }
}
.card {
  border-radius: var(--border-radius-md);
  background: var(--ivory-050);
  border: 1px solid var(--ivory-200);
  padding: 20px 16px 32px 16px;
}

.opportunity-card {
  border-radius: var(--border-radius-md);
  border: 1px solid var(--ivory-100);
  width: 100%;
  display: flex;
  gap: 0;
  padding: 16px;
  position: relative;
  margin-bottom: 4px;
}

.opportunity-card:hover {
  border-color: var(--primary-accent-500);
  background: var(--primary-accent-10pct);
}
.opportunity-card:hover::after {
  content: "↗";
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 16px;
  line-height: 1;
}

.opportunity-card h2, .opportunity-card h3 {
  margin-bottom: 0.25rem;
}

.cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

main.alternative-color-palette .card {
  background: white;
  border-color: var(--gray-200);
}

.post-navigation .post-card {
  display: flex;
  flex-direction: column;
}
.post-navigation .post-card .post-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.post-navigation .post-card .post-content .post-excerpt {
  flex-grow: 1;
  margin-bottom: 2rem;
}
.post-navigation .post-card .post-content .button {
  align-self: center;
}
.post-navigation .post-card.next-post .button {
  align-self: center;
}

@media (min-width: 768px) {
  .card {
    padding: 24px 24px 32px 24px;
  }
}
.card:not(.post-card) p, .card:not(.post-card) li {
  font-family: var(--font-family-sans);
}

.team-member-card {
  margin-top: 80px !important;
}

.team-member-card img {
  margin-top: -80px;
  aspect-ratio: 1/1;
  border-radius: 8px;
  border: 1px solid lightgray;
}

.image-card {
  padding: 0;
  display: flex;
  gap: 0;
  overflow: hidden;
  min-height: 200px; /* Ensure minimum height */
}

.image-card .wp-block-columns {
  margin-bottom: 0;
  gap: 16px;
  height: 100%;
  display: flex;
  flex: 1;
}

.image-card .wp-block-column:first-child {
  margin: 0;
  margin-right: 16px;
  padding: 0;
  flex-basis: auto;
  align-self: stretch;
  display: flex;
  height: 100%;
  min-height: 100%;
}

.image-card .wp-block-column:first-child figure {
  margin: 0;
  height: 100%;
  display: flex;
  flex: 1;
}

.image-card .wp-block-column:first-child img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
  margin: 0;
  display: block;
  flex: 1;
}

.image-card .wp-block-column:last-child {
  padding: 20px 16px 32px 16px;
  flex: 1;
  margin: 0;
}

@media (min-width: 768px) {
  .image-card .wp-block-column:last-child {
    padding: 24px 24px 32px 24px;
  }
}
/* Mobile styles for image-card */
@media (max-width: 767px) {
  .image-card {
    flex-direction: column;
    min-height: auto;
  }
  .image-card .wp-block-columns {
    flex-direction: column;
    height: auto;
    gap: 0;
  }
  .image-card .wp-block-column:first-child {
    margin: 0;
    margin-right: 0;
    margin-bottom: 0;
    flex-basis: auto;
    height: 180px;
    min-height: 180px;
    max-height: 180px;
  }
  .image-card .wp-block-column:first-child figure {
    height: 100%;
    margin: 0;
  }
  .image-card .wp-block-column:first-child img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0; /* Rounded top corners only */
    margin: 0;
  }
  .image-card .wp-block-column:last-child {
    padding: 20px 16px 32px 16px;
    margin: 0;
    flex: 1;
    order: 2; /* Ensure content appears below image */
  }
}
.wp-block-details {
  border-top: 2px solid var(--secondary-accent-500);
  padding-top: 2rem;
  padding-bottom: 1.5rem;
}

.wp-block-details:last-child {
  border-bottom: 2px solid var(--secondary-accent-500);
}

.wp-block-details summary {
  font-weight: 700 !important;
  position: relative;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.wp-block-details summary::-webkit-details-marker {
  display: none;
}
.wp-block-details summary::marker {
  display: none;
}
.wp-block-details summary::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  background-image: url("assets/images/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.3s ease;
  opacity: 0.4;
}
.wp-block-details summary:hover::after {
  opacity: 1;
}

.wp-block-details[open] summary::after {
  transform: translateY(-50%) rotate(-180deg);
}

.cta-section .cta-card {
  background-color: var(--primary-accent-10pct);
  padding: 60px 12px;
  border-radius: 12px;
  box-shadow: 0 0 0px 4px rgb(255, 131, 78);
}

.cta-card .cta-card {
  background-color: var(--primary-accent-10pct);
  padding: 60px 12px;
  border-radius: 12px;
  box-shadow: 0 0 0px 4px rgb(255, 131, 78);
  width: calc(100% - 80px);
  max-width: 1440px;
  margin-inline: auto;
}

@media (min-width: 600px) {
  .cta-background-image .cta-card {
    background-color: white;
    background-image: url("assets/images/geometric-shapes-background.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 120%;
  }
}
@media (min-width: 900px) {
  .cta-background-image .cta-card {
    background-size: 90%;
    padding: 80px 20px;
  }
}

@media (min-width: 600px) {
  .cta-background-color .cta-card {
    background-color: var(--cta-custom-background-color, #ffffff);
    background-image: none;
  }
}

@media (min-width: 600px) {
  .cta-section:not(.cta-background-color):not(.cta-background-image) .cta-card {
    background-color: white;
    background-image: url("assets/images/geometric-shapes-background.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 120%;
  }
}
@media (min-width: 900px) {
  .cta-section:not(.cta-background-color):not(.cta-background-image) .cta-card {
    background-size: 90%;
  }
}

@media (min-width: 600px) {
  .volunteers-page .cta-section .cta-card {
    background-size: 120%;
  }
}
@media (min-width: 900px) {
  .volunteers-page .cta-section .cta-card {
    background-size: 90%;
  }
}

.cta-section .buttons-container {
  flex-direction: column;
}

@media (min-width: 900px) {
  .cta-section .buttons-container {
    flex-direction: row;
  }
}
div:has(> .ui-mockup-element-1) {
  position: relative;
  min-height: 400px;
  display: flex;
  justify-content: center;
}

.ui-mockup-element-1, .ui-mockup-element-2, .ui-mockup-element-3, .ui-mockup-element-4 {
  position: absolute;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.ui-mockup-element-1, .ui-mockup-element-2, .ui-mockup-element-3 {
  width: 140px;
  z-index: 100;
}

.ui-mockup-element-1 {
  top: 0px;
  right: 32px;
}

.ui-mockup-element-2 {
  left: 32px;
  top: 200px;
}

.ui-mockup-element-3 {
  display: none;
}

.ui-mockup-element-4 {
  top: 60px;
  aspect-ratio: 16/11;
  max-height: 300px;
}

.ui-mockup-element-4 img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

@media (min-width: 900px) {
  .ui-mockup-element-1, .ui-mockup-element-2, .ui-mockup-element-3 {
    width: 180px;
  }
  .ui-mockup-element-1 {
    right: unset;
    left: 0px;
    top: 80px;
  }
  .ui-mockup-element-2 {
    left: unset;
    right: 0px;
    top: 200px;
  }
  .ui-mockup-element-4 {
    max-height: unset;
    width: 600px;
    left: 48px;
    top: 0px;
  }
}
@media (min-width: 1380px) {
  .ui-mockup-element-1, .ui-mockup-element-2, .ui-mockup-element-3 {
    width: 200px;
  }
  .ui-mockup-element-1 {
    left: -20px;
    top: 100px;
  }
  .ui-mockup-element-2 {
    right: unset;
    left: 420px;
    top: 280px;
  }
  .ui-mockup-element-3 {
    display: unset;
    left: 640px;
    top: 100px;
  }
  .ui-mockup-element-4 {
    width: 100%;
    left: 48px;
    top: 0px;
  }
}
.wp-block-video video {
  border-radius: 12px;
  border: 2px solid white;
}

iframe[src*="youtube.com"],
iframe[src*="youtu.be"],
iframe[title*=YouTube] {
  max-width: 100%;
  margin-inline: auto;
  display: block;
  aspect-ratio: 16/9 !important;
  height: auto;
  border-radius: 8px;
  border: 2px solid var(--slate-700);
}

.icon-box {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.65);
  border: 2px solid white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.icon-box img {
  max-width: 100%;
  height: auto;
}
.icon-box i {
  font-size: 32px;
  color: #333;
  line-height: 1;
}

.wp-block-goldenpress-logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  box-sizing: border-box;
}
.wp-block-goldenpress-logo-marquee::before, .wp-block-goldenpress-logo-marquee::after {
  content: "";
  display: table;
  clear: both;
}
.wp-block-goldenpress-logo-marquee .logo-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}
.wp-block-goldenpress-logo-marquee .logo-marquee {
  display: flex;
  align-items: center;
  animation: scroll 20s linear infinite;
  gap: 120px;
  padding: 0 30px;
  will-change: transform;
}
.wp-block-goldenpress-logo-marquee .logo-slide {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  height: 120px;
}
.wp-block-goldenpress-logo-marquee .logo-slide img {
  max-width: 240px;
  max-height: 120px;
  width: auto;
  height: auto;
  pointer-events: none;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -o-object-fit: contain;
     object-fit: contain;
  transition: filter 0.3s ease;
}
@media (min-width: 1380px) {
  .wp-block-goldenpress-logo-marquee .logo-slide {
    height: 110px;
  }
  .wp-block-goldenpress-logo-marquee .logo-slide img {
    max-height: 70px;
  }
}
@media (min-width: 768px) and (max-width: 1379px) {
  .wp-block-goldenpress-logo-marquee .logo-slide {
    height: 120px;
  }
  .wp-block-goldenpress-logo-marquee .logo-slide img {
    max-height: 80px;
  }
}
@media (max-width: 768px) {
  .wp-block-goldenpress-logo-marquee {
    padding: 15px 0;
  }
  .wp-block-goldenpress-logo-marquee .logo-marquee {
    gap: 40px;
    padding: 0 20px;
  }
  .wp-block-goldenpress-logo-marquee .logo-slide {
    flex: 0 0 auto;
    height: 90px;
  }
  .wp-block-goldenpress-logo-marquee .logo-slide img {
    max-width: 180px;
    max-height: 90px;
  }
}
@media (max-width: 480px) {
  .wp-block-goldenpress-logo-marquee {
    padding: 10px 0;
  }
  .wp-block-goldenpress-logo-marquee .logo-marquee {
    gap: 30px;
    padding: 0 15px;
  }
  .wp-block-goldenpress-logo-marquee .logo-slide {
    flex: 0 0 auto;
    height: 70px;
  }
  .wp-block-goldenpress-logo-marquee .logo-slide img {
    max-width: 140px;
    max-height: 70px;
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.wp-block-goldenpress-awards-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  box-sizing: border-box;
}
.wp-block-goldenpress-awards-marquee .awards-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}
.wp-block-goldenpress-awards-marquee .awards-marquee {
  display: flex;
  align-items: center;
  animation: scroll 20s linear infinite;
  gap: 8px;
  padding: 0 30px;
  will-change: transform;
}
@media (max-width: 768px) {
  .wp-block-goldenpress-awards-marquee .awards-marquee {
    animation: scroll 6s linear infinite;
  }
}
.wp-block-goldenpress-awards-marquee .awards-slide.card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  height: 200px;
  width: 320px;
  box-sizing: border-box;
  text-align: center;
  padding: 20px;
}
.wp-block-goldenpress-awards-marquee .awards-slide.card .awards-logo {
  width: 200px;
  height: 80px;
  flex: 0 0 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  margin-top: 8px;
}
.wp-block-goldenpress-awards-marquee .awards-slide.card .awards-logo img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}
.wp-block-goldenpress-awards-marquee .awards-slide.card h3 {
  margin-bottom: 0;
}
.wp-block-goldenpress-awards-marquee .awards-slide.card h4 {
  color: var(--caption-text-color);
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.carousel {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.carousel-item-container {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  display: block;
  height: 0;
  visibility: hidden;
}

.carousel-item-container.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
  height: auto;
  visibility: visible;
}

.carousel-item-container.slide-next {
  transform: translateX(100%);
  opacity: 0;
}

.carousel-item-container.slide-prev {
  transform: translateX(-100%);
  opacity: 0;
}

.carousel-item-container.is-active.slide-next,
.carousel-item-container.is-active.slide-prev {
  transform: translateX(0);
  opacity: 1;
}

.carousel-item {
  width: 100%;
  background: var(--slate-950);
  border: 1px solid var(--slate-700);
  border-radius: 8px;
  padding: 20px;
  height: 100%;
}

.carousel-item blockquote {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
}

.carousel-item blockquote p.testimonial-quote {
  margin-bottom: 1rem;
  margin-top: 0;
  font-size: 1.125rem;
  line-height: 1.6;
  font-style: italic;
  order: 1;
}

@media (min-width: 900px) {
  .carousel-item {
    padding: 40px;
  }
  .carousel-item blockquote {
    flex-direction: column;
    align-items: unset;
  }
  .carousel-item blockquote p.testimonial-quote {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
  }
  .carousel-item-container {
    padding: 20px;
  }
}
.carousel-item p, .carousel-item small {
  color: white;
}

.testimonial-author-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.testimonial-photo {
  order: 1;
}

.testimonial-author-info {
  order: 2;
}

.testimonial-name {
  order: 1;
}

.testimonial-role {
  order: 2;
}

.testimonial-logo {
  order: 3;
}

@media (max-width: 900px) {
  .carousel-item blockquote {
    display: flex;
    flex-direction: column;
  }
  .testimonial-author-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    order: 2;
  }
  .testimonial-quote {
    order: 1;
  }
  .testimonial-photo {
    order: 1;
  }
  .testimonial-author-info {
    order: 2;
  }
  .testimonial-name {
    order: 1;
  }
  .testimonial-role {
    order: 2;
  }
  .testimonial-logo {
    order: 3;
  }
  .testimonial-photo,
  .testimonial-author-info,
  .testimonial-logo {
    margin-bottom: 0.5rem;
  }
  .testimonial-logo {
    margin-bottom: 0;
  }
  .quote-author-logo-container {
    margin-left: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 900px) {
  .testimonial-author-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    order: 2;
  }
  .testimonial-photo {
    order: 1;
    flex-shrink: 0;
  }
  .testimonial-author-info {
    order: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .testimonial-name {
    order: 1;
  }
  .testimonial-role {
    order: 2;
  }
  .testimonial-logo {
    order: 3;
    margin-left: auto;
  }
}
.quote-author-logo-container {
  display: flex;
  align-items: center;
}

.quote-author-logo {
  display: block;
  max-height: 35px;
  width: auto;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
}

.quote-author-portrait {
  border-radius: 200px;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  width: 64px;
  height: 64px;
  min-width: unset;
  border-radius: 50%;
  border: 4px solid var(--slate-950);
  background: none;
  color: #F47B3C;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-sizing: border-box;
  transform: translateY(-50%);
  z-index: 2;
}

.carousel-nav:hover {
  background: #F47B3C;
  color: #1B232A;
  outline: none;
}

.carousel-nav--prev {
  left: calc(50% - 320px - 80px);
  right: auto;
}

.carousel-nav--next {
  right: calc(50% - 320px - 80px);
  left: auto;
}

@media (max-width: 900px) {
  .carousel {
    max-width: 100%;
    overflow: hidden;
    height: auto;
    min-height: 200px;
  }
  .carousel-nav {
    display: none !important;
  }
  .carousel-dots {
    display: block;
    position: relative;
    margin-top: 20px;
  }
  .carousel-item-container {
    padding: 0;
  }
  .wp-block-goldenpress-testimonials-carousel {
    padding-bottom: 60px;
    overflow: hidden;
  }
}
.wp-block-goldenpress-testimonials-carousel {
  position: relative;
  padding-bottom: 50px;
}

.carousel-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
  text-align: center;
  clear: both;
}

.carousel-dots button:hover,
.carousel-dots button:focus {
  background: none;
  border: none;
  outline: none;
}

.carousel-dot {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
  background: none;
  border: none;
  min-width: unset;
}
.carousel-dot:before {
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 5px;
  margin-top: 5px;
  width: 10px;
  height: 10px;
  content: "";
  text-align: center;
  opacity: 0.5;
  background: #F47B3C;
  border-radius: 50%;
  transition: opacity 0.2s ease;
}
.carousel-dot.slick-active:before {
  margin-left: 0;
  margin-top: 0;
  opacity: 1;
  width: 18px;
  height: 18px;
  border: 2px solid #F47B3C;
  background: #F47B3C;
}

@media (min-width: 900px) {
  .carousel-dots {
    display: none !important;
  }
  .carousel-nav {
    display: flex !important;
  }
  .carousel-item {
    padding: 40px;
  }
  .carousel-item blockquote {
    flex-direction: column;
    align-items: unset;
  }
  .carousel-item blockquote p.testimonial-quote {
    margin-top: unset;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
  }
  .carousel-item-container {
    padding: 20px;
  }
}
.carousel-height-wrapper {
  position: relative;
  width: 100%;
  transition: height 0.5s ease;
}

.single-content-area {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 4rem auto;
  width: 100%;
}

.post-toc {
  width: 260px;
  flex-shrink: 0;
  position: sticky;
  top: 120px;
  padding: 0rem 1rem 2rem 1.5rem;
  margin-bottom: 2rem;
  max-height: calc(100vh - 160px);
  border-right: 1px solid var(--color-border, #eee);
  overflow-y: scroll;
}

.post-toc h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
  color: var(--primary-accent-500, #e4572e);
  margin-left: -18px;
}

.post-toc nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-toc nav ul li {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

.post-toc nav ul li ul {
  margin-left: 1.25rem;
  margin-top: 0.25rem;
}

.post-toc a {
  color: var(--color-text, #222);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
  line-height: 1.4;
  font-family: var(--sans-serif-font-family);
}

.post-toc a:hover,
.post-toc a.active {
  color: var(--primary-accent-500, #e4572e);
  text-decoration: underline;
}

@media (max-width: 1023px) {
  .post-toc {
    display: none;
  }
  .single-content-area {
    flex-direction: column;
    gap: 0;
  }
}
.single-content-area.no-toc {
  flex-direction: column;
  gap: 0;
}
.single-content-area.no-toc .single-main-content {
  flex: none;
  width: 100%;
}

.single-main-content {
  flex: 1 1 0%;
  min-width: 0;
}

/* ===================================================================
   POPUP STYLES
   =================================================================== */
/* Prevent body scroll when popup is open */
body.popup-open {
  overflow: hidden;
  height: 100vh;
}

/* Popup Overlay */
.goldenpress-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.goldenpress-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Popup Container */
.goldenpress-popup-container {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main Popup */
.goldenpress-popup {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-lg);
  border: 1px solid var(--gray-200);
  position: relative;
  max-width: 720px;
  width: 100%;
  max-height: 100%;
  overflow: hidden;
  transform: scale(0.8) translateY(20px);
  transition: transform 0.3s ease;
  /* Focus styles for accessibility */
}
.active .goldenpress-popup {
  transform: scale(1) translateY(0);
}
.goldenpress-popup:focus {
  outline: 2px solid var(--primary-accent-500);
  outline-offset: 2px;
}

/* Close Button */
.goldenpress-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  font-size: 2rem !important;
  color: var(--gray-500);
}
.goldenpress-popup-close:hover {
  background: var(--gray-100);
  color: var(--gray-700);
  transform: scale(1.1);
}
.goldenpress-popup-close:focus {
  outline: 2px solid var(--primary-accent-500);
  outline-offset: 2px;
}
.goldenpress-popup-close span {
  line-height: 1;
  font-weight: 300;
}

/* Popup Content */
.goldenpress-popup-content {
  padding: 2.5rem 2rem 2rem;
  overflow-y: auto;
  max-height: 80vh;
  /* Custom scrollbar */
}
.goldenpress-popup-content::-webkit-scrollbar {
  width: 8px;
}
.goldenpress-popup-content::-webkit-scrollbar-track {
  background: var(--gray-100);
  border-radius: 4px;
}
.goldenpress-popup-content::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 4px;
}
.goldenpress-popup-content::-webkit-scrollbar-thumb:hover {
  background: var(--gray-400);
}

/* ===================================================================
   RESPONSIVE DESIGN
   =================================================================== */
/* Tablet */
@media (max-width: 768px) {
  .goldenpress-popup-overlay {
    padding: 0.5rem;
  }
  .goldenpress-popup {
    max-width: 95vw;
  }
  .goldenpress-popup .goldenpress-popup-content {
    padding: 2rem 1.5rem 1.5rem;
  }
  .goldenpress-popup .goldenpress-popup-close {
    width: 36px;
    height: 36px;
    top: 0.75rem;
    right: 0.75rem;
  }
}
/* Mobile */
@media (max-width: 480px) {
  .goldenpress-popup-overlay {
    padding: 0.25rem;
    align-items: flex-start;
    padding-top: 2rem;
  }
  .goldenpress-popup {
    max-width: 100%;
    margin: 0;
    max-height: calc(100vh - 4rem);
  }
  .goldenpress-popup .goldenpress-popup-content {
    padding: 1.5rem 1rem 1rem;
    max-height: calc(100vh - 8rem);
  }
  .goldenpress-popup .goldenpress-popup-close {
    width: 32px;
    height: 32px;
    top: 0.5rem;
    right: 0.5rem;
  }
}
/* ===================================================================
   ACCESSIBILITY ENHANCEMENTS
   =================================================================== */
/* High contrast mode support */
@media (prefers-contrast: high) {
  .goldenpress-popup {
    border: 2px solid var(--slate-900);
  }
  .goldenpress-popup-close {
    border: 1px solid var(--slate-600);
  }
}
/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .goldenpress-popup-overlay,
  .goldenpress-popup,
  .goldenpress-popup-close {
    transition: none;
  }
  .goldenpress-popup {
    transform: none;
  }
}
/* Focus visible support */
@supports selector(:focus-visible) {
  .goldenpress-popup-close:focus {
    outline: none;
  }
  .goldenpress-popup-close:focus-visible {
    outline: 2px solid var(--primary-accent-500);
    outline-offset: 2px;
  }
}
/* ===================================================================
   ANIMATION STATES
   =================================================================== */
/* Loading state */
.goldenpress-popup.loading .goldenpress-popup-content {
  opacity: 0.7;
  pointer-events: none;
}
.goldenpress-popup.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  margin: -16px 0 0 -16px;
  border: 3px solid var(--gray-300);
  border-top: 3px solid var(--primary-accent-500);
  border-radius: 50%;
  animation: popup-spin 1s linear infinite;
}

@keyframes popup-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Success state */
.goldenpress-popup.success::before {
  content: "✓";
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 32px;
  height: 32px;
  background: var(--green-100);
  color: var(--green-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Error state */
.goldenpress-popup.error::before {
  content: "!";
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 32px;
  height: 32px;
  background: var(--red-100);
  color: var(--red-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.wp-social-link::before {
  display: none;
}

:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-linkedin {
  background: none;
}

.wp-block-social-link:hover {
  transform: unset;
}

/* --------------------------------------------------------- */
/* Success Story Styles */
.success-story {
  margin-bottom: 4rem;
}
.success-story .success-story-header {
  background: var(--wp--preset--color--background);
  padding: 4rem 0;
  margin-bottom: 3rem;
}
.success-story .success-story-header .success-story-featured-image {
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
}
.success-story .success-story-header .success-story-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}
.success-story .success-story-header .success-story-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--wp--preset--color--foreground);
}
.success-story .success-story-header .success-story-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 2rem;
  background: var(--wp--preset--color--background-alt);
  border-radius: 8px;
}
.success-story .success-story-header .success-story-meta .meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.success-story .success-story-header .success-story-meta .meta-item .meta-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--wp--preset--color--primary);
}
.success-story .success-story-header .success-story-meta .meta-item .meta-value {
  font-size: 1.25rem;
  font-weight: 600;
}
.success-story .success-story-content {
  max-width: 800px;
  margin: 0 auto;
}
.success-story .success-story-content .impact-metrics {
  margin: 3rem 0;
  padding: 2rem;
  background: var(--wp--preset--color--background-alt);
  border-radius: 8px;
}
.success-story .success-story-content .impact-metrics h2 {
  margin-bottom: 1.5rem;
  color: var(--wp--preset--color--primary);
}
.success-story .success-story-content .testimonial {
  margin: 3rem 0;
  padding: 2rem;
  background: var(--wp--preset--color--background-alt);
  border-radius: 8px;
  position: relative;
}
.success-story .success-story-content .testimonial::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 2rem;
  font-size: 4rem;
  color: var(--wp--preset--color--primary);
  opacity: 0.2;
}
.success-story .success-story-content .testimonial blockquote {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.25rem;
  line-height: 1.6;
  font-style: italic;
}
.success-story .success-story-content .testimonial blockquote footer {
  margin-top: 1.5rem;
  font-style: normal;
}
.success-story .success-story-content .testimonial blockquote footer cite {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-style: normal;
  color: var(--wp--preset--color--primary);
}
.success-story .success-story-content .testimonial blockquote footer cite .client-title {
  font-size: 0.875rem;
  color: var(--wp--preset--color--text-light);
}
.success-story .success-story-navigation {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--wp--preset--color--border);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.success-story .success-story-navigation .nav-link {
  flex: 1;
  padding: 1.5rem;
  background: var(--wp--preset--color--background-alt);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.success-story .success-story-navigation .nav-link:hover {
  background: var(--wp--preset--color--background-dark);
}
.success-story .success-story-navigation .nav-link.prev {
  text-align: left;
}
.success-story .success-story-navigation .nav-link.next {
  text-align: right;
}
.success-story .success-story-navigation .nav-link .nav-label {
  display: block;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--wp--preset--color--primary);
  margin-bottom: 0.5rem;
}
.success-story .success-story-navigation .nav-link .nav-title {
  display: block;
  font-weight: 600;
  color: var(--wp--preset--color--foreground);
}

/* Success Stories Archive */
.success-stories-archive {
  padding: 4rem 0;
}
.success-stories-archive .archive-header {
  text-align: center;
  margin-bottom: 4rem;
}
.success-stories-archive .archive-header .archive-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.success-stories-archive .archive-header .archive-description {
  max-width: 600px;
  margin: 0 auto;
  color: var(--wp--preset--color--text-light);
}
.success-stories-archive .success-stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.success-stories-archive .success-story-card {
  background: var(--wp--preset--color--background);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.success-stories-archive .success-story-card:hover {
  transform: translateY(-4px);
}
.success-stories-archive .success-story-card:hover .read-more {
  color: var(--wp--preset--color--primary);
}
.success-stories-archive .success-story-card .success-story-link {
  text-decoration: none;
  color: inherit;
}
.success-stories-archive .success-story-card .card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.success-stories-archive .success-story-card .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.success-stories-archive .success-story-card .card-image img:hover {
  transform: scale(1.05);
}
.success-stories-archive .success-story-card .card-content {
  padding: 1.5rem;
}
.success-stories-archive .success-story-card .card-content .card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--wp--preset--color--foreground);
}
.success-stories-archive .success-story-card .card-content .card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}
.success-stories-archive .success-story-card .card-content .card-meta .meta-item {
  color: var(--wp--preset--color--text-light);
}
.success-stories-archive .success-story-card .card-content .card-meta .meta-item .meta-label {
  color: var(--wp--preset--color--primary);
  margin-right: 0.25rem;
}
.success-stories-archive .success-story-card .card-content .card-excerpt {
  margin-bottom: 1.5rem;
  color: var(--wp--preset--color--text);
}
.success-stories-archive .success-story-card .card-content .read-more {
  display: inline-block;
  font-weight: 600;
  color: var(--wp--preset--color--text);
  transition: color 0.3s ease;
}
.success-stories-archive .pagination {
  text-align: center;
  margin-top: 3rem;
}
.success-stories-archive .pagination .page-numbers {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  border-radius: 4px;
  background: var(--wp--preset--color--background-alt);
  color: var(--wp--preset--color--text);
  text-decoration: none;
  transition: all 0.3s ease;
}
.success-stories-archive .pagination .page-numbers:hover, .success-stories-archive .pagination .page-numbers.current {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--background);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .success-story .success-story-header {
    padding: 2rem 0;
  }
  .success-story .success-story-header .success-story-title {
    font-size: 2rem;
  }
  .success-story .success-story-header .success-story-meta {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .success-story .success-story-navigation {
    flex-direction: column;
  }
  .success-story .success-story-navigation .nav-link {
    text-align: center;
  }
  .success-stories-archive .archive-header .archive-title {
    font-size: 2rem;
  }
  .success-stories-archive .success-stories-grid {
    grid-template-columns: 1fr;
  }
}
/* Categories Widget Styles */
.categories-widget .categories-list {
  padding-left: 20px;
}
.categories-widget .categories-list .parent-category {
  margin-bottom: 0;
}
.categories-widget .categories-list .parent-category > a {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--light-mode-body-text);
  text-decoration: none;
}
.categories-widget .categories-list .child-categories {
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 0;
  border-left: 2px solid var(--wp--preset--color--border);
}
.categories-widget .categories-list .child-categories li {
  margin-bottom: 0.25rem;
}
.categories-widget .categories-list .child-categories li:last-child {
  margin-bottom: 0;
}
.categories-widget .categories-list .child-categories li::before {
  content: "◦";
  opacity: 0.5;
}
.categories-widget .categories-list .child-categories li a {
  color: var(--wp--preset--color--text);
  font-size: 0.95em;
  text-decoration: none;
}
.categories-widget .categories-list .child-categories li a:hover {
  color: var(--wp--preset--color--primary);
}

.tags-cloud a {
  text-decoration: none;
}

/* Mobile styles for categories widget */
@media (max-width: 768px) {
  .categories-widget .categories-list li::before {
    margin-left: -0.5em;
  }
}
main ul.page-numbers li::before {
  display: none;
}

.pagination {
  text-align: center;
  margin-top: 3rem;
}
.pagination .page-numbers {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  background: var(--gray-200);
}
.pagination .page-numbers:hover {
  background: var(--primary-accent-500);
  color: var(--white);
}

span.page-numbers.dots {
  background: none;
}
span.page-numbers.dots:hover {
  background: none;
  color: unset !important;
}/*# sourceMappingURL=main.css.map */