/*
 * Foodstocks content and utility templates
 * Scoped layout layer for Blog, Case Studies, Contact, Dashboard,
 * Portal, Pricing, Shop, and Thank You.
 */

:root {
  --fs-cu-red: #d60001;
  --fs-cu-red-dark: #a90001;
  --fs-cu-ink: #18181b;
  --fs-cu-dark: #111114;
  --fs-cu-copy: #52525b;
  --fs-cu-subtle: #71717a;
  --fs-cu-line: #e4e4e7;
  --fs-cu-line-red: #eadede;
  --fs-cu-soft: #fff7f7;
  --fs-cu-muted: #f7f7f8;
  --fs-cu-white: #ffffff;
  --fs-cu-radius-sm: .5rem;
  --fs-cu-radius-md: .75rem;
  --fs-cu-radius-lg: 1rem;
  --fs-cu-control: 2.75rem;
  --fs-cu-ease: cubic-bezier(.16, 1, .3, 1);
}

:where(
  .fs-content-blog-article,
  .fs-content-blog-hero,
  .fs-content-blog-index,
  .fs-content-cases-hero,
  .fs-content-cases-metrics,
  .fs-content-cases-featured,
  .fs-content-cases-library,
  .fs-content-cases-models,
  .fs-content-cases-cta,
  .fs-content-contact-hero,
  .fs-content-contact-main,
  .fs-content-contact-mdp,
  .fs-content-contact-social,
  .fs-content-dashboard,
  .fs-content-portal,
  .fs-content-pricing-status,
  .fs-content-shop-promo,
  .fs-content-shop-products,
  .fs-content-shop-brands,
  .fs-content-shop-cta,
  .fs-content-thank-you
) :where(a, button, input, textarea):focus-visible {
  outline: 3px solid rgb(214 0 1 / .55);
  outline-offset: 3px;
}

:where(
  .fs-content-blog-article,
  .fs-content-blog-index,
  .fs-content-cases-featured,
  .fs-content-cases-library,
  .fs-content-cases-models,
  .fs-content-contact-main,
  .fs-content-contact-mdp,
  .fs-content-dashboard,
  .fs-content-portal,
  .fs-content-pricing-status,
  .fs-content-shop-promo,
  .fs-content-shop-products,
  .fs-content-shop-brands,
  .fs-content-shop-cta,
  .fs-content-thank-you
) :where(a, button, input, textarea) {
  min-height: var(--fs-cu-control);
}

:where(
  .fs-content-blog-article,
  .fs-content-blog-index,
  .fs-content-cases-featured,
  .fs-content-cases-library,
  .fs-content-cases-models,
  .fs-content-contact-main,
  .fs-content-contact-mdp,
  .fs-content-dashboard,
  .fs-content-portal,
  .fs-content-pricing-status,
  .fs-content-shop-promo,
  .fs-content-shop-products,
  .fs-content-shop-brands,
  .fs-content-shop-cta,
  .fs-content-thank-you
) :where(.rounded-3xl) {
  border-radius: var(--fs-cu-radius-lg) !important;
}

/* ============================================================
   Blog: one lead story followed by an editorial reading list
============================================================ */

body.fs-template-blog #main-content > .fs-content-blog-hero:first-of-type {
  min-height: 32rem;
  background: var(--fs-inner-hero-shade), var(--fs-inner-hero-gradient) !important;
  border-bottom-color: #970001 !important;
}

body.fs-template-blog #main-content > .fs-content-blog-hero:first-of-type::before {
  display: block;
}

body.fs-template-blog #main-content > .fs-content-blog-hero:first-of-type > .absolute {
  display: none;
}

body.fs-template-blog #main-content > .fs-content-blog-hero:first-of-type > .relative {
  min-height: 32rem;
  padding-block: clamp(4.75rem, 8vw, 7rem);
}

.fs-content-blog-hero .reveal {
  max-width: 62rem;
}

.fs-content-blog-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  letter-spacing: -.035em;
}

.fs-content-blog-hero p {
  max-width: 42rem;
  color: var(--fs-cu-copy) !important;
  line-height: 1.75;
}

body.fs-template-blog #main-content > .fs-content-blog-hero:first-of-type :where(h1, h1 span) {
  color: #fff !important;
}

body.fs-template-blog #main-content > .fs-content-blog-hero:first-of-type h1 span {
  color: #fde047 !important;
}

body.fs-template-blog #main-content > .fs-content-blog-hero:first-of-type p {
  color: rgb(255 255 255 / .84) !important;
}

body.fs-template-blog #main-content > .fs-content-blog-hero:first-of-type .eyebrow,
body.fs-template-case-studies #main-content > .fs-content-cases-hero:first-of-type .eyebrow,
body.fs-template-contact #main-content > .fs-content-contact-hero:first-of-type .eyebrow {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fde047 !important;
  letter-spacing: .01em;
  text-transform: none;
}

.fs-content-blog-index {
  padding-block: 4rem 6rem !important;
  background: var(--fs-cu-white);
}

.fs-blog-controls {
  display: grid;
  width: min(100%, 64rem);
  grid-template-areas:
    "search search search action"
    "category sort perpage .";
  grid-template-columns: minmax(18rem, 2fr) minmax(10rem, 1fr) minmax(8rem, .8fr) auto;
  gap: 1rem 1.5rem;
  align-items: end;
  margin: 0 auto 1rem;
  padding: 0 0 1.5rem;
  border-bottom: 1px solid var(--fs-cu-line);
  background: transparent;
}

.fs-blog-search-field {
  grid-area: search;
}

.fs-blog-control-field--category {
  grid-area: category;
}

.fs-blog-controls > .fs-blog-control-field:nth-of-type(2) {
  grid-area: category;
}

.fs-blog-control-field--sort {
  grid-area: sort;
}

.fs-blog-controls > .fs-blog-control-field:nth-of-type(3) {
  grid-area: sort;
}

.fs-blog-control-field--per-page {
  grid-area: perpage;
}

.fs-blog-controls label {
  display: block;
  margin-bottom: .5rem;
  color: #3f3f46;
  font-size: .75rem;
  font-weight: 700;
}

.fs-blog-control-input {
  position: relative;
}

.fs-blog-control-input svg {
  position: absolute;
  top: 50%;
  left: .875rem;
  width: 1.125rem;
  height: 1.125rem;
  color: #71717a;
  transform: translateY(-50%);
  pointer-events: none;
}

.fs-blog-controls :is(input, select) {
  width: 100%;
  min-height: 3rem;
  border: 1px solid #d4d4d8;
  border-radius: var(--fs-cu-radius-md);
  background: #fff;
  color: var(--fs-cu-ink);
  font-size: .875rem;
}

.fs-blog-search-field input,
.fs-blog-filter-button {
  min-height: 3.5rem;
}

.fs-blog-controls input {
  padding: .75rem 1rem .75rem 2.75rem;
}

.fs-blog-controls select {
  padding: .75rem 2.25rem .75rem .875rem;
}

.fs-blog-controls :is(input, select):hover {
  border-color: #a1a1aa;
}

.fs-blog-controls :is(input, select):focus {
  border-color: var(--fs-cu-red);
  outline: 0;
}

.fs-blog-controls :is(input, select, button):focus-visible {
  outline: 3px solid rgb(214 0 1 / .36);
  outline-offset: 2px;
}

.fs-blog-filter-button {
  grid-area: action;
  min-height: 3.5rem;
  padding: .75rem 1.25rem;
  border: 0;
  border-radius: var(--fs-cu-radius-md);
  background: var(--fs-cu-red);
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
  transition:
    background-color 180ms ease,
    transform 180ms var(--fs-cu-ease);
}

.fs-blog-filter-button:hover {
  background: var(--fs-cu-red-dark);
  transform: translateY(-1px);
}

.fs-blog-results-meta {
  display: flex;
  width: min(100%, 64rem);
  min-height: 2.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 auto 1.5rem;
  color: var(--fs-cu-subtle);
  font-size: .8125rem;
}

.fs-blog-results-meta a {
  color: var(--fs-cu-red);
  font-weight: 700;
}

.fs-blog-pagination {
  display: flex;
  width: min(100%, 64rem);
  justify-content: center;
  margin: 3.5rem auto 0;
}

.fs-blog-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fs-blog-pagination a.page-numbers,
.fs-blog-pagination span.page-numbers {
  display: inline-flex;
  min-width: 2.75rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: .625rem .875rem;
  border: 1px solid #dedade;
  border-radius: var(--fs-cu-radius-md);
  background: #fff;
  color: #3f3f46;
  font-size: .8125rem;
  font-weight: 700;
  text-decoration: none;
}

