@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Instrument+Serif:ital@0;1&display=swap');

.news-card-cycle {
  --ncc-chrome-offset: 80px;
  --ncc-transition-duration: 580ms;
  --ncc-transition-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ncc-card-enter-offset: 6rem;
  --ncc-card-enter-duration: 920ms;
  --ncc-card-enter-ease: cubic-bezier(0.12, 1, 0.28, 1);
  --ncc-card-enter-stagger: 0.2s;
  --ncc-card-enter-scale: 0.86;
  --ncc-viewport-height-fixed: 17.25rem;
  --ncc-card-separation: calc(0.75rem + 2px);
  --ncc-card-height: calc(var(--ncc-viewport-height-fixed) - var(--ncc-card-separation));
  --ncc-scroll-step: 0.4;
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  background-color: var(--ncc-bg, transparent);
  color: var(--ncc-heading, #fff);
  isolation: isolate;
}

/* Title + subtitle: relative inside the pinned stage so they stay visible while cards cycle */
.news-card-cycle__intro {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
}

.news-card-cycle__intro--standalone {
  max-width: min(1320px, 100%);
  padding: clamp(2rem, 5vh, 3.5rem) clamp(1.25rem, 3vw, 2.5rem);
}

.news-card-cycle__intro-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card-cycle__intro-area.is-intro-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media screen and (max-width: 1024px) {
  .news-card-cycle__intro-area {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.news-card-cycle__title {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.06em 0 0.04em;
  font-family: var(--primary-font, "Antonio", sans-serif);
  font-size: var(--ncc-title-font-size, clamp(2.25rem, 5.5vw, 4.5rem));
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ncc-heading, #fff);
}

.news-card-cycle__subtitle {
  position: relative;
  display: block;
  width: 100%;
  margin: 0.75rem 0 0;
  padding: 0 0 0.25rem;
  font-family: var(--body-font, "Montserrat", sans-serif);
  font-size: var(--ncc-subtitle-font-size, clamp(1rem, 2vw, 1.35rem));
  font-weight: 400;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: normal;
  color: var(--ncc-heading, #fff);
}

.news-card-cycle__title .hs_cos_wrapper_type_inline_text,
.news-card-cycle__subtitle .hs_cos_wrapper_type_inline_text {
  display: block;
  text-align: center;
}

.news-card-cycle__track {
  position: relative;
}

/* Pinned stage: heading + cards move together while scrolling through sets */
.news-card-cycle__cards-stage {
  position: sticky;
  top: var(--ncc-chrome-offset, 80px);
  z-index: 1;
  height: calc(100dvh - var(--ncc-chrome-offset, 80px));
  min-height: calc(100vh - var(--ncc-chrome-offset, 80px));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.news-card-cycle__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  width: 100%;
  max-width: min(1320px, 100%);
  margin: 0 auto;
  padding: clamp(0.65rem, 1.5vh, 1rem) clamp(1.25rem, 3vw, 2.5rem) clamp(0.65rem, 1.5vh, 1rem);
  box-sizing: border-box;
  min-height: 0;
  flex: 1 1 auto;
}

.news-card-cycle__cards {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 100%;
  max-width: min(72rem, 100%);
  min-height: 0;
  margin: clamp(5.5rem, 14vh, 10rem) auto 0;
  isolation: isolate;
}

.news-card-cycle__featured {
  flex-shrink: 0;
  align-self: stretch;
  width: 100%;
  max-width: none;
  margin-top: auto;
  padding-top: 5px;
  text-align: center;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition:
    opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.45s;
}

.news-card-cycle.is-featured-visible .news-card-cycle__featured {
  opacity: 1;
  visibility: visible;
  max-height: 320px;
  overflow: visible;
  pointer-events: auto;
}

.news-card-cycle.is-static .news-card-cycle__featured {
  opacity: 1;
  visibility: visible;
  max-height: 320px;
  overflow: visible;
  pointer-events: auto;
}

.news-card-cycle__featured-label {
  width: 100%;
  margin: 0 0 0.75rem;
  padding: 0;
  text-align: center;
  color: var(--ncc-heading, #fff);
}

.news-card-cycle__featured:not(.news-card-cycle__featured--label-title-style) .news-card-cycle__featured-label,
.news-card-cycle__featured:not(.news-card-cycle__featured--label-title-style) .news-card-cycle__featured-label .hs_cos_wrapper,
.news-card-cycle__featured:not(.news-card-cycle__featured--label-title-style) .news-card-cycle__featured-label .hs_cos_wrapper_type_inline_text,
.news-card-cycle__featured:not(.news-card-cycle__featured--label-title-style) .news-card-cycle__featured-label span,
.news-card-cycle__featured:not(.news-card-cycle__featured--label-title-style) > .hs_cos_wrapper[data-hs-cos-field="featured_label"],
.news-card-cycle__featured:not(.news-card-cycle__featured--label-title-style) > .hs_cos_wrapper_type_inline_text[data-hs-cos-field="featured_label"],
.news-card-cycle__featured:not(.news-card-cycle__featured--label-title-style) > .hs_cos_wrapper[data-hs-cos-field="featured_label"] *,
.news-card-cycle__featured:not(.news-card-cycle__featured--label-title-style) > .hs_cos_wrapper_type_inline_text[data-hs-cos-field="featured_label"] * {
  font-family: var(--body-font, "Montserrat", sans-serif);
  font-size: 0.7rem;
  font-weight: 400 !important;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ncc-heading, #fff);
}

.news-card-cycle__featured--label-title-style .news-card-cycle__featured-label,
.news-card-cycle__featured--label-title-style > .hs_cos_wrapper[data-hs-cos-field="featured_label"],
.news-card-cycle__featured--label-title-style > .hs_cos_wrapper_type_inline_text[data-hs-cos-field="featured_label"] {
  width: 100%;
  margin: 0 0 0.75rem;
  line-height: 1.4;
}

.news-card-cycle__featured-label .hs_cos_wrapper,
.news-card-cycle__featured-label .hs_cos_wrapper_type_inline_text,
.news-card-cycle__featured > .hs_cos_wrapper[data-hs-cos-field="featured_label"],
.news-card-cycle__featured > .hs_cos_wrapper_type_inline_text[data-hs-cos-field="featured_label"] {
  display: block;
  width: 100%;
  text-align: center;
}

.news-card-cycle__featured:not(.news-card-cycle__featured--label-title-style) .news-card-cycle__featured-label .hs_cos_wrapper,
.news-card-cycle__featured:not(.news-card-cycle__featured--label-title-style) .news-card-cycle__featured-label .hs_cos_wrapper_type_inline_text,
.news-card-cycle__featured:not(.news-card-cycle__featured--label-title-style) > .hs_cos_wrapper[data-hs-cos-field="featured_label"],
.news-card-cycle__featured:not(.news-card-cycle__featured--label-title-style) > .hs_cos_wrapper_type_inline_text[data-hs-cos-field="featured_label"] {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.news-card-cycle__featured--label-title-style > .hs_cos_wrapper[data-hs-cos-field="featured_label"],
.news-card-cycle__featured--label-title-style > .hs_cos_wrapper_type_inline_text[data-hs-cos-field="featured_label"] {
  margin: 0 0 0.75rem;
  padding: 0;
}

.news-card-cycle__featured .continuous_slider_track .slide a {
  display: block;
  height: 100%;
}

.news-card-cycle__featured .news-card-cycle__continuous-slider.continuous_slider {
  flex-shrink: 0;
  width: 100%;
}

.news-card-cycle__featured .news-card-cycle__continuous-slider.continuous_slider::after,
.news-card-cycle__featured .news-card-cycle__continuous-slider.continuous_slider::before {
  content: none;
  display: none;
}

.news-card-cycle__viewport {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  height: var(--ncc-viewport-height-fixed);
  min-height: var(--ncc-viewport-height-fixed);
  max-height: var(--ncc-viewport-height-fixed);
  margin: 0 auto;
  overflow: hidden;
}

.news-card-cycle__strip {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  will-change: transform;
  transform: translate3d(0, calc(var(--ncc-slide, 0) * -100%), 0);
}

.news-card-cycle.is-snapping .news-card-cycle__strip {
  transition: none;
}

.news-card-cycle:not(.is-snapping):not(.is-static) .news-card-cycle__strip {
  transition: transform var(--ncc-transition-duration) var(--ncc-transition-ease);
}

.news-card-cycle__panel {
  flex: 0 0 100%;
  height: 100%;
  min-height: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  width: 100%;
  max-width: min(72rem, 100%);
  margin: 0 auto;
  padding-bottom: var(--ncc-card-separation);
  box-sizing: border-box;
}

/* Incomplete sets: keep equal card heights; center the row when fewer than 3 cards */
.news-card-cycle:not(.is-static) .news-card-cycle__panel:not(:has(> .news-card-cycle__card:nth-child(3))) {
  justify-content: center;
}

.news-card-cycle.is-carousel .news-card-cycle__panel:not(:has(> .news-card-cycle__card:nth-child(2))) {
  align-items: center;
}

/* Hidden until the card viewport scrolls into view */
.news-card-cycle:not(.is-static):not(.is-cards-inview) .news-card-cycle__card {
  opacity: 0;
  transform: translate3d(0, var(--ncc-card-enter-offset), 0) scale(var(--ncc-card-enter-scale));
  transition: none;
  pointer-events: none;
}

/* Snap to each set; cards cascade in with overlapping enter (each starts shortly after the prior) */
@keyframes ncc-card-enter {
  from {
    opacity: 0;
    transform: translate3d(0, var(--ncc-card-enter-offset), 0) scale(var(--ncc-card-enter-scale));
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.news-card-cycle:not(.is-static).is-cards-inview .news-card-cycle__panel .news-card-cycle__card {
  opacity: 0;
  transform: translate3d(0, var(--ncc-card-enter-offset), 0) scale(var(--ncc-card-enter-scale));
  animation: none;
  will-change: opacity, transform;
  pointer-events: none;
}

.news-card-cycle:not(.is-static).is-cards-inview .news-card-cycle__panel.is-active .news-card-cycle__card {
  pointer-events: auto;
  animation: ncc-card-enter var(--ncc-card-enter-duration) var(--ncc-card-enter-ease) forwards;
}

.news-card-cycle:not(.is-static).is-cards-inview .news-card-cycle__panel.is-active .news-card-cycle__card:nth-child(1) {
  animation-delay: 0s;
}

.news-card-cycle:not(.is-static).is-cards-inview .news-card-cycle__panel.is-active .news-card-cycle__card:nth-child(2) {
  animation-delay: var(--ncc-card-enter-stagger);
}

.news-card-cycle:not(.is-static).is-cards-inview .news-card-cycle__panel.is-active .news-card-cycle__card:nth-child(3) {
  animation-delay: calc(var(--ncc-card-enter-stagger) * 2);
}

.news-card-cycle__card {
  flex: 0 0 calc((100% - 2 * clamp(0.75rem, 1.5vw, 1.25rem)) / 3);
  width: calc((100% - 2 * clamp(0.75rem, 1.5vw, 1.25rem)) / 3);
  min-width: 0;
  max-width: 28.375rem;
  min-height: var(--ncc-card-height);
  height: var(--ncc-card-height);
  align-self: flex-start;
  padding: clamp(1.1rem, 2vw, 1.5rem);
  border-radius: 18px;
  background-color: var(--ncc-card-bg, #bf9beb);
  color: var(--ncc-card-text, #3a2d80);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  overflow: hidden;
}

.news-card-cycle__card--linked {
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card-cycle__card--linked:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.news-card-cycle__card-hit {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  text-decoration: none;
  color: inherit;
}

.news-card-cycle__card-hit:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.news-card-cycle__card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  margin-bottom: 0.65rem;
}

.news-card-cycle__category {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  min-height: calc(2 * 1.1em);
  padding-right: clamp(3.5rem, 28%, 100px);
  box-sizing: border-box;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: inherit;
}

.news-card-cycle__card--news .news-card-cycle__category {
  padding-right: 0;
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: uppercase;
  min-height: calc(1 * 1.15em);
}

.news-card-cycle__card--news .news-card-cycle__card-top {
  margin-bottom: 0.325rem;
}

.news-card-cycle__card--news .news-card-cycle__headline,
.news-card-cycle__card--news .news-card-cycle__link {
  font-family: "Instrument Sans", var(--body-font, "Montserrat", sans-serif);
}

.news-card-cycle__card-image {
  flex: 0 0 auto;
  max-width: 42%;
}

.news-card-cycle__card-image img {
  display: block;
  max-width: 100px;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-left: auto;
}

.news-card-cycle__headline {
  margin: 0 0 0.5rem;
  flex: 0 1 auto;
  font-family: var(--body-font, "Montserrat", sans-serif);
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
  font-weight: 500;
  line-height: 1.45;
  color: inherit;
}

.news-card-cycle__link {
  margin-top: 0.35rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: underline;
  color: inherit;
  transition: opacity 0.2s ease;
}

.news-card-cycle__card--linked:hover .news-card-cycle__link {
  opacity: 0.75;
}

.news-card-cycle__date {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--body-font, "Montserrat", sans-serif);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.3;
  color: inherit;
}

.news-card-cycle__logo {
  margin-bottom: 1.25rem;
  min-height: 0;
  background: transparent;
}

.news-card-cycle__logo:empty {
  display: none;
  margin: 0;
}

.news-card-cycle__logo img {
  display: block;
  max-width: 140px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  background: transparent;
}

.news-card-cycle__card--testimonial .news-card-cycle__headline {
  flex: 1 1 auto;
  min-height: 0;
  margin-bottom: 0;
  overflow: hidden;
}

.news-card-cycle__card--testimonial .news-card-cycle__headline,
.news-card-cycle__card--testimonial .news-card-cycle__name,
.news-card-cycle__card--testimonial .news-card-cycle__role,
.news-card-cycle__card--testimonial .news-card-cycle__headline *,
.news-card-cycle__card--testimonial .news-card-cycle__name *,
.news-card-cycle__card--testimonial .news-card-cycle__role *,
.news-card-cycle__card--testimonial .news-card-cycle__attribution [data-hs-cos-field="role"],
.news-card-cycle__card--testimonial .news-card-cycle__attribution [data-hs-cos-field="quoted_author"] {
  color: var(--ncc-card-text, #3a2d80);
}

.news-card-cycle__card--testimonial .news-card-cycle__name {
  font-weight: 500;
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
  line-height: 1.45;
}

.news-card-cycle__card--testimonial .news-card-cycle__role,
.news-card-cycle__card--testimonial .news-card-cycle__role *,
.news-card-cycle__card--testimonial .news-card-cycle__attribution [data-hs-cos-field="role"] {
  text-transform: uppercase;
}

.news-card-cycle__card--testimonial .news-card-cycle__attribution {
  margin-top: auto;
  width: 100%;
}

.news-card-cycle__card--testimonial .news-card-cycle__card-top {
  justify-content: flex-start;
}

.news-card-cycle__card--testimonial .news-card-cycle__card-image {
  flex: 0 0 auto;
  max-width: 100%;
}

.news-card-cycle__card--testimonial .news-card-cycle__card-image img {
  margin-left: 0;
  max-width: 140px;
  max-height: 48px;
}

.news-card-cycle__card--testimonial .hs_cos_wrapper,
.news-card-cycle__card--testimonial .hs_cos_wrapper_type_inline_text,
.news-card-cycle__card--testimonial .hs-image-widget {
  background: transparent !important;
  background-color: transparent !important;
}

.news-card-cycle__quote {
  margin: 0 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  background-color: transparent;
  font-family: var(--body-font, "Montserrat", sans-serif);
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
  font-weight: 500;
  line-height: 1.5;
  color: inherit;
  display: block;
  width: 100%;
  position: relative;
}

.news-card-cycle__quote p {
  margin: 0;
  color: inherit;
}

.news-card-cycle__quote p::before {
  content: "\201C";
}

.news-card-cycle__quote p::after {
  content: "\201D";
}

.news-card-cycle__attribution {
  margin-top: 1.5rem;
  padding: 0;
  background: transparent;
  background-color: transparent;
}

.news-card-cycle__name {
  margin: 0 0 0.35rem;
  font-family: var(--body-font, "Montserrat", sans-serif);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: inherit;
}

.news-card-cycle__role {
  margin: 0;
  font-family: var(--body-font, "Montserrat", sans-serif);
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: inherit;
}

.news-card-cycle__card--testimonial .news-card-cycle__role {
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.06em;
}

.news-card-cycle__trigger {
  height: calc(var(--ncc-scroll-step, 0.4) * (100dvh - var(--ncc-chrome-offset, 80px)));
  min-height: calc(var(--ncc-scroll-step, 0.4) * (100vh - var(--ncc-chrome-offset, 80px)));
  pointer-events: none;
}

.news-card-cycle__pager {
  display: none;
}

/* Tablet + mobile: 2 cards per slide; arrow + dot carousel (no scroll trap) */
@media screen and (max-width: 1024px) {
  .news-card-cycle__intro {
    flex-shrink: 0;
    padding-bottom: 0.5rem;
  }

  .news-card-cycle.is-carousel .news-card-cycle__track {
    height: auto;
  }

  .news-card-cycle.is-carousel .news-card-cycle__trigger {
    display: none;
    height: 0;
    min-height: 0;
  }

  .news-card-cycle.is-carousel .news-card-cycle__cards-stage {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    max-height: none;
    display: flex;
    flex-direction: column;
    overflow: visible;
  }

  .news-card-cycle.is-carousel .news-card-cycle__inner {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
    padding: 0.6rem 1rem 0.35rem;
  }

  .news-card-cycle.is-carousel .news-card-cycle__cards {
    width: 100%;
    max-width: min(100%, 400px);
    margin: clamp(0.35rem, 1.5vh, 0.85rem) auto 0;
    flex: 0 0 auto;
    min-height: 0;
    justify-content: flex-start;
    align-items: stretch;
  }

  .news-card-cycle.is-carousel .news-card-cycle__viewport {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    margin-inline: auto;
    overflow: hidden;
  }

  .news-card-cycle.is-carousel .news-card-cycle__strip {
    width: 100%;
    margin-inline: auto;
  }

  .news-card-cycle.is-carousel .news-card-cycle__panel {
    flex: 0 0 100%;
    height: auto;
    min-height: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.85rem;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    padding-bottom: 0;
    box-sizing: border-box;
  }

  @supports (-webkit-touch-callout: none) {
    .news-card-cycle.is-carousel .news-card-cycle__panel {
      padding-bottom: 0.35rem;
    }
  }

  /* Last (or partial) set with 1 card: center in the slide viewport */
  .news-card-cycle.is-carousel .news-card-cycle__panel:not(:has(> .news-card-cycle__card:nth-child(2))) {
    justify-content: center;
    align-items: stretch;
  }

  .news-card-cycle.is-carousel .news-card-cycle__card {
    flex: 0 0 auto;
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    min-height: 0;
    max-height: none;
    margin-inline: 0;
    padding: 1rem 1.15rem;
    overflow: visible;
  }

  .news-card-cycle.is-carousel .news-card-cycle__card--testimonial {
    min-height: 0;
  }

  .news-card-cycle.is-carousel .news-card-cycle__card--testimonial .news-card-cycle__headline {
    flex: 0 1 auto;
  }

  .news-card-cycle.is-carousel .news-card-cycle__card--testimonial .news-card-cycle__attribution {
    margin-top: 1rem;
  }

  .news-card-cycle.is-carousel .news-card-cycle__card + .news-card-cycle__card {
    margin-top: 0.15rem;
  }

  .news-card-cycle.is-carousel.is-stacked-solo .news-card-cycle__inner {
    padding-top: 0.45rem;
    padding-bottom: 0.25rem;
  }

  .news-card-cycle.is-carousel.is-stacked-solo .news-card-cycle__cards {
    margin-top: 0.35rem;
  }

  .news-card-cycle.is-carousel.is-stacked-solo .news-card-cycle__panel {
    gap: 0;
    justify-content: flex-start;
  }

  .news-card-cycle.is-carousel.is-stacked-solo .news-card-cycle__card {
    padding: 0.95rem 1.1rem;
  }

  .news-card-cycle.is-carousel .news-card-cycle__headline {
    font-size: 16px;
    line-height: 1.45;
  }

  .news-card-cycle.is-carousel .news-card-cycle__category {
    font-size: clamp(0.67rem, 2.67vw, 0.9rem);
    min-height: calc(2 * 1.1em);
    padding-right: clamp(2.75rem, 22%, 5rem);
  }

  .news-card-cycle.is-carousel .news-card-cycle__card--news .news-card-cycle__category {
    padding-right: 0;
    font-size: clamp(0.9rem, 3vw, 1.67rem);
  }

  .news-card-cycle.is-carousel .news-card-cycle__card-image img {
    max-width: 72px;
    max-height: 36px;
  }

  .news-card-cycle.is-carousel .news-card-cycle__card--testimonial .news-card-cycle__card-image {
    max-width: 100%;
    width: 100%;
    margin-bottom: 0.35rem;
  }

  .news-card-cycle.is-carousel .news-card-cycle__card--testimonial .news-card-cycle__card-image img {
    max-width: min(100%, 133px);
    max-height: 43px;
    width: auto;
    height: auto;
    margin-left: 0;
  }

  .news-card-cycle.is-carousel .news-card-cycle__featured {
    flex-shrink: 0;
    margin-top: 5px;
    display: block;
    max-height: none;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .news-card-cycle.is-carousel .news-card-cycle__featured-label,
  .news-card-cycle.is-carousel .news-card-cycle__featured-label .hs_cos_wrapper,
  .news-card-cycle.is-carousel .news-card-cycle__featured-label .hs_cos_wrapper_type_inline_text,
  .news-card-cycle.is-carousel .news-card-cycle__featured > .hs_cos_wrapper[data-hs-cos-field="featured_label"],
  .news-card-cycle.is-carousel .news-card-cycle__featured > .hs_cos_wrapper_type_inline_text[data-hs-cos-field="featured_label"] {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 5px;
  }

  .news-card-cycle.is-carousel .news-card-cycle__pager {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    max-width: min(100%, 400px);
    margin: 0.5rem auto 0;
    padding: 0;
    line-height: 1;
  }

  .news-card-cycle.is-carousel .news-card-cycle__pager-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 2rem;
    line-height: 0;
  }

  .news-card-cycle.is-carousel .news-card-cycle__pager-dot-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    line-height: 0;
  }

  .news-card-cycle.is-carousel .news-card-cycle__pager-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    color: var(--ncc-heading, #fff);
    cursor: pointer;
    line-height: 0;
  }

  .news-card-cycle.is-carousel .news-card-cycle__pager-btn:disabled {
    opacity: 0.35;
    cursor: default;
  }

  .news-card-cycle.is-carousel .news-card-cycle__pager-btn:focus-visible {
    outline: 2px solid var(--ncc-accent, #76c7b7);
    outline-offset: 3px;
  }

  .news-card-cycle.is-carousel .news-card-cycle__pager-icon {
    display: block;
    width: 0.55rem;
    height: 0.55rem;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
  }

  .news-card-cycle.is-carousel .news-card-cycle__pager-btn--prev .news-card-cycle__pager-icon {
    transform: rotate(-135deg);
    margin-left: 0.2rem;
  }

  .news-card-cycle.is-carousel .news-card-cycle__pager-btn--next .news-card-cycle__pager-icon {
    transform: rotate(45deg);
    margin-right: 0.2rem;
  }

  .news-card-cycle.is-carousel .news-card-cycle__pager-dot {
    display: block;
    flex-shrink: 0;
    box-sizing: border-box;
    width: 0.55rem;
    height: 0.55rem;
    padding: 0;
    margin: 0;
    border: 2px solid currentColor;
    border-radius: 50%;
    background: transparent;
    color: var(--ncc-heading, #fff);
    cursor: pointer;
    line-height: 0;
  }

  .news-card-cycle.is-carousel .news-card-cycle__pager-dot.is-active,
  .news-card-cycle.is-carousel .news-card-cycle__pager-dot[aria-current="true"] {
    background-color: var(--ncc-accent, #76c7b7);
    border-color: var(--ncc-accent, #76c7b7);
  }

  .news-card-cycle.is-carousel .news-card-cycle__pager-dot:focus-visible {
    outline: 2px solid var(--ncc-accent, #76c7b7);
    outline-offset: 3px;
  }
}

/* Tablet landscape / portrait (768–1024) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .news-card-cycle.is-carousel .news-card-cycle__inner {
    padding-inline: clamp(1.5rem, 4vw, 2.5rem);
  }

  .news-card-cycle.is-carousel .news-card-cycle__cards,
  .news-card-cycle.is-carousel .news-card-cycle__pager {
    width: 100%;
    max-width: min(100%, 640px);
    margin-top: clamp(0.5rem, 2vh, 1rem);
  }

  .news-card-cycle.is-carousel .news-card-cycle__panel {
    gap: clamp(0.9rem, 2vh, 1.2rem);
  }

  .news-card-cycle.is-carousel .news-card-cycle__card + .news-card-cycle__card {
    margin-top: 0.2rem;
  }

  .news-card-cycle.is-carousel .news-card-cycle__card {
    padding: 1.1rem 1.35rem;
  }

  .news-card-cycle.is-carousel .news-card-cycle__card--testimonial .news-card-cycle__card-image img {
    max-width: min(100%, 160px);
    max-height: 52px;
  }
}

@media screen and (max-width: 1024px) {
  .news-card-cycle__title {
    font-size: var(--ncc-title-font-size-mobile, var(--ncc-title-font-size, clamp(1.75rem, 8vw, 2.5rem)));
  }

  .news-card-cycle__subtitle {
    font-size: var(--ncc-subtitle-font-size-mobile, var(--ncc-subtitle-font-size, clamp(0.9rem, 3.5vw, 1.1rem)));
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 399px) {
  .news-card-cycle.is-carousel .news-card-cycle__headline,
  .news-card-cycle.is-static .news-card-cycle__headline {
    font-size: 14px;
    line-height: 1.4;
  }

  .news-card-cycle.is-carousel .news-card-cycle__card {
    padding: 0.85rem 1rem;
  }
}

/* Reduced motion: stacked panels, no scroll-driven slides */
.news-card-cycle.is-static .news-card-cycle__trigger {
  display: none;
  height: 0;
}

.news-card-cycle.is-static .news-card-cycle__cards-stage {
  position: relative;
  top: auto;
  height: auto;
  min-height: 0;
  max-height: none;
}

.news-card-cycle.is-static .news-card-cycle__inner {
  padding-bottom: 2rem;
}

.news-card-cycle.is-static .news-card-cycle__cards {
  max-height: none;
  overflow: visible;
}

.news-card-cycle.is-static .news-card-cycle__panel + .news-card-cycle__panel {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.news-card-cycle.is-static .news-card-cycle__strip {
  flex-direction: column;
  transform: none !important;
}

.news-card-cycle.is-static .news-card-cycle__viewport {
  height: auto;
  min-height: 0;
  max-height: none;
  overflow: visible;
}

.news-card-cycle.is-static .news-card-cycle__panel {
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.news-card-cycle.is-static .news-card-cycle__card {
  flex: 0 0 auto;
  width: 100%;
  max-width: min(100%, 420px);
  opacity: 1;
  transform: none;
}

.news-card-cycle.is-static .news-card-cycle__cards {
  margin-top: clamp(2rem, 5vh, 3.5rem);
}

@media (prefers-reduced-motion: reduce) {
  .news-card-cycle__intro-area {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .news-card-cycle__strip {
    transition: none !important;
  }

  .news-card-cycle__panel .news-card-cycle__card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}
