﻿/*
 * FITCO Knowledge Articles and Case Studies
 * Clean route-scoped design. Existing slugs and HTML stay unchanged.
 */

.fitco-article-page,
.fitco-articles-home,
body.fitco-knowledge-article-page .entry-content,
body.fitco-knowledge-case-study-page .entry-content {
  --fa-bg: #f6f7f9;
  --fa-panel: #ffffff;
  --fa-panel-soft: #f6f7f9;
  --fa-ink: #0a0f1a;
  --fa-text: #2c3340;
  --fa-muted: #5b6675;
  --fa-line: #e2e6ec;
  --fa-line-strong: #c5ccd6;
  --fa-copper: #1f6fa8;
  --fa-copper-dark: #155077;
  --fa-blue: #1f6fa8;
  --fa-blue-soft: #eef4f9;
  --fa-dark: #0a0f1a;
  --fa-radius: 3px;
  --fa-max: 1180px;
  --fa-readable: 780px;
  --fa-shadow: 0 1px 0 #e2e6ec, 0 22px 54px -42px rgba(10, 15, 26, 0.42);
  --fa-shadow-soft: 0 1px 0 #e2e6ec;
  --fa-display: "Manrope", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --fa-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Compatibility aliases for page-specific article add-ons. */
  --bg: var(--fa-bg);
  --surface: var(--fa-panel);
  --surface-soft: var(--fa-panel-soft);
  --ink: var(--fa-ink);
  --muted: var(--fa-muted);
  --line: var(--fa-line);
  --brand: var(--fa-copper);
  --brand-dark: var(--fa-copper-dark);
  --brand-light: #4f93c2;
  --brand-tint: var(--fa-panel-soft);
  --accent: var(--fa-copper);
  --accent-light: var(--fa-panel-soft);
  --brand-rgb: 31, 111, 168;
  --accent-rgb: 31, 111, 168;
  --white-rgb: 255, 255, 255;
  --radius-xl: var(--fa-radius);
  --radius-lg: var(--fa-radius);
  --radius-md: var(--fa-radius);
  --radius-sm: var(--fa-radius);
  --shadow-hero: var(--fa-shadow);
  --shadow-lg: var(--fa-shadow);
  --shadow-sm: var(--fa-shadow-soft);
  --max: var(--fa-max);
  --section-gap: 72px;
  --font-display: var(--fa-display);
  --font-body: var(--fa-body);
}

