@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/ibm-plex-sans.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/barlow-condensed-700.woff2") format("woff2");
}

:root {
  --cs-paper: #f6f6f5;
  --cs-ink: #1a1a1a;
  --cs-brand: #9b1528;
  --cs-brand-dark: #7a1020;
  --cs-gray: #5e5e5e;
  --cs-muted: #ececec;
  --cs-border: #e2e2e0;
  --cs-card: #ffffff;
  --cs-success: #2f6b4f;
  --cs-navy-muted: #9a9a9a;
  --cs-radius: 0.875rem;
  --cs-shadow: 0 0 0 1px rgba(26, 26, 26, 0.06), 0 1px 2px -1px rgba(26, 26, 26, 0.06), 0 2px 4px 0 rgba(26, 26, 26, 0.04);
  --cs-max: 72rem;
  --cs-sans: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  --cs-display: "Barlow Condensed", "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }

body.cs-body {
  margin: 0;
  background: var(--cs-paper);
  color: var(--cs-ink);
  font-family: var(--cs-sans);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cs-brand); }
a:hover { color: var(--cs-brand-dark); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3 { text-wrap: balance; margin: 0; }
p { text-wrap: pretty; }

.cs-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 28rem;
}
.cs-shop-layout,
.cs-form,
.woocommerce-checkout,
.woocommerce-cart {
  content-visibility: visible;
}

.cs-wrap {
  width: min(100% - 2rem, var(--cs-max));
  margin-inline: auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.cs-btn,
.button,
button.button,
a.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce #respond input#submit,
.woocommerce input.button,
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product .button,
.woocommerce div.product form.cart .button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: auto !important;
  height: auto;
  min-height: 2.5rem;
  padding: 0.5rem 1rem;
  border: 0;
  border-radius: 0.5rem;
  background: var(--cs-brand);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.2 !important;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  text-decoration: none !important;
  box-sizing: border-box;
  box-shadow: var(--cs-shadow);
  transition: background 0.15s ease;
}

.cs-btn:hover,
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--cs-brand-dark);
  color: #fff !important;
}

.cs-btn--ghost,
.woocommerce a.button.alt,
a.cs-btn--ghost {
  background: transparent;
  color: var(--cs-ink) !important;
  box-shadow: inset 0 0 0 1px var(--cs-border);
}

.cs-btn--ghost:hover {
  background: var(--cs-muted);
  color: var(--cs-ink) !important;
}

.cs-btn--light {
  background: #fff;
  color: var(--cs-brand) !important;
}

.cs-util {
  background: var(--cs-ink);
  color: #f4f4f4;
  font-size: 0.75rem;
}

.cs-util__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  min-height: 2.25rem;
  padding-block: 0.35rem;
}

.cs-util a { color: #fff; text-decoration: none; }
.cs-util a:hover { color: #fff; text-decoration: underline; }
.cs-util__muted { color: var(--cs-navy-muted); }

.cs-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--cs-card);
  border-bottom: 1px solid var(--cs-border);
}

.cs-header__bar,
.cs-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.25rem;
}

.cs-logo { flex: 0 0 auto; }
.cs-logo img { height: 2.35rem; width: auto; max-width: min(200px, 42vw); }

.cs-header__nav {
  display: none;
  border-top: 1px solid var(--cs-border);
  background: #fff;
}
.cs-header__nav .cs-wrap {
  display: flex;
}
.cs-header__nav .cs-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  width: 100%;
}

.cs-nav {
  display: none;
  flex: 1 1 auto;
  min-width: 0;
}
.cs-nav__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  width: auto;
}
.cs-nav li { margin: 0; padding: 0; flex: 0 0 auto; }
.cs-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0 0.45rem;
  color: var(--cs-gray);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
}
.cs-nav a:hover,
.cs-nav a[aria-current="page"],
.cs-nav .current-menu-item > a { color: var(--cs-brand); }

