/* =========================================================
   Immix Employee Benefits Glossary
   Locked-in Immix style + ScrollMeta 6.0 support
   Upload as: /assets/css/immix-employee-benefits-glossary-locked.css
========================================================= */

:root {
  --ixg-page: #f4f7f2;
  --ixg-surface: #ffffff;
  --ixg-surface-soft: #f8fbf7;

  --ixg-navy: #123a66;
  --ixg-navy-deep: #082f5f;
  --ixg-ink: #061f42;

  --ixg-green: #6f9e39;
  --ixg-green-dark: #4f8735;
  --ixg-green-soft: #edf6e9;

  --ixg-text: #193650;
  --ixg-text-soft: #4f6b83;
  --ixg-line: rgba(18, 58, 102, 0.12);
  --ixg-line-strong: rgba(18, 58, 102, 0.18);

  --ixg-shadow-lg: 0 30px 78px rgba(13, 30, 52, 0.13);
  --ixg-shadow-md: 0 18px 44px rgba(13, 30, 52, 0.09);
  --ixg-shadow-soft: 0 10px 28px rgba(13, 30, 52, 0.07);

  --ixg-radius-xl: 36px;
  --ixg-radius-lg: 30px;
  --ixg-radius-md: 22px;

  --ixg-gutter: clamp(28px, 4vw, 72px);
}

.scrollmeta,
[data-scrollmeta="page-purpose"],
[data-scrollmeta="content-model"],
[data-scrollmeta="ux-model"] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ixg-page);
  color: var(--ixg-text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.ixg-page-shell {
  background:
    radial-gradient(circle at 12% 8%, rgba(111, 158, 57, 0.065), transparent 32%),
    linear-gradient(180deg, #f8fbf7 0%, var(--ixg-page) 100%);
  overflow: clip;
}

.ixg-page {
  overflow: clip;
}

.ixg-shell {
  width: min(100% - var(--ixg-gutter), 1320px);
  margin-inline: auto;
}

.ixg-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--ixg-green-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1.15;
  text-transform: uppercase;
}

.ixg-kicker::before {
  content: "";
  width: 38px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.62;
}

.ixg-kicker--light {
  color: rgba(255,255,255,0.78);
}

.ixg-btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.ixg-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.ixg-btn--primary {
  color: #ffffff;
  background: linear-gradient(180deg, #74ad43 0%, var(--ixg-green-dark) 100%);
  box-shadow: 0 16px 34px rgba(79, 135, 53, 0.26);
}

.ixg-btn--primary:hover {
  color: #ffffff;
  background: linear-gradient(180deg, #648f39 0%, #426f2b 100%);
}

.ixg-btn--secondary {
  color: var(--ixg-navy);
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--ixg-line-strong);
  box-shadow: 0 12px 28px rgba(13, 30, 52, 0.08);
}

.ixg-btn--secondary:hover {
  color: var(--ixg-navy);
  background: #ffffff;
}

.ixg-btn--light {
  color: #ffffff;
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.22);
}

.ixg-btn--light:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.14);
}

/* Hero */

.ixg-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(720px, 62vw, 900px);
  overflow: hidden;
}

.ixg-hero__media {
  position: absolute;
  inset: 0;
  left: 50%;
  z-index: -2;
  width: 100vw;
  transform: translateX(-50%);
}

.ixg-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(720px, 62vw, 900px);
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.98) contrast(1.02);
}

.ixg-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(248,251,247,0.995) 0%,
      rgba(248,251,247,0.985) 29%,
      rgba(248,251,247,0.84) 50%,
      rgba(248,251,247,0.48) 72%,
      rgba(248,251,247,0.14) 100%
    ),
    linear-gradient(
      180deg,
      rgba(248,251,247,0.08) 0%,
      rgba(248,251,247,0.00) 45%,
      rgba(248,251,247,0.20) 100%
    );
  pointer-events: none;
}

.ixg-hero__inner {
  min-height: clamp(720px, 62vw, 900px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(350px, 0.58fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.ixg-hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: clamp(68px, 7vw, 118px) 0;
}

.ixg-hero__content::before {
  content: "";
  position: absolute;
  top: 2%;
  bottom: 2%;
  left: calc(50% - 50vw);
  right: -120px;
  z-index: -1;
  border-radius: 0 42px 42px 0;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.94) 0%,
      rgba(251,252,250,0.88) 58%,
      rgba(251,252,250,0.50) 83%,
      rgba(251,252,250,0.00) 100%
    );
  pointer-events: none;
}