.fs-blog-pagination span.page-numbers.current {
  border-color: var(--fs-cu-red);
  background: var(--fs-cu-red);
  color: #fff;
}

.fs-blog-pagination a.page-numbers:hover {
  border-color: var(--fs-cu-red);
  color: var(--fs-cu-red);
}

.fs-blog-pagination .dots {
  border-color: transparent !important;
  background: transparent !important;
}

.fs-blog-empty-state {
  display: flex;
  min-height: 22rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 3rem 1.5rem;
  text-align: center;
}

.fs-blog-empty-state svg {
  width: 2rem;
  height: 2rem;
  color: var(--fs-cu-red);
}

.fs-blog-empty-state h2 {
  color: var(--fs-cu-ink);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.fs-blog-empty-state p {
  max-width: 34rem;
  color: var(--fs-cu-copy);
}

.fs-blog-empty-state a {
  margin-top: .5rem;
  color: var(--fs-cu-red);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .fs-blog-controls {
    grid-template-areas:
      "search search"
      "category sort"
      "perpage action";
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 767px) {
  .fs-blog-controls {
    grid-template-areas:
      "search"
      "category"
      "sort"
      "perpage"
      "action";
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .fs-blog-search-field {
    grid-column: auto;
  }

  .fs-blog-filter-button {
    width: 100%;
  }

  .fs-blog-results-meta {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
  }

  .fs-blog-pagination .prev,
  .fs-blog-pagination .next {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fs-blog-filter-button {
    transition: none;
  }

  .fs-blog-filter-button:hover {
    transform: none;
  }
}

.fs-blog-lead-wrap {
  width: min(100%, 64rem);
  margin: 0 auto 3rem;
}

.fs-blog-lead {
  min-height: 28rem;
  border: 1px solid var(--fs-cu-line-red) !important;
  border-radius: var(--fs-cu-radius-lg) !important;
  background: var(--fs-cu-soft) !important;
  color: var(--fs-cu-ink);
}

.fs-blog-lead-visual {
  background: var(--fs-cu-red) !important;
}

.fs-blog-lead-visual > div:first-child {
  border: 1px solid rgb(255 255 255 / .24);
  border-radius: var(--fs-cu-radius-lg) !important;
  background: rgb(255 255 255 / .12) !important;
  color: var(--fs-cu-white) !important;
}

.fs-blog-lead-visual svg {
  color: var(--fs-cu-white) !important;
}

.fs-blog-lead-copy {
  padding: 3rem !important;
}

.fs-blog-lead-copy :where(h2, p) {
  color: var(--fs-cu-ink) !important;
}

.fs-blog-lead-copy p {
  color: var(--fs-cu-copy) !important;
}

.fs-blog-lead-copy > div:first-child > span:first-child {
  padding: 0;
  border-radius: 0;
  background: transparent !important;
  color: var(--fs-cu-red) !important;
  letter-spacing: .02em;
  text-transform: none;
}

.fs-blog-lead-copy > a {
  color: var(--fs-cu-red) !important;
}

.fs-blog-feed--static {
  display: grid !important;
  width: min(100%, 64rem);
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1.5rem !important;
  margin-inline: auto;
}

.fs-blog-feed--static .fs-blog-feed-item {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
  border: 1px solid var(--fs-cu-line) !important;
  border-radius: var(--fs-cu-radius-lg) !important;
  background: var(--fs-cu-white) !important;
  box-shadow: none !important;
  overflow: hidden;
}

.fs-blog-feed--static .fs-blog-feed-item > a:first-child {
  min-height: 0;
  aspect-ratio: 16 / 10;
  background: var(--fs-cu-soft) !important;
}

.fs-blog-feed--static .fs-blog-feed-item > div:last-child {
  padding: 2rem;
}

.fs-blog-feed--static .fs-blog-feed-item > a:first-child > div {
  border: 1px solid var(--fs-cu-line-red);
  background: var(--fs-cu-white) !important;
  transform: none !important;
}

.fs-blog-feed--static .fs-blog-feed-item h2 {
  max-width: 34ch;
  font-size: 1.25rem;
}

.fs-blog-feed--wp {
  display: grid !important;
  width: min(100%, 64rem);
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 2rem 1.5rem !important;
  margin-inline: auto;
}

.fs-blog-feed--wp .fs-blog-feed-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
  border: 1px solid var(--fs-cu-line) !important;
  border-radius: var(--fs-cu-radius-lg) !important;
  background: var(--fs-cu-white) !important;
  box-shadow: none !important;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.fs-blog-feed--wp .fs-blog-feed-item:hover {
  border-color: #d9bfc0 !important;
  background: #fffafa !important;
}

.fs-blog-feed--wp .fs-blog-feed-item:is(.fs-blog-feed-item--featured, :first-child) {
  grid-column: 1 / -1;
  grid-template-columns: 22rem minmax(0, 1fr);
  min-height: 22rem;
  border-color: var(--fs-cu-line-red) !important;
  background: var(--fs-cu-soft) !important;
  color: var(--fs-cu-ink);
}

.fs-blog-feed--wp .fs-blog-feed-item > a:first-child {
  min-height: 0;
  aspect-ratio: 16 / 10;
}

.fs-blog-feed--wp .fs-blog-feed-item:is(.fs-blog-feed-item--featured, :first-child) > a:first-child {
  min-height: 22rem;
  aspect-ratio: auto;
}

.fs-blog-feed--wp .fs-blog-feed-item > div {
  padding: 1.5rem;
}

.fs-blog-feed--wp .fs-blog-feed-item:is(.fs-blog-feed-item--featured, :first-child) > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3rem);
}

.fs-blog-feed--wp .fs-blog-feed-item:is(.fs-blog-feed-item--featured, :first-child) :where(h2, h2 a) {
  color: var(--fs-cu-ink) !important;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.fs-blog-feed--wp .fs-blog-feed-item:is(.fs-blog-feed-item--featured, :first-child) p {
  color: var(--fs-cu-copy) !important;
}

.fs-blog-feed--wp .fs-blog-feed-item:is(.fs-blog-feed-item--featured, :first-child) p a {
  color: var(--fs-cu-red) !important;
}

.fs-blog-feed--wp .fs-blog-feed-item:not(.fs-blog-feed-item--featured):not(:first-child) h2 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.25;
}

.fs-blog-item-meta {
  letter-spacing: .01em;
  text-transform: none;
}

.fs-blog-feed--wp .fs-blog-feed-item > div > p:first-child {
  letter-spacing: .01em !important;
  text-transform: none !important;
}

@media (max-width: 1100px) {
  .fs-blog-feed--wp .fs-blog-feed-item:is(.fs-blog-feed-item--featured, :first-child) {
    grid-template-columns: minmax(16rem, .9fr) minmax(0, 1.1fr);
  }
}

.fs-content-blog-article {
  padding-block: 4rem 6rem !important;
}

.fs-blog-article-layout {
  grid-template-columns: minmax(0, 46rem) minmax(17rem, 1fr) !important;
  justify-content: space-between;
  gap: 4rem !important;
}

.fs-blog-article-copy h1 {
  max-width: 20ch;
  margin-bottom: 2rem;
  font-size: clamp(2.25rem, 5vw, 4rem);
  letter-spacing: -.03em;
}

.fs-blog-article-copy > div:nth-of-type(2) {
  border-radius: var(--fs-cu-radius-lg) !important;
  background: var(--fs-cu-red) !important;
}

.fs-blog-article-copy > div:nth-of-type(2) > div {
  border: 1px solid rgb(255 255 255 / .25);
  border-radius: var(--fs-cu-radius-lg) !important;
  background: rgb(255 255 255 / .12) !important;
}

.fs-blog-article-copy > div:nth-of-type(2) svg {
  color: var(--fs-cu-white) !important;
}

.fs-blog-article-copy .prose {
  max-width: 70ch;
  color: #3f3f46 !important;
  font-size: 1.0625rem;
  line-height: 1.85;
}

.fs-blog-related > div {
  padding-left: 2rem;
  border-left: 1px solid var(--fs-cu-line);
}

.fs-blog-related h4 {
  letter-spacing: .02em;
  text-transform: none;
}

.fs-blog-related a {
  min-height: 4.5rem;
  margin-bottom: 0 !important;
  padding-block: 1rem;
  border-bottom: 1px solid var(--fs-cu-line);
}

/* ============================================================
   Single article: centered long-form reading experience
============================================================ */

.fs-content-single-article {
  padding-block: clamp(3rem, 7vw, 6rem) 6rem;
  background: var(--fs-cu-white);
}

.fs-content-single-article a:focus-visible {
  outline: 3px solid rgb(214 0 1 / .45);
  outline-offset: 3px;
}

.fs-single-shell {
  width: min(calc(100% - 3rem), 72rem);
  margin-inline: auto;
}

.fs-single-breadcrumb,
.fs-single-masthead {
  width: min(100%, 64rem);
  margin-inline: auto;
}

.fs-single-breadcrumb nav[aria-label="breadcrumb"] {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  margin-bottom: 2rem !important;
  color: var(--fs-cu-subtle);
  line-height: 1.5;
}

.fs-single-breadcrumb nav[aria-label="breadcrumb"] [aria-current="page"] {
  min-width: 0;
  color: var(--fs-cu-copy);
}

.fs-single-breadcrumb nav[aria-label="breadcrumb"] a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  margin-block: -.75rem;
}

.fs-single-masthead {
  padding-bottom: 3rem;
}

.fs-single-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem .75rem;
  margin-bottom: 1.5rem;
  color: var(--fs-cu-subtle);
  font-size: .8125rem;
  font-weight: 500;
}