.cs-has-sub { position: relative; }
.cs-nav__toggle {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0 0.55rem;
  border: 0;
  background: transparent;
  color: var(--cs-gray);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
}
.cs-nav__toggle:hover,
.cs-has-sub.is-open > .cs-nav__toggle { color: var(--cs-brand); }
.cs-sub {
  display: none !important;
  position: absolute;
  top: calc(100% - 0.15rem);
  left: 0;
  min-width: 15rem;
  max-height: min(70vh, 28rem);
  overflow: auto;
  background: #fff;
  border: 1px solid var(--cs-border);
  border-radius: 0.5rem;
  box-shadow: var(--cs-shadow);
  padding: 0.35rem 0;
  z-index: 80;
  flex-direction: column;
  flex-wrap: nowrap;
  width: max-content;
}
.cs-has-sub--end > .cs-sub { left: auto; right: 0; }
.cs-has-sub.is-open > .cs-sub { display: block !important; }
.cs-sub a {
  display: block;
  min-height: 2.2rem;
  padding: 0.35rem 0.85rem;
  white-space: nowrap;
}
.cs-drawer .cs-nav__list { display: block; width: 100%; }
.cs-drawer .cs-has-sub { display: block; }
.cs-drawer .cs-nav__toggle {
  width: 100%;
  justify-content: space-between;
  border-bottom: 1px solid var(--cs-border);
}
.cs-drawer .cs-sub {
  position: static;
  display: none !important;
  border: 0;
  box-shadow: none;
  max-height: none;
  padding: 0 0 0.4rem 0.8rem;
  background: transparent;
  left: auto;
  right: auto;
  width: auto;
}
.cs-drawer .cs-has-sub.is-open > .cs-sub { display: block !important; }
.cs-drawer .cs-sub a { border-bottom: 0; font-weight: 400; color: var(--cs-gray); }

.cs-header__actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex: 0 0 auto;
  margin-left: auto;
}

.cs-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--cs-border);
  border-radius: 0.5rem;
  background: #fff;
  color: var(--cs-ink);
  text-decoration: none;
}

.cs-icon-btn:hover { color: var(--cs-brand); }
.cs-badge {
  position: absolute;
  top: -0.3rem;
  right: -0.3rem;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: var(--cs-brand);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs-badge[hidden] { display: none !important; }

.cs-menu-toggle { display: inline-flex; }

.cs-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
}
.cs-drawer.is-open { display: block; }
.cs-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.45);
}
.cs-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(22rem, 92vw);
  height: 100%;
  background: #fff;
  padding: 1.25rem;
  overflow: auto;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
}
.cs-drawer__panel nav ul {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
}
.cs-drawer__panel nav li { margin: 0; }
.cs-drawer__panel a {
  display: block;
  padding: 0.7rem 0.2rem;
  color: var(--cs-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--cs-border);
  font-weight: 500;
}

@media (min-width: 1100px) {
  .cs-header__nav { display: block; }
  .cs-header__nav .cs-nav,
  .cs-nav { display: flex; width: 100%; }
  .cs-menu-toggle { display: none; }
  .cs-quote-desktop,
  .cs-wa-header { display: inline-flex !important; }
  .cs-wa-icon { display: none; }
}