.ixg-hero h1 {
  max-width: 11ch;
  margin: 0 0 24px;
  color: var(--ixg-navy);
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(3.5rem, 6.6vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.064em;
}

.ixg-hero__lead {
  max-width: 690px;
  margin: 0 0 18px;
  color: var(--ixg-navy);
  font-size: clamp(1.18rem, 1.55vw, 1.48rem);
  line-height: 1.62;
  font-weight: 800;
}

.ixg-hero__text {
  max-width: 710px;
  color: #385872;
  font-size: 17px;
  line-height: 1.78;
  font-weight: 560;
}

.ixg-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.ixg-hero__panel {
  position: relative;
  z-index: 3;
  padding: clamp(26px, 3vw, 34px);
  border-radius: 34px;
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0%, rgba(111,158,57,0.22), transparent 38%),
    linear-gradient(145deg, var(--ixg-navy) 0%, var(--ixg-ink) 100%);
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: 0 30px 72px rgba(13,30,52,0.22);
}

.ixg-hero__panel h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.ixg-hero__panel p {
  margin: 0 0 22px;
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  line-height: 1.7;
}

.ixg-hero-search label,
.ixg-tools label {
  display: block;
  margin-bottom: 8px;
  color: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ixg-hero-search__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.ixg-hero-search input,
.ixg-tools input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.98);
  color: var(--ixg-text);
  font-size: 16px;
  outline: none;
}

.ixg-hero-search input:focus,
.ixg-tools input:focus {
  border-color: rgba(111,158,57,0.6);
  box-shadow: 0 0 0 4px rgba(111,158,57,0.12);
}

.ixg-hero-search__row a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 16px;
  color: #fff;
  background: var(--ixg-green);
  font-weight: 850;
  text-decoration: none;
}

.ixg-panel__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.ixg-panel__stats div {
  padding: 14px 10px;
  border-radius: 18px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}

.ixg-panel__stats strong {
  display: block;
  color: #fff;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.6rem;
  line-height: 1;
}

.ixg-panel__stats span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
}

/* Sections */

.ixg-category-route,
.ixg-library,
.ixg-faq {
  padding: clamp(78px, 7vw, 112px) 0;
}

.ixg-section-head {
  max-width: 980px;
  margin: 0 0 38px;
}

.ixg-section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.66fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.ixg-section-head h2,
.ixg-category-group__head h2,
.ixg-faq__intro h2,
.ixg-cta h2 {
  margin: 0 0 18px;
  color: var(--ixg-navy);
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(2.5rem, 4.2vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.ixg-section-head p,
.ixg-term-card p,
.ixg-faq p,
.ixg-cta p {
  color: var(--ixg-text-soft);
  font-size: 17px;
  line-height: 1.82;
}

/* Category route cards */

.ixg-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ixg-category-card {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--ixg-line);
  background:
    radial-gradient(circle at 100% 0%, rgba(111,158,57,0.07), transparent 38%),
    #ffffff;
  box-shadow: var(--ixg-shadow-soft);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.ixg-category-card:hover,
.ixg-category-card.is-active {
  transform: translateY(-3px);
  border-color: rgba(111,158,57,0.38);
  box-shadow: var(--ixg-shadow-md);
}

.ixg-category-card span {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--ixg-green-dark);
  background: rgba(111,158,57,0.10);
  font-size: 13px;
  font-weight: 850;
}

.ixg-category-card strong {
  display: block;
  color: var(--ixg-navy);
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

/* Library */

.ixg-library {
  padding-top: 0;
}

.ixg-library__grid {
  display: grid;
  grid-template-columns: minmax(280px, 330px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.ixg-tools__sticky {
  position: sticky;
  top: 128px;
  padding: 24px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid var(--ixg-line);
  box-shadow: var(--ixg-shadow-md);
}

.ixg-tools h2 {
  margin: 0 0 18px;
  color: var(--ixg-navy);
  font-family: "Noto Serif", Georgia, serif;
  font-size: 2.1rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.ixg-tools label {
  color: var(--ixg-text);
}

.ixg-tools input {
  border-color: var(--ixg-line-strong);
  background: #fff;
}

.ixg-tools__count {
  margin: 14px 0 12px;
  color: var(--ixg-text-soft);
  font-size: 15px;
  font-weight: 650;
}

.ixg-clear {
  width: 100%;
  min-height: 44px;
  margin-bottom: 18px;
  border: 1px solid var(--ixg-line);
  border-radius: 999px;
  background: var(--ixg-surface-soft);
  color: var(--ixg-navy);
  font-weight: 850;
  cursor: pointer;
}

.ixg-category-filter,
.ixg-letter-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--ixg-line);
}

.ixg-letter-filter {
  margin-top: 18px;
}

.ixg-category-filter button,
.ixg-letter-filter button {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--ixg-line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ixg-text);
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.ixg-category-filter button.is-active,
.ixg-letter-filter button.is-active {
  color: #ffffff;
  background: var(--ixg-navy);
  border-color: var(--ixg-navy);
}

.ixg-category-group {
  margin-bottom: 52px;
}

.ixg-category-group.is-hidden {
  display: none;
}

.ixg-category-group__head {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ixg-line);
}

.ixg-category-group__head h2 {
  font-size: clamp(2.05rem, 3vw, 3.3rem);
  margin-bottom: 0;
}

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

.ixg-term-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(111,158,57,0.055), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfa 100%);
  border: 1px solid var(--ixg-line);
  box-shadow: var(--ixg-shadow-soft);
  scroll-margin-top: 150px;
}