.fs-single-category {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  padding-inline: .75rem;
  border-radius: 999px;
  background: var(--fs-cu-soft);
  color: var(--fs-cu-red);
  font-weight: 700;
  text-decoration: none;
}

.fs-single-category:hover {
  background: #ffeaea;
}

.fs-single-masthead h1 {
  max-width: 18ch;
  margin: 0;
  color: var(--fs-cu-ink);
  font-size: clamp(2.5rem, 5.6vw, 4rem);
  line-height: 1.06;
  letter-spacing: -.035em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.fs-single-deck {
  max-width: 60ch;
  margin: 1.5rem 0 0;
  color: var(--fs-cu-copy);
  font-size: 1.125rem;
  line-height: 1.7;
  text-wrap: pretty;
}

.fs-single-featured-media {
  width: 100%;
  margin: 0 0 3rem;
  overflow: hidden;
  border-radius: var(--fs-cu-radius-lg);
  background: var(--fs-cu-muted);
  aspect-ratio: 16 / 9;
}

.fs-single-featured-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fs-single-reading {
  width: min(100%, 46rem);
  margin-inline: auto;
}

.fs-single-prose {
  max-width: 70ch;
  color: #3f3f46;
  font-size: 1.0625rem;
  line-height: 1.85;
  overflow-wrap: anywhere;
}

.fs-single-prose > :first-child {
  margin-top: 0;
}

.fs-single-prose > :last-child {
  margin-bottom: 0;
}

.fs-single-prose p,
.fs-single-prose :where(ul, ol, blockquote, figure, table, pre) {
  margin-block: 0 1.5rem;
}

.fs-single-prose h2 {
  margin: 3.5rem 0 1rem;
  color: var(--fs-cu-ink);
  font-size: clamp(1.625rem, 3vw, 2rem);
  line-height: 1.25;
  letter-spacing: -.02em;
  text-wrap: balance;
}

.fs-single-prose h3 {
  margin: 2.5rem 0 .75rem;
  color: var(--fs-cu-ink);
  font-size: 1.25rem;
  line-height: 1.35;
  text-wrap: balance;
}

.fs-single-prose :where(ul, ol) {
  padding-left: 1.5rem;
}

.fs-single-prose li + li {
  margin-top: .5rem;
}

.fs-single-prose :where(strong, b) {
  color: var(--fs-cu-ink);
}

.fs-single-prose a {
  color: var(--fs-cu-red);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
}

.fs-single-prose :where(img, video, iframe) {
  max-width: 100%;
  height: auto;
  border-radius: var(--fs-cu-radius-md);
}

.fs-single-prose blockquote {
  padding: 1.5rem;
  border: 1px solid var(--fs-cu-line-red);
  border-radius: var(--fs-cu-radius-md);
  background: var(--fs-cu-soft);
  color: var(--fs-cu-copy);
}

.fs-single-prose :where(pre, .wp-block-table) {
  max-width: 100%;
  overflow-x: auto;
}

.fs-single-prose table {
  width: 100%;
  border-collapse: collapse;
}

.fs-single-prose :where(th, td) {
  padding: .75rem;
  border: 1px solid var(--fs-cu-line);
  text-align: left;
}

.fs-single-author {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-top: 4rem;
  padding-block: 2rem;
  border-block: 1px solid var(--fs-cu-line);
}

.fs-single-author-mark {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--fs-cu-soft);
  color: var(--fs-cu-red);
  font-weight: 800;
}

.fs-single-author :where(p, time) {
  margin: 0;
}

.fs-single-author-label,
.fs-single-author time {
  color: var(--fs-cu-subtle);
  font-size: .75rem;
}

.fs-single-author-name {
  color: var(--fs-cu-ink);
  font-weight: 700;
}

.fs-single-post-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.fs-single-post-nav-link {
  display: flex;
  min-width: 0;
  min-height: 5.5rem;
  flex-direction: column;
  justify-content: space-between;
  gap: .75rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--fs-cu-line);
  color: var(--fs-cu-ink);
  text-decoration: none;
}

.fs-single-post-nav-link > span {
  color: var(--fs-cu-red);
  font-size: .75rem;
  font-weight: 700;
}

.fs-single-post-nav-link strong {
  line-height: 1.4;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

.fs-single-post-nav-link--next {
  grid-column: 2;
  text-align: right;
}

.fs-single-post-nav-link:hover strong {
  color: var(--fs-cu-red);
}

.fs-single-related {
  width: min(100%, 64rem);
  margin: 6rem auto 0;
  padding-top: 3rem;
  border-top: 1px solid var(--fs-cu-line);
}

.fs-single-related-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.fs-single-related-heading :where(p, h2) {
  margin: 0;
}

.fs-single-related-heading p {
  margin-bottom: .5rem;
  color: var(--fs-cu-red);
  font-size: .875rem;
  font-weight: 700;
}

.fs-single-related-heading h2 {
  color: var(--fs-cu-ink);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.fs-single-related-heading > a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  flex: none;
  color: var(--fs-cu-red);
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none;
}

.fs-single-related-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 2rem;
}

.fs-single-related-item {
  display: grid;
  min-width: 0;
  grid-template-columns: 6rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding-block: 1.5rem;
  border-top: 1px solid var(--fs-cu-line);
  color: var(--fs-cu-ink);
  text-decoration: none;
}

.fs-single-related-media {
  width: 6rem;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--fs-cu-radius-md);
  background: var(--fs-cu-muted);
}

.fs-single-related-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fs-single-related-media .fs-single-related-placeholder {
  padding: 1rem;
  object-fit: contain;
}

.fs-single-related-copy {
  min-width: 0;
}

.fs-single-related-copy time {
  color: var(--fs-cu-subtle);
  font-size: .75rem;
}

.fs-single-related-copy h3 {
  margin: .5rem 0 0;
  font-size: 1rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

.fs-single-related-item:hover h3 {
  color: var(--fs-cu-red);
}

@media (max-width: 767px) {
  .fs-content-single-article {
    padding-block: 3rem 4rem;
  }

  .fs-single-shell {
    width: min(calc(100% - 2rem), 72rem);
  }

  .fs-single-breadcrumb nav[aria-label="breadcrumb"] {
    margin-bottom: 1.5rem !important;
  }

  .fs-single-masthead {
    padding-bottom: 2rem;
  }

  .fs-single-masthead h1 {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }

  .fs-single-deck {
    font-size: 1rem;
  }

  .fs-single-featured-media {
    margin-bottom: 2rem;
    aspect-ratio: 16 / 10;
    border-radius: var(--fs-cu-radius-md);
  }

  .fs-single-prose {
    font-size: 1rem;
    line-height: 1.75;
  }

  .fs-single-prose h2 {
    margin-top: 3rem;
  }

  .fs-single-author {
    grid-template-columns: 3rem minmax(0, 1fr);
    margin-top: 3rem;
  }

  .fs-single-author time {
    grid-column: 2;
  }

  .fs-single-post-nav {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .fs-single-post-nav-link--next {
    grid-column: 1;
    text-align: left;
  }

  .fs-single-related {
    margin-top: 4rem;
  }

  .fs-single-related-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .fs-single-related-list {
    grid-template-columns: 1fr;
  }
}

.fs-blog-newsletter {
  padding: 3rem !important;
  border-radius: var(--fs-cu-radius-lg) !important;
  background: var(--fs-cu-dark) !important;
  text-align: left !important;
}

.fs-blog-newsletter > .absolute {
  display: none;
}

.fs-blog-newsletter > .relative {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, .75fr);
  gap: 1rem 4rem;
  align-items: center;
}

.fs-blog-newsletter :where(.eyebrow, h2, p) {
  margin-inline: 0 !important;
  text-align: left !important;
}

.fs-blog-newsletter h2 {
  max-width: 18ch;
  color: var(--fs-cu-white) !important;
}

.fs-blog-newsletter > .relative > form {
  grid-column: 2;
  grid-row: 1 / 4;
  width: 100%;
  max-width: none;
  margin: 0;
}

.fs-blog-newsletter input {
  min-height: 3rem;
  border-color: rgb(255 255 255 / .34) !important;
  background: rgb(255 255 255 / .08) !important;
}

.fs-blog-newsletter input::placeholder {
  color: rgb(255 255 255 / .72);
}

.fs-blog-newsletter > .relative > p:last-child {
  grid-column: 2;
  color: rgb(255 255 255 / .68) !important;
}

/* ============================================================
   Case studies: one proof-led feature and open case records
============================================================ */

body.fs-template-case-studies #main-content > .fs-content-cases-hero:first-of-type {
  background: var(--fs-cu-white) !important;
  border-bottom-color: var(--fs-cu-line) !important;
}