.fitco-article-page,
.fitco-articles-home,
body.fitco-knowledge-article-page .entry-content,
body.fitco-knowledge-case-study-page .entry-content {
  color: var(--fa-ink);
  background-color: #ffffff;
  background-image:
    linear-gradient(90deg, rgba(10, 15, 26, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(10, 15, 26, 0.05) 1px, transparent 1px);
  background-size: 28px 28px, 28px 28px;
  font-family: var(--fa-body);
  -webkit-font-smoothing: antialiased;
}

.fitco-article-page *,
.fitco-article-page *::before,
.fitco-article-page *::after,
.fitco-articles-home *,
.fitco-articles-home *::before,
.fitco-articles-home *::after,
body.fitco-knowledge-article-page .entry-content *,
body.fitco-knowledge-article-page .entry-content *::before,
body.fitco-knowledge-article-page .entry-content *::after,
body.fitco-knowledge-case-study-page .entry-content *,
body.fitco-knowledge-case-study-page .entry-content *::before,
body.fitco-knowledge-case-study-page .entry-content *::after {
  box-sizing: border-box;
}

.fitco-article-page .vc_row,
.fitco-articles-home .vc_row,
body.fitco-knowledge-article-page .entry-content .vc_row,
body.fitco-knowledge-case-study-page .entry-content .vc_row,
.fitco-article-page .vc_row > .wpb_column,
.fitco-articles-home .vc_row > .wpb_column,
body.fitco-knowledge-article-page .entry-content .vc_row > .wpb_column,
body.fitco-knowledge-case-study-page .entry-content .vc_row > .wpb_column {
  margin-left: 0;
  margin-right: 0;
}

.fitco-article-page .vc_column_container > .vc_column-inner,
.fitco-articles-home .vc_column_container > .vc_column-inner,
body.fitco-knowledge-article-page .entry-content .vc_column_container > .vc_column-inner,
body.fitco-knowledge-case-study-page .entry-content .vc_column_container > .vc_column-inner {
  padding-left: 0;
  padding-right: 0;
}

.fitco-article-page .wpb_content_element,
.fitco-articles-home .wpb_content_element,
body.fitco-knowledge-article-page .entry-content .wpb_content_element,
body.fitco-knowledge-case-study-page .entry-content .wpb_content_element {
  margin-bottom: 0;
}

.fitco-article-page,
.fitco-articles-home,
body.fitco-knowledge-article-page .entry-content,
body.fitco-knowledge-case-study-page .entry-content {
  font-size: 16px;
  line-height: 1.75;
}

.fitco-article-page img,
.fitco-articles-home img,
body.fitco-knowledge-article-page .entry-content img,
body.fitco-knowledge-case-study-page .entry-content img {
  display: block;
  max-width: 100%;
  height: auto;
}

.fitco-article-page a,
.fitco-articles-home a,
body.fitco-knowledge-article-page .entry-content a,
body.fitco-knowledge-case-study-page .entry-content a {
  color: var(--fa-copper-dark);
  text-decoration: none;
  text-underline-offset: 3px;
}

.fitco-article-page a:hover,
.fitco-articles-home a:hover,
body.fitco-knowledge-article-page .entry-content a:hover,
body.fitco-knowledge-case-study-page .entry-content a:hover {
  color: var(--fa-copper);
  text-decoration: underline;
}

.fitco-article-page h1,
.fitco-article-page h2,
.fitco-article-page h3,
.fitco-article-page h4,
.fitco-article-page h5,
.fitco-articles-home h1,
.fitco-articles-home h2,
.fitco-articles-home h3,
.fitco-articles-home h4,
.fitco-articles-home h5,
body.fitco-knowledge-article-page .entry-content h1,
body.fitco-knowledge-article-page .entry-content h2,
body.fitco-knowledge-article-page .entry-content h3,
body.fitco-knowledge-article-page .entry-content h4,
body.fitco-knowledge-article-page .entry-content h5,
body.fitco-knowledge-case-study-page .entry-content h1,
body.fitco-knowledge-case-study-page .entry-content h2,
body.fitco-knowledge-case-study-page .entry-content h3,
body.fitco-knowledge-case-study-page .entry-content h4,
body.fitco-knowledge-case-study-page .entry-content h5 {
  margin: 0;
  color: var(--fa-ink);
  font-family: var(--fa-display);
  letter-spacing: 0;
  line-height: 1.12;
}

.fitco-article-page p,
.fitco-articles-home p,
body.fitco-knowledge-article-page .entry-content p,
body.fitco-knowledge-case-study-page .entry-content p {
  margin: 0;
}

.fitco-article-page .container,
.fitco-articles-home .container,
body.fitco-knowledge-article-page .entry-content .container,
body.fitco-knowledge-case-study-page .entry-content .container {
  width: min(calc(100% - 40px), var(--fa-max));
  margin-inline: auto;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.btn, .cta-primary, .cta-secondary, .btn-outline, .btn-ghost, .btn-secondary) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--fa-radius);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.btn, .cta-primary, .cta-secondary, .btn-outline, .btn-ghost, .btn-secondary):hover {
  transform: translateY(-2px);
  text-decoration: none;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.btn-primary, .cta-primary) {
  background: var(--fa-copper);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(31, 111, 168, 0.24);
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.btn-primary, .cta-primary):hover {
  background: var(--fa-copper-dark);
  color: #ffffff;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.btn-ghost, .btn-secondary, .btn-outline, .cta-secondary) {
  border-color: var(--fa-line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--fa-ink);
  box-shadow: none;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.case-study-header, .articles-hero) {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 9vw, 104px) 0 clamp(42px, 7vw, 74px);
  border-bottom: 1px solid var(--fa-line);
  background-color: var(--fa-panel-soft);
  background-image:
    linear-gradient(rgba(10, 15, 26, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 15, 26, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.case-study-header, .articles-hero)::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fa-line-strong), transparent);
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.header-content, .articles-hero .hero-content) {
  position: relative;
  max-width: 820px;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.industry-tag, .hero-badge) {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.industry-tag .tag, .hero-badge, .card-label, .standard-item-row .item-code) {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(31, 111, 168, 0.24);
  border-radius: var(--fa-radius);
  background: var(--fa-panel-soft);
  color: var(--fa-copper-dark);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .industry-tag .date {
  color: var(--fa-muted);
  font-size: 0.9rem;
  font-weight: 650;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.case-study-title, .hero-title) {
  max-width: 14ch;
  margin: 0 0 22px;
  font-size: clamp(2.25rem, 5.2vw, 5rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.98;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.case-study-title .highlight, .hero-title .accent-word) {
  color: var(--fa-copper-dark);
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.case-study-subtitle, .hero-desc) {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--fa-text);
  font-size: clamp(1.03rem, 1.45vw, 1.22rem);
  line-height: 1.7;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .key-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
  gap: 12px;
  max-width: 760px;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .metric {
  padding: 18px;
  border: 1px solid var(--fa-line);
  border-radius: var(--fa-radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--fa-shadow-soft);
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.metric-value, .result-metric) {
  margin-bottom: 7px;
  color: var(--fa-copper-dark);
  font-family: var(--fa-display);
  font-size: clamp(1.65rem, 2.7vw, 2.55rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.metric-label, .result-label) {
  margin-bottom: 8px;
  color: var(--fa-muted);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.case-study-main > section, .bento-section, .list-section, .cta-section) {
  padding: clamp(54px, 7vw, 86px) 0;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.case-study-main > section:nth-child(even), .bento-section:nth-child(even), .list-section) {
  background: rgba(255, 255, 255, 0.56);
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .section-title {
  max-width: 18ch;
  margin: 0 0 24px;
  color: var(--fa-ink);
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.05;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .section-header .section-title {
  margin-bottom: 0;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.lead-text, .results-intro, .solution-intro p, .conclusion-content .conclusion-text) {
  max-width: var(--fa-readable);
  color: var(--fa-text);
  font-size: 1.03rem;
  line-height: 1.78;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.lead-text, .results-intro) {
  margin-bottom: 28px;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.client-card, .challenge-item, .utm-system, .enhancement-item, .result-item, .standard-item, .compliance-item, .testimonial, .bento-card, .standard-item-row, .standards-compliance, .tech-enhancements, .compliance-achievement) {
  border: 1px solid var(--fa-line);
  border-radius: var(--fa-radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--fa-shadow-soft);
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.client-card, .standards-compliance, .tech-enhancements, .compliance-achievement) {
  padding: clamp(24px, 3vw, 34px);
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .client-card {
  border-left: 4px solid var(--fa-copper);
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.client-card h3, .standards-compliance h3, .tech-enhancements h3, .compliance-achievement h3, .technical-capabilities h3, .measurement-capabilities h3, .implementation-scenarios h3, .solution-intro h3) {
  margin: 0 0 16px;
  color: var(--fa-copper-dark);
  font-size: 1.08rem;
  font-weight: 850;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.client-details, .challenge-grid, .utm-systems, .enhancement-grid, .results-grid, .compliance-grid, .standards-grid, .bento-grid) {
  display: grid;
  gap: 16px;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .client-details {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.challenge-grid, .utm-systems, .enhancement-grid, .results-grid, .compliance-grid) {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .standards-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.detail-item, .challenge-item p, .utm-system p, .utm-system li, .enhancement-item p, .result-item p, .standard-item span, .compliance-item p) {
  color: var(--fa-text);
  font-size: 0.94rem;
  line-height: 1.65;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .detail-item strong {
  color: var(--fa-ink);
  font-weight: 850;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.challenge-item, .utm-system, .enhancement-item, .result-item, .standard-item, .compliance-item, .bento-card, .standard-item-row) {
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.challenge-item, .utm-system, .enhancement-item, .result-item, .standard-item, .compliance-item, .bento-card, .standard-item-row):hover {
  transform: translateY(-3px);
  border-color: rgba(31, 111, 168, 0.28);
  box-shadow: var(--fa-shadow);
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .challenge-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: var(--fa-radius);
  background: var(--fa-blue-soft);
  color: var(--fa-blue);
  font-size: 1.15rem;
  line-height: 1;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.challenge-item h3, .utm-system h4, .enhancement-item h4, .card-title) {
  margin: 0 0 10px;
  color: var(--fa-ink);
  font-size: clamp(1.02rem, 1.45vw, 1.36rem);
  font-weight: 850;
  line-height: 1.18;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .utm-system {
  border-top: 4px solid var(--fa-copper);
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .utm-system ul {
  display: grid;
  gap: 6px;
  margin: 14px 0 0;
  padding-left: 18px;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .compliance-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .compliance-item.achieved {
  border-color: rgba(29, 78, 216, 0.24);
  background: linear-gradient(180deg, #ffffff, var(--fa-blue-soft));
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .checkmark {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(29, 78, 216, 0.28);
  border-radius: 999px;
  background: #ffffff;
  color: var(--fa-blue);
  font-size: 0.82rem;
  font-weight: 850;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.compliance-item strong, .standard-item strong) {
  display: block;
  margin-bottom: 5px;
  color: var(--fa-ink);
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.3;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .testimonial {
  position: relative;
  margin: 0;
  padding: clamp(28px, 4vw, 44px);
  border-left: 4px solid var(--fa-copper);
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .quote-mark {
  position: absolute;
  top: 18px;
  right: 24px;
  color: rgba(31, 111, 168, 0.18);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  pointer-events: none;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .testimonial-text {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin-bottom: 18px;
  color: var(--fa-ink);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  font-style: italic;
  line-height: 1.72;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .testimonial-footer cite {
  color: var(--fa-muted);
  font-style: normal;
  font-weight: 750;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .conclusion-section {
  background-color: #0a0f1a !important;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) !important;
  background-size: 28px 28px !important;
  color: #ffffff;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .conclusion-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: stretch;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.conclusion-section .section-title, .cta-content h3, .cta-box h3) {
  color: #ffffff;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.conclusion-content .conclusion-text, .cta-content p, .cta-box p) {
  color: rgba(255, 255, 255, 0.76);
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.cta-content, .cta-box) {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--fa-radius);
  background-color: #0a0f1a;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.cta-content h3, .cta-box h3) {
  max-width: 16ch;
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 850;
  line-height: 1.08;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.cta-content p, .cta-box p) {
  max-width: 620px;
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.72;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.cta-buttons, .cta-actions) {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .bento-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .col-span-4 { grid-column: span 4; }
:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .col-span-8 { grid-column: span 8; }
:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .col-span-12 { grid-column: span 12; }

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .bento-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  color: var(--fa-ink);
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .bento-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--fa-copper), var(--fa-blue));
  opacity: 0;
  transition: opacity 180ms ease;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .bento-card:hover::before {
  opacity: 1;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .card-content {
  position: relative;
  z-index: 1;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .card-label {
  display: inline-flex;
  margin-bottom: 14px;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .bento-card.col-span-8 .card-title {
  max-width: 18ch;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .card-desc {
  margin: 0;
  color: var(--fa-text);
  font-size: 0.96rem;
  line-height: 1.65;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .card-arrow {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-top: 24px;
  border: 1px solid var(--fa-line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--fa-dark);
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .bento-card:hover .card-arrow {
  transform: translateX(4px);
  border-color: var(--fa-copper);
  background: var(--fa-copper);
  color: #ffffff;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .glow-blob {
  display: none;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .list-container {
  display: grid;
  gap: 10px;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .standard-item-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .standard-item-row:hover {
  background: var(--fa-panel-soft);
  text-decoration: none;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .standard-item-row .item-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .standard-item-row .item-title {
  margin: 0;
  color: var(--fa-ink);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .standard-item-row .item-action {
  color: var(--fa-copper-dark);
  font-size: 0.84rem;
  font-weight: 850;
  white-space: nowrap;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.technical-capabilities, .measurement-capabilities, .implementation-scenarios) {
  margin-top: 32px;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .scroll-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: var(--fa-copper);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(31, 111, 168, 0.24);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

:where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .animate-in {
  animation: fitcoArticleRise 520ms ease both;
}

@keyframes fitcoArticleRise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  :where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .bento-grid .col-span-8,
  :where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .bento-grid .col-span-12 {
    grid-column: span 12;
  }

  :where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .bento-grid .col-span-4 {
    grid-column: span 6;
  }

  :where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .conclusion-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .fitco-article-page .container,
  .fitco-articles-home .container,
  body.fitco-knowledge-article-page .entry-content .container,
  body.fitco-knowledge-case-study-page .entry-content .container {
    width: min(calc(100% - 28px), var(--fa-max));
  }

  :where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .section-header {
    align-items: flex-start;
    flex-direction: column;
  }

  :where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.key-metrics, .client-details, .challenge-grid, .utm-systems, .enhancement-grid, .results-grid, .compliance-grid, .standards-grid) {
    grid-template-columns: 1fr;
  }

  :where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .bento-grid .col-span-4,
  :where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .bento-grid .col-span-8,
  :where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .bento-grid .col-span-12 {
    grid-column: span 12;
  }

  :where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .standard-item-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  :where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .standard-item-row .item-content {
    display: grid;
  }

  :where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) .standard-item-row .item-action {
    white-space: normal;
  }

  :where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.cta-buttons, .cta-actions) {
    align-items: stretch;
    flex-direction: column;
  }

  :where(.fitco-article-page, .fitco-articles-home, body.fitco-knowledge-article-page .entry-content, body.fitco-knowledge-case-study-page .entry-content) :where(.btn, .cta-primary, .cta-secondary, .btn-outline, .btn-ghost, .btn-secondary) {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fitco-article-page,
  .fitco-article-page *,
  .fitco-article-page *::before,
  .fitco-article-page *::after,
  .fitco-articles-home,
  .fitco-articles-home *,
  .fitco-articles-home *::before,
  .fitco-articles-home *::after,
  body.fitco-knowledge-article-page .entry-content,
  body.fitco-knowledge-article-page .entry-content *,
  body.fitco-knowledge-article-page .entry-content *::before,
  body.fitco-knowledge-article-page .entry-content *::after,
  body.fitco-knowledge-case-study-page .entry-content,
  body.fitco-knowledge-case-study-page .entry-content *,
  body.fitco-knowledge-case-study-page .entry-content *::before,
  body.fitco-knowledge-case-study-page .entry-content *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