.ixg-term-card.is-hidden {
  display: none;
}

.ixg-term-card:target {
  border-color: rgba(111,158,57,0.45);
  box-shadow: 0 0 0 4px rgba(111,158,57,0.12), var(--ixg-shadow-md);
}

.ixg-term-card__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}

.ixg-term-card__label {
  margin: 0 0 8px !important;
  color: var(--ixg-green-dark) !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase;
}

.ixg-term-card h3 {
  margin: 0;
  color: var(--ixg-navy);
  font-size: clamp(1.26rem, 1.55vw, 1.55rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
  font-weight: 880;
}

.ixg-copy {
  min-width: 42px;
  height: 42px;
  border: 1px solid var(--ixg-line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ixg-navy);
  font-weight: 850;
  cursor: pointer;
}

.ixg-copy.is-copied {
  min-width: 78px;
  color: #fff;
  background: var(--ixg-green);
  border-color: var(--ixg-green);
}

.ixg-term-card__body p {
  margin: 0;
  color: var(--ixg-text);
  font-weight: 560;
}

.ixg-term-card__context {
  padding: 16px;
  border-radius: 18px;
  background: rgba(111,158,57,0.08);
  border: 1px solid rgba(111,158,57,0.14);
}

.ixg-term-card__context strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ixg-green-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ixg-term-card__context p {
  margin: 0;
  color: var(--ixg-text-soft);
  font-size: 15.5px;
  line-height: 1.66;
}

/* FAQ */

.ixg-faq {
  padding-top: 0;
}

.ixg-faq__panel {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(30px, 5vw, 56px);
  border-radius: 38px;
  background: #ffffff;
  border: 1px solid var(--ixg-line);
  box-shadow: var(--ixg-shadow-lg);
}

.ixg-faq__items {
  display: grid;
  gap: 14px;
}

.ixg-faq details {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid var(--ixg-line);
  background: var(--ixg-surface-soft);
}

.ixg-faq summary {
  color: var(--ixg-navy);
  font-size: 17px;
  font-weight: 850;
  cursor: pointer;
}

.ixg-faq details p {
  margin: 12px 0 0;
}

/* CTA */

.ixg-cta {
  padding: 0 0 clamp(78px, 7vw, 112px);
}

.ixg-cta__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
  padding: clamp(30px, 5vw, 56px);
  border-radius: 38px;
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0%, rgba(111,158,57,0.24), transparent 38%),
    linear-gradient(145deg, #123f6e 0%, #0d2a49 58%, #071d37 100%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 34px 82px rgba(13,30,52,0.22);
}

.ixg-cta h2,
.ixg-cta p {
  color: #ffffff;
}

.ixg-cta p {
  max-width: 72ch;
  color: rgba(255,255,255,0.84);
}

.ixg-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

/* Responsive */