body.fs-template-case-studies #main-content > .fs-content-cases-hero:first-of-type::before,
body.fs-template-case-studies #main-content > .fs-content-cases-hero:first-of-type > .absolute {
  display: none;
}

body.fs-template-case-studies #main-content > .fs-content-cases-hero:first-of-type > .relative {
  padding-block: 6rem 4rem;
  text-align: left !important;
}

.fs-content-cases-hero .reveal {
  max-width: 64rem;
}

.fs-content-cases-hero :where(h1, p) {
  margin-inline: 0 !important;
  text-align: left !important;
}

.fs-content-cases-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  letter-spacing: -.035em;
}

body.fs-template-case-studies #main-content > .fs-content-cases-hero:first-of-type :where(h1, p) {
  color: var(--fs-cu-ink) !important;
}

body.fs-template-case-studies #main-content > .fs-content-cases-hero:first-of-type h1 span {
  color: var(--fs-cu-red) !important;
}

body.fs-template-case-studies #main-content > .fs-content-cases-hero:first-of-type p {
  color: var(--fs-cu-copy) !important;
}

.fs-content-cases-metrics {
  padding-block: 2rem !important;
  background: var(--fs-cu-white) !important;
}

.fs-content-cases-metrics > div {
  gap: 0 !important;
  max-width: 68rem;
  border-block: 1px solid var(--fs-cu-line);
}

.fs-content-cases-metrics > div > div {
  padding: 1.5rem;
  text-align: left;
}

.fs-content-cases-metrics > div > div + div {
  border-left: 1px solid var(--fs-cu-line);
}

.fs-content-cases-metrics .heading-brand {
  font-size: 2rem !important;
}

.fs-content-cases-metrics p:last-child {
  color: var(--fs-cu-copy) !important;
  letter-spacing: .01em;
  text-transform: none;
}

.fs-content-cases-featured {
  padding-block: 6rem !important;
  background: var(--fs-cu-dark) !important;
}

.fs-content-cases-featured > .absolute {
  display: none;
}

.fs-content-cases-featured > .relative > div:last-child {
  grid-template-columns: minmax(0, 5fr) minmax(26rem, 7fr) !important;
  gap: 4rem !important;
}

.fs-content-cases-featured blockquote {
  padding: 1.5rem 0 0;
  border-top: 1px solid rgb(255 255 255 / .18);
  border-left: 0 !important;
}

.fs-case-proof-ledger {
  gap: 0 !important;
  border-block: 1px solid rgb(255 255 255 / .18);
}

.fs-case-proof-ledger > div {
  min-height: 9rem;
  padding: 1.5rem !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  backdrop-filter: none !important;
}

.fs-case-proof-ledger > div:nth-child(even) {
  border-left: 1px solid rgb(255 255 255 / .18) !important;
}

.fs-case-proof-ledger > div:last-child {
  min-height: 8rem;
  border-top: 1px solid rgb(255 255 255 / .18) !important;
}

.fs-case-proof-ledger > div p:first-child,
.fs-case-proof-ledger > div span {
  color: rgb(255 255 255 / .72) !important;
}

.fs-content-cases-library {
  padding-block: 6rem !important;
  background: var(--fs-cu-white) !important;
}

.fs-content-cases-library > div > .reveal:first-child {
  max-width: 48rem;
  margin-bottom: 3rem !important;
}

.fs-case-library-grid {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 0 !important;
  border-block: 1px solid var(--fs-cu-line);
}

.fs-case-record {
  display: grid !important;
  grid-template-columns: minmax(18rem, .8fr) minmax(0, 1.2fr);
  gap: 0 4rem;
  padding-block: 3rem;
  border: 0 !important;
  border-bottom: 1px solid var(--fs-cu-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible;
}

.fs-case-record:last-child {
  border-bottom: 0 !important;
}

.fs-case-record > div:nth-child(1),
.fs-case-record > div:nth-child(2) {
  grid-column: 1;
}

.fs-case-record > div:nth-child(1) {
  padding: 0 !important;
}

.fs-case-record > div:nth-child(2) {
  align-self: end;
  margin-top: 2rem !important;
  padding: 0 !important;
}

.fs-case-record > div:nth-child(3),
.fs-case-record > div:nth-child(4) {
  grid-column: 2;
}

.fs-case-record > div:nth-child(3) {
  grid-row: 1;
  margin: 0 !important;
  padding: 0 !important;
}

.fs-case-record > div:nth-child(4) {
  grid-row: 2;
  margin: 2rem 0 0 !important;
  padding: 1.5rem 0 0 !important;
}

.fs-case-record > div:nth-child(2) > div {
  padding: 1rem !important;
  border: 0;
  border-radius: var(--fs-cu-radius-md) !important;
  background: var(--fs-cu-muted) !important;
}

.fs-case-record > div:nth-child(3) > div + div {
  padding-top: 1.5rem;
  border-top: 1px solid var(--fs-cu-line);
}

.fs-content-cases-models {
  padding-block: 6rem !important;
}

.fs-case-model-ledger {
  gap: 0 !important;
  border-block: 1px solid var(--fs-cu-line);
}

.fs-case-model {
  padding: 2rem !important;
  border: 0 !important;
  border-left: 1px solid var(--fs-cu-line) !important;
  border-radius: 0 !important;
}

.fs-case-model:first-child {
  border-left: 0 !important;
}

.fs-content-cases-cta {
  padding-block: 6rem !important;
  background: var(--fs-cu-dark) !important;
}

.fs-content-cases-cta > .absolute {
  display: none;
}

.fs-content-cases-cta p {
  color: rgb(255 255 255 / .76) !important;
}

/* ============================================================
   Contact: form first, channels as a compact service directory
============================================================ */

body.fs-template-contact #main-content > .fs-content-contact-hero:first-of-type {
  min-height: 32rem;
  background: var(--fs-inner-hero-shade), var(--fs-inner-hero-gradient) !important;
  border-bottom-color: #970001 !important;
}

body.fs-template-contact #main-content > .fs-content-contact-hero:first-of-type::before {
  display: block;
}

body.fs-template-contact #main-content > .fs-content-contact-hero:first-of-type > .absolute {
  display: none;
}

body.fs-template-contact #main-content > .fs-content-contact-hero:first-of-type > .relative {
  min-height: 32rem;
  padding-block: clamp(4.75rem, 8vw, 7rem);
  text-align: left !important;
}

.fs-content-contact-hero .reveal {
  max-width: 64rem;
}

.fs-content-contact-hero :where(h1, p) {
  margin-inline: 0 !important;
  text-align: left !important;
}

.fs-content-contact-hero h1 {
  max-width: 17ch;
  font-size: clamp(2.75rem, 6vw, 4.75rem) !important;
  letter-spacing: -.035em;
}

body.fs-template-contact #main-content > .fs-content-contact-hero:first-of-type :where(h1, p) {
  color: #fff !important;
}

body.fs-template-contact #main-content > .fs-content-contact-hero:first-of-type h1 span {
  color: #fde047 !important;
}

