:root {
  --container: min(1220px, calc(100% - 36px));
  --bg: #f4f7fb;
  --bg-alt: #edf2f8;
  --surface: #ffffff;
  --surface-2: #f8fbff;
  --surface-3: #f0f5fb;
  --text: #243247;
  --text-strong: #142033;
  --muted: #66758a;
  --muted-2: #8a97a9;
  --border: #dbe4ef;
  --border-strong: #c7d3e3;
  --accent: #173b67;
  --accent-2: #28598f;
  --accent-soft: #eaf1f9;
  --accent-soft-2: rgba(23, 59, 103, 0.08);
  --success: #2b6c54;
  --shadow-sm: 0 8px 18px rgba(22, 32, 51, 0.05);
  --shadow-md: 0 18px 40px rgba(22, 32, 51, 0.08);
  --shadow-lg: 0 28px 60px rgba(22, 32, 51, 0.12);
  --radius-xl: 26px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --header-bg: rgba(255, 255, 255, 0.9);
  --input-bg: #fbfdff;
  --input-border: #d3dfed;
  --focus: 0 0 0 4px rgba(40, 89, 143, 0.14);
}

body.theme-business-dark {
  --bg: #0f1825;
  --bg-alt: #111f30;
  --surface: #172230;
  --surface-2: #1c2938;
  --surface-3: #223143;
  --text: #d5deea;
  --text-strong: #f0f5fb;
  --muted: #aebacc;
  --muted-2: #8f9db2;
  --border: rgba(177, 195, 220, 0.14);
  --border-strong: rgba(177, 195, 220, 0.28);
  --accent: #9ec1e8;
  --accent-2: #cadef4;
  --accent-soft: rgba(158, 193, 232, 0.12);
  --accent-soft-2: rgba(158, 193, 232, 0.14);
  --shadow-sm: 0 8px 18px rgba(0, 0, 0, 0.14);
  --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 28px 60px rgba(0, 0, 0, 0.28);
  --header-bg: rgba(15, 24, 37, 0.9);
  --input-bg: #162232;
  --input-border: rgba(177, 195, 220, 0.2);
  --focus: 0 0 0 4px rgba(158, 193, 232, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body.cfd5c33 {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(23, 59, 103, 0.08), transparent 30%),
    linear-gradient(180deg, var(--bg-alt), var(--bg));
  background-image: var(--bg-image);
  background-position: left top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow-x: hidden;
}

body.cfd5c33::before{
  content: "";
  position: fixed;
  inset: 0;
  background: var(--page-bg-overlay);
  backdrop-filter: blur(3px);
  pointer-events: none;
  z-index: 0;
}

body.cfd5c33.theme-business-dark::before {
  background:
    linear-gradient(135deg, rgba(158, 193, 232, 0.09), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

::selection {
  background: rgba(40, 89, 143, 0.18);
  color: var(--text-strong);
}

.cfd5c44 {
  position: relative;
  z-index: 1;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.cfd5c22 {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 100;
  background: var(--text-strong);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
}

.cfd5c22:focus {
  left: 14px;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 80;
  background: rgba(20, 32, 51, 0.06);
}

.scroll-progress__bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}



body.theme-business-dark .cfd5c10 {
  border-bottom-color: rgba(255, 255, 255, 0.05);
  box-shadow: none;
}





body.theme-business-dark .brand-wrap {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.brand-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.cfd5c52,
.cfd5c39,
.brand-date {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

body.theme-business-dark .cfd5c52,
body.theme-business-dark .cfd5c39,
body.theme-business-dark .brand-date {
  background: rgba(255, 255, 255, 0.03);
}

.cfd5c52 {
  color: var(--accent);
  border-color: rgba(40, 89, 143, 0.22);
}

body.theme-business-dark .cfd5c52 {
  border-color: rgba(158, 193, 232, 0.2);
  color: var(--accent);
}

.site-title {
  margin: 0;
  max-width: 900px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.15rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--text-strong);
  transition: color 180ms ease, text-shadow 180ms ease;
}

.site-title a {
  display: inline-block;
}

body.cfd5c33.brand-title-light .site-title,
body.cfd5c33.brand-title-light .site-title a {
  color: #f8fbff;
  text-shadow: 0 2px 16px rgba(7, 12, 19, 0.42), 0 1px 3px rgba(7, 12, 19, 0.5);
}

body.cfd5c33.brand-title-dark .site-title,
body.cfd5c33.brand-title-dark .site-title a {
  color: #142033;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3), 0 10px 24px rgba(255, 255, 255, 0.06);
}

.site-title::before {
  content: none;
  display: none;
}

.cfd5c28 {
  max-width: 740px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}



.cfd5c1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.menu-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.cfd5c43 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.cfd5c43:hover,
.cfd5c43:focus-visible {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: rgba(40, 89, 143, 0.12);
  outline: none;
}

.cfd5c43.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 14px 30px rgba(23, 59, 103, 0.18);
}

body.theme-business-dark .cfd5c43.active {
  color: #0f1825;
}

.menu-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text-strong);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

body.theme-business-dark .icon-btn {
  background: rgba(255, 255, 255, 0.03);
}

.icon-btn:hover,
.icon-btn:focus-visible {
  transform: translateY(-1px);
  border-color: var(--border-strong);
  outline: none;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu > summary {
  list-style: none;
}

.mobile-menu > summary::-webkit-details-marker {
  display: none;
}

.cfd5c12 {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

body.theme-business-dark .cfd5c12 {
  background: rgba(255, 255, 255, 0.03);
}

.cfd5c6,
.cfd5c6::before,
.cfd5c6::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  position: relative;
  transition: transform 200ms ease, opacity 200ms ease;
}

.cfd5c6::before,
.cfd5c6::after {
  content: "";
  position: absolute;
  left: 0;
}

.cfd5c6::before { top: -6px; }
.cfd5c6::after { top: 6px; }

.mobile-menu[open] .cfd5c6 { background: transparent; }
.mobile-menu[open] .cfd5c6::before { transform: translateY(6px) rotate(45deg); }
.mobile-menu[open] .cfd5c6::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: min(320px, calc(100vw - 32px));
  padding: 14px;
  display: grid;
  gap: 8px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.cfd5c10 {
  position: static;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 0;
  box-shadow: none;
}

.cfd5c10.is-scrolled {
  box-shadow: none;
}

.brand-wrap {
  padding: 18px 0 12px;
  border-bottom: 0;
}

.brand-meta {
  margin-bottom: 10px;
}

.menu-wrap {
  position: sticky;
  top: 0;
  z-index: 70;
  padding: 10px 0;
  background: var(--header-bg);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(20, 32, 51, 0.08);
  box-shadow: none;
}

.menu-wrap.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.cfd5c27 {
  padding: 24px 0 72px;
}

.cfd5c41 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 30px;
  align-items: start;
}

.content {
  min-width: 0;
}

.card,
.panel,
.sidebar-card,
.widget {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  box-shadow: var(--shadow-md);
}

.card,
.cfd5c17 {
  overflow: hidden;
}

.card::before,
.cfd5c17::before {
  content: "";
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), rgba(40, 89, 143, 0.4), transparent 88%);
}