@media (max-width: 1180px) {
  .ixg-hero__inner,
  .ixg-section-head--split,
  .ixg-faq__panel,
  .ixg-cta__card {
    grid-template-columns: 1fr;
  }

  .ixg-hero__content::before {
    right: calc(50% - 50vw);
  }

  .ixg-hero__panel {
    max-width: 680px;
    margin-bottom: 56px;
  }

  .ixg-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ixg-library__grid {
    grid-template-columns: 1fr;
  }

  .ixg-tools__sticky {
    position: relative;
    top: auto;
  }

  .ixg-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .ixg-hero,
  .ixg-hero__inner,
  .ixg-hero__media img {
    min-height: auto;
  }

  .ixg-hero__inner {
    display: block;
    padding: 54px 0 64px;
  }

  .ixg-hero__media img {
    min-height: 920px;
  }

  .ixg-hero__media::before {
    background:
      linear-gradient(
        180deg,
        rgba(248,251,247,0.985) 0%,
        rgba(248,251,247,0.965) 48%,
        rgba(248,251,247,0.72) 78%,
        rgba(248,251,247,0.32) 100%
      );
  }

  .ixg-hero__content {
    padding: 0 0 30px;
  }

  .ixg-hero__content::before {
    top: -28px;
    bottom: -18px;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(251,252,250,0.84) 100%);
  }

  .ixg-hero h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 12vw, 5.2rem);
  }

  .ixg-section-head h2,
  .ixg-category-group__head h2,
  .ixg-faq__intro h2,
  .ixg-cta h2 {
    font-size: clamp(2.45rem, 10vw, 4rem);
  }

  .ixg-term-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .ixg-shell,
  .ixg-hero__inner {
    width: min(100% - 28px, 1320px);
  }

  .ixg-hero__inner {
    padding: 42px 0 54px;
  }

  .ixg-hero__media img {
    min-height: 980px;
  }

  .ixg-hero-search__row {
    grid-template-columns: 1fr;
  }

  .ixg-panel__stats {
    grid-template-columns: 1fr;
  }

  .ixg-category-grid {
    grid-template-columns: 1fr;
  }

  .ixg-hero__actions .ixg-btn,
  .ixg-cta__actions .ixg-btn {
    width: 100%;
  }

  .ixg-category-route,
  .ixg-library,
  .ixg-faq {
    padding: 68px 0;
  }

  .ixg-hero__panel,
  .ixg-category-card,
  .ixg-tools__sticky,
  .ixg-term-card,
  .ixg-faq__panel,
  .ixg-cta__card {
    border-radius: 24px;
  }

  .ixg-term-card__top {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   GLOSSARY TYPOGRAPHY HANDOFF PATCH
   Supports the unified /assets/css/immix-locked-typography.css layer.
   Keep this at the end of immix-employee-benefits-glossary-locked.css.
========================================================= */

.ixg-page {
  font-family: var(--ix-font-sans, Inter, Arial, Helvetica, sans-serif);
}

.ixg-page .ixg-hero__panel,
.ixg-page .ixg-cta__card {
  color: #ffffff;
}

.ixg-page .ixg-hero__panel :is(h2, h3, h4, h5, h6, strong),
.ixg-page .ixg-cta__card :is(h2, h3, h4, h5, h6, strong) {
  color: #ffffff !important;
}

.ixg-page .ixg-hero__panel :is(p, li, span, label),
.ixg-page .ixg-cta__card :is(p, li, span, a) {
  color: rgba(255, 255, 255, 0.86) !important;
}

.ixg-page .ixg-hero__panel .ixg-kicker,
.ixg-page .ixg-cta__card .ixg-kicker,
.ixg-page .ixg-hero__panel [class*="kicker"],
.ixg-page .ixg-cta__card [class*="kicker"] {
  color: rgba(255, 255, 255, 0.78) !important;
}

.ixg-page .ixg-hero__panel input {
  color: var(--ixg-text, #193650) !important;
  background: #ffffff !important;
}

.ixg-page .ixg-panel__stats strong {
  color: #ffffff !important;
}

.ixg-page .ixg-panel__stats span {
  color: rgba(255, 255, 255, 0.80) !important;
}

.ixg-page .ixg-term-card h3,
.ixg-page .ixg-tools h2,
.ixg-page .ixg-category-group__head h2,
.ixg-page .ixg-faq__intro h2 {
  color: var(--ixg-navy, #123a66) !important;
}

.ixg-page .ixg-term-card__body p {
  color: var(--ixg-text, #193650) !important;
}

.ixg-page .ixg-term-card__context p,
.ixg-page .ixg-section-head p,
.ixg-page .ixg-faq p {
  color: var(--ixg-text-soft, #4f6b83) !important;
}

.ixg-page .ixg-term-card__label,
.ixg-page .ixg-term-card__context strong {
  color: var(--ixg-green-dark, #4f8735) !important;
}

.ixg-page .ixg-category-filter button.is-active,
.ixg-page .ixg-letter-filter button.is-active {
  color: #ffffff !important;
}

@media (max-width: 760px) {
  .ixg-page .ixg-term-card__context p {
    font-size: 17px !important;
    line-height: 1.58 !important;
  }
}
