:root {
    --tech23-red: #d7000f;
    --tech23-red-deep: #d7000f;
    --tech23-text: #1f1f1f;
    --tech23-body: #333333;
    --tech23-body-soft: #666666;
    --tech23-line: #d9d9d9;
    --tech23-surface: #ffffff;
    --tech23-surface-soft: #f7f7f7;
    --tech23-head-bg: #333333;
    --tech23-shadow: 0 28px 72px rgba(18, 18, 18, 0.08);
    --tech23-radius-xl: 30px;
    --tech23-radius-lg: 24px;
    --tech23-radius-md: 18px;
    --tech23-radius-sm: 14px;
    --tech23-shell: min(100% - 280px, 1640px);

   
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
    color: var(--tech23-body);
    background: #ffffff;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.tech23-page {
    position: relative;
    overflow-x: clip;
}

.tech23-shell {
    width: var(--tech23-shell);
    margin: 0 auto;
}

.tech23-accent {
    display: block;
    width: 72px;
    height: 4px;
    border-radius: 999px;
    background: var(--tech23-red);
}

.tech23-brand {
    display: inline-block;
    margin: 3px 0 0 27px;
    position: relative;
    z-index: 3;
}

.tech23-brand img {
    display: block;
    width: 142px;
    height: auto;
}

.tech23-hero {
    padding: 40px 0 64px;
    background:
        linear-gradient(180deg, #ffffff 0%, #ffffff 82%, #fffdfd 100%);
}

.tech23-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.78fr) minmax(344px, 0.78fr);
    gap: 20px;
    align-items: start;
}

.tech23-viewer {
    padding-top: 4px;
}

.tech23-viewer__stage {
    overflow: hidden;
    margin-top: -80px;
    outline: none;
    cursor: grab;
}

.tech23-viewer__stage:active {
    cursor: grabbing;
}

.tech23-viewer__track {
    display: flex;
    align-items: stretch;
}

.tech23-viewer__slide {
    min-width: 100%;
    min-height: 544px;
    display: grid;
    place-items: center;
}

.tech23-viewer__slide img {
    width: 100%;
    /* max-height: 544px; */
    object-fit: contain;
    object-position: center center;
    user-select: none;
}

.tech23-viewer__thumbs {
    --tech23-thumbs-width: 780px;
    width: min(100%, var(--tech23-thumbs-width));
    margin: 34px auto 0;
    overflow: hidden;
    cursor: grab;
}

.tech23-viewer__thumbs:active {
    cursor: grabbing;
}

.tech23-viewer__thumbs-track {
    align-items: stretch;
}

.tech23-thumb {
    display: grid;
    place-items: center;
    min-height: 94px;
    border: 1px solid #ececec;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.tech23-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tech23-thumb:hover {
    transform: translateY(-2px);
}

.tech23-thumb.is-active,
.tech23-thumb.swiper-slide-thumb-active {
    border-color: var(--tech23-red);
    box-shadow: inset 0 0 0 1px var(--tech23-red);
}

.tech23-hero__copy {
    padding-top: 147px;
    padding-left: 12px;
}

.tech23-hero__eyebrow,
.tech23-cases__intro h2,
.tech23-related__header h2,
.tech23-related-card h3 {
    margin: 0;
    font-family: "OutfitLocal", "Arial Black", sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.tech23-hero__eyebrow {
    color: var(--tech23-red);
    font-size: 32px;
    line-height: 1;
    letter-spacing: 0;
}

.tech23-hero__title {
    margin: 22px 0 0;
    color: #121010;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.tech23-hero__copy>.tech23-accent {
    width: 35px;
    height: 2px;
    border-radius: 0;
    margin: 32px 0 0;
}

.tech23-hero__text {
    padding-top: 42px;
}

.tech23-hero__text h2 {
    margin: 0 0 19px;
    color: #333333;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
}

.tech23-hero__text p {
    margin: 0;
    color: #707070;
    font-size: 16px;
    line-height: 1.86;
    font-weight: 400;
    max-width: 432px;
}

.tech23-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 31px;
    margin-top: 100px;
    margin-left: 1px;
}

.tech23-button {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-height: 40px;
    padding: 0 6px 0 20px;
    border-radius: 999px;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        color 0.42s ease,
        border-color 0.42s ease;
}

.tech23-button::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.46s cubic-bezier(0.22, 1, 0.36, 1);
}

.tech23-button span,
.tech23-button i,
.tech23-button b {
    position: relative;
    z-index: 1;
    transition:
        color 0.42s ease,
        background-color 0.42s ease,
        transform 0.42s ease;
}

.tech23-button:hover {
    transform: translateY(-2px);
}

.tech23-button i,
.tech23-button b {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 700;
    font-style: normal;
}

.tech23-button--solid {
    color: #ffffff;
    background: var(--tech23-red);
    box-shadow: 0 18px 36px rgba(230, 0, 18, 0.2);
    padding-right: 7px;
}