.cs-quote-desktop { display: none; white-space: nowrap; }
.cs-wa-header {
  display: none;
  background: #128c7e !important;
  box-shadow: none;
  font-size: 0.8125rem;
  padding: 0.45rem 0.85rem;
}
.cs-wa-header:hover { background: #0e7368 !important; color: #fff !important; }
.cs-wa-icon {
  background: #128c7e;
  color: #fff !important;
  border-color: #128c7e;
  font-size: 0.7rem;
  font-weight: 700;
}

.cs-slider {
  position: relative;
  background: var(--cs-ink);
  color: #fff;
  overflow: hidden;
}
.cs-slider__slide { display: none; position: relative; }
.cs-slider__slide.is-active { display: block; }
.cs-slider__slide img {
  width: 100%;
  height: min(62vw, 28rem);
  object-fit: cover;
}
.cs-slider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 26, 26, 0.82) 0%, rgba(26, 26, 26, 0.4) 55%, rgba(26, 26, 26, 0.08) 100%);
  display: flex;
  align-items: flex-end;
}
@media (min-width: 640px) {
  .cs-slider__overlay { align-items: center; }
  .cs-slider__slide img { height: min(42vw, 26rem); }
}
.cs-slider__copy { width: min(100% - 2rem, var(--cs-max)); margin: 0 auto; padding: 2rem 0 2.4rem; max-width: 34rem; }
.cs-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}
.cs-slider h2 {
  font-family: var(--cs-display);
  font-size: clamp(1.8rem, 5vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0.4rem 0 0.6rem;
}
.cs-slider p { color: rgba(255, 255, 255, 0.88); margin: 0 0 1rem; }
.cs-slider__dots {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
}
.cs-slider__dots button {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 99px;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  padding: 0;
}
.cs-slider__dots button.is-active { background: #fff; width: 1.4rem; }

.cs-section { padding: 3rem 0; }
.cs-section h2.cs-title {
  font-family: var(--cs-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
}
.cs-lead { color: var(--cs-gray); max-width: 38rem; }

.cs-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .cs-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .cs-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.cs-card {
  background: var(--cs-card);
  border-radius: var(--cs-radius);
  box-shadow: var(--cs-shadow);
  overflow: hidden;
}
.cs-card a { color: inherit; text-decoration: none; }
.cs-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; background: var(--cs-muted); }
.cs-card__body { padding: 0.9rem 1rem 1.1rem; }
.cs-card h3 { font-size: 1rem; }
.cs-card p { margin: 0.3rem 0 0; color: var(--cs-gray); font-size: 0.85rem; }

.cs-price {
  font-weight: 700;
  color: var(--cs-brand);
  font-size: 1.05rem;
}
.cs-price del {
  color: var(--cs-navy-muted);
  font-weight: 500;
  margin-right: 0.35rem;
}

.cs-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  color: var(--cs-gray);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
}

.cs-values { display: grid; gap: 1rem; }
@media (min-width: 768px) { .cs-values { grid-template-columns: repeat(4, 1fr); } }
.cs-values article { padding: 1.1rem; }

.cs-pagehead {
  padding: 2.2rem 0 1.6rem;
  border-bottom: 1px solid var(--cs-border);
  background: linear-gradient(#fff, var(--cs-paper));
}
.cs-pagehead h1 {
  font-family: var(--cs-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
}

.cs-footer {
  margin-top: auto;
  background: var(--cs-ink);
  color: #f4f4f4;
}
.cs-footer__rule { height: 3px; background: var(--cs-brand); }
.cs-footer__grid {
  display: grid;
  gap: 2rem;
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .cs-footer__grid { grid-template-columns: 1.2fr 1fr 0.8fr 1.1fr; }
}
.cs-footer h2 {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cs-navy-muted);
}
.cs-footer a { color: rgba(255, 255, 255, 0.88); text-decoration: none; }
.cs-footer a:hover { color: #fff; }
.cs-footer ul { list-style: none; margin: 0.8rem 0 0; padding: 0; }
.cs-footer li { margin: 0.15rem 0; }
.cs-footer address,
address {
  font-style: normal;
  font-family: inherit;
}
.cs-footer__meta {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.9rem 0;
  color: var(--cs-navy-muted);
  font-size: 0.78rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}
.cs-footer .cs-logo--on-dark img { filter: none; mix-blend-mode: normal; height: 2.1rem; }

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  margin: 0 !important;
  padding: 0.5rem 0.25rem 1rem !important;
  width: 100%;
  box-sizing: border-box;
  overflow: visible;
}
.cs-shop-layout,
.cs-shop-main,
.cs-wrap {
  overflow: visible;
}
.cs-shop-main {
  min-width: 0;
  padding-inline: 0.15rem;
}
@media (min-width: 900px) {
  .woocommerce ul.products { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.woocommerce ul.products li.product {
  background: #fff;
  border-radius: var(--cs-radius);
  box-shadow: var(--cs-shadow);
  padding: 0 0 1rem;
  margin: 0 !important;
  width: auto !important;
  max-width: 100%;
  float: none !important;
  box-sizing: border-box;
}
.woocommerce ul.products li.product img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--cs-radius) var(--cs-radius) 0 0;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 0.95rem !important;
  padding: 0.7rem 0.9rem 0.2rem;
}
.woocommerce ul.products li.product .price { padding: 0 0.9rem; color: var(--cs-brand); font-weight: 700; }
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button {
  margin: 0.6rem 0.9rem 0;
  float: none !important;
}

.woocommerce div.product { background: #fff; border-radius: var(--cs-radius); padding: 1.25rem; box-shadow: var(--cs-shadow); }
.woocommerce div.product p.price { color: var(--cs-brand); font-size: 1.5rem; font-weight: 700; }
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--cs-brand) !important;
}

.woocommerce table.shop_table { background: #fff; border-radius: var(--cs-radius); overflow: hidden; }

.cs-form { display: grid; gap: 0.85rem; }
.cs-form label { font-size: 0.8rem; font-weight: 600; color: var(--cs-gray); }
.cs-form input,
.cs-form select,
.cs-form textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  width: 100%;
  min-height: 2.75rem;
  border: 1px solid var(--cs-border);
  border-radius: 0.5rem;
  padding: 0.55rem 0.75rem;
  font: inherit;
  background: #fff;
}
.cs-form textarea { min-height: 8rem; }

.cs-notice {
  padding: 0.85rem 1rem;
  border-radius: 0.6rem;
  background: #e8f4ee;
  color: var(--cs-success);
  font-weight: 600;
}

.cs-usd { color: var(--cs-gray); font-size: 0.8rem; font-weight: 500; display: block; }

.cs-product-facts {
  list-style: none;
  margin: 0.85rem 0;
  padding: 0.85rem 0;
  border-top: 1px solid var(--cs-border);
  border-bottom: 1px solid var(--cs-border);
  font-size: 0.9rem;
}
.cs-product-facts li { margin: 0.25rem 0; }
.cs-product-facts a { font-weight: 600; }

.cs-prose { line-height: 1.65; }
.cs-prose h2 {
  font-family: var(--cs-display);
  font-size: 1.25rem;
  margin: 1.6rem 0 0.6rem;
}
.cs-prose ul, .cs-prose ol { margin: 0.5rem 0 1rem 1.2rem; }
.cs-prose li { margin: 0.25rem 0; }

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout .woocommerce-billing-fields h3 { font-family: var(--cs-display); }
.woocommerce ul#shipping_method { list-style: none; margin: 0; padding: 0; }
.woocommerce ul#shipping_method li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.4rem 0;
  white-space: normal;
  line-height: 1.3;
}