body.fs-template-contact #main-content > .fs-content-contact-hero:first-of-type p {
  color: rgb(255 255 255 / .84) !important;
}

.fs-content-contact-main {
  padding-block: 4rem 6rem !important;
  background: var(--fs-cu-muted) !important;
}

.fs-contact-layout {
  grid-template-columns: minmax(0, 1.25fr) minmax(20rem, .75fr) !important;
  gap: 4rem !important;
  align-items: start;
}

.fs-contact-form-column {
  grid-column: 1;
  grid-row: 1;
}

.fs-contact-channels {
  grid-column: 2;
  grid-row: 1;
  position: sticky;
  top: 7rem;
}

.fs-contact-form-panel {
  padding: 2rem !important;
  border: 1px solid var(--fs-cu-line) !important;
  border-radius: var(--fs-cu-radius-lg) !important;
  box-shadow: none !important;
}

.fs-contact-form-panel form {
  margin-top: 2rem !important;
}

.fs-contact-form-panel :where(input, textarea) {
  min-height: var(--fs-cu-control);
  border-color: #d4d4d8 !important;
  border-radius: var(--fs-cu-radius-md) !important;
  background: var(--fs-cu-white);
}

.fs-contact-form-panel textarea {
  min-height: 9rem;
}

.fs-contact-form-panel :where(input, textarea)::placeholder {
  color: #71717a;
  opacity: 1;
}

.fs-contact-form-panel .topic-btn {
  min-height: 4.5rem;
  border-width: 1px !important;
  border-color: #d4d4d8 !important;
  border-radius: var(--fs-cu-radius-md) !important;
  background: var(--fs-cu-white);
}

.fs-contact-form-panel .topic-btn:hover,
.fs-contact-form-panel .topic-btn.is-active {
  border-color: var(--fs-cu-red) !important;
  background: var(--fs-cu-soft);
}

.fs-contact-form-panel button[type="submit"] {
  min-height: 3rem;
}

.fs-contact-channels > div + div {
  padding-top: 2rem;
  border-top: 1px solid var(--fs-cu-line);
}

.fs-contact-channels h2 {
  font-size: 1.25rem !important;
}