.tech23-button--solid::before {
    background: #ffffff;
}

.tech23-button--solid i {
    background: #ffffff;
    color: var(--tech23-red);
}

.tech23-button--solid:hover {
    color: var(--tech23-red);
}

.tech23-button--solid:hover::before {
    transform: scaleX(1);
}

.tech23-button--solid:hover i {
    background: var(--tech23-red);
    color: #ffffff;
    transform: translateX(2px);
}

.tech23-button--outline {
    color: var(--tech23-red);
    border: 1px solid var(--tech23-red);
    background: transparent;
    gap: 11px;
    padding-right: 6px;
}

.tech23-button--outline::before {
    background: var(--tech23-red);
}

.tech23-button--outline b {
    background: var(--tech23-red);
    color: #ffffff;
}

.tech23-button--outline:hover {
    color: #ffffff;
}

.tech23-button--outline:hover::before {
    transform: scaleX(1);
}

.tech23-button--outline:hover b {
    background: #ffffff;
    color: var(--tech23-red);
    transform: translateY(1px);
}

.tech23-button:hover span {
    transform: translateX(1px);
}

.tech23-cases {
    position: relative;
    overflow: visible;
    margin-top: 166px;
    min-height: 383px;
    padding: 0;
    background: var(--tech23-red);
}

.tech23-cases__grid {
    position: relative;
    width: 100vw;
    min-height: 383px;
    margin: 0 0 0 calc(50% - 50vw);
}

.tech23-cases__intro {
    display: block;
    width: 548px;
    min-height: 383px;
    padding: 55px 0 0 140px;
    margin-top: 0;
    color: #ffffff;
    background: transparent;
}

.tech23-cases__label {
    margin: 0;
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
}

.tech23-cases__intro h2 {
    margin: 120px 0 0;
    font-size: 32px;
    line-height: 1.3;
}

.tech23-cases__intro p:last-child {
    margin: 16px 0 0;
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
}

.tech23-cases__cards {
    position: absolute;
    top: -82px;
    left: 560px;
    display: flex;
    margin: 0;
    transform: none;
    max-width: calc(100% - 568px);
}

.tech23-case-card {
    flex: 0 0 379px;
    width: 379px;
    color: #ffffff;
}

.tech23-case-card__media {
    height: 387px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 18px 18px 10px;
    overflow: hidden;
    border-radius: 13px;
    background: #f9f8f6;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.015);
}

.tech23-case-card__media img {
    width: auto;
    max-width: 94%;
    max-height: 100%;
    object-fit: contain;
}

.tech23-case-card h3 {
    margin: 22px 0 0;
    text-align: center;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
}

.tech23-detail {
    position: relative;
    display: grid;
    grid-template-columns: 392px minmax(0, 1fr);
    gap: 134px;
    padding: 62px 0 122px;
}

.tech23-detail::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -140px;
    width: 557px;
    background: #fbfbfb;
    pointer-events: none;
}

.tech23-side-nav {
    position: sticky;
    z-index: 1;
    top: 32px;
    align-self: start;
    width: 374px;
    margin-top: 26px;
    margin-left: 0;
    overflow: hidden;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(18, 18, 18, 0.05);
}

.tech23-side-nav__head {
    padding: 19px 32px;
    color: #fbfbfb;
    background: var(--tech23-red);
    font-size: 16px;
    line-height: 1.375;
    font-weight: 700;
}

.tech23-side-nav__list {
    padding: 0 30px 3px;
}

.tech23-side-nav__item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 89px;
    padding-right: 46px;
    border-bottom: 1px solid #e9e9e9;
    color: #666666;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 400;
    transition: color 0.2s ease;
}

.tech23-side-nav__item:nth-child(1) {
    min-height: 92px;
}

.tech23-side-nav__item:nth-child(3) {
    min-height: 82px;
}
.hot-product-swiper {
	overflow: hidden;
}
.tech23-side-nav__item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 10px solid transparent;
    transform: translateY(-50%);
    transition: border-left-color 0.2s ease;
}

.tech23-side-nav__item.is-active {
    color: var(--tech23-red-deep);
}

.tech23-side-nav__item.is-active::after {
    border-left-color: var(--tech23-red-deep);
}

.tech23-side-nav__item:last-child {
    border-bottom: 0;
}

.tech23-detail__main {
    min-width: 0;
}

.tech23-section {
    scroll-margin-top: 48px;
}

#description {
    padding-top: 73px;
}

#params {
    margin-top: 122px;
}

#photos {
    margin-top: 92px;
}

#video {
    margin-top: 162px;
}

.tech23-section+.tech23-section {
    margin-top: 80px;
}

.tech23-section__header {
    margin-bottom: 46px;
}

.tech23-section__header h2 {
    margin: 0;
    color: var(--tech23-body);
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
}

.tech23-section__header .tech23-accent {
    width: 139px;
    margin-top: 65px;
    border-radius: 0;
}

#description .tech23-section__header {
    margin-bottom: 69px;
}

#description .tech23-section__header .tech23-accent {
    margin-top: 41px;
}

#params .tech23-section__header {
    margin-bottom: 60px;
}

#params .tech23-section__header .tech23-accent {
    margin-top: 29px;
}

#photos .tech23-section__header {
    margin-bottom: 51px;
}

#video .tech23-section__header {
    margin-bottom: 44px;
}

#photos .tech23-section__header .tech23-accent {
    margin-top: 29px;
}

#video .tech23-section__header .tech23-accent {
    margin-top: 31px;
}

.tech23-section__header::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 0;
    background: #a9a9a9;
}

.tech23-description {
    font-size: 20px;
}

/* article {
    margin: 0;
} */

.tech23-description article+article {
    margin-top: 15px;
}

.tech23-description h3 {
    /* margin: 0 0 32px;
    color: var(--tech23-body);
    font-size: 20px;
    line-height: 1;
    font-weight: 700; */
}

.tech23-description p {
    /* margin: 0;
    color: var(--tech23-body);
    font-size: 20px;
    line-height: 1;
    font-weight: 700; */
}

.tech23-params {
    overflow-x: auto;
}

.tech23-params table {
    width: 100%;
    min-width: 860px;
    border-collapse: collapse;
    background: #ffffff;
}

section table  th {
    padding: 16px 18px;
    background: var(--tech23-head-bg);
    color: #ffffff;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 500;
}

.tech23-params tbody th,
.tech23-params tbody td {
    border: 1px solid #ececec;
    text-align: center;
    padding: 16px 20px;
    color: var(--tech23-body);
    font-size: 16px;
    line-height: 1.6;
}

.tech23-params tbody th {
    width: 32%;
    background: #f5f5f5;
    font-size: 18px;
    font-weight: 700;
}

.tech23-params tbody tr {
    background: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

tr:not(:first-child):nth-child(even) {
  background-color: #f5f5f5; 
}

.tech23-photo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.tech23-photo-grid article {
    overflow: hidden;
    background: #f0f0f0;
}

.tech23-photo-grid img {
    width: 100%;
    aspect-ratio: 1.62 / 1;
    object-fit: cover;
}

.tech23-video-card {
    position: relative;
    overflow: hidden;
}

.tech23-video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(12, 12, 12, 0.34);
}

.tech23-video-card img {
    width: 100%;
    min-height: 470px;
    object-fit: cover;
}

.tech23-video-card button {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 94px;
    height: 94px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--tech23-red);
    transform: translate(-50%, -50%);
    box-shadow: 0 26px 54px rgba(230, 0, 18, 0.24);
}

.tech23-video-card button span {
    width: 0;
    height: 0;
    margin-left: 7px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 24px solid #ffffff;
}

.tech23-related {
    position: relative;
    z-index: 2;
    margin-top: -36px;
    height: 728px;
    padding: 105px 0 0;
    box-sizing: border-box;
    background: var(--tech23-red);
}

.tech23-related__header {
    margin-bottom: 54px;
    text-align: center;
}

.tech23-related__header h2 {
    color: #ffffff;
    font-size: 42px;
    line-height: 1;
}

.tech23-related__grid {
/*     display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px; */
}

.tech23-related-card {
    color: #ffffff;
    transition:
        transform 0.38s ease,
        filter 0.38s ease;
}

.tech23-related-card__logo {
    display: none;
}

.tech23-related-card__media {
    display: block;
    padding: 0;
    border-radius: 18px;
    background: #fff;
    padding: 30px 10px 10px;
    position: relative;
}

.tech23-related-card__media img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: contain;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.tech23-related-card__media img.logo {
    position: absolute;
    width: auto;
    top: 24px;
    left: 20px;
    z-index: 3;
    width: 20%;
}

.tech23-related-card h3 {
    margin-top: 30px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.2;
}

.tech23-related-card p {
    margin: 14px 0 0;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 700;
}

.tech23-related-card:hover {
    transform: translateY(-10px);
    filter: drop-shadow(0 24px 36px rgba(122, 0, 10, 0.18));
}

.tech23-related-card:hover .tech23-related-card__media img {
    transform: scale(1.03);
}

.tech23-motion .tech23-viewer,
.tech23-motion .tech23-hero__copy,
.tech23-motion .tech23-cases__intro,
.tech23-motion .tech23-case-card,
.tech23-motion .tech23-side-nav,
.tech23-motion .tech23-section,
.tech23-motion .tech23-related__header,
.tech23-motion .tech23-related-card {
    opacity: 1;
    transform: translateY(34px);
    transition:
        opacity 0.72s ease,
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.tech23-motion .tech23-related-card.swiper-slide {
	transform: none;
}

.tech23-motion .tech23-viewer,
.tech23-motion .tech23-hero__copy {
    transform: translateY(20px);
}

.tech23-motion .tech23-case-card:nth-child(2),
.tech23-motion .tech23-related-card:nth-child(2) {
    transition-delay: 0.08s;
}

.tech23-motion .tech23-case-card:nth-child(3),
.tech23-motion .tech23-related-card:nth-child(3) {
    transition-delay: 0.16s;
}

.tech23-motion .tech23-case-card:nth-child(4) {
    transition-delay: 0.24s;
}

.tech23-motion .is-visible {
    opacity: 1;
    transform: none;
}

/* 修改 */
.case-card-swiper {
    overflow: hidden;
}

.swiper-item .img{
    background-color: #f9f8f6;
    border-radius: 20px;
	 overflow: hidden;
}

.swiper-item {
    text-align: center;
    color: #fff;
}

.tech23-params tbody tr:first-of-type td,
.tech23-params tbody tr:first-of-type th{
    vertical-align: middle;
    background-color: #333333;
		color: #fff;
}
.tech23-page ol,
.tech23-page ul {
	padding-left: 22px;
}

.tech23-page ol > *,
.tech23-page ul > * {
	margin-bottom: 10px;
}

/* .swiper-item .img img {
	border-radius: 10px;
}
 */

@media (prefers-reduced-motion: reduce) {

    .tech23-button,
    .tech23-button::before,
    .tech23-button span,
    .tech23-button i,
    .tech23-button b,
    .tech23-related-card,
    .tech23-related-card__media img,
    .tech23-motion .tech23-viewer,
    .tech23-motion .tech23-hero__copy,
    .tech23-motion .tech23-cases__intro,
    .tech23-motion .tech23-case-card,
    .tech23-motion .tech23-side-nav,
    .tech23-motion .tech23-section,
    .tech23-motion .tech23-related__header,
    .tech23-motion .tech23-related-card {
        transition: none !important;
        animation: none !important;
    }

    .tech23-motion .tech23-viewer,
    .tech23-motion .tech23-hero__copy,
    .tech23-motion .tech23-cases__intro,
    .tech23-motion .tech23-case-card,
    .tech23-motion .tech23-side-nav,
    .tech23-motion .tech23-section,
    .tech23-motion .tech23-related__header,
    .tech23-motion .tech23-related-card {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1430px) {
    :root {
        --tech23-shell: min(100% - 48px, 1388px);
    }

    .tech23-hero {
        padding-bottom: 20px;
    }

    .tech23-hero__grid {
        gap: 32px;
        grid-template-columns: minmax(0, 1.24fr) minmax(300px, 0.78fr);
    }

    .tech23-viewer__stage {
        margin-top: -48px;
    }

    .tech23-viewer__slide {
        min-height: 500px;
    }

    .tech23-viewer__slide img {
        width: 108%;
        max-height: 500px;
    }

    .tech23-viewer__thumbs {
        --tech23-thumbs-width: 100%;
        margin-top: 24px;
    }

    .tech23-hero__copy {
        padding-top: 112px;
        padding-left: 0;
    }

    .tech23-hero__actions {
        margin-top: 68px;
    }

    .tech23-cases {
        margin-top: 72px;
        min-height: 0;
        padding-bottom: 20px;
        background: var(--tech23-red);
    }

    .tech23-cases__grid {
        display: block;
        grid-template-columns: 1fr;
        gap: 18px;
        width: var(--tech23-shell);
        min-height: 0;
        margin: 0 auto;
        padding: 24px 0 28px;
        align-items: start;
    }

    .tech23-cases__intro {
        width: auto;
        /* min-height: auto; */
        padding: 0;
		display: inline-block;
    }

    .tech23-cases__label {
        margin-bottom: 18px;
        font-size: 20px;
    }

    .tech23-cases__intro h2 {
        margin-top: 0;
        font-size: 26px;
    }

    .tech23-cases__intro p:last-child {
        margin-top: 8px;
        font-size: 18px;
    }

    .tech23-cases__cards {
        /* display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        width: auto;
        margin: 0 36px; */
        top: 10px;
        left: auto;
        right: 10px;
        max-width: calc(100% - 300px);
    }

    .tech23-case-card {
        flex-basis: auto;
        width: auto;
    }

    .tech23-case-card__media {
        height: 248px;
    }

    .tech23-detail {
        grid-template-columns: 280px minmax(0, 1fr);
        gap: 28px;
        padding: 48px 0 96px;
    }

    .tech23-detail::before {
        left: -88px;
        width: 388px;
    }

    .tech23-side-nav {
        width: 280px;
        margin-top: 12px;
    }

    .tech23-side-nav__head {
        padding: 16px 22px;
    }

    .tech23-side-nav__list {
        padding: 0 20px 4px;
    }

    .tech23-side-nav__item {
        min-height: 72px;
        padding-right: 28px;
        font-size: 17px;
        line-height: 1.25;
    }

    .tech23-side-nav__item:nth-child(1) {
        min-height: 74px;
    }

    .tech23-side-nav__item:nth-child(3) {
        min-height: 68px;
    }

    .tech23-section__header h2 {
        font-size: 26px;
    }

    .tech23-section__header .tech23-accent {
        width: 122px;
        margin-top: 34px;
    }
}

@media (max-width: 1280px) {
    :root {
        --tech23-shell: min(100% - 56px, 1224px);
    }

    .tech23-hero__grid {
        gap: 28px;
        grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.78fr);
    }

    .tech23-viewer__stage {
        margin-top: -36px;
    }

    .tech23-viewer__slide {
        min-height: 456px;
    }

    .tech23-viewer__slide img {
        width: 106%;
        max-height: 456px;
    }

    .tech23-hero__copy {
        padding-top: 92px;
    }

    .tech23-cases {
        margin-top: 88px;
        padding-bottom: 24px;
        background: var(--tech23-red);
    }

    .tech23-cases__intro {
/*         padding: 24px 36px 28px; */
		min-height: 260px;
    }

    .tech23-cases__grid {
        gap: 24px;
    }

    .tech23-cases__label {
        margin-bottom: 20px;
        font-size: 18px;
    }

    .tech23-cases__intro h2 {
        margin-top: 0;
        font-size: 26px;
    }

    .tech23-cases__intro p:last-child {
        margin-top: 8px;
        font-size: 18px;
    }

    .tech23-cases__cards {
        /* margin: 0 36px;
        gap: 16px; */
    }

    .tech23-case-card__media {
        height: 252px;
    }

    .tech23-detail {
        margin-top: 32px;
        gap: 32px;
        grid-template-columns: 1fr;
        padding: 48px 0 92px;
    }

    .tech23-detail::before {
        display: none;
    }

    .tech23-side-nav {
        position: static;
        top: auto;
        width: 100%;
        max-width: none;
        margin-top: 0;
    }

    .tech23-detail__main {
        width: 100%;
    }

    #description,
    #params,
    #photos,
    #video {
        padding-top: 0;
    }

    #description {
        margin-top: 0;
    }

    #params,
    #photos,
    #video {
        margin-top: 72px;
    }

    .tech23-section+.tech23-section {
        margin-top: 72px;
    }

    .tech23-section__header {
        margin-bottom: 38px;
    }

    .tech23-section__header h2 {
        font-size: 26px;
    }

    .tech23-section__header .tech23-accent {
        width: 122px;
        margin-top: 30px;
    }

    #description .tech23-section__header,
    #params .tech23-section__header,
    #photos .tech23-section__header,
    #video .tech23-section__header {
        margin-bottom: 38px;
    }

    #description .tech23-section__header .tech23-accent,
    #params .tech23-section__header .tech23-accent,
    #photos .tech23-section__header .tech23-accent,
    #video .tech23-section__header .tech23-accent {
        margin-top: 26px;
    }

    .tech23-description article+article {
        /* margin-top: 44px; */
    }

    .tech23-related {
        height: auto;
        margin-top: 32px;
        padding: 74px 0 88px;
    }

     .tech23-motion .tech23-related__header {
        margin-bottom: 34px;
		transform: none;
    }

    .tech23-related__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }

    .tech23-related-card__media {
        height: 208px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .tech23-related-card__media img {
        width: auto;
        max-width: 100%;
        max-height: 100%;
        height: auto;
    }
}

@media (max-width: 1120px) {
    .tech23-related__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tech23-related-card__media {
        height: 232px;
    }
}

@media (max-width: 1180px) {
    .tech23-hero {
        padding-bottom: 36px;
    }

    .tech23-hero__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .tech23-viewer,
    .tech23-hero__copy {
        max-width: 860px;
        margin: 0 auto;
    }

    .tech23-viewer__stage {
        margin-top: -4px;
    }

    .tech23-viewer__slide {
        min-height: 360px;
    }

    .tech23-viewer__slide img {
        max-height: 360px;
    }

    .tech23-hero__copy {
        padding-top: 0;
        padding-left: 0;
    }

    .tech23-hero__actions {
        margin-top: 40px;
    }
}

@media (max-width: 1024px) {
    :root {
        --tech23-shell: min(100% - 40px, 960px);
    }

    body {
        background: #ffffff;
    }

    .tech23-hero {
        padding: 30px 0 56px;
    }

    .tech23-hero__grid,
    .tech23-cases__grid,
    .tech23-detail,
    .tech23-related__grid {
        grid-template-columns: 1fr;
    }

    .tech23-viewer,
    .tech23-hero__copy {
        max-width: 760px;
        margin: 0 auto;
    }

    .tech23-brand {
        margin: 0 0 14px;
    }

    .tech23-brand img {
        width: 128px;
    }

    .tech23-viewer__stage {
        margin-top: 12px;
    }

    .tech23-viewer__slide {
        min-height: 348px;
    }

    .tech23-viewer__slide img {
        width: 100%;
        max-height: 348px;
    }

    .tech23-hero__copy {
        padding-top: 12px;
        padding-left: 0;
    }

    .tech23-hero__eyebrow {
        font-size: 30px;
    }

    .tech23-hero__title {
        margin-top: 16px;
        font-size: 19px;
    }

    .tech23-hero__copy>.tech23-accent {
        margin-top: 24px;
    }

    .tech23-hero__text {
        padding-top: 28px;
    }

    .tech23-hero__text h2 {
        margin-bottom: 14px;
        font-size: 16px;
    }

    .tech23-hero__text p {
        max-width: none;
        font-size: 15px;
        line-height: 1.72;
    }

    .tech23-hero__actions {
        gap: 14px 18px;
        margin-top: 44px;
        margin-left: 0;
    }

    .tech23-button {
        min-height: 42px;
        padding-left: 18px;
        font-size: 15px;
    }

    .tech23-button i,
    .tech23-button b {
        width: 30px;
        height: 30px;
    }

    .tech23-cases {
        margin-top: 108px;
        min-height: 0;
        background: var(--tech23-red);
    }

    .tech23-cases__grid {
        gap: 24px;
        width: auto;
        min-height: 0;
        margin: 0;
        padding: 20px 20px 0;
    }

    .tech23-cases__intro {
        /* min-height: auto; */
        margin-top: 0;
/*         display: block; */
/*         padding: 20px 12px 36px; */
        width: auto;
    }

    .tech23-cases__label {
        margin-bottom: 52px;
        font-size: 20px;
    }

    .tech23-cases__intro h2 {
        margin-top: 0;
        font-size: 24px;
    }

    .tech23-cases__intro p:last-child {
        margin-top: 12px;
        font-size: 20px;
    }

    .tech23-cases__cards {
        /* position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: auto;
        gap: 18px;
        margin: 0 12px;
        transform: none; */
    }

    .tech23-case-card {
        width: auto;
    }

    .tech23-case-card h3 {
        margin-top: 18px;
        font-size: 17px;
        line-height: 1.35;
    }

    .tech23-detail {
        margin-top: 28px;
        gap: 28px;
        padding: 56px 0 86px;
    }

    .tech23-detail::before {
        display: none;
    }

    .tech23-side-nav {
        position: static;
        width: 100%;
        max-width: none;
        margin-top: 0;
        border-radius: 20px;
    }

    .tech23-side-nav__head {
        padding: 18px 24px;
        font-size: 15px;
        line-height: 1.3;
    }

    .tech23-side-nav__list {
        padding: 4px 24px 8px;
    }

    .tech23-side-nav__item {
        min-height: 72px;
        padding-right: 34px;
        font-size: 18px;
        line-height: 1.2;
    }

    .tech23-detail__main {
        width: 100%;
    }

    #description,
    #params,
    #photos,
    #video {
        padding-top: 0;
    }

    #description {
        margin-top: 0;
    }

    #params,
    #photos,
    #video {
        margin-top: 72px;
    }

    .tech23-section+.tech23-section {
        margin-top: 72px;
    }

    .tech23-section__header {
        margin-bottom: 34px;
    }

    .tech23-section__header h2 {
        font-size: 24px;
    }

    .tech23-section__header .tech23-accent {
        width: 116px;
        margin-top: 28px;
    }

    #description .tech23-section__header,
    #params .tech23-section__header,
    #photos .tech23-section__header,
    #video .tech23-section__header {
        margin-bottom: 34px;
    }

    #description .tech23-section__header .tech23-accent,
    #params .tech23-section__header .tech23-accent,
    #photos .tech23-section__header .tech23-accent,
    #video .tech23-section__header .tech23-accent {
        margin-top: 26px;
    }

    .tech23-description h3 {
        margin-bottom: 18px;
        font-size: 17px;
    }

    .tech23-description p {
        font-size: 17px;
    }

    .tech23-params thead th {
        padding: 14px 14px;
        font-size: 17px;
    }

    .tech23-params tbody th,
    .tech23-params tbody td {
        padding: 14px 16px;
        font-size: 15px;
    }

    .tech23-params tbody th {
        font-size: 15px;
    }

    .tech23-photo-grid {
        gap: 20px;
    }

    .tech23-video-card img {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .tech23-related {
        height: auto;
        margin-top: 28px;
        padding: 68px 0 84px;
    }

    .tech23-related__header {
        margin-bottom: 32px;
    }

    .tech23-related__header h2 {
        font-size: 34px;
    }

    .tech23-related__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .tech23-related-card__media {
        height: 232px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .tech23-related-card__media img {
        width: auto;
        max-width: 100%;
        max-height: 100%;
        height: auto;
    }

    .tech23-related-card h3 {
        margin-top: 22px;
        font-size: 21px;
        line-height: 1.1;
    }

    .tech23-related-card p {
        margin-top: 10px;
        font-size: 15px;
        line-height: 1.4;
    }
}
@media (max-width: 800px) {
    .tech23-motion .tech23-viewer {
        overflow: hidden;
        transform: translateY(0);
        width: 100%;
    }
}




@media (max-width: 762px) {
    :root {
        --tech23-shell: calc(100% - 20px);
    }

    .tech23-hero {
        padding: 16px 0 20px;
    }

    .tech23-brand {
        margin-bottom: 8px;
    }

    .tech23-brand img {
        width: 96px;
    }

    .tech23-viewer__stage {
        margin-top: 10px;
    }

    .tech23-viewer__slide {
        /* min-height: 188px; */
    }

    .tech23-viewer__slide img {
        /* max-height: 188px; */
    }

    .tech23-viewer__thumbs {
        --tech23-thumbs-width: 360px;
        margin-top: 10px;
    }

    .tech23-thumb {
        /* min-height: 64px;
        padding: 8px 10px; */
    }

    .tech23-hero__copy {
        padding-top: 20px;
    }

    .tech23-hero__eyebrow {
        font-size: 24px;
    }

    .tech23-hero__title {
        margin-top: 12px;
        font-size: 16px;
    }

    .tech23-hero__copy>.tech23-accent {
        width: 30px;
        margin: 12px 0 20px;
    }

    .tech23-hero__text {
        padding-top: 20px;
    }

    .tech23-hero__text h2 {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .tech23-hero__text p {
        font-size: 14px;
        line-height: 1.6;
    }

    .tech23-button {
        width: 100%;
        justify-content: space-between;
        min-height: 42px;
        gap: 12px;
        padding-left: 14px;
        font-size: 14px;
    }

    .tech23-hero__actions {
        gap: 10px;
        margin-top: 20px;
    }

    .tech23-cases {
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--tech23-red);
    }

    .tech23-cases__grid {
        gap: 20px;
        padding: 20px 10px 0;
    }

    .tech23-cases__intro {
        padding: 0 0 20px;
    }

    .tech23-cases__label {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .tech23-cases__intro h2 {
        margin-top: 0;
        font-size: 24px;
    }

    .tech23-cases__intro p:last-child {
        margin-top: 8px;
        font-size: 16px;
        line-height: 1.35;
    }

    .tech23-cases__cards,
    .tech23-photo-grid {
        grid-template-columns: 1fr;
    }

    .tech23-cases__cards {
        position: static;
        max-width: 100%;
    }
    

    .tech23-case-card__media {
        height: 180px;
    }

    .tech23-case-card h3 {
        margin-top: 12px;
        font-size: 15px;
        line-height: 1.35;
    }

    .tech23-detail {
        margin-top: 20px;
        gap: 20px;
        padding: 20px 0;
    }

    .tech23-side-nav__head {
        padding: 12px 14px;
        font-size: 13px;
    }

    .tech23-side-nav__list {
        padding: 4px 14px 6px;
    }

    .tech23-side-nav__item {
        min-height: 60px;
        padding-right: 24px;
        font-size: 15px;
    }

    .tech23-section+.tech23-section {
        margin-top: 20px;
    }

    #description {
        margin-top: 0;
    }

    #params,
    #photos,
    #video {
        margin-top: 20px;
    }

    .tech23-section__header {
        margin-bottom: 20px;
    }

    .tech23-section__header h2 {
        font-size: 20px;
    }

    .tech23-section__header .tech23-accent {
        width: 88px;
        margin-top: 16px;
    }

    .tech23-description article+article {
        /* margin-top: 20px; */
    }

    .tech23-description h3,
    .tech23-description p {
        font-size: 15px;
    }

    .tech23-description h3 {
        margin-bottom: 12px;
    }

    .tech23-params table {
        min-width: 500px;
    }

    .tech23-params thead th {
        padding: 12px 10px;
        font-size: 15px;
    }

    .tech23-params tbody th,
    .tech23-params tbody td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .tech23-video-card img {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .tech23-video-card button {
        width: 60px;
        height: 60px;
    }

    .tech23-video-card button span {
        margin-left: 4px;
        border-top-width: 10px;
        border-bottom-width: 10px;
        border-left-width: 15px;
    }

    .tech23-related {
        height: auto;
        margin-top: 20px;
        padding: 20px 0;
    }

    .tech23-related__header {
        margin-bottom: 20px;
    }

    .tech23-related__header h2 {
        font-size: 24px;
        line-height: 1;
    }

    .tech23-related__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .tech23-related-card__media {
        height: 160px;
    }

    .tech23-related-card h3 {
        margin-top: 12px;
        font-size: 18px;
    }

    .tech23-related-card p {
        margin-top: 6px;
        font-size: 14px;
        line-height: 1.35;
    }
    .tech23-cases__grid {
        display: block;
        
    }
    .tech23-cases__intro {
        min-height: 0;
    }
    .tech23-motion .tech23-cases__intro {
        transform: translateY(0);
    }
    .tech23-related-card {
        text-align: center;
    }
    .tech23-motion .tech23-related-card,
    .tech23-motion .tech23-related__header {
        transform: translateY(0);
    }
    .tech23-related-card__media {
        height: auto;
    }
}

@media (max-width: 560px) {
    :root {
        --tech23-shell: calc(100% - 20px);
    }

    .tech23-hero {
        padding: 16px 0 20px;
    }

    .tech23-brand img {
        width: 96px;
    }

    .tech23-viewer__stage {
        margin-top: 12px;
    }

    .tech23-viewer__slide {
        /* min-height: 176px; */
    }

    .tech23-viewer__slide img {
        /* max-height: 176px; */
    }

    .tech23-viewer__thumbs {
        margin-top: 12px;
    }

    .tech23-thumb {
        /* min-height: 64px; */
        padding: 8px 10px;
    }

    .tech23-hero__copy {
        padding-top: 20px;
    }

    .tech23-hero__eyebrow {
        font-size: 24px;
    }

    .tech23-hero__title {
        margin-top: 12px;
        font-size: 16px;
    }

    .tech23-hero__copy>.tech23-accent {
        width: 30px;
        margin: 12px 0 20px;
    }

    .tech23-hero__text {
        padding-top: 20px;
    }

    .tech23-hero__text h2 {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .tech23-hero__text p {
        font-size: 14px;
        line-height: 1.64;
    }

    .tech23-hero__actions {
        gap: 10px;
        margin-top: 20px;
    }

    .tech23-button {
        min-height: 42px;
        gap: 12px;
        padding-left: 14px;
        font-size: 14px;
    }

    .tech23-button i,
    .tech23-button b {
        width: 28px;
        height: 28px;
    }

    .tech23-cases {
        margin-top: 20px;
        padding-bottom: 20px;
    }

    .tech23-cases__grid {
        gap: 18px;
        padding: 0 10px;
    }

    .tech23-cases__intro {
        padding: 18px 0 20px;
    }

    .tech23-cases__label {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .tech23-cases__intro h2 {
        font-size: 24px;
    }

    .tech23-cases__intro p:last-child {
        margin-top: 8px;
        font-size: 16px;
        line-height: 1.35;
    }

    .tech23-cases__cards {
        gap: 12px;
        padding: 0;
    }

    .tech23-case-card__media {
        height: 180px;
    }

    .tech23-case-card h3 {
        margin-top: 12px;
        font-size: 15px;
    }

    .tech23-detail {
        margin-top: 20px;
        gap: 20px;
        padding: 20px 0;
    }

    .tech23-side-nav {
        border-radius: 14px;
    }

    .tech23-side-nav__head {
        padding: 12px 14px;
        font-size: 13px;
    }

    .tech23-side-nav__list {
        padding: 4px 14px 6px;
    }

    .tech23-side-nav__item {
        min-height: 60px;
        padding-right: 24px;
        font-size: 15px;
    }

    .tech23-section+.tech23-section {
        margin-top: 20px;
    }

    #description {
        margin-top: 0;
    }

    #params,
    #photos,
    #video {
        margin-top: 20px;
    }

    .tech23-section__header {
        margin-bottom: 20px;
    }

    .tech23-section__header h2 {
        font-size: 20px;
    }

    .tech23-section__header .tech23-accent {
        width: 88px;
        margin-top: 16px;
    }

    .tech23-description article+article {
        /* margin-top: 20px; */
    }

    .tech23-description h3,
    .tech23-description p {
        font-size: 15px;
    }

    .tech23-description h3 {
        margin-bottom: 12px;
    }

    .tech23-params table {
        min-width: 500px;
    }

    .tech23-params tbody th,
    .tech23-params tbody td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .tech23-params thead th {
        padding: 12px 10px;
        font-size: 15px;
    }

    .tech23-related {
        margin-top: 20px;
        padding: 20px 0;
    }

    .tech23-related__header {
        margin-bottom: 18px;
    }

    .tech23-related__header h2 {
        font-size: 24px;
    }

    .tech23-related__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .tech23-related-card h3 {
        margin-top: 12px;
        font-size: 18px;
    }

    .tech23-related-card p {
        margin-top: 6px;
        font-size: 14px;
    }
}

.video-modal-open,
.video-modal-open body {
  overflow: hidden;
}

.shared-video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.shared-video-modal.is-open {
  display: flex;
}

.shared-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.shared-video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  background: #000;
}

.shared-video-modal__video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.shared-video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
}