.cs-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.cs-search {
  display: flex;
  gap: 0.4rem;
}
.cs-search input { flex: 1; min-height: 2.75rem; border: 1px solid var(--cs-border); border-radius: 0.5rem; padding: 0 0.8rem; }

.cs-search--header {
  display: none;
  flex: 1 1 11rem;
  min-width: 8rem;
  max-width: 16rem;
}
@media (min-width: 768px) {
  .cs-search--header { display: flex; }
  .cs-header .cs-search input { min-height: 2.5rem; font-size: 0.875rem; }
}

main.cs-main { flex: 1; }

.cs-quote-only {
  display: inline-block;
  background: var(--cs-muted);
  color: var(--cs-ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  border-radius: 0.3rem;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

.cs-product-facts {
  list-style: none;
  margin: 0.75rem 0 1rem;
  padding: 0;
  font-size: 0.9rem;
  color: var(--cs-gray);
}
.cs-product-facts li { margin: 0.2rem 0; }

.cs-shop-layout {
  display: grid;
  gap: 1.25rem;
}
.cs-filter-toggle {
  justify-self: start;
}
.cs-filters__close {
  display: inline-flex;
  margin-bottom: 0.75rem;
  background: transparent;
  color: var(--cs-ink) !important;
  box-shadow: inset 0 0 0 1px var(--cs-border);
}
.cs-filters {
  display: none;
  background: #fff;
  border-radius: var(--cs-radius);
  box-shadow: var(--cs-shadow);
  padding: 1rem;
}
.cs-filters.is-open {
  display: block;
  position: fixed;
  z-index: 55;
  inset: auto 0 0 0;
  max-height: 85vh;
  overflow: auto;
  border-radius: 1rem 1rem 0 0;
}
.cs-filter-form {
  display: grid;
  gap: 0.75rem;
}
.cs-filter-form label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cs-gray);
}
.cs-filter-form select,
.cs-filter-form input[type="number"] {
  width: 100%;
  min-height: 2.5rem;
  margin-top: 0.3rem;
  border: 1px solid var(--cs-border);
  border-radius: 0.5rem;
  padding: 0.4rem 0.6rem;
  font: inherit;
  background: #fff;
}
.cs-filter-check { display: flex; align-items: center; gap: 0.45rem; font-weight: 500; }
.cs-builder__total {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--cs-brand);
  margin: 0.2rem 0;
}
.cs-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.cs-captcha {
  margin: 0.4rem 0 0.8rem;
}
.cs-captcha label { display: grid; gap: 0.35rem; }
.cs-captcha input { max-width: 8rem; }

@media (min-width: 900px) {
  .cs-shop-layout {
    grid-template-columns: 16rem minmax(0, 1fr);
    align-items: start;
  }
  .cs-filter-toggle,
  .cs-filters__close { display: none; }
  .cs-filters {
    display: block;
    position: static;
    max-height: none;
  }
}

@media (max-width: 640px) {
  .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cs-btn,
  .woocommerce a.button,
  .woocommerce button.button {
    white-space: normal;
    text-align: center;
    line-height: 1.25 !important;
  }
  .cs-header__inner { gap: 0.5rem; }
  .cs-toolbar .cs-btn { flex: 1 1 auto; }
}


.cs-countdown {
  margin: 0.25rem 0.9rem 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cs-brand);
  font-variant-numeric: tabular-nums;
}
.cs-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.85rem 0 0;
}
.cs-social__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  color: #fff !important;
  text-decoration: none !important;
  flex: 0 0 2.25rem;
}
.cs-social__btn svg {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
}
.cs-social__btn--linkedin { background: #0a66c2; }
.cs-social__btn--facebook { background: #1877f2; }
.cs-social__btn--instagram {
  background: radial-gradient(circle at 30% 110%, #f77737 0%, #e1306c 55%, #833ab4 100%);
}
.cs-social__btn--youtube { background: #ff0000; }
.cs-social__btn--x { background: #000; box-shadow: inset 0 0 0 1px rgba(255,255,255,.25); }
.cs-social__btn:hover { filter: brightness(1.08); }
.cs-social__btn[aria-disabled="true"] { opacity: 0.7; }
.cs-account-tools { margin: 1.5rem 0; }
.cs-account-tools h2 { margin-bottom: 0.8rem; }
.cs-footer__meta { padding-bottom: 1.1rem; }
.cs-footer__meta p { margin: 0.2rem 0; }
.cs-similar { margin-top: 2rem; padding-top: 0.5rem; }
.cs-notice {
  background: #eef6f1;
  border: 1px solid #b7d4c3;
  border-radius: 0.5rem;
  padding: 0.7rem 0.9rem;
  margin: 0 0 1rem;
}