.fs-contact-channel,
.fs-contact-office {
  padding: 1.5rem 0 !important;
  border: 0 !important;
  border-top: 1px solid var(--fs-cu-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.fs-contact-channel:last-child,
.fs-contact-office:last-child {
  border-bottom: 1px solid var(--fs-cu-line) !important;
}

.fs-contact-channel > div:first-child {
  width: 2.75rem;
  height: 2.75rem;
}

.fs-content-contact-mdp {
  padding-block: 4rem !important;
  background: var(--fs-cu-white) !important;
}

.fs-content-contact-mdp > div > div {
  padding: 2rem !important;
  border: 1px solid var(--fs-cu-line-red) !important;
  border-radius: var(--fs-cu-radius-lg) !important;
  background: var(--fs-cu-soft) !important;
}

.fs-contact-mdp-wrap {
  max-width: 64rem !important;
}

.fs-contact-mdp-card {
  display: grid !important;
  grid-template-columns: 4rem minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.fs-contact-mdp-copy {
  min-width: 0;
  text-align: left !important;
}

.fs-contact-mdp-cta {
  min-height: var(--fs-cu-control);
  justify-content: center;
}

.fs-content-contact-social {
  padding-block: 3rem !important;
}

.fs-content-contact-social > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  text-align: left !important;
}

.fs-content-contact-social > div > p {
  color: var(--fs-cu-copy) !important;
  letter-spacing: .01em;
  text-transform: none;
}

.fs-content-contact-social > div > div {
  margin-top: 0 !important;
}

.fs-content-contact-social a {
  min-height: var(--fs-cu-control);
  border-color: var(--fs-cu-line) !important;
  border-radius: var(--fs-cu-radius-md) !important;
  background: var(--fs-cu-white) !important;
}

/* ============================================================
   Dashboard: compact product register and reliable mobile nav
============================================================ */

.fs-content-dashboard {
  background: #f4f4f5 !important;
  color: var(--fs-cu-ink);
}

.fs-dashboard-nav {
  width: 15rem !important;
  background: var(--fs-cu-dark) !important;
}

.fs-dashboard-nav nav a {
  min-height: var(--fs-cu-control);
  border-radius: var(--fs-cu-radius-sm) !important;
}

.fs-dashboard-main {
  min-width: 0;
}

.fs-dashboard-toolbar {
  min-height: 4.5rem;
  border-color: var(--fs-cu-line) !important;
  background: rgb(255 255 255 / .96) !important;
}

.fs-dashboard-toolbar input {
  min-height: var(--fs-cu-control);
  border-color: #d4d4d8 !important;
  background: var(--fs-cu-white) !important;
}

.fs-dashboard-content {
  width: 100%;
  max-width: 90rem;
  margin-inline: auto;
}

.fs-dashboard-content :where(.rounded-3xl, .rounded-2xl) {
  border-radius: var(--fs-cu-radius-md) !important;
}

.fs-dashboard-content :where(
  section > div.bg-white,
  section > a.bg-white,
  .fs-dashboard-stats > div
) {
  border-width: 1px !important;
  border-color: var(--fs-cu-line) !important;
  background: var(--fs-cu-white) !important;
  box-shadow: none !important;
}

.fs-dashboard-stats {
  gap: 0 !important;
  border: 1px solid var(--fs-cu-line);
  border-radius: var(--fs-cu-radius-lg);
  background: var(--fs-cu-white);
  overflow: hidden;
}

.fs-dashboard-stats > div {
  min-height: 8.5rem;
  padding: 1.5rem !important;
  border: 0 !important;
  border-left: 1px solid var(--fs-cu-line) !important;
  border-radius: 0 !important;
}

.fs-dashboard-stats > div:first-child {
  border-left: 0 !important;
}

.fs-dashboard-primary-grid,
.fs-dashboard-orders-grid {
  gap: 1rem !important;
}

.fs-dashboard-primary-grid > div,
.fs-dashboard-orders-grid > div,
.fs-dashboard-wms > .grid > div {
  border-radius: var(--fs-cu-radius-md) !important;
}

.fs-dashboard-primary-grid > div:nth-child(2) {
  border: 1px solid rgb(214 0 1 / .35) !important;
}

.fs-dashboard-primary-grid button,
.fs-dashboard-orders-grid a,
.fs-dashboard-wms button {
  min-height: var(--fs-cu-control);
}

.fs-dashboard-primary-grid div.flex.gap-1 > button {
  min-width: var(--fs-cu-control);
  padding-inline: .75rem !important;
}

.fs-dashboard-primary-grid button[aria-pressed="true"] {
  background: var(--fs-cu-red) !important;
  color: var(--fs-cu-white) !important;
}

.fs-dashboard-content :where(.text-gray-400) {
  color: #62626b !important;
}

.fs-dashboard-content :where(.text-\[9px\], .text-\[10px\], .text-\[11px\]) {
  line-height: 1.45;
}

.fs-dashboard-orders-grid table {
  min-width: 38rem;
}

.fs-dashboard-orders-grid th {
  color: var(--fs-cu-copy) !important;
  letter-spacing: .02em;
}

.fs-dashboard-wms {
  padding-top: 1rem;
}

.fs-dashboard-wms > .grid.grid-cols-2 {
  gap: 0 !important;
  border: 1px solid var(--fs-cu-line);
  border-radius: var(--fs-cu-radius-md);
  background: var(--fs-cu-white);
  overflow: hidden;
}

.fs-dashboard-wms > .grid.grid-cols-2 > div {
  border: 0 !important;
  border-left: 1px solid var(--fs-cu-line) !important;
  border-radius: 0 !important;
}

.fs-dashboard-wms > .grid.grid-cols-2 > div:first-child {
  border-left: 0 !important;
}

/* ============================================================
   Portal: one role directory, not three floating cards
============================================================ */

.fs-content-portal {
  min-height: calc(100vh - 5rem);
  padding-block: 6rem !important;
  background: var(--fs-cu-white) !important;
}

.fs-portal-shell {
  display: grid;
  grid-template-columns: minmax(18rem, 4fr) minmax(32rem, 6fr);
  gap: 4rem;
  max-width: 72rem !important;
  align-items: start;
}

.fs-portal-intro {
  position: sticky;
  top: 7rem;
  margin: 0 !important;
  text-align: left !important;
}

.fs-portal-intro :where(h1, p) {
  margin-inline: 0 !important;
  text-align: left !important;
}

.fs-portal-intro h1 {
  max-width: 10ch;
}

.fs-portal-directory {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  border-block: 1px solid var(--fs-cu-line);
}

.fs-portal-role {
  display: grid !important;
  grid-template-columns: 3.5rem minmax(0, 1fr) auto !important;
  grid-template-rows: auto auto;
  gap: .5rem 1.5rem !important;
  align-items: center !important;
  min-height: 9rem;
  padding: 1.5rem 0 !important;
  border: 0 !important;
  border-bottom: 1px solid var(--fs-cu-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  text-align: left !important;
  box-shadow: none !important;
  transform: none !important;
}

.fs-portal-role:last-child {
  border-bottom: 0 !important;
}

.fs-portal-role:hover {
  padding-inline: 1rem !important;
  background: var(--fs-cu-soft) !important;
}

.fs-portal-role-icon {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 3.5rem !important;
  height: 3.5rem !important;
  margin: 0 !important;
  border-radius: var(--fs-cu-radius-md) !important;
  background: #fff0f0 !important;
}

.fs-portal-role-icon svg {
  color: var(--fs-cu-red) !important;
}

.fs-portal-role h2 {
  grid-column: 2;
  grid-row: 1;
  color: var(--fs-cu-ink) !important;
}

.fs-portal-role > p {
  grid-column: 2;
  grid-row: 2;
  max-width: 38rem;
  margin: 0 !important;
  color: var(--fs-cu-copy) !important;
}

.fs-portal-role-action {
  grid-column: 3;
  grid-row: 1 / 3;
  width: auto !important;
  min-width: 9rem;
  min-height: var(--fs-cu-control);
  margin: 0 !important;
  padding: .75rem 1rem !important;
  border: 1px solid var(--fs-cu-red);
  border-radius: 999px !important;
  background: transparent !important;
  color: var(--fs-cu-red) !important;
}

/* ============================================================
   Redirect fallbacks and compact commerce catalogue
============================================================ */

.fs-content-pricing-status {
  min-height: 70vh;
  padding: 4rem 1.5rem;
  background: var(--fs-cu-white) !important;
}

.fs-pricing-status-panel {
  max-width: 38rem !important;
  padding: 3rem 0 !important;
  border-block: 1px solid var(--fs-cu-line);
}

.fs-pricing-status-icon {
  width: 3rem !important;
  height: 3rem !important;
  margin-bottom: 1.5rem !important;
  border-radius: var(--fs-cu-radius-md) !important;
}

.fs-content-shop-promo {
  padding-top: 1.5rem;
}

.fs-shop-promo-panel {
  min-height: 20rem;
  padding: 3rem !important;
  border-radius: var(--fs-cu-radius-lg) !important;
  background: var(--fs-cu-red) !important;
}

.fs-shop-promo-mark {
  width: 13rem !important;
  aspect-ratio: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.fs-shop-promo-mark > .heading-brand {
  font-size: 4rem !important;
}

.fs-content-shop-products,
.fs-content-shop-brands {
  padding-block: 3rem !important;
}

.fs-shop-product-grid {
  gap: 1rem !important;
}

.fs-shop-product {
  border-color: var(--fs-cu-line) !important;
  border-radius: var(--fs-cu-radius-md) !important;
  box-shadow: none !important;
  transform: none !important;
}

.fs-shop-product:hover {
  border-color: var(--fs-cu-red) !important;
  box-shadow: none !important;
}

.fs-shop-product > div:last-child {
  padding: 1rem !important;
}

.fs-shop-brand-grid {
  gap: 0 !important;
  border-block: 1px solid var(--fs-cu-line);
}

.fs-shop-brand {
  min-height: 8rem;
  padding: 1.5rem 1rem !important;
  border: 0 !important;
  border-left: 1px solid var(--fs-cu-line) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.fs-shop-brand:first-child {
  border-left: 0 !important;
}

.fs-shop-cta-panel {
  padding: 3rem !important;
  border-radius: var(--fs-cu-radius-lg) !important;
  background: var(--fs-cu-dark) !important;
}

.fs-shop-cta-panel > .absolute {
  display: none;
}

/* ============================================================
   Thank you: one calm confirmation and an open proof strip
============================================================ */

.fs-content-thank-you {
  min-height: calc(100vh - 5rem);
  padding-block: 6rem !important;
  background: var(--fs-cu-white) !important;
}

.fs-thank-you-panel {
  max-width: 44rem !important;
}

.fs-thank-you-check {
  width: 4rem !important;
  height: 4rem !important;
  border-width: 2px !important;
  border-color: rgb(214 0 1 / .3) !important;
  background: var(--fs-cu-soft) !important;
  animation: fs-cu-confirm .45s var(--fs-cu-ease) both;
}

.fs-thank-you-check svg {
  width: 2rem !important;
  height: 2rem !important;
  stroke: var(--fs-cu-red) !important;
}

.fs-content-thank-you > div > span {
  border: 1px solid rgb(214 0 1 / .18);
  background: var(--fs-cu-soft) !important;
  color: var(--fs-cu-red) !important;
  letter-spacing: .02em;
}

.fs-thank-you-response {
  min-height: var(--fs-cu-control);
  border-color: rgb(214 0 1 / .2) !important;
  background: var(--fs-cu-soft) !important;
  color: var(--fs-cu-red-dark) !important;
}

.fs-thank-you-points {
  gap: 0 !important;
  border-block: 1px solid var(--fs-cu-line);
}

.fs-thank-you-points > div {
  min-height: 6rem;
  padding: 1.5rem !important;
  border: 0 !important;
  border-left: 1px solid var(--fs-cu-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.fs-thank-you-points > div:first-child {
  border-left: 0 !important;
}

.fs-thank-you-points .heading-brand {
  color: var(--fs-cu-red) !important;
}

.fs-thank-you-actions a {
  min-height: 3rem;
  box-shadow: none !important;
}

@keyframes fs-cu-confirm {
  from {
    opacity: 0;
    transform: scale(.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ============================================================
   Responsive adaptations
============================================================ */

@media (max-width: 1023px) {
  .fs-content-cases-featured > .relative > div:last-child,
  .fs-contact-layout,
  .fs-portal-shell {
    grid-template-columns: 1fr !important;
  }

  .fs-contact-form-column,
  .fs-contact-channels {
    grid-column: 1;
  }

  .fs-contact-form-column {
    grid-row: 1;
  }

  .fs-contact-channels {
    position: static;
    grid-row: 2;
  }

  .fs-portal-intro {
    position: static;
  }

  .fs-portal-intro h1 {
    max-width: 16ch;
  }

  .fs-dashboard-nav {
    position: sticky;
    z-index: 30;
    top: 0;
    display: flex !important;
    width: 100% !important;
    flex-direction: row !important;
    align-items: center;
    overflow-x: auto;
  }

  .fs-dashboard-nav > div:first-child,
  .fs-dashboard-nav > div:last-child {
    display: none;
  }

  .fs-dashboard-nav nav {
    display: flex;
    flex: none;
    gap: .25rem;
    padding: .75rem 1rem !important;
  }

  .fs-dashboard-nav nav a {
    flex: none;
    min-height: var(--fs-cu-control);
  }

  .fs-dashboard-toolbar {
    top: 4.25rem !important;
  }

  .fs-case-record {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .fs-case-record > div:nth-child(n) {
    grid-column: 1;
    grid-row: auto;
  }

  .fs-case-record > div:nth-child(2) {
    margin-top: 0 !important;
  }

  .fs-blog-article-layout {
    display: block !important;
  }

  .fs-blog-related {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .fs-content-blog-hero > .relative,
  .fs-content-cases-hero > .relative,
  .fs-content-contact-hero > .relative {
    min-height: 27rem;
    padding-block: 4.75rem;
  }

  .fs-content-blog-index,
  .fs-content-blog-article,
  .fs-content-cases-library,
  .fs-content-cases-models,
  .fs-content-contact-main,
  .fs-content-portal,
  .fs-content-thank-you {
    padding-block: 3rem 4rem !important;
  }

  .fs-blog-lead {
    grid-template-columns: 1fr !important;
    min-height: 0;
  }

  .fs-blog-lead-copy {
    padding: 1.5rem !important;
  }

  .fs-blog-feed--static .fs-blog-feed-item {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .fs-blog-feed--static .fs-blog-feed-item > div:last-child {
    padding: 1.5rem;
  }

  .fs-blog-feed--static .fs-blog-feed-item > a:first-child {
    aspect-ratio: 16 / 9;
  }

  .fs-blog-feed--static,
  .fs-blog-feed--wp {
    grid-template-columns: 1fr !important;
  }

  .fs-blog-feed--wp .fs-blog-feed-item {
    grid-column: 1;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .fs-blog-feed--wp .fs-blog-feed-item:is(.fs-blog-feed-item--featured, :first-child) {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .fs-blog-feed--wp .fs-blog-feed-item > a:first-child,
  .fs-blog-feed--wp .fs-blog-feed-item:is(.fs-blog-feed-item--featured, :first-child) > a:first-child {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .fs-blog-feed--wp .fs-blog-feed-item:is(.fs-blog-feed-item--featured, :first-child) > div,
  .fs-blog-feed--wp .fs-blog-feed-item:not(.fs-blog-feed-item--featured) > div {
    padding: 1.5rem;
  }

  .fs-blog-newsletter {
    padding: 2rem !important;
  }

  .fs-blog-newsletter > .relative {
    display: block;
  }

  .fs-blog-newsletter > .relative > form,
  .fs-blog-newsletter > .relative > p:last-child {
    margin-top: 1.5rem !important;
  }

  .fs-content-cases-metrics > div {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .fs-content-cases-metrics > div > div:nth-child(odd) {
    border-left: 0;
  }

  .fs-content-cases-metrics > div > div:nth-child(n + 3) {
    border-top: 1px solid var(--fs-cu-line);
  }

  .fs-case-proof-ledger {
    grid-template-columns: 1fr !important;
  }

  .fs-case-proof-ledger > div:nth-child(even) {
    border-left: 0 !important;
  }

  .fs-case-proof-ledger > div + div {
    border-top: 1px solid rgb(255 255 255 / .18) !important;
  }

  .fs-case-model-ledger {
    grid-template-columns: 1fr !important;
  }

  .fs-case-model {
    border-top: 1px solid var(--fs-cu-line) !important;
    border-left: 0 !important;
  }

  .fs-case-model:first-child {
    border-top: 0 !important;
  }

  .fs-contact-form-panel {
    padding: 1.5rem !important;
  }

  .fs-contact-form-panel fieldset > div {
    grid-template-columns: 1fr !important;
  }

  .fs-content-contact-mdp .fs-contact-mdp-card {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.5rem !important;
    padding: 1.5rem !important;
    text-align: center !important;
  }

  .fs-contact-mdp-icon {
    margin-inline: auto !important;
  }

  .fs-contact-mdp-copy,
  .fs-contact-mdp-copy :where(span, h2, p) {
    margin-inline: auto;
    text-align: center !important;
  }

  .fs-contact-mdp-copy p {
    max-width: 34rem;
  }

  .fs-contact-mdp-cta {
    width: min(100%, 18rem);
    align-self: center;
    margin-inline: auto;
  }

  .fs-content-contact-social > div {
    display: block;
    text-align: center !important;
  }

  .fs-content-contact-social > div > div {
    justify-content: center;
    margin-top: 1.5rem !important;
  }

  .fs-dashboard-toolbar {
    padding-inline: 1rem !important;
  }

  .fs-dashboard-content {
    padding: 1rem !important;
  }

  .fs-dashboard-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .fs-dashboard-stats > div:nth-child(odd) {
    border-left: 0 !important;
  }

  .fs-dashboard-stats > div:nth-child(n + 3) {
    border-top: 1px solid var(--fs-cu-line) !important;
  }

  .fs-dashboard-primary-grid > div,
  .fs-dashboard-orders-grid > div,
  .fs-dashboard-wms > .grid > div {
    padding: 1.25rem !important;
  }

  .fs-dashboard-wms > .grid.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .fs-dashboard-wms > .grid.grid-cols-2 > div:nth-child(odd) {
    border-left: 0 !important;
  }

  .fs-dashboard-wms > .grid.grid-cols-2 > div:nth-child(n + 3) {
    border-top: 1px solid var(--fs-cu-line) !important;
  }

  .fs-portal-shell {
    gap: 3rem;
  }

  .fs-portal-role {
    grid-template-columns: 3rem minmax(0, 1fr) !important;
    min-height: 0;
  }

  .fs-portal-role-icon {
    width: 3rem !important;
    height: 3rem !important;
  }

  .fs-portal-role-action {
    grid-column: 2;
    grid-row: 3;
    justify-self: start;
    margin-top: .5rem !important;
  }

  .fs-shop-promo-panel,
  .fs-shop-cta-panel {
    padding: 2rem !important;
  }

  .fs-shop-promo-mark {
    width: 100% !important;
    min-height: 7rem;
  }

  .fs-shop-product-grid {
    gap: .75rem !important;
  }

  .fs-shop-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .fs-shop-brand:nth-child(odd) {
    border-left: 0 !important;
  }

  .fs-shop-brand:nth-child(n + 3) {
    border-top: 1px solid var(--fs-cu-line) !important;
  }

  .fs-thank-you-points {
    grid-template-columns: 1fr !important;
  }

  .fs-thank-you-points > div {
    border-top: 1px solid var(--fs-cu-line) !important;
    border-left: 0 !important;
  }

  .fs-thank-you-points > div:first-child {
    border-top: 0 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  :where(
    .fs-blog-feed-item,
    .fs-portal-role,
    .fs-shop-product,
    .fs-shop-brand,
    .fs-thank-you-check
  ) {
    animation: none !important;
    transition: none !important;
  }
}
/* Generic editorial pages: privacy, terms, and editor-authored pages. */
.fs-content-generic {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8.5rem) 1.5rem;
  background:
    radial-gradient(ellipse 72% 62% at 100% 0%, rgb(214 0 1 / .045) 0%, transparent 70%),
    linear-gradient(180deg, #fbfaf9 0%, #f8f3f3 100%);
}

.fs-content-generic__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .55;
  background-image:
    linear-gradient(rgba(248, 247, 246, .82), rgba(248, 244, 244, .88)),
    url("../Patterns/1.webp");
  background-position: center;
  background-size: auto, 16rem;
}

.fs-content-generic__shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(14rem, 22rem) minmax(0, 48rem);
  gap: clamp(3rem, 8vw, 8rem);
  width: min(100%, 78rem);
  margin-inline: auto;
  align-items: start;
}

.fs-content-generic__header {
  position: sticky;
  top: 8rem;
  padding-top: 1.25rem;
  border-top: 3px solid #e3000b;
}

.fs-content-generic__header h1 {
  margin: 0;
  color: #121216;
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.fs-content-generic__body {
  min-width: 0;
  padding: clamp(1.75rem, 4vw, 3.5rem);
  color: #34343b;
  background: #fff;
  border: 1px solid #e9e5e2;
  border-radius: 1.25rem;
  box-shadow: 0 18px 45px rgba(24, 20, 18, .07);
}

.fs-content-generic__body > :first-child {
  margin-top: 0;
}

.fs-content-generic__body > :last-child {
  margin-bottom: 0;
}

.fs-content-generic__body h2,
.fs-content-generic__body h3,
.fs-content-generic__body h4,
.fs-content-generic__body strong {
  color: #16161a;
}

.fs-content-generic__body a {
  color: #c7000a;
  text-decoration-thickness: .08em;
  text-underline-offset: .2em;
}

@media (max-width: 800px) {
  .fs-content-generic__shell {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .fs-content-generic__header {
    position: static;
  }
}

/* Reusable light patterned section for formerly dark content registers. */
.fs-light-pattern-section {
  color: var(--fs-inner-ink, #151519);
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(214, 0, 1, .05) 0%, transparent 70%),
    linear-gradient(180deg, #fff 0%, #fbf6f6 100%) !important;
  isolation: isolate;
}

.fs-light-pattern-section__pattern {
  z-index: -1;
  background-image: url("../Patterns/1.webp");
  background-position: center;
  background-size: 15rem;
  opacity: .035;
}

.fs-light-pattern-section .eyebrow {
  color: var(--fs-inner-red, #d60001) !important;
}

.fs-light-pattern-section :is(h2, h3) {
  color: var(--fs-inner-ink, #151519) !important;
}

.fs-light-pattern-section p {
  color: var(--fs-inner-copy, #4b4548) !important;
}

body.fs-template-solutions-supplier .fs-light-pattern-section .fs-dark-register,
body.fs-template-solutions-quality-warehousing .fs-light-pattern-section .fs-dark-register,
body.fs-template-solutions-kol .fs-light-pattern-section .fs-kol-sequence {
  border-color: var(--fs-inner-line, #eadede) !important;
}

body.fs-template-solutions-supplier .fs-light-pattern-section .fs-dark-register__item,
body.fs-template-solutions-quality-warehousing .fs-light-pattern-section .fs-dark-register__item,
body.fs-template-solutions-kol .fs-light-pattern-section .fs-sequence__item {
  border-color: var(--fs-inner-line, #eadede) !important;
  background: transparent !important;
}

body.fs-template-solutions-supplier .fs-light-pattern-section .fs-dark-register__item :is(h3, p),
body.fs-template-solutions-quality-warehousing .fs-light-pattern-section .fs-dark-register__item :is(h3, p),
body.fs-template-solutions-kol .fs-light-pattern-section .fs-sequence__item :is(h3, p) {
  color: var(--fs-inner-ink, #151519) !important;
}

body.fs-template-solutions-supplier .fs-light-pattern-section .fs-dark-register__item p,
body.fs-template-solutions-quality-warehousing .fs-light-pattern-section .fs-dark-register__item p,
body.fs-template-solutions-kol .fs-light-pattern-section .fs-sequence__item p {
  color: var(--fs-inner-copy, #4b4548) !important;
}

body.fs-template-solutions-supplier .fs-light-pattern-section .fs-dark-register__icon,
body.fs-template-solutions-quality-warehousing .fs-light-pattern-section .fs-dark-register__icon {
  border-color: rgb(214 0 1 / .18) !important;
  background: rgb(214 0 1 / .07) !important;
}

body.fs-template-solutions-distribution-network .fs-network-map-panel {
  box-shadow: inset 0 0 0 1px rgb(214 0 1 / .025);
}

body.fs-template-solutions-distribution-network .fs-network-region {
  box-shadow: 0 4px 8px rgb(19 15 16 / .035);
}

body.fs-template-about .fs-about-technology .fs-about-heading h2,
body.fs-template-about .fs-about-technology .fs-about-heading > p {
  color: var(--about-ink, #111116) !important;
}

body.fs-template-about .fs-about-technology .fs-about-heading > p {
  color: var(--about-copy, #4d4d57) !important;
}

/* Smart WMS: focused hero and explicit contrast for the results panel. */
body.fs-template-technology-smart-wms .fs-wms-hero__copy {
  width: min(100%, 48rem);
}

body.fs-template-technology-smart-wms .fs-wms-hero__copy > p {
  max-width: 64ch;
}

body.fs-template-technology-smart-wms .fs-wms-dashboard {
  display: none !important;
}

body.fs-template-technology-smart-wms .fs-wms-results__panel {
  border-radius: 16px !important;
  background: #111827 !important;
  box-shadow: none;
}

body.fs-template-technology-smart-wms .fs-wms-results__copy .eyebrow {
  color: #ff5657 !important;
}

body.fs-template-technology-smart-wms .fs-wms-results__copy :is(h2, p),
body.fs-template-technology-smart-wms .fs-wms-results__metric :is(p, .heading-brand) {
  color: #fff !important;
}

body.fs-template-technology-smart-wms .fs-wms-results__metric {
  border-color: rgb(255 255 255 / .2) !important;
  background: rgb(255 255 255 / .035);
}

body.fs-template-technology-smart-wms .fs-wms-results__metric-label {
  letter-spacing: .08em;
}

/*
 * Unified marketing cards.
 * These groups are independent content units, so they use one quiet surface
 * language: no ruled-list treatment, no outline, and one restrained lift.
 */
body.fs-inner-marketing .fs-clean-card-grid {
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.5rem) !important;
  border: 0 !important;
}

body.fs-inner-marketing .fs-clean-card-grid > .fs-clean-card,
body.fs-inner-marketing .fs-clean-card {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  padding: clamp(1.5rem, 2.4vw, 2rem);
  border: 0 !important;
  border-radius: 16px !important;
  color: #17171c;
  background: #fff !important;
  box-shadow: 0 4px 8px rgb(28 20 21 / .07) !important;
  transform: translateY(0);
  transition:
    transform 220ms cubic-bezier(.22, 1, .36, 1),
    box-shadow 220ms cubic-bezier(.22, 1, .36, 1),
    background-color 220ms ease;
}

body.fs-inner-marketing .fs-clean-card-grid > .fs-clean-card:hover,
body.fs-inner-marketing .fs-clean-card:hover {
  background: #fffafa !important;
  box-shadow: 0 7px 8px rgb(111 0 7 / .1) !important;
  transform: translateY(-3px);
}

body.fs-inner-marketing .fs-clean-card :is(h3, p) {
  color: #17171c !important;
}

body.fs-inner-marketing .fs-clean-card p {
  color: #51494d !important;
}

body.fs-inner-marketing .fs-clean-card > div:first-child {
  border-radius: 12px !important;
}

body.fs-template-solutions-supplier .fs-supplier-kol__perks {
  border: 0 !important;
}

body.fs-template-solutions-supplier .fs-supplier-kol__perk {
  min-height: 13rem;
}

body.fs-template-solutions-quality-warehousing .fs-certification-cards {
  max-width: 72rem;
  gap: 1rem;
  border: 0;
}

body.fs-template-solutions-quality-warehousing .fs-certification-card {
  flex: 1 1 12rem;
  min-height: 14rem;
  align-items: center;
  justify-content: center;
}

body.fs-template-solutions-quality-warehousing .fs-certification-card__logo {
  display: flex;
  width: 6rem;
  height: 5.5rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

body.fs-template-solutions-quality-warehousing .fs-certification-card__logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

/* Stronger foreground on saturated red fields. */
body.fs-inner-marketing #main-content > section.bg-brand-red :where(p, li) {
  color: rgb(255 255 255 / .9) !important;
}

body.fs-template-about .fs-about-impact :is(p, .heading-brand) {
  color: #fff !important;
}

body.fs-template-about .fs-about-impact .text-white\/60 {
  color: rgb(255 255 255 / .88) !important;
}

body.fs-template-technology-ar .fs-ar-stat__value,
body.fs-template-technology-ar .fs-ar-stat__label {
  color: #fff !important;
}

@media (max-width: 767px) {
  body.fs-inner-marketing .fs-clean-card-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.fs-template-solutions-supplier .fs-supplier-kol__perks {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.fs-inner-marketing .fs-clean-card {
    transition: none;
  }

  body.fs-inner-marketing .fs-clean-card:hover {
    transform: none;
  }
}

/* Long-form legal pages use a calm editorial rail rather than a generic text column. */
.fs-legal-page {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) 1.5rem;
  background:
    radial-gradient(ellipse 72% 62% at 100% 0%, rgb(214 0 1 / .045) 0%, transparent 70%),
    linear-gradient(180deg, #fbfaf9 0%, #f8f3f3 100%);
}

.fs-legal-page__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(248, 247, 246, .84), rgba(248, 244, 244, .9)),
    url("../Patterns/1.webp");
  background-position: center;
  background-size: auto, 16rem;
}

.fs-legal-page__shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(15rem, 20rem) minmax(0, 48rem);
  gap: clamp(3rem, 8vw, 8rem);
  width: min(100%, 76rem);
  margin-inline: auto;
  align-items: start;
}

.fs-legal-page__header {
  position: sticky;
  top: 8rem;
  padding-top: 1.25rem;
  border-top: 3px solid #e3000b;
}

.fs-legal-page__header nav {
  margin-bottom: 1.5rem;
}

.fs-legal-page__header h1 {
  margin: 0;
  color: #151519;
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.fs-legal-page__header > p {
  margin: 1.25rem 0 0;
  color: #68656a;
  font-size: .875rem;
}

.fs-legal-page__body {
  display: grid;
  gap: 0;
  min-width: 0;
  color: #3c3a3f;
  background: #fff;
  border: 1px solid #e9e5e2;
  border-radius: 1.25rem;
  box-shadow: 0 18px 45px rgba(24, 20, 18, .07);
}

.fs-legal-page__body section {
  padding: clamp(1.75rem, 4vw, 3rem);
}

.fs-legal-page__body section + section {
  border-top: 1px solid #ebe7e4;
}

.fs-legal-page__body h2 {
  margin: 0 0 .9rem;
  color: #17171b;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.15;
}

.fs-legal-page__body p,
.fs-legal-page__body ul {
  margin: 0;
}

.fs-legal-page__body a {
  color: #c7000a;
  text-decoration-thickness: .08em;
  text-underline-offset: .2em;
}

@media (max-width: 800px) {
  .fs-legal-page__shell {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .fs-legal-page__header {
    position: static;
  }
}