.article-header {
  padding: 38px 42px 0;
}

.article-header h1,
.contact-title {
  margin: 0;
  color: var(--text-strong);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.article-body {
  padding: 0 42px 42px;
}

.article-body p {
  margin: 0 0 1.25rem;
  color: var(--text);
  font-size: 1.06rem;
  line-height: 1.9;
}

.article-body strong {
  color: var(--text-strong);
}

.article-body h2 {
  margin: 2.5rem 0 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  color: var(--text-strong);
  font-size: 1.48rem;
  font-weight: 800;
  line-height: 1.3;
}

.hero {
  margin: 2rem 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-3);
  box-shadow: var(--shadow-sm);
}

.hero img {
  display: block;
  width: 100%;
  height: auto;
}

.cfd5c45 {
  display: grid;
  gap: 22px;
  position: sticky;
  top: 132px;
}

.sidebar-card,
.widget {
  padding: 24px;
}

.sidebar-card h3,
.cfd5c57 {
  margin: 0 0 16px;
  color: var(--text-strong);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sidebar-search,
.cfd5c31 {
  display: grid;
  gap: 12px;
}

.sidebar-search input,
.search-input-2,
.cfd5c56,
.cfd5c30 {
  width: 100%;
  border: 1px solid var(--input-border);
  border-radius: 14px;
  background: var(--input-bg);
  color: var(--text-strong);
  padding: 15px 16px;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.sidebar-search input::placeholder,
.search-input-2::placeholder,
.cfd5c56::placeholder,
.cfd5c30::placeholder {
  color: var(--muted-2);
}

.sidebar-search input:focus,
.search-input-2:focus,
.cfd5c56:focus,
.cfd5c30:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: var(--focus);
}

.sidebar-search button,
.cfd5c47,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: none;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(23, 59, 103, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

body.theme-business-dark .sidebar-search button,
body.theme-business-dark .cfd5c47,
body.theme-business-dark .btn-primary {
  color: #0f1825;
}

.sidebar-search button:hover,
.cfd5c47:hover,
.btn-primary:hover,
.sidebar-search button:focus-visible,
.cfd5c47:focus-visible,
.btn-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(23, 59, 103, 0.24);
  outline: none;
}

.cfd5c54,
.cfd5c11 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.cfd5c54 a,
.cfd5c11 a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  padding: 11px 14px;
  border-radius: 14px;
  background: var(--surface-3);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.cfd5c54 a::after,
.cfd5c11 a::after {
  content: "↗";
  color: var(--muted-2);
  font-size: 0.95rem;
}

.cfd5c54 a:hover,
.cfd5c11 a:hover,
.cfd5c54 a:focus-visible,
.cfd5c11 a:focus-visible {
  transform: translateX(2px);
  border-color: var(--border-strong);
  color: var(--text-strong);
  outline: none;
}

.cfd5c29,
.cfd5c15 {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0f1723;
  box-shadow: var(--shadow-sm);
}

.cfd5c29 iframe,
.cfd5c15 iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.cfd5c17 {
  padding: 0 0 34px;
}

.contact-title,
.cfd5c36,
.contact-form {
  padding-left: 34px;
  padding-right: 34px;
}

.contact-title {
  padding-top: 30px;
  margin-bottom: 12px;
}

.cfd5c36 {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  min-width: 0;
}

.cfd5c24 {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cfd5c30 {
  min-height: 200px;
  resize: vertical;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 85;
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-strong);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

body.theme-business-dark .back-to-top {
  background: rgba(23, 34, 48, 0.95);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

.cfd5c7 {
  padding: 28px 18px;
  text-align: center;
  background: #10233a;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  line-height: 1.7;
}

body.theme-business-dark .cfd5c7 {
  background: #0c141f;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .cfd5c41 {
    grid-template-columns: minmax(0, 1fr) 290px;
  }

  .article-header,
  .article-body {
    padding-left: 34px;
    padding-right: 34px;
  }
}

@media (max-width: 900px) {
  .cfd5c41 {
    grid-template-columns: 1fr;
  }

  .cfd5c45 {
    position: static;
  }

  .menu-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .cfd5c1 {
    gap: 12px;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 24px, 1220px);
  }

  .brand-wrap {
    padding-top: 24px;
    padding-bottom: 18px;
  }

  .site-title::before {
    margin-bottom: 10px;
    letter-spacing: 0.14em;
  }

  .article-header,
  .article-body,
  .contact-title,
  .cfd5c36,
  .contact-form {
    padding-left: 22px;
    padding-right: 22px;
  }

  .article-header {
    padding-top: 28px;
  }

  .article-body {
    padding-bottom: 28px;
  }

  .sidebar-card,
  .widget {
    padding: 18px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media (max-width: 680px) {
  .brand-wrap {
    padding-top: 16px;
    padding-bottom: 10px;
  }

  .cfd5c27 {
    padding-top: 20px;
  }
}
@media (max-width: 900px) {
  .cfd5c41 {
    grid-template-columns: 1fr;
  }

  .cfd5c45 {
    position: static;
  }

  .menu-links {
    display: none;
  }

  .mobile-menu {
    display: block;
    position: static;
  }

  .cfd5c1 {
    position: relative;
    gap: 12px;
  }

  .mobile-menu-panel {
    left: 0;
    right: 0;
    width: 100%;
    min-width: 0;
    padding: 16px;
    gap: 10px;
    z-index: 90;
  }

  .mobile-menu-panel .cfd5c43 {
    width: 100%;
    min-height: 52px;
    padding: 14px 18px;
    border-color: var(--border);
    background: var(--surface-2);
    box-shadow: var(--shadow-sm);
  }

  body.theme-business-dark .mobile-menu-panel .cfd5c43 {
    background: rgba(255, 255, 255, 0.04);
  }

  .mobile-menu-panel .cfd5c43.active {
    background: var(--accent);
    border-color: var(--accent);
  }
}





/* Generated theme override */
:root{
  --accent:#4b6aa3;
  --text:#374253;
  --title:#1b2639;
  --muted:#8b919b;
  --border:#e6eaf2;
  --surface:#ffffff;
  --surface-2:#fbfcfd;
  --footer:#2c3f60;
  --button:#3b5481;
  --button-text:#ffffff;
  --hero-overlay:rgba(75,106,163,0.09);
  --wf-accent:#4b6aa3;
  --wf-light-box-1:#f6f8fa;
  --wf-light-box-2:#fcfdfe;
  --wf-light-box-3:#f5f7fa;
  --wf-light-box-4:#fdfefe;
  --wf-panel-bg:linear-gradient(145deg,#f6f8fa,#fcfdfe);
  --wf-panel-border:#e6eaf2;
  --wf-panel-shadow:0 20px 56px rgba(75,106,163,0.1);
  --wf-site-title-bg:#f5f7fa;
  --wf-site-title-border:#e6eaf2;
  --wf-search-bg:#fdfefe;
  --wf-scroll-start:rgba(75,106,163,0.96);
  --wf-scroll-end:rgba(75,106,163,0.24);
}
.cfd5c40{background:var(--surface) !important;}
.cfd5c16,.widget,.cfd5c25,main article{background:var(--wf-light-box-1) !important;background-image:none !important;opacity:1 !important;border:1px solid #e6eaf2;box-shadow:0 18px 42px rgba(75,106,163,0.12);}
.cfd5c50,.cfd5c32,.cfd5c23,.cfd5c21,.cfd5c17{background:var(--wf-light-box-2) !important;background-image:none !important;opacity:1 !important;border:1px solid #e6eaf2;box-shadow:0 18px 42px rgba(75,106,163,0.12);}
.cfd5c46,#top-bar,#main-nav{background:var(--wf-light-box-3) !important;background-image:none !important;opacity:1 !important;border:1px solid #e6eaf2;box-shadow:0 18px 42px rgba(75,106,163,0.12);}
.cfd5c50,.cfd5c32,#top-bar,#main-nav,.cfd5c46{border-color:#e6eaf2;}
a:hover{color:#3f5989;}
.cfd5c2 img{display:block;width:100%;max-width:100%;height:auto;aspect-ratio:1024 / 683;object-fit:cover;border-radius:18px;}
.cfd5c8{display:block;width:100%;max-width:100%;aspect-ratio:560 / 315;height:auto;min-height:240px;border:0;border-radius:18px;background:#000;}
.cfd5c4{width:min(100%,420px) !important;max-width:100% !important;height:740px !important;aspect-ratio:9 / 16 !important;margin:0 auto;}
.widget .cfd5c8{margin:0 auto;}
.cfd5c18{margin:12px 0 0;font-size:14px;}
.cfd5c18 a{font-weight:700;text-decoration:underline;}
/* WF final opaque text container override start */
:root{--wf-final-box-1:#f8fafc;--wf-final-box-2:#fdf2f8;--wf-final-box-3:#fefce8;--wf-final-box-4:#f0f9ff;--wf-final-text:#334155;--wf-final-title:#111827;--wf-final-muted:#475569;--wf-final-border:rgba(15,23,42,.14);--wf-final-shadow:rgba(15,23,42,.10);}\nhtml body article,html body main article,html body main > section,html body main > div,html body [role="main"] article,html body [role="main"] section,html body [role="main"] > div,html body :where(article,section,div,aside)[class*="article"],html body :where(article,section,div,aside)[class*="Article"],html body :where(article,section,div,aside)[class*="content"],html body :where(article,section,div,aside)[class*="Content"],html body :where(article,section,div,aside)[class*="entry"],html body :where(article,section,div,aside)[class*="Entry"],html body :where(article,section,div,aside)[class*="post"],html body :where(article,section,div,aside)[class*="Post"],html body :where(article,section,div,aside)[class*="card"],html body :where(article,section,div,aside)[class*="Card"],html body :where(article,section,div,aside)[class*="panel"],html body :where(article,section,div,aside)[class*="Panel"],html body :where(article,section,div,aside)[class*="box"],html body :where(article,section,div,aside)[class*="Box"],html body :where(article,section,div,aside)[class*="widget"],html body :where(article,section,div,aside)[class*="Widget"],html body .content-card,html body .article-card,html body .post-card,html body .page-card,html body .contact-card,html body .contact-panel,html body .widget,html body section.widget,html body aside.widget,html body .sidebar .widget{background:var(--wf-final-box-1) !important;background-color:var(--wf-final-box-1) !important;background-image:none !important;opacity:1 !important;backdrop-filter:none !important;-webkit-backdrop-filter:none !important;color:var(--wf-final-text) !important;border:1px solid var(--wf-final-border) !important;box-shadow:0 18px 42px var(--wf-final-shadow) !important;}\nhtml body main > section:nth-of-type(2n),html body main > div:nth-of-type(2n),html body article:nth-of-type(2n),html body :where(article,section,div,aside)[class*="card"]:nth-of-type(2n),html body :where(article,section,div,aside)[class*="panel"]:nth-of-type(2n),html body :where(article,section,div,aside)[class*="content"]:nth-of-type(2n),html body .widget:nth-of-type(2n){background:var(--wf-final-box-2) !important;background-color:var(--wf-final-box-2) !important;background-image:none !important;}\nhtml body main > section:nth-of-type(3n),html body main > div:nth-of-type(3n),html body article:nth-of-type(3n),html body :where(article,section,div,aside)[class*="card"]:nth-of-type(3n),html body :where(article,section,div,aside)[class*="panel"]:nth-of-type(3n),html body :where(article,section,div,aside)[class*="content"]:nth-of-type(3n),html body .widget:nth-of-type(3n){background:var(--wf-final-box-3) !important;background-color:var(--wf-final-box-3) !important;background-image:none !important;}\nhtml body article.page,html body .post,html body .hentry{background:var(--wf-final-box-4) !important;background-color:var(--wf-final-box-4) !important;background-image:none !important;opacity:1 !important;color:var(--wf-final-text) !important;}\nhtml body article :where(.entry-content,.post-content,.article-body,.article-content,.content,.copy,.text),html body main :where(.entry-content,.post-content,.article-body,.article-content,.content,.copy,.text),html body :where(article,section,div,aside)[class*="card"] :where(.entry-content,.post-content,.article-body,.article-content,.content,.copy,.text),html body :where(article,section,div,aside)[class*="panel"] :where(.entry-content,.post-content,.article-body,.article-content,.content,.copy,.text){background:transparent !important;background-image:none !important;opacity:1 !important;box-shadow:none !important;backdrop-filter:none !important;-webkit-backdrop-filter:none !important;}\nhtml body article::before,html body article::after,html body main > section::before,html body main > section::after,html body main > div::before,html body main > div::after,html body :where(article,section,div,aside)[class*="card"]::before,html body :where(article,section,div,aside)[class*="card"]::after,html body :where(article,section,div,aside)[class*="panel"]::before,html body :where(article,section,div,aside)[class*="panel"]::after,html body :where(article,section,div,aside)[class*="content"]::before,html body :where(article,section,div,aside)[class*="content"]::after{background:transparent !important;background-image:none !important;opacity:0 !important;box-shadow:none !important;backdrop-filter:none !important;-webkit-backdrop-filter:none !important;pointer-events:none !important;}\nhtml body article :where(p,li,span,div,blockquote,small,strong,em),html body main > section :where(p,li,span,div,blockquote,small,strong,em),html body main > div :where(p,li,span,div,blockquote,small,strong,em),html body :where(article,section,div,aside)[class*="card"] :where(p,li,span,div,blockquote,small,strong,em),html body :where(article,section,div,aside)[class*="panel"] :where(p,li,span,div,blockquote,small,strong,em),html body :where(article,section,div,aside)[class*="content"] :where(p,li,span,div,blockquote,small,strong,em),html body .widget :where(p,li,span,div,blockquote,small,strong,em){color:var(--wf-final-text) !important;}\nhtml body article :where(h1,h2,h3,h4,h5,h6),html body main > section :where(h1,h2,h3,h4,h5,h6),html body main > div :where(h1,h2,h3,h4,h5,h6),html body :where(article,section,div,aside)[class*="card"] :where(h1,h2,h3,h4,h5,h6),html body :where(article,section,div,aside)[class*="panel"] :where(h1,h2,h3,h4,h5,h6),html body :where(article,section,div,aside)[class*="content"] :where(h1,h2,h3,h4,h5,h6),html body .widget :where(h1,h2,h3,h4,h5,h6){color:var(--wf-final-title) !important;}\nhtml body article a,html body main > section a,html body main > div a,html body :where(article,section,div,aside)[class*="card"] a,html body :where(article,section,div,aside)[class*="panel"] a,html body :where(article,section,div,aside)[class*="content"] a,html body .widget a{color:var(--wf-accent, var(--accent, #2563eb)) !important;}\nhtml body article small,html body article .muted,html body main > section small,html body main > section .muted,html body main > div small,html body main > div .muted,html body .widget small,html body .widget .muted{color:var(--wf-final-muted) !important;}\n/* WF final opaque text container override end */
