.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ---------------------------
   Scoped Article Styling
   Apply only to sections/containers
   with the class "scoped-article"
---------------------------- */

.scoped-article {
  /* Layout & rhythm */
  --article-max: 850px;
  --font-base: clamp(16px, 1.2vw + 12px, 18px);
  --line: 1.75;                 /* base line-height */
  --space-1: 0.5rem;            /* fine spacing */
  --space-2: 0.9rem;            /* paragraph gap */
  --space-3: 1.4rem;            /* h3 bottom gap */
  --space-4: 2.2rem;            /* section gap */

  /* Color system */
  --ink-1: #121417;             /* headings/body on light */
  --ink-2: #3a3f45;             /* secondary text */
  --ink-faint: #dfe3e8;         /* dividers */
  --accent: #BF9B30;            /* heading accent underline */
  --card: #ffffff;              /* canvas */
  --canvas: #f7f8fa;            /* page background */

  /* Typography */
  --font-ui: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  --font-serif: "Merriweather", Georgia, "Times New Roman", serif;

  background: var(--card);
  color: var(--ink-1);
  font-family: var(--font-ui);
  font-size: var(--font-base);
  line-height: var(--line);
  margin-left: auto;
  margin-right: auto;
  max-width: var(--article-max);
  padding: clamp(20px, 3.2vw, 40px);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
}

/* Headings */
.scoped-article h3 {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: clamp(1.25rem, 0.9rem + 1.2vw, 1.6rem);
  letter-spacing: 0.2px;
  color: var(--ink-1);
  margin-top: var(--space-4);
  margin-bottom: var(--space-3);
  line-height: 1.3;
  position: relative;
}

/* Subtle accent underline */
.scoped-article h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 64px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.9;
}

/* First heading tighter */
.scoped-article h3:first-of-type {
  margin-top: 0.2rem;
}

/* Paragraphs: All now share the same style */
.scoped-article p {
  margin: 0 0 var(--space-2) 0;
  color: var(--ink-1);
  font-weight: 430;
  font-size: clamp(1.05rem, 0.9rem + 0.5vw, 1.2rem);
  font-family: var(--font-ui);
}

/* Tighten spacing */
.scoped-article h3 + p {
  margin-top: calc(var(--space-1) * -0.2);
}

.scoped-article p + h3 {
  margin-top: var(--space-4);
}

/* Links (if present) */
.scoped-article p a {
  color: var(--accent);
  text-underline-offset: 2px;
  text-decoration-thickness: 2px;
}
.scoped-article p a:hover {
  text-decoration: underline;
}

/* Print friendly */
@media print {
  .scoped-article {
    box-shadow: none;
    padding: 24px;
    background: #fff;
  }
  .scoped-article h3::after { display: none; }
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  .scoped-article {
    --ink-1: #e9edf2;
    --ink-2: #c7cdd6;
    --ink-faint: #2a2f37;
    --accent: #6ea8ff;
    --card: #121418;
    --canvas: #0c0e12;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }
  .scoped-article h3::after { opacity: 0.8; }
}/* End custom CSS */