/* ==================================================
   CMS GLOBAL STYLES
   File: cms.css
   Version: 1.0.0
   Updated: 20260511_150613
   Purpose: Shared block styles for all CMS tools
   ================================================== */


/* 1. CSS Variables / Design Tokens */
:root {
  --cms-color-primary: #000000;
  --cms-color-primary-hover: #333333;
  --cms-color-accent: #d10019;
  --cms-color-text: #1a1a1a;
  --cms-color-muted: #666666;
  --cms-color-border: #d8d8d8;
  --cms-color-surface: #ffffff;
  --cms-color-surface-soft: #f4f5f5;
  --cms-radius-sm: 5px;
  --cms-radius-md: 8px;
  --cms-spacing-xs: 4px;
  --cms-spacing-sm: 8px;
  --cms-spacing-md: 16px;
  --cms-spacing-lg: 24px;
  --cms-spacing-xl: 40px;
  --cms-container-max: 1140px;
}


/* 2. Base CMS Scope */
.cms-content {
  color: var(--cms-color-text);
  font-family: Arial, Verdana, sans-serif;
}

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


/* 3. Layout Blocks */
.cms-section {
  width: 100%;
  margin-bottom: var(--cms-spacing-xl);
}

.cms-container {
  width: min(100%, var(--cms-container-max));
  margin-right: auto;
  margin-left: auto;
}

.cms-grid {
  display: grid;
  gap: var(--cms-spacing-md);
}

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

.cms-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cms-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}


/* 4. Typography */
.cms-title {
  margin: 0 0 var(--cms-spacing-md);
  color: var(--cms-color-text);
  font-size: 1.75rem;
  line-height: 1.2;
}

.cms-subtitle {
  margin: 0 0 var(--cms-spacing-sm);
  color: var(--cms-color-muted);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
}

.cms-text {
  color: var(--cms-color-text);
  line-height: 1.6;
}

.cms-text p {
  margin: 0 0 var(--cms-spacing-md);
}


/* 5. Buttons */
.cms-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1rem;
  border: 1px solid var(--cms-color-primary);
  border-radius: var(--cms-radius-md);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.cms-button--primary {
  background: var(--cms-color-primary);
  color: #ffffff;
}

.cms-button--primary:hover,
.cms-button--primary:focus {
  background: var(--cms-color-primary-hover);
  color: #ffffff;
}

.cms-button--secondary {
  background: #ffffff;
  color: var(--cms-color-primary);
}

.cms-button--secondary:hover,
.cms-button--secondary:focus {
  background: var(--cms-color-surface-soft);
  color: var(--cms-color-primary);
}


/* 6. Media */
.cms-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--cms-radius-sm);
}

.cms-video {
  position: relative;
  overflow: hidden;
  border-radius: var(--cms-radius-sm);
  background: #000000;
}

.cms-video::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.cms-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* 7. Components / Blocks */
.cms-hero,
.cms-banner,
.cms-product-grid,
.cms-article-block {
  width: 100%;
}

.cms-card {
  overflow: hidden;
  border: 1px solid var(--cms-color-border);
  border-radius: var(--cms-radius-sm);
  background: var(--cms-color-surface);
}

.cms-card__body {
  padding: var(--cms-spacing-md);
}

.cms-article-block img {
  max-width: 100%;
  height: auto;
}

.cms-product-showcase {
  display: grid;
  gap: var(--cms-spacing-md);
}


/* 8. Utilities */
.cms-hidden {
  display: none !important;
}

.cms-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.cms-text-center {
  text-align: center;
}

.cms-mt-md {
  margin-top: var(--cms-spacing-md);
}

.cms-mb-md {
  margin-bottom: var(--cms-spacing-md);
}


/* 9. Existing Tool Compatibility
   These classes support output already generated by the first CMS tools.
   New generic blocks should use the cms-* namespace above. */
.blog-product-presentation img {
  max-width: 100%;
  height: auto;
}

.sd-landing {
  --sd-ink: #111111;
  --sd-muted: #5f6368;
  --sd-line: #d8d8d8;
  --sd-bg: #ffffff;
  --sd-soft: #f4f5f5;
  --sd-accent: #d10019;
  color: var(--sd-ink);
}

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

.sd-landing .visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.sd-landing-section {
  width: 100%;
  margin: 0 0 5rem;
  max-width: none;
}

.sd-landing-hero-section,
.sd-landing-hero-carousel-section {
  margin-bottom: 2rem;
}

.sd-landing-section-header {
  margin: 0 0 1rem;
}

.sd-landing-eyebrow {
  margin: 0 0 0.25rem;
  color: var(--sd-muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sd-landing-title {
  margin: 0;
  color: var(--sd-ink);
  font-size: 1.75rem;
  line-height: 1.2;
}

.sd-landing-copy {
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
}

.sd-landing-copy p {
  margin: 0 0 1rem;
}

.sd-landing-hero {
  display: block;
}

.sd-landing-hero img,
.sd-landing-hero-carousel-slide img,
.sd-landing-tile img,
.sd-landing-spotlight-media img,
.sd-landing-card img,
.sd-landing-logo img,
.sd-landing-cta-card-media img,
.sd-landing-category-card img,
.sd-landing-immersive-card img,
.sd-landing-rail-banner img,
.sd-landing .item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.sd-landing .sd-landing-hero img.sd-landing-hero-mobile {
  display: none;
}

.sd-landing-hero-carousel-section {
  width: 100vw;
  max-width: none;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.sd-landing-has-local-nav {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-right: 0;
  padding-left: 0;
}

.sd-landing-has-local-nav > .sd-landing-section {
  grid-column: 2;
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

.sd-landing-has-local-nav > .sd-landing-local-nav-section {
  grid-column: 1;
  grid-row: 1;
  position: static;
  z-index: 5;
  align-self: start;
  margin-bottom: 0;
}

.sd-landing-has-local-nav > .sd-landing-hero-carousel-section {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.sd-landing-local-nav-panel {
  background: #f3f3f3;
  border-radius: 5px;
}

.sd-landing-local-nav-title {
  margin: 0;
  padding: 0 0 1.15rem;
  background: #ffffff;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.15;
}

.sd-landing-local-nav-toggle {
  display: none;
}

.sd-landing-local-nav ul {
  display: grid;
  gap: 0;
  margin: 0 !important;
  padding: 1.6rem 1.7rem !important;
  list-style: none !important;
}

.sd-landing-local-nav li {
  position: static;
  margin: 0;
  padding: 0 !important;
  list-style: none !important;
}

.sd-landing-local-nav li::before,
.sd-landing-local-nav li::after {
  content: none !important;
  display: none !important;
}

.sd-landing-local-nav li::marker {
  content: "" !important;
}

.sd-landing-local-nav a {
  display: block;
  padding: 0.6rem 0.6rem;
  border-bottom: 1px dotted #d5d5d5;
  color: var(--sd-ink);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
  text-decoration: none;
  text-transform: uppercase;
}

.sd-landing-local-nav li:last-child a {
  border-bottom: 0;
}

.sd-landing-local-nav a:hover,
.sd-landing-local-nav a:focus {
  background: var(--sd-soft);
  color: var(--sd-accent);
  text-decoration: none;
}

.sd-landing-local-nav-icon {
  display: grid;
  gap: 4px;
  width: 22px;
}

.sd-landing-local-nav-icon span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.sd-landing-hero-carousel-viewport {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1920 / 640;
  background: #111111;
  border-radius: 5px;
}

.sd-landing-hero-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 !important;
  list-style: none !important;
  transition: transform 0.45s ease;
}

.sd-landing-hero-carousel-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 0;
  height: 100%;
  margin: 0;
  padding: 0 !important;
  list-style: none !important;
  background: #111111;
}

.sd-landing-hero-carousel-track > li::marker {
  content: "";
}

.sd-landing-hero-carousel-slide picture {
  display: block;
}

.sd-landing-hero-carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  margin-bottom: 0 !important;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
}

.sd-landing-hero-carousel-main-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 5px;
}

.sd-landing .sd-landing-hero-carousel-main-link:focus-visible {
  outline: none !important;
}

.sd-landing-hero-carousel-content {
  position: absolute;
  bottom: clamp(1.25rem, 4vw, 3rem);
  left: clamp(1.25rem, 5vw, 4rem);
  z-index: 2;
  display: grid;
  gap: 0.55rem;
  max-width: min(560px, calc(100% - 2.5rem));
  color: #ffffff;
  pointer-events: none;
}

.sd-landing-hero-carousel-content a {
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

.sd-landing-hero-carousel-primary-visual {
  position: relative;
  z-index: 3;
  cursor: pointer;
  pointer-events: auto;
}

.sd-landing-hero-carousel-headline-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: min(240px, 58vw);
  margin-bottom: 0.2rem;
}

.sd-landing-hero-carousel-headline-logo img {
  display: block;
  width: auto;
  max-width: min(240px, 58vw);
  height: auto;
  max-height: 58px;
  margin-bottom: 0 !important;
  object-fit: contain;
  border-radius: 0;
}

.sd-landing-hero-carousel-subtitle {
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sd-landing-hero-carousel-title {
  font-size: clamp(1.8rem, 4.2vw, 3.65rem);
  line-height: 1;
}

.sd-landing-hero-carousel-actions-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.1rem;
}

.sd-landing-hero-carousel-main-link:focus-visible + .sd-landing-hero-carousel-content .sd-landing-hero-carousel-primary-visual.sd-landing-btn-primary {
  border-color: #111111;
  background: #373737;
  color: #ffffff;
}

.sd-landing-hero-carousel-main-link:focus-visible + .sd-landing-hero-carousel-content .sd-landing-hero-carousel-primary-visual.sd-landing-btn-secondary {
  border-color: #666666;
  background: #f2f2f2;
  color: #111111;
}

.sd-landing-hero-carousel-main-link:focus-visible + .sd-landing-hero-carousel-content .sd-landing-hero-carousel-primary-visual {
  outline: 3px solid #d10019 !important;
  outline-offset: 3px;
  border-radius: 10px;
}

.sd-landing-hero-carousel-slide.has-brand-logos .sd-landing-hero-carousel-content {
  bottom: clamp(4.35rem, 5.7vw, 5.35rem);
}

.sd-landing-hero-carousel-brand-strip {
  position: absolute;
  right: clamp(7.5rem, 14vw, 13rem);
  bottom: clamp(1.25rem, 3vw, 2.25rem);
  left: clamp(20rem, 35vw, 34rem);
  z-index: 2;
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(1rem, 2.8vw, 2.7rem);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}

.sd-landing-hero-carousel-brand-strip:not(.has-more-label) > :nth-child(n+6),
.sd-landing-hero-carousel-brand-strip.has-more-label > .sd-landing-hero-brand-logo:nth-child(n+5) {
  display: none;
}

.sd-landing-hero-brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 150px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  pointer-events: auto;
}

.sd-landing-hero-brand-logo img {
  display: block;
  width: auto;
  max-width: 150px;
  height: auto;
  max-height: 40px;
  margin-bottom: 0 !important;
  object-fit: contain;
  border-radius: 0;
}

.sd-landing-hero-brand-more {
  color: #ffffff;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.sd-landing-hero-carousel-info {
  position: absolute;
  top: clamp(0.75rem, 2vw, 1.25rem);
  right: clamp(0.75rem, 2vw, 1.25rem);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  min-width: 34px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  color: #111111;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.sd-landing-hero-carousel-info:hover,
.sd-landing-hero-carousel-info:focus {
  border-color: #111111;
  background: #ffffff;
}

.sd-landing-hero-carousel-modal[hidden] {
  display: none;
}

.sd-landing-hero-carousel-modal {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(17, 17, 17, 0.48);
}

.sd-landing-hero-carousel-modal-panel {
  position: relative;
  width: min(560px, calc(100% - 2rem));
  max-height: calc(100% - 2rem);
  overflow: auto;
  padding: 1.35rem;
  border-radius: 10px;
  background: #ffffff;
  color: #111111;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.sd-landing-hero-carousel-modal-panel h3 {
  margin: 0 2.5rem 0.85rem 0;
  font-size: 1.25rem;
  line-height: 1.2;
}

.sd-landing-hero-carousel-modal-body {
  display: grid;
  gap: 0.65rem;
  color: #333333;
  font-size: 0.98rem;
  line-height: 1.5;
}

.sd-landing-hero-carousel-modal-body p {
  margin: 0;
}

.sd-landing-hero-carousel-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  min-width: 34px;
  margin: 0;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #f4f4f4;
  color: #111111;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.sd-landing-hero-carousel-modal-close:hover,
.sd-landing-hero-carousel-modal-close:focus {
  border-color: #111111;
}

.sd-landing-hero-carousel-controls {
  position: absolute;
  right: clamp(0.85rem, 2.4vw, 1.5rem);
  bottom: clamp(0.85rem, 2.4vw, 1.5rem);
  z-index: 3;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.sd-landing-hero-carousel-control-group {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.sd-landing-hero-carousel-indicator {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 42px;
  padding: 0 0.25rem;
}

.sd-landing-hero-carousel-dot {
  display: block;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  transition: width 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.sd-landing-hero-carousel-dot.is-active {
  width: 1.45rem;
  background: #ffffff;
}

.sd-landing-hero-carousel-controls .sd-landing-carousel-control,
.sd-landing-hero-carousel-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  margin: 0;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 10px;
  box-sizing: border-box;
  cursor: pointer;
  opacity: 1;
}

.sd-landing-hero-carousel-controls .sd-landing-carousel-control {
  background: rgba(255, 255, 255, 0.84);
  color: #111111;
}

.sd-landing-hero-carousel-toggle {
  overflow: hidden;
  background: rgba(17, 17, 17, 0.82);
  color: #ffffff;
}

.sd-landing-hero-carousel-controls .sd-landing-carousel-control:hover,
.sd-landing-hero-carousel-controls .sd-landing-carousel-control:focus,
.sd-landing-hero-carousel-toggle:hover,
.sd-landing-hero-carousel-toggle:focus {
  border-color: currentColor;
}

.sd-landing-hero-carousel-controls .sd-landing-carousel-control .icon {
  display: block;
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.sd-landing-hero-carousel-toggle::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 5px;
  left: 6px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  opacity: 0.9;
  transform: scaleX(0);
  transform-origin: left center;
}

.sd-landing-hero-carousel-toggle.is-progressing::after {
  animation: sdHeroCarouselProgress var(--sd-hero-duration, 6000ms) linear forwards;
}

.sd-landing-hero-icon {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 18px;
  height: 18px;
}

.sd-landing-hero-icon-pause::before,
.sd-landing-hero-icon-pause::after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  width: 4px;
  background: currentColor;
  border-radius: 1px;
}

.sd-landing-hero-icon-pause::before {
  left: 4px;
}

.sd-landing-hero-icon-pause::after {
  right: 4px;
}

.sd-landing-hero-icon-play {
  display: none;
}

.sd-landing-hero-icon-play::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid currentColor;
}

.sd-landing-hero-carousel-section.is-paused .sd-landing-hero-icon-pause {
  display: none;
}

.sd-landing-hero-carousel-section.is-paused .sd-landing-hero-icon-play {
  display: inline-block;
}

@keyframes sdHeroCarouselProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.sd-landing-grid {
  display: grid;
  gap: 0.75rem;
}

.sd-landing-grid-1 {
  grid-template-columns: 1fr;
}

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

.sd-landing-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sd-landing-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sd-landing-grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.sd-landing-grid-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.sd-landing-grid-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.sd-landing-grid-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.sd-landing-cta-grid {
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sd-landing-cta-section {
  margin-bottom: 5rem;
}

.sd-landing-cta-link {
  min-height: 42px;
  font-size: 0.95rem;
}

.sd-landing-cta-link.sd-landing-btn-secondary {
  border-color: #666666;
  background: #ffffff;
  color: var(--sd-ink);
}

.sd-landing-cta-link.sd-landing-btn-primary:hover,
.sd-landing-cta-link.sd-landing-btn-primary:focus {
  border-color: #111111;
  background: #373737;
  color: #ffffff;
}

.sd-landing-cta-link.sd-landing-btn-secondary:hover,
.sd-landing-cta-link.sd-landing-btn-secondary:focus {
  border-color: #666666;
  background: #f2f2f2;
  color: #111111;
}

.sd-landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid #111111;
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.sd-landing-btn-primary {
  background: #111111;
  color: #ffffff;
}

.sd-landing-btn-primary:hover,
.sd-landing-btn-primary:focus {
  border-color: #111111;
  background: #373737;
  color: #ffffff;
}

.sd-landing-btn-secondary {
  background: #ffffff;
  border-color: #666666;
  color: #111111;
}

.sd-landing-btn-secondary:hover,
.sd-landing-btn-secondary:focus {
  border-color: #666666;
  background: #f2f2f2;
  color: #111111;
}

.sd-landing-cta-card {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--sd-line);
  background: #ffffff;
  color: var(--sd-ink);
  text-decoration: none;
  border-radius: 5px;
}

.sd-landing-cta-card:hover {
  color: var(--sd-ink);
  text-decoration: none;
  border-color: #111111;
}

.sd-landing-cta-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--sd-soft);
  border-radius: 5px 5px 0 0;
}

.sd-landing-cta-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sd-landing-cta-card-body {
  display: grid;
  gap: 0.35rem;
  align-self: start;
  align-content: start;
  padding: 0.9rem;
}

.sd-landing-cta-eyebrow,
.sd-landing-cta-brand {
  color: var(--sd-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.sd-landing-cta-title {
  margin: 0;
  color: var(--sd-ink);
  font-size: 1.05rem;
  line-height: 1.25;
}

.sd-landing-cta-subtitle {
  margin: 0;
  color: var(--sd-muted);
  font-size: 0.95rem;
  line-height: 1.35;
}

.sd-landing-cta-price {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  align-items: baseline;
  margin-top: 0.2rem;
}

.sd-landing-cta-price-current {
  color: var(--sd-accent);
  font-size: 1.05rem;
  font-weight: 700;
}

.sd-landing-cta-price-old {
  color: var(--sd-muted);
  font-size: 0.9rem;
  text-decoration: line-through;
}

.sd-landing-cta-card .sd-landing-btn {
  width: fit-content;
  min-height: 38px;
  margin-top: 0.35rem;
  padding: 0.5rem 0.8rem;
  font-size: 0.9rem;
}

.sd-landing-carousel {
  overflow: visible;
}

.sd-landing-carousel .sd-landing-section-header {
  margin-bottom: 1.25rem;
}

.sd-landing-carousel .sd-landing-eyebrow {
  margin-bottom: 0.1rem;
}

.sd-landing-carousel .sd-landing-heading-row {
  align-items: flex-start;
}

.sd-landing-section-header-actions,
.sd-landing-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sd-landing-section-heading-copy {
  min-width: 0;
}

.sd-landing-section-actions {
  flex: 0 0 auto;
}

.sd-landing-carousel-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  width: auto;
}

.sd-landing-category-carousel-container {
  position: relative;
  overflow: hidden;
}

.sd-landing-category-track,
.sd-landing-product-track {
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0 0 0.5rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.sd-landing-category-track::-webkit-scrollbar,
.sd-landing-product-track::-webkit-scrollbar {
  display: none;
}

.sd-landing-category-track {
  padding: 0.25rem 0 0.75rem;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
}

.sd-landing-category-track:active {
  cursor: grabbing;
}

.sd-landing-carousel-scrollbar {
  position: relative;
  height: 4px;
  margin: 0.25rem 0 0;
  background: #e6e6e6;
  overflow: hidden;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.sd-landing-carousel-scrollbar-hidden {
  display: none;
}

.sd-landing-carousel-scrollbar-has-moved {
  opacity: 0;
}

.sd-landing-carousel-scrollbar-active {
  opacity: 1;
}

.sd-landing-carousel-scrollbar-thumb {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  min-width: 16px;
  background: #111111;
  transition: left 0.2s ease, width 0.2s ease;
}

.sd-landing-carousel-actions .sd-landing-carousel-control {
  position: static !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  margin: 0 !important;
  padding: 0;
  color: #000000;
  background: #f7f7f7;
  border: 1px solid transparent;
  border-radius: 10px;
  box-sizing: border-box;
  opacity: 1 !important;
  transform: none !important;
  cursor: pointer;
}

.sd-landing-carousel-actions .sd-landing-carousel-control:hover,
.sd-landing-carousel-actions .sd-landing-carousel-control:focus {
  color: #000000;
  background: #f7f7f7;
  border-color: #000000;
  outline: none;
}

.sd-landing-carousel-actions .sd-landing-carousel-control:disabled,
.sd-landing-carousel-actions .sd-landing-carousel-disabled {
  color: #9a9a9a;
  background: #f7f7f7;
  cursor: default;
}

.sd-landing-carousel-actions .sd-landing-carousel-control:disabled:hover,
.sd-landing-carousel-actions .sd-landing-carousel-control:disabled:focus,
.sd-landing-carousel-actions .sd-landing-carousel-disabled:hover,
.sd-landing-carousel-actions .sd-landing-carousel-disabled:focus {
  color: #9a9a9a;
  border-color: transparent;
}

.sd-landing-carousel-actions .sd-landing-carousel-control .icon {
  display: block;
  width: 28px;
  height: 28px;
  fill: currentColor;
  stroke: none;
  opacity: 1;
}

.sd-landing-category-slide {
  flex: 0 0 clamp(260px, calc((100% - 45px) / 4), 360px);
  list-style: none;
  display: block;
  margin: 0;
  padding: 0;
  scroll-snap-align: start;
}

.sd-landing-product-slide {
  flex: 0 0 calc((100% - 45px) / 4);
  list-style: none;
  display: block;
  min-width: 0;
  margin: 0;
  padding: 0;
  scroll-snap-align: start;
}

.sd-landing-product-slide .item {
  width: 100%;
}

.sd-landing-category-track > li::marker,
.sd-landing-product-track > li::marker {
  content: "";
}

.sd-landing-category-card {
  position: relative;
  display: block;
  overflow: hidden;
  isolation: isolate;
  clip-path: inset(0 round 5px);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  transform: translateZ(0);
  aspect-ratio: 1 / 1;
  min-height: 0;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  transition: box-shadow 0.2s ease;
}

.sd-landing-category-card:hover {
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.sd-landing-category-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.35s ease;
}

.sd-landing-category-card:hover img {
  transform: scale(1.035);
}

.sd-landing-category-card::after,
.sd-landing-immersive-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.68));
  pointer-events: none;
  transition: background 0.25s ease;
}

.sd-landing-category-card:hover::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.78));
}

.sd-landing-category-overlay {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  display: grid;
  gap: 0.35rem;
}

.sd-landing-category-overlay strong {
  font-size: 1.2rem;
  line-height: 1.2;
}

.sd-landing-category-cta {
  font-weight: 700;
}

.sd-landing-immersive-section {
  --sd-immersive-card-height: 440px;
}

.sd-landing-immersive-card {
  position: relative;
  display: block;
  overflow: hidden;
  height: var(--sd-immersive-card-height);
  min-height: 440px;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
}

.sd-landing-immersive-card:hover {
  color: #ffffff;
  text-decoration: none;
}

.sd-landing-immersive-card-span-2 {
  grid-column: span 2;
}

.sd-landing-immersive-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0 !important;
  margin-bottom: 0 !important;
  object-fit: cover;
}

.sd-landing-grid-1 {
  --sd-immersive-card-height: clamp(340px, 32vw, 520px);
}

.sd-landing-grid-1 .sd-landing-immersive-card {
  min-height: var(--sd-immersive-card-height);
}

.sd-landing-immersive-overlay {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 1;
  display: grid;
  gap: 0.55rem;
  justify-items: start;
}

.sd-landing-immersive-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.2rem;
}

.sd-landing-immersive-card img.sd-landing-immersive-logo {
  width: auto;
  height: auto !important;
  max-width: 160px;
  max-height: 52px !important;
  min-height: 0;
  object-fit: contain;
  border-radius: 0;
}

.sd-landing-immersive-subtitle {
  font-size: 1rem;
  font-weight: 700;
}

.sd-landing-immersive-title {
  max-width: 18ch;
  font-size: clamp(1.7rem, 4vw, 2rem);
  line-height: 0.98;
}

.sd-landing-product-rail {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.6fr);
  gap: 1rem;
  align-items: stretch;
  min-width: 0;
  padding: 1rem;
  overflow: hidden;
  background-color: var(--sd-rail-bg-color, #111111);
  background-position: center;
  background-size: cover;
  border-radius: 5px;
}

.sd-landing-product-rail::before,
.sd-landing-product-rail::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.sd-landing-product-rail::before {
  inset: -24px;
  z-index: 0;
  background-image: var(--sd-rail-bg-image);
  background-position: center;
  background-size: cover;
  filter: blur(22px);
  opacity: 0.72;
  transform: scale(1.04);
}

.sd-landing-product-rail::after {
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.3));
}

.sd-landing-rail-reverse {
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.95fr);
}

.sd-landing-rail-reverse .sd-landing-rail-banner {
  order: 2;
}

.sd-landing-rail-banner {
  position: relative;
  z-index: 2;
  align-self: start;
  display: block;
  overflow: hidden;
  min-height: 360px;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
}

.sd-landing-rail-banner:hover {
  color: #ffffff;
  text-decoration: none;
}

.sd-landing-rail-banner img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.sd-landing-rail-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.62));
}

.sd-landing-rail-banner-body {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  display: grid;
  gap: 0.5rem;
  justify-items: start;
}

.sd-landing-rail-banner-body span:first-child {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sd-landing-rail-banner-body strong {
  font-size: 1.5rem;
  line-height: 1.1;
}

.sd-landing-rail-product {
  flex-basis: calc((100% - 30px) / 3);
}

.sd-landing-product-slide > .item,
.product-recommendations [data-sd-product-shell] > .item {
  display: block;
  width: 100%;
  color: var(--sd-ink);
  text-decoration: none;
}

.sd-landing-product-slide > .item:hover,
.sd-landing-product-slide > .item:focus,
.product-recommendations [data-sd-product-shell] > .item:hover,
.product-recommendations [data-sd-product-shell] > .item:focus {
  color: var(--sd-ink);
  text-decoration: none;
}

.sd-landing-product-slide > .item .image,
.sd-landing-product-slide > .item .item-brand,
.sd-landing-product-slide > .item .title,
.product-recommendations [data-sd-product-shell] > .item .image,
.product-recommendations [data-sd-product-shell] > .item .item-brand,
.product-recommendations [data-sd-product-shell] > .item .title {
  display: block;
}

.sd-landing-rail-products-panel {
  position: relative;
  z-index: 2;
  align-self: start;
  min-width: 0;
  padding: 1rem;
  overflow: hidden;
  background: #ffffff;
  border-radius: 5px;
}

.sd-landing-rail-products-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.sd-landing-rail-products-panel .sd-landing-product-track {
  padding-bottom: 0.75rem;
}

.sd-landing-rail-products-panel .sd-landing-carousel-scrollbar {
  margin-top: 0.5rem;
}

.sd-landing-rail-products-panel .product-carousel-container {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 0;
  padding-top: 3.55rem;
}

.sd-landing-rail-products-panel .product-carousel-container .btn.btn-slick-arrow {
  position: absolute;
  top: 0.2rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border: 1px solid #d8d8d8;
  background: #f7f7f7;
  color: #111111;
  border-radius: 5px;
  padding: 0;
}

.sd-landing-rail-products-panel .product-carousel-container .btn.btn-slick-arrow.slick-prev {
  right: 52px;
}

.sd-landing-rail-products-panel .product-carousel-container .btn.btn-slick-arrow.slick-next {
  right: 0;
}

.sd-landing-rail-products-panel .product-carousel-container .btn.btn-slick-arrow svg.icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.sd-landing-products-native-panel {
  position: relative;
  min-width: 0;
}

.sd-landing-products-native-section .product-carousel-container {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 0;
  padding-top: 3.55rem;
}

.sd-landing-products-native-section .product-carousel-container .btn.btn-slick-arrow {
  position: absolute;
  top: 0.2rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border: 1px solid #d8d8d8;
  background: #f7f7f7;
  color: #111111;
  border-radius: 5px;
  padding: 0;
}

.sd-landing-products-native-section .product-carousel-container .btn.btn-slick-arrow.slick-prev {
  right: 52px;
}

.sd-landing-products-native-section .product-carousel-container .btn.btn-slick-arrow.slick-next {
  right: 0;
}

.sd-landing-products-native-section .product-carousel-container .btn.btn-slick-arrow svg.icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.sd-landing-rail-products-panel-releva {
  min-height: 390px;
}

.sd-landing-releva-slot {
  width: 100%;
  min-height: 340px;
  padding: 0;
}

.sd-landing-rail-products-panel .sd-landing-releva-slot.container-fluid,
.sd-landing-rail-products-panel [class*="rlv-recommender-container"] {
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.sd-landing-rail-products-panel .rlv-header {
  display: flex !important;
  justify-content: flex-end !important;
  margin-bottom: 1rem;
}

.sd-landing-rail-products-panel .rlv-header h1 {
  display: none;
}

.sd-landing-rail-products-panel .rlv-header .navigation-buttons {
  width: auto !important;
  gap: 0.75rem;
}

.sd-landing-rail-products-panel .swiper {
  overflow: hidden;
}

.sd-landing-rail-products-panel .swiper-wrapper {
  align-items: stretch;
}

.sd-landing-rail-products-panel .swiper-slide.item,
.sd-landing-rail-products-panel .swiper-slide .item {
  height: auto;
}

.sd-landing-releva-skeleton {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  min-height: 320px;
}

.sd-landing-releva-skeleton-card {
  display: grid;
  gap: 0.75rem;
}

.sd-landing-releva-skeleton-card::before,
.sd-landing-releva-skeleton-card span {
  content: "";
  display: block;
  border-radius: 5px;
  background: linear-gradient(90deg, #f0f0f0, #fafafa, #f0f0f0);
  background-size: 220% 100%;
  animation: sdLandingSkeleton 1.4s ease-in-out infinite;
}

.sd-landing-releva-skeleton-card::before {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--sd-line);
}

.sd-landing-releva-skeleton-card span {
  height: 0.85rem;
}

.sd-landing-releva-skeleton-card span:nth-child(2) {
  width: 78%;
}

.sd-landing-releva-skeleton-card span:nth-child(3) {
  width: 54%;
}

[data-rlv-recommender-visible="true"] .sd-landing-releva-skeleton {
  display: none;
}

@keyframes sdLandingSkeleton {
  0% {
    background-position: 110% 0;
  }

  100% {
    background-position: -110% 0;
  }
}

.sd-landing a:focus-visible,
.sd-landing button:focus-visible,
.sd-landing input:focus-visible,
.sd-landing select:focus-visible,
.sd-landing textarea:focus-visible,
.sd-landing summary:focus-visible,
.sd-landing [role="button"]:focus-visible,
.sd-landing [tabindex]:focus-visible,
.sd-landing .sd-landing-carousel-control:focus-visible,
.sd-landing .sd-landing-category-card:focus-visible,
.sd-landing .sd-landing-product-slide > .item:focus-visible,
.sd-landing .product-recommendations [data-sd-product-shell] > .item:focus-visible {
  outline: 3px solid #d10019 !important;
  outline-offset: 3px;
  border-radius: 4px;
}

.sd-landing .sd-landing-category-slide:focus-within,
.sd-landing .sd-landing-product-slide:focus-within,
.sd-landing .sd-landing-logo-slide:focus-within {
  outline: 3px solid #d10019 !important;
  outline-offset: 3px;
  border-radius: 5px;
}

.sd-landing-tile,
.sd-landing-card,
.sd-landing-logo {
  position: relative;
  min-width: 0;
  border: 1px solid var(--sd-line);
  background: var(--sd-bg);
  border-radius: 5px;
}

.sd-landing-tile {
  display: grid;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  text-decoration: none;
}

.sd-landing-tile img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.sd-landing-tile-label {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  width: fit-content;
  max-width: calc(100% - 1.5rem);
}

.sd-landing-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: stretch;
  border: 1px solid var(--sd-line);
  background: var(--sd-spotlight-bg, var(--sd-soft));
  color: var(--sd-spotlight-text, var(--sd-ink));
  border-radius: 5px;
  overflow: hidden;
}

.sd-landing-spotlight-reverse {
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
}

.sd-landing-spotlight-reverse .sd-landing-spotlight-media {
  order: 2;
}

.sd-landing-spotlight-media {
  min-width: 0;
}

.sd-landing-spotlight-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  color: var(--sd-spotlight-text, var(--sd-ink));
}

.sd-landing-spotlight-logo {
  display: block;
  width: auto;
  max-width: 180px;
  max-height: 52px;
  height: auto;
  object-fit: contain;
  margin: 0 0 1rem;
}

.sd-landing-spotlight-body :is(h2, h3, h4, h5) {
  margin: 0 0 1rem;
  color: inherit;
  font-size: 1.35rem;
  line-height: 1.25;
}

.sd-landing-spotlight-body ul {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
}

.sd-landing-spotlight-body li {
  margin-bottom: 0.45rem;
}

.sd-landing-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  color: var(--sd-ink);
  text-decoration: none;
}

.sd-landing-card > img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.sd-landing-card-body {
  padding: 0.85rem;
}

.sd-landing-card-title {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  font-size: 1rem;
  hyphens: auto;
  line-height: 1.3;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.sd-landing-logo-grid {
  align-items: stretch;
}

.sd-landing-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  aspect-ratio: 3 / 1;
  overflow: hidden;
  padding: 0;
  color: var(--sd-ink);
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

a.sd-landing-logo:hover,
a.sd-landing-logo:focus {
  color: var(--sd-ink);
  text-decoration: none;
  border-color: #111111;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.sd-landing-logo img {
  width: auto;
  max-width: 46%;
  max-height: 62%;
  height: auto;
  object-fit: contain;
}

.article-content .sd-landing-logo img {
  margin-bottom: 0;
}

.article-content .sd-landing-cta-card img,
.article-content .sd-landing-cta-card p,
.article-content .sd-landing-cta-card ul {
  margin-bottom: 0;
}

.sd-landing-logo-slide {
  flex: 0 0 calc((100% - 49.95px) / 4.33);
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  scroll-snap-align: start;
}

.sd-landing-logo-visible-4 .sd-landing-logo-slide {
  flex-basis: calc((100% - 49.95px) / 4.33);
}

.sd-landing-logo-visible-6 .sd-landing-logo-slide {
  flex-basis: calc((100% - 79.95px) / 6.33);
}

.sd-landing-logo-visible-8 .sd-landing-logo-slide {
  flex-basis: calc((100% - 109.95px) / 8.33);
}

.sd-landing-logo-track > li::marker {
  content: "";
}

.sd-landing-video {
  position: relative;
  overflow: hidden;
  background: #000000;
  border-radius: 5px;
}

.sd-landing-video-width-100,
.sd-landing-video-width-75,
.sd-landing-video-width-66,
.sd-landing-video-width-50 {
  margin-right: auto;
  margin-left: auto;
}

.sd-landing-video-width-100 {
  width: 100%;
}

.sd-landing-video-width-75 {
  width: 75%;
}

.sd-landing-video-width-66 {
  width: 66.666%;
}

.sd-landing-video-width-50 {
  width: 50%;
}

.sd-landing-video::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.sd-landing-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 5px;
}

.sd-landing-video-editorial {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  border: 1px solid var(--sd-line);
  background: var(--sd-video-bg, var(--sd-soft));
  color: var(--sd-video-text, var(--sd-ink));
  border-radius: 5px;
  padding: clamp(1rem, 3vw, 2.5rem);
}

.sd-landing-video-text-right {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.sd-landing-video-editorial-body {
  min-width: 0;
  color: inherit;
}

.sd-landing-video-editorial-body :is(h2, h3, h4, h5) {
  margin: 0 0 1rem;
  color: inherit;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  line-height: 1.15;
}

.sd-landing-video-editorial-body p {
  margin: 0 0 1rem;
  color: inherit;
  font-size: 1rem;
  line-height: 1.55;
}

.sd-landing-video-editorial-body p:last-child {
  margin-bottom: 0;
}

.sd-landing-video-editorial-body .sd-landing-btn {
  margin-top: 1.25rem;
}

.sd-landing-video-editorial-media {
  min-width: 0;
}

.sd-landing-editorial-banner {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  border: 1px solid var(--sd-line);
  background: var(--sd-editorial-bg, var(--sd-soft));
  color: var(--sd-editorial-text, var(--sd-ink));
  border-radius: 5px;
  padding: clamp(1rem, 3vw, 2.5rem);
}

.sd-landing-editorial-text-right {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.sd-landing-editorial-banner-body {
  min-width: 0;
  color: inherit;
}

.sd-landing-editorial-banner-body :is(h2, h3, h4, h5) {
  margin: 0 0 1rem;
  color: inherit;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  line-height: 1.15;
}

.sd-landing-editorial-banner-body p {
  margin: 0 0 1rem;
  color: inherit;
  font-size: 1rem;
  line-height: 1.55;
}

.sd-landing-editorial-banner-body p:last-child {
  margin-bottom: 0;
}

.sd-landing-editorial-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.sd-landing-editorial-banner-actions .sd-landing-btn {
  margin-top: 0;
}

.sd-landing-editorial-banner-media {
  min-width: 0;
}

.sd-landing-editorial-banner-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.sd-landing-accordion-section {
  margin-bottom: 2.5rem;
}

.sd-landing .sd-accordion {
  background-color: #f3f3f3;
  padding: 1rem 0 1.5rem;
}

.sd-landing .sd-accordion__container {
  max-width: 1140px;
  margin: 0 auto;
}

.sd-landing .sd-accordion__item {
  margin-bottom: 12px;
  padding: 0 15px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #ffffff;
}

.sd-landing .sd-accordion__item h3 {
  margin: 0;
}

.sd-landing .sd-accordion__trigger {
  display: block;
  width: 100%;
  padding: 18px 32px 18px 0;
  border: 0;
  background: transparent;
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  position: relative;
  cursor: pointer;
}

.sd-landing button.sd-accordion__trigger:focus {
  outline: none;
}

.sd-landing .sd-accordion__trigger:focus-visible {
  outline: 2px solid #d10019;
  outline-offset: 3px;
  border-radius: 4px;
}

.sd-landing button.sd-accordion__trigger::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.sd-landing .sd-accordion__item:hover button.sd-accordion__trigger::after,
.sd-landing button.sd-accordion__trigger:hover::after {
  border-color: #d10019;
}

.sd-landing button.sd-accordion__trigger[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(-135deg);
}

.sd-landing .sd-accordion__panel[hidden] {
  display: none;
}

.sd-landing .sd-accordion__content {
  padding-bottom: 20px;
  color: #444444;
  line-height: 1.6;
}

.sd-landing .sd-accordion__content p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.sd-landing .sd-accordion__content p:last-child {
  margin-bottom: 0;
}

.sd-landing .sd-accordion__content h2,
.sd-landing .sd-accordion__content h3,
.sd-landing .sd-accordion__content h4,
.sd-landing .sd-accordion__content h5,
.sd-landing .sd-accordion__content h6 {
  margin: 1.15rem 0 0.55rem;
  color: #111111;
  line-height: 1.25;
}

.sd-landing .sd-accordion__content h2 {
  font-size: 1.45rem;
}

.sd-landing .sd-accordion__content h3 {
  font-size: 1.3rem;
}

.sd-landing .sd-accordion__content h4 {
  font-size: 1.15rem;
}

.sd-landing .sd-accordion__content h5,
.sd-landing .sd-accordion__content h6 {
  font-size: 1rem;
}

.sd-landing .sd-accordion__content ul,
.sd-landing .sd-accordion__content ol {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.sd-landing .sd-accordion__content ul {
  list-style-type: disc;
}

.sd-landing .sd-accordion__content ol {
  list-style-type: decimal;
}

.sd-landing .sd-accordion__content li {
  margin-bottom: 0.45rem;
}

.sd-landing .sd-accordion__content ol ul {
  list-style-type: disc;
}

.sd-landing .sd-accordion__content ol ul ul {
  list-style-type: circle;
}

.sd-landing .sd-accordion__content ul.sd-list-disc {
  list-style-type: disc;
}

.sd-landing .sd-accordion__content ul.sd-list-circle {
  list-style-type: circle;
}

.sd-landing .sd-accordion__content ul.sd-list-dash {
  list-style: none;
  margin-left: 0;
  padding-left: 1.25rem;
}

.sd-landing .sd-accordion__content ul.sd-list-dash > li {
  position: relative;
}

.sd-landing .sd-accordion__content ul.sd-list-dash > li::before {
  content: "-";
  position: absolute;
  left: -1.05rem;
}

.sd-landing a.sd-accordion__trigger {
  padding-right: 0;
  color: #000000;
  text-decoration: none;
}

.sd-landing .sd-accordion__item:hover a.sd-accordion__trigger,
.sd-landing a.sd-accordion__trigger:hover {
  color: #d10019;
  text-decoration: none;
}

.sd-landing-tabs-section {
  margin-bottom: 2.5rem;
}

.sd-landing .sd-tabs {
  color: #111111;
}

.sd-landing .sd-tabs__container {
  max-width: 1140px;
  margin: 0 auto;
}

.sd-landing .sd-tabs__list {
  display: flex;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  padding: 0 !important;
  overflow-x: auto;
  list-style: none !important;
  border-bottom: 1px solid #d8d8d8;
}

.sd-landing .sd-tabs__item,
.sd-landing .sd-tabs__list > li {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  list-style: none !important;
}

.sd-landing .sd-tabs__item::before,
.sd-landing .sd-tabs__item::after,
.sd-landing .sd-tabs__item::marker,
.sd-landing .sd-tabs__list > li::before,
.sd-landing .sd-tabs__list > li::after,
.sd-landing .sd-tabs__list > li::marker {
  content: none !important;
  display: none !important;
}

.sd-landing .sd-tabs__list [role="tab"] {
  display: block;
  margin: 0 !important;
  padding: 0.75rem 1.1rem !important;
  border: 0 !important;
  border-bottom: 3px solid transparent !important;
  background: transparent !important;
  color: #777777 !important;
  font-family: inherit !important;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  opacity: 1 !important;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.sd-landing .sd-tabs__list [role="tab"]:hover {
  color: #d10019 !important;
  background: transparent !important;
  border-bottom-color: #d10019 !important;
}

.sd-landing .sd-tabs__list [role="tab"][aria-selected="true"],
.sd-landing .sd-tabs__list [role="tab"].active {
  color: #111111 !important;
  background: transparent !important;
  border-bottom-color: #d10019 !important;
}

.sd-landing .sd-tabs__list [role="tab"]:focus {
  outline: none !important;
}

.sd-landing .sd-tabs__list [role="tab"]:focus-visible {
  outline: 3px solid #d10019 !important;
  outline-offset: 3px;
  border-radius: 10px;
}

.sd-landing .sd-tabs__panel[hidden] {
  display: none !important;
}

.sd-landing .sd-tabs__panel {
  line-height: 1.6;
}

.sd-landing .sd-tabs__content {
  color: #444444;
}

.sd-landing .sd-tabs__content p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.sd-landing .sd-tabs__content p:last-child {
  margin-bottom: 0;
}

.sd-landing .sd-tabs__content h2,
.sd-landing .sd-tabs__content h3,
.sd-landing .sd-tabs__content h4,
.sd-landing .sd-tabs__content h5,
.sd-landing .sd-tabs__content h6 {
  margin: 1.15rem 0 0.55rem;
  color: #111111;
  line-height: 1.25;
}

.sd-landing .sd-tabs__content h2 {
  font-size: 1.45rem;
}

.sd-landing .sd-tabs__content h3 {
  font-size: 1.3rem;
}

.sd-landing .sd-tabs__content h4 {
  font-size: 1.15rem;
}

.sd-landing .sd-tabs__content h5,
.sd-landing .sd-tabs__content h6 {
  font-size: 1rem;
}

.sd-landing .sd-tabs__content ul,
.sd-landing .sd-tabs__content ol {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.sd-landing .sd-tabs__content ul {
  list-style-type: disc;
}

.sd-landing .sd-tabs__content ol {
  list-style-type: decimal;
}

.sd-landing .sd-tabs__content li {
  margin-bottom: 0.45rem;
}

.sd-landing .sd-tabs__content ol ul {
  list-style-type: disc;
}

.sd-landing .sd-tabs__content ol ul ul {
  list-style-type: circle;
}

.sd-landing .sd-tabs__content ul.sd-list-disc {
  list-style-type: disc;
}

.sd-landing .sd-tabs__content ul.sd-list-circle {
  list-style-type: circle;
}

.sd-landing .sd-tabs__content ul.sd-list-dash {
  list-style: none;
  margin-left: 0;
  padding-left: 1.25rem;
}

.sd-landing .sd-tabs__content ul.sd-list-dash > li {
  position: relative;
}

.sd-landing .sd-tabs__content ul.sd-list-dash > li::before {
  content: "-";
  position: absolute;
  left: -1.05rem;
}

.sd-landing .sd-tabs__content a {
  color: #d10019;
}

.sd-landing .sd-tabs__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.sd-landing .sd-tabs__media {
  margin-top: 1.25rem;
}

.sd-landing .sd-tabs__media img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: 5px;
}

@media (max-width: 575.98px) {
  .sd-landing .sd-tabs__list {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    row-gap: 0.35rem;
    column-gap: 0.5rem;
    overflow-x: visible;
  }

  .sd-landing .sd-tabs__item,
  .sd-landing .sd-tabs__list > li {
    display: block !important;
    flex: 0 0 calc((100% - 0.5rem) / 2) !important;
    width: calc((100% - 0.5rem) / 2) !important;
    max-width: calc((90% - 0.5rem) / 2) !important;
    min-width: 0;
    box-sizing: border-box !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .sd-landing .sd-tabs__list [role="tab"] {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    min-height: 44px;
    padding: 0.62rem 0.35rem !important;
    font-size: 0.95rem !important;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

.sd-landing-widget-placeholder {
  display: grid;
  place-items: center;
  min-height: 140px;
  border: 2px dashed #9aa0a6;
  background: #f8f9fa;
  color: #3c4043;
  padding: 1rem;
  text-align: center;
}

@media (max-width: 991.98px) {
  .sd-landing-has-local-nav {
    display: block;
    max-width: none;
    padding-right: 0;
    padding-left: 0;
  }

  .sd-landing-has-local-nav > .sd-landing-section {
    width: auto;
    max-width: none;
    margin-right: auto;
    margin-left: auto;
  }

  .sd-landing-has-local-nav > .sd-landing-local-nav-section {
    position: relative;
    top: auto;
    z-index: 5;
    margin-bottom: 2rem;
  }

  .sd-landing-has-local-nav > .sd-landing-hero-carousel-section {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }

  .sd-landing-local-nav-panel {
    overflow: hidden;
    background: #ffffff;
  }

  .sd-landing-local-nav-title {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }

  .sd-landing-local-nav-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    min-height: 48px;
    padding: 0.8rem 1rem;
    border: 0;
    background: #111111;
    color: #ffffff;
    font-weight: 700;
    text-align: left;
    border-radius: 5px;
  }

  .sd-landing-local-nav {
    display: none;
  }

  .sd-landing-local-nav-section.is-open .sd-landing-local-nav {
    display: block;
  }

  .sd-landing-grid-4,
  .sd-landing-grid-5,
  .sd-landing-grid-6,
  .sd-landing-grid-7,
  .sd-landing-grid-8,
  .sd-landing-grid-3,
  .sd-landing-cta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sd-landing-spotlight,
  .sd-landing-spotlight-reverse,
  .sd-landing-video-editorial,
  .sd-landing-video-text-right,
  .sd-landing-editorial-banner,
  .sd-landing-editorial-text-right,
  .sd-landing-product-rail,
  .sd-landing-rail-reverse {
    grid-template-columns: 1fr;
  }

  .sd-landing-spotlight-reverse .sd-landing-spotlight-media,
  .sd-landing-rail-reverse .sd-landing-rail-banner {
    order: 0;
  }

  .sd-landing-editorial-banner-media {
    order: 1;
  }

  .sd-landing-editorial-banner-body {
    order: 2;
  }

  .sd-landing-video-editorial-media {
    order: 1;
  }

  .sd-landing-video-editorial-body {
    order: 2;
  }

  .sd-landing-logo-grid.sd-landing-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sd-landing-logo-grid.sd-landing-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sd-landing-logo-grid.sd-landing-grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .sd-landing-logo-grid.sd-landing-grid-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .sd-landing-logo-grid.sd-landing-grid-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .sd-landing-logo-grid.sd-landing-grid-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .sd-landing-product-rail {
    align-items: stretch;
  }

  .sd-landing-rail-banner,
  .sd-landing-rail-products-panel {
    align-self: stretch;
  }

  .sd-landing-rail-banner {
    min-height: 0;
    height: 100%;
    aspect-ratio: auto;
  }

  .sd-landing-rail-banner img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
  }

  .sd-landing-rail-products-panel:has(> .product-carousel-container) {
    display: flex;
    align-items: center;
  }

  .sd-landing-rail-products-panel:has(> .product-carousel-container) > .product-carousel-container {
    width: 100%;
  }

  .sd-landing-spotlight-media {
    display: flex;
    align-items: center;
  }

  .sd-landing-spotlight-media img {
    width: 100%;
    height: auto;
    margin-bottom: 0 !important;
  }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
  .sd-landing-hero-carousel-slide.has-brand-logos .sd-landing-hero-carousel-content {
    bottom: clamp(4rem, 5vw, 4.8rem);
  }

  .sd-landing-hero-carousel-brand-strip {
    right: clamp(6.25rem, 11vw, 8rem);
    bottom: clamp(1rem, 2.2vw, 1.65rem);
    left: clamp(13rem, 30vw, 22rem);
    gap: clamp(0.75rem, 1.8vw, 1.35rem);
  }

  .sd-landing-hero-carousel-brand-strip:not(.has-more-label) > :nth-child(n+5),
  .sd-landing-hero-carousel-brand-strip.has-more-label > .sd-landing-hero-brand-logo:nth-child(n+4) {
    display: none;
  }

  .sd-landing-hero-brand-logo {
    max-width: 105px;
  }

  .sd-landing-hero-brand-logo img {
    max-width: 105px;
    max-height: 32px;
  }

  .sd-landing-hero-brand-more {
    font-size: 1rem;
  }

  .sd-landing-hero-carousel-controls {
    right: clamp(0.65rem, 1.8vw, 1rem);
    bottom: clamp(0.65rem, 1.8vw, 1rem);
    gap: 0.45rem;
  }

  .sd-landing-hero-carousel-indicator {
    min-height: 36px;
  }

  .sd-landing-hero-carousel-controls .sd-landing-carousel-control,
  .sd-landing-hero-carousel-toggle {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .sd-landing-hero-carousel-controls .sd-landing-carousel-control .icon {
    width: 21px;
    height: 21px;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .sd-landing-rail-banner {
    min-height: 0;
    max-height: 320px;
    aspect-ratio: 16 / 7;
  }

  .sd-landing-rail-banner img {
    min-height: 0;
    object-position: top center;
  }

  .sd-landing-rail-products-panel .product-carousel-container {
    padding-top: 3.15rem;
  }

  .sd-landing-rail-products-panel .product-carousel-container .btn.btn-slick-arrow {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .sd-landing-rail-products-panel .product-carousel-container .btn.btn-slick-arrow.slick-prev {
    right: 48px;
  }

  .sd-landing-products-native-section .product-carousel-container {
    padding-top: 3.15rem;
  }

  .sd-landing-products-native-section .product-carousel-container .btn.btn-slick-arrow {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .sd-landing-products-native-section .product-carousel-container .btn.btn-slick-arrow.slick-prev {
    right: 48px;
  }
}

@media (max-width: 575.98px) {
  .sd-landing-section {
    margin-bottom: 4.25rem;
  }

  .sd-landing-hero-section,
  .sd-landing-hero-carousel-section {
    margin-bottom: 2rem;
  }

  .sd-landing .sd-landing-hero img.sd-landing-hero-desktop {
    display: none;
  }

  .sd-landing .sd-landing-hero img.sd-landing-hero-mobile {
    display: block;
  }

  .sd-landing-hero-carousel-viewport {
    aspect-ratio: 828 / 1035;
  }

  .sd-landing-hero-carousel-content {
    right: 1rem;
    bottom: 4.75rem;
    left: 1rem;
    max-width: none;
    gap: 0.45rem;
  }

  .sd-landing-hero-carousel-subtitle {
    font-size: clamp(0.72rem, 3vw, 0.85rem);
  }

  .sd-landing-hero-carousel-headline-logo {
    max-width: min(170px, 54vw);
    margin-bottom: 0.1rem;
  }

  .sd-landing-hero-carousel-headline-logo img {
    max-width: min(170px, 54vw);
    max-height: 42px;
  }

  .sd-landing-rail-products-panel .product-carousel-container {
    padding-top: 2.9rem;
  }

  .sd-landing-products-native-section .product-carousel-container {
    padding-top: 2.9rem;
  }

  .sd-landing-hero-carousel-title {
    font-size: clamp(1.55rem, 7.5vw, 2.35rem);
  }

  .sd-landing-hero-carousel-actions-inline {
    gap: 0.5rem;
  }

  .sd-landing-hero-carousel-slide.has-brand-logos .sd-landing-hero-carousel-content {
    bottom: 7.6rem;
  }

  .sd-landing-hero-carousel-brand-strip {
    right: 0.85rem;
    bottom: 4.45rem;
    left: 0.85rem;
    gap: 0.85rem 1.1rem;
    justify-content: center;
  }

  .sd-landing-hero-carousel-brand-strip:not(.has-more-label) > :nth-child(n+5),
  .sd-landing-hero-carousel-brand-strip.has-more-label > .sd-landing-hero-brand-logo:nth-child(n+4) {
    display: none;
  }

  .sd-landing-hero-brand-logo {
    max-width: 110px;
  }

  .sd-landing-hero-brand-logo img {
    max-width: 110px;
    max-height: 28px;
  }

  .sd-landing-hero-brand-more {
    font-size: 1rem;
  }

  .sd-landing-hero-carousel-info {
    top: 0.75rem;
    right: 0.75rem;
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .sd-landing-hero-carousel-modal {
    padding: 0.75rem;
  }

  .sd-landing-hero-carousel-modal-panel {
    width: 100%;
    max-height: calc(100% - 1.5rem);
    padding: 1.1rem;
  }

  .sd-landing-hero-carousel-controls {
    right: 0.75rem;
    bottom: 0.75rem;
    gap: 0.45rem;
  }

  .sd-landing-hero-carousel-indicator {
    min-height: 38px;
    gap: 0.3rem;
  }

  .sd-landing-hero-carousel-dot {
    width: 0.4rem;
    height: 0.4rem;
  }

  .sd-landing-hero-carousel-dot.is-active {
    width: 1.2rem;
  }

  .sd-landing-hero-carousel-controls .sd-landing-carousel-control,
  .sd-landing-hero-carousel-toggle {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .sd-landing-hero-carousel-controls .sd-landing-carousel-control .icon {
    width: 22px;
    height: 22px;
  }

  .sd-landing-grid,
  .sd-landing-grid-1,
  .sd-landing-grid-2,
  .sd-landing-grid-3,
  .sd-landing-grid-4,
  .sd-landing-grid-5,
  .sd-landing-grid-6,
  .sd-landing-grid-7,
  .sd-landing-grid-8,
  .sd-landing-cta-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sd-landing-grid-1 {
    grid-template-columns: 1fr;
  }

  .sd-landing-article-grid {
    grid-template-columns: 1fr;
  }

  .sd-landing-immersive-section .sd-landing-grid,
  .sd-landing-immersive-section .sd-landing-grid-1,
  .sd-landing-immersive-section .sd-landing-grid-2,
  .sd-landing-immersive-section .sd-landing-grid-3,
  .sd-landing-immersive-section .sd-landing-grid-4,
  .sd-landing-immersive-section .sd-landing-grid-5,
  .sd-landing-immersive-section .sd-landing-grid-6,
  .sd-landing-immersive-section .sd-landing-grid-7,
  .sd-landing-immersive-section .sd-landing-grid-8 {
    grid-template-columns: 1fr;
  }

  .sd-landing-immersive-card-span-2 {
    grid-column: auto;
  }

  .sd-landing-immersive-card-span-2 > img {
    object-position: center center;
  }

  .sd-landing-immersive-section {
    --sd-immersive-card-height: 360px;
  }

  .sd-landing-immersive-card img.sd-landing-immersive-logo {
    max-height: 36px !important;
    max-width: 128px;
  }

  .sd-landing-spotlight-logo {
    max-height: 36px;
    max-width: 140px;
  }

  .sd-landing-logo {
    aspect-ratio: 21 / 10;
    padding: 0;
  }

  .sd-landing-logo-grid.sd-landing-grid-2,
  .sd-landing-logo-grid.sd-landing-grid-3,
  .sd-landing-logo-grid.sd-landing-grid-4,
  .sd-landing-logo-grid.sd-landing-grid-5,
  .sd-landing-logo-grid.sd-landing-grid-6,
  .sd-landing-logo-grid.sd-landing-grid-7,
  .sd-landing-logo-grid.sd-landing-grid-8 {
    grid-template-columns: 1fr 1fr;
  }

  .sd-landing-logo img {
    max-width: 58%;
    max-height: 68%;
  }

  .sd-landing-cta-card-body {
    padding-top: 0.65rem;
  }

  .sd-landing-logo-visible-4 .sd-landing-logo-slide,
  .sd-landing-logo-visible-6 .sd-landing-logo-slide,
  .sd-landing-logo-visible-8 .sd-landing-logo-slide {
    flex-basis: calc((100% - 19.95px) / 2.33);
  }

  .sd-landing-video-width-75,
  .sd-landing-video-width-66,
  .sd-landing-video-width-50 {
    width: 100%;
  }

  .sd-landing-video-editorial-media {
    order: 1;
  }

  .sd-landing-video-editorial-body {
    order: 2;
  }

  .sd-landing-editorial-banner-media {
    order: 1;
  }

  .sd-landing-editorial-banner-body {
    order: 2;
  }

  .sd-landing-card-title {
    -webkit-line-clamp: 3;
  }

  .sd-landing-title {
    font-size: 1.35rem;
  }

  .sd-landing-btn {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }

  .sd-landing-category-card,
  .sd-landing-category-card img {
    min-height: 280px;
  }

  .sd-landing-section-header-actions,
  .sd-landing-heading-row {
    align-items: flex-start;
  }

  .sd-landing-carousel-actions {
    display: none;
  }

  .sd-landing-category-slide {
    flex-basis: calc((100% - 15px) / 1.33);
  }

  .sd-landing-product-slide {
    flex-basis: calc((100% - 15px) / 1.33);
  }

  .sd-landing-immersive-card,
  .sd-landing-immersive-card img {
    min-height: 360px;
  }
}


@media (max-width: 767.98px) {
  .cms-grid--2,
  .cms-grid--3,
  .cms-grid--4 {
    grid-template-columns: 1fr;
  }
}
