.ss-product-series {
  width: 100%;
  background: var(--yc-background, #fff);
}

.ss-product-series__container {
  width: 100%;
  max-width: var(--yc-container-max, 90rem);
  margin-inline: auto;
  padding-inline: var(--yc-container-px, clamp(1.25rem, 0.6rem + 2vw, 4rem));
}

.ss-product-series-hero {
  padding-block: var(--yc-space-8, 2rem) var(--yc-space-14, 3.5rem);
}

.ss-product-series-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: start;
  column-gap: var(--yc-space-12, 3rem);
  row-gap: var(--yc-space-10, 2.5rem);
  width: 100%;
}

.ss-product-series-hero__gallery {
  min-width: 0;
}

.ss-product-series-hero__summary {
  display: flex;
  min-height: clamp(28rem, 36vw, 36rem);
  flex-direction: column;
  align-items: flex-start;
  padding-block: var(--yc-space-2, 0.5rem) var(--yc-space-1, 0.25rem);
}

.ss-product-series-hero__title {
  margin: 0 0 var(--yc-space-6, 1.5rem);
  color: var(--yc-primary, #0d3f7a);
  font-size: clamp(2rem, 1.45rem + 2vw, 3.25rem);
  font-weight: 700;
  line-height: var(--yc-leading-tight, 1.25);
  letter-spacing: var(--yc-tracking-tight, -0.01em);
}

.ss-product-series-description {
  width: 100%;
  color: var(--yc-primary, #0d3f7a);
  font-size: var(--yc-text-body, 1rem);
  font-weight: 600;
  line-height: var(--yc-leading-relaxed, 1.625);
}

.ss-product-series-description__content {
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.ss-product-series-description.is-collapsed
  .ss-product-series-description__content {
  max-height: calc(var(--yc-leading-relaxed, 1.625) * 4em);
}

.ss-product-series-description.is-expanded
  .ss-product-series-description__content {
  max-height: none;
}

.ss-product-series-description__content > *:first-child {
  margin-top: 0;
}

.ss-product-series-description__content > *:last-child {
  margin-bottom: 0;
}

.ss-product-series-description__content ul,
.ss-product-series-description__content ol,
.ss-product-series-description__content ul li,
.ss-product-series-description__content ol li {
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .ss-product-series-description__content ul,
  .ss-product-series-description__content ol,
  .ss-product-series-description__content ul li,
  .ss-product-series-description__content ol li {
    font-size: 16px;
    font-weight: 500;
  }
}

.ss-product-series-description__toggle {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: var(--yc-space-5, 1.25rem) auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--yc-primary, #0d3f7a);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.ss-product-series-description__toggle svg {
  width: 1.2rem;
  height: 1.2rem;
  transition: transform 0.2s ease;
}

.ss-product-series-description.is-expanded
  .ss-product-series-description__toggle
  svg {
  transform: rotate(180deg);
}

.ss-product-series-description:not(.has-overflow)
  .ss-product-series-description__toggle {
  display: none;
}


.ss-product-series-hero__datasheet {
  margin-top: var(--yc-space-8, 2rem);
}.ss-product-series-hero__download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 3.5rem;
  margin-top: var(--yc-space-8, 2rem);
  padding: var(--yc-space-4, 1rem) var(--yc-space-6, 1.5rem);
  border: 1px solid var(--yc-primary, #0d3f7a);
  border-radius: var(--yc-radius-md, 0.375rem);
  color: var(--yc-primary, #0d3f7a);
  background: transparent;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.ss-product-series-hero__download:hover {
  color: var(--yc-primary-foreground, #fff);
  background: var(--yc-primary, #0d3f7a);
}

.ss-product-series-hero__download svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
}

.ss-product-series-characteristics {
  padding-bottom: var(--yc-space-16, 4rem);
}

.ss-product-series-products {
  padding-bottom: var(--yc-space-12, 3rem);
}

.ss-product-series-characteristics__card {
  width: 100%;
}

.ss-product-series-products__table-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--yc-border, #d9dee7);
  border-radius: var(--yc-radius-lg, 0.5rem);
  background: var(--yc-card, #fff);
}

.ss-product-series-characteristics__header {
  appearance: none;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: var(--yc-space-2, 0.5rem);
  padding: 0 var(--yc-space-2, 0.5rem);
  border: 0;
  background: var(--yc-muted, #eef2f9);
  color: var(--yc-primary, #0d3f7a);
  cursor: pointer;
  font-size: var(--yc-text-h2, clamp(1.25rem, 0.95rem + 2.1vw, 3rem));
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: var(--yc-tracking-tight, -0.01em);
  text-align: left;
}

.ss-product-series-characteristics__header span {
  display: block;
  padding-block: var(--yc-space-1, 0.25rem);
}

.ss-product-series-characteristics__header svg {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}

.ss-product-series-characteristics.is-collapsed
  .ss-product-series-characteristics__header
  svg {
  transform: rotate(180deg);
}

.ss-product-series-characteristics.is-collapsed
  .ss-product-series-characteristics__panel {
  display: none;
}

.ss-product-series-characteristics__panel {
  margin-top: 1.75rem;
}

.ss-product-series-characteristics__table-wrap {
  width: 100%;
  overflow-x: auto;
  border-inline: 0;
  background: var(--yc-card, #fff);
  box-shadow: none;
}

.ss-product-series-characteristics__table,
.ss-product-series-products__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  border-spacing: 0;
}

.ss-product-series-characteristics__table {
  table-layout: fixed;
  border-inline: 0;
}

.ss-product-series-characteristics__table th,
.ss-product-series-characteristics__table td {
  display: table-cell;
  padding: 14px 16px;
  border: 0;
  border-bottom: 1px solid var(--yc-border, #d9dee7);
  vertical-align: middle;
  text-align: left;
  line-height: var(--yc-leading-snug, 1.375);
}

.ss-product-series-characteristics__table th {
  width: 40%;
  color: var(--yc-foreground, #363c46);
  font-weight: 700;
}

.ss-product-series-characteristics__table td {
  color: var(--yc-foreground, #363c46);
  font-size: var(--yc-text-body, 1rem);
  font-weight: 500;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.ss-product-series-characteristics__table tr:last-child th,
.ss-product-series-characteristics__table tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 767px) {
  .ss-product-series-characteristics__table {
    table-layout: auto;
  }

  .ss-product-series-characteristics__table th,
  .ss-product-series-characteristics__table td {
    padding: 10px 8px;
  }
}
.ss-product-series-products__table {
  min-width: 1100px;
  table-layout: auto;
}

.ss-product-series-products__table th:first-child,
.ss-product-series-products__table td:first-child {
  width: 18rem;
}

.ss-product-series-products__table th:last-child,
.ss-product-series-products__table td:last-child {
  width: 18rem;
}
.ss-product-series-products__table thead th {
  padding: 1rem 1.5rem;
  background: var(--yc-primary, #0d3f7a);
  color: var(--yc-primary-foreground, #fff);
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.2;
  white-space: nowrap;
  text-align: left;
}

.ss-product-series-products__table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--yc-border, #d9dee7);
  color: var(--yc-primary, #0d3f7a);
  font-weight: 700;
  text-align: left;
  vertical-align: top;
}

.ss-product-series-products__table tbody tr:last-child td {
  border-bottom: 0;
}

.ss-product-series-products__table a {
  color: inherit;
  text-decoration: none;
}

.ss-product-series-products__table a:hover {
  color: var(--yc-accent, #eb0000);
}

.ss-product-series-products__image-link {
  display: block;
  width: 15rem;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--yc-radius-sm, 0.125rem);
  background: var(--yc-muted, #eef2f9);
}

.ss-product-series-products__image-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ss-product-series-products__actions {
  display: grid;
  gap: 0.75rem;
  min-width: 15rem;
}
.ss-product-series-products__actions .ss-product-basic-info__button {
  min-height: 2.875rem;
  padding: 0.75rem 1rem;
  gap: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.15;
  white-space: nowrap;
}

.ss-product-series-products__actions .ss-product-basic-info__button svg {
  width: 1.125rem;
  height: 1.125rem;
}

.ss-product-series-products__actions .ss-product-basic-info__button span {
  white-space: nowrap;
}

.ss-product-series-products__table .ss-product-series-products__details {
  color: var(--yc-primary, #0d3f7a);
}

.ss-product-series-products__table .ss-product-series-products__details:hover {
  color: var(--yc-primary-foreground, #fff);
}

.ss-product-series-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: var(--yc-space-6, 1.5rem);
  border: 1px solid var(--yc-border, #d9dee7);
  border-top: 0;
  border-radius: 0 0 var(--yc-radius-lg, 0.5rem) var(--yc-radius-lg, 0.5rem);
}

.ss-product-series-pagination .page-numbers {
  display: inline-flex;
  min-width: 3rem;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--yc-border, #d9dee7);
  border-radius: var(--yc-radius-md, 0.375rem);
  color: var(--yc-primary, #0d3f7a);
  font-weight: 700;
  text-decoration: none;
}

.ss-product-series-pagination .page-numbers.current {
  color: var(--yc-primary-foreground, #fff);
  background: var(--yc-primary, #0d3f7a);
  border-color: var(--yc-primary, #0d3f7a);
}

.ss-product-series-pagination .next svg {
  transform: rotate(-90deg);
}

.ss-product-series-pagination .prev svg {
  transform: rotate(90deg);
}

.ss-product-series-empty {
  padding: var(--yc-space-6, 1.5rem);
  border: 1px solid var(--yc-border, #d9dee7);
  color: var(--yc-muted-foreground, rgba(53, 59, 69, 0.7));
}

@media (max-width: 1023px) {
  .ss-product-series-hero__grid {
    grid-template-columns: 1fr;
  }

  .ss-product-series-hero__summary {
    min-height: auto;
    padding-block: 0;
  }
}

@media (max-width: 767px) {
  .ss-product-series-hero {
    padding-block: var(--yc-space-6, 1.5rem) var(--yc-space-10, 2.5rem);
  }

  .ss-product-series-characteristics__table th,
  .ss-product-series-characteristics__table td {
    padding: 1rem;
  }

  .ss-product-series-hero__download,
  .ss-product-series-hero__datasheet {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .ss-product-series-products__table {
    min-width: 980px;
  }

  .ss-product-series-products__table thead th,
  .ss-product-series-products__table td {
    padding: 0.875rem 1rem;
  }

  .ss-product-series-products__table th:first-child,
  .ss-product-series-products__table td:first-child {
    width: 16rem;
  }

  .ss-product-series-products__image-link {
    width: 14rem;
  }
.ss-product-series-products__actions {
    min-width: 13.5rem;
  }

}
