:root, body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

* {
    box-sizing: inherit;
    
}

.engin-cases-section-index {
    background: #efe8e9;
    padding: 4rem 0 1.5rem;
}

.engin-cases-inner {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
    max-width: 100%;
    padding: 0;
}

.engin-cases-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    padding-left: 12vw;
}

.engin-cases-heading {
    display: flex;
    flex-direction: column;
    gap: 1.55rem;
}


.engin-cases-eyebrow {
    text-transform: uppercase;
    font-size: 14.4px;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.engin-cases-title {
    color: #995964;
    margin: 0;
    font-size: 36px;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.engin-cases-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding-right: 12vw;
}

.engin-cases-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(31, 51, 88, 0.2);
    background:rgb(239 232 233);
    color: #4b4b4b;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.engin-cases-nav-btn i {
    position: relative;
    z-index: 2;
    display: inline-block;
    transform: scaleY(0.7);
}

/* 背景色滑动效果 - 从左滑到右 */
.engin-cases-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #e58393;
    transition: left 0.3s ease;
    z-index: 0;
}

/* 透明白色遮罩滑动效果 */
.engin-cases-nav-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: 1;
}

.engin-cases-nav-btn:hover {
    color: #ffffff;
    text-decoration: none;
}

.engin-cases-nav-btn:hover i {
    color: #ffffff;
}

.engin-cases-nav-btn:active i {
    color: #fff;
}

/* 悬停时：背景色从左滑到右 */
.engin-cases-nav-btn:hover::before {
    left: 0;
}

/* 悬停时：透明白色遮罩从左滑到右 */
.engin-cases-nav-btn:hover::after {
    left: 0;
}

/* 移开时：背景色从右向左滑出（回到左侧） */
.engin-cases-nav-btn:not(:hover)::before {
    left: -100%;
    transition: left 0.1s ease;
}

/* 移开时：透明白色遮罩从右向左滑出（回到左侧） */
.engin-cases-nav-btn:not(:hover)::after {
    left: -100%;
    transition: left 0.1s ease;
}

.engin-cases-slider {
    position: relative;
    overflow: hidden;
    padding-left: 12vw;
}

.engin-cases-track {
    display: flex;
    gap: 2.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    scroll-behavior: smooth;
}
.index-about{
    background: #efe8e9 !important;
}

.engin-cases-track.is-dragging {
    cursor: grabbing;
}

.engin-cases-track::-webkit-scrollbar {
    height: 0;
}

.engin-cases-track::-webkit-scrollbar-thumb {
    background: rgba(43, 62, 104, 0.35);
    border-radius: 999px;
}

.engin-case-card {
    position: relative;
    min-width: clamp(384px, 57.6vw, 750px);
    aspect-ratio: 16 / 9;
    border-radius: 0;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    user-select: none;
    background: #000;
}

.engin-case-media {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    cursor: pointer;
}

.engin-case-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center;
    transform: scale(1);
    animation: enginCaseIntroZoom 1s ease;
    transition: transform 0.55s ease;
    -webkit-user-drag: none;
    user-drag: none;
}

.engin-case-media:hover .engin-case-card img,
.engin-case-media:focus-within .engin-case-card img {
    transform: scale(1.08);
}

.engin-case-card--clone {
    /* 允许克隆卡片点击，用于无限循环效果 */
}

/* Cases dots (mobile only; hidden on desktop) */
.engin-cases-dots {
    display: none;
}

@keyframes enginCaseIntroZoom {
    0% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.engin-case-overlay {
    position: absolute;
    inset: 0;
     background: linear-gradient(180deg, rgba(40, 101, 214, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%); 
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem 2rem;
    color: #ffffff;
    gap: 0.45rem;
    pointer-events: none;
    z-index: 2;
}

.engin-case-meta {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.82;
}

.engin-case-title {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.engin-case-controls {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: 0.6rem;
    pointer-events: auto;
}

.engin-case-control-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(20, 30, 55, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.engin-case-control-btn:hover,
.engin-case-control-btn:focus {
    background: rgba(255, 255, 255, 0.95);
    color: #1f2f5a;
    border-color: transparent;
}

.service-index-section {
    background: #fff;
    padding: clamp(4rem, 8vw, 5.5rem) 0;
    position: relative;
    overflow: hidden;
}

.service-index-inner {
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 6vw, 3.5rem);
}

.service-index-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.55rem;
    opacity: 0;
    transform: translateY(60px);
    animation: serviceIndexSlide 0.85s ease-out forwards;
}

.service-index-eyebrow {
    text-transform: uppercase;
    font-size: 14.4px;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.service-index-title {
    color: #995964;
    margin: 0;
    position: relative;
    font-size: 36px;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.service-index-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(2.5rem, 6vw, 3.75rem);
}

.service-index-card {
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    transform: translateY(30px);
    animation: serviceIndexSlide 0.85s ease-out forwards;
}



.service-index-icon {
    width: 142px;
    height: 142px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.service-index-card-title {
    margin: 0;
    color: #995964;
    font-size: 24.2px;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.service-index-card-copy {
    margin: 0;
    line-height: 1.85;
    color: #393939;
    max-width: 360px;

    font-size: 16px;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.service-index-section::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: calc(100% - 6rem);
    max-width: 1400px;
    height: 1px;
    background: rgba(32, 45, 68, 0.18);
}



@keyframes serviceIndexSlide {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes serviceIndexCardSlide {
    from {
        opacity: 0;
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.index-share {
    padding: 6rem 0;
    background: #fff;
    overflow: hidden;
}

.index-share-inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1600px;
}

.index-share-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.55rem;
}

.index-share-eyebrow {
    text-transform: uppercase;
    font-size: 14.4px;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.index-share-title {
    color: #995964;
    margin: 0;
    font-size: 36px;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.index-share-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
}

.index-share-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-width: 680px;
}

.index-share-card-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    
}

.index-share-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
   
    object-fit: cover;
        display: block;
        transition: transform 0.6s ease;/*鼠标悬停的时间*/
        transform: scale(1);
        animation: pageLoadZoomIndex 2s ease;/*页面加载的放大效果*/
}

@keyframes pageLoadZoomIndex {
    0% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.index-share-card-image:hover img {
    transform: scale(1.08) ;
}

.index-share-card-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #393939;
    margin-top: 20px;
}

.index-share-card-content time {
    font-size: 0.9rem;
    color: #393939;
}

.index-share-card-title {
    font-size: 1.35rem;
    font-weight: 500;
    margin: 0;
}

.index-share-card-title a {
    color: #995964;
    text-decoration: none;
    position: relative;
    padding-bottom: 0.2rem;
    transition: color 0.3s ease;
    font-size: 24.2px;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.index-share-card-title a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.index-share-card-title a:hover::after,
.index-share-card-title a:focus-visible::after {
    transform: scaleX(1);
}

.index-share-card-title a:hover,
.index-share-card-title a:focus-visible {
    color: #995964;
}

.index-share-card-content p {
    margin: 0;
    line-height: 1.75;
    font-size: 1.02rem;
}


@keyframes indexSharePullBack {
    0% {
        transform: scale(1.16);
    }

    100% {
        transform: scale(1.08);
    }
}

@keyframes enginCaseIntro {
    0% {
        transform: scale(1.38); /* 增加初始放大比例 */
        opacity: 0.7;
    }

    100% {
        transform: scale(1.22); /* 结束状态与正常显示状态匹配 */
        opacity: 1;
    }
}

.index-about {
    background: #e5edf8;
    padding: 8rem 0 5rem 0;
    overflow: hidden;
}

.index-about-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(2rem, 4vw, 3.5rem);
    max-width: 1410px;
}

.index-about-content {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    max-width: 667px;
    flex: 1 1 52%;
    opacity: 0;
    transform: translateY(30px);
    animation: textSlideUp 1.2s ease-out forwards;
}

@keyframes textSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.index-about-eyebrow {
    text-transform: uppercase;
    font-size: 14.4px;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.index-about-title {
    margin: 0;
    color: #995964;
    font-size: 36px;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    letter-spacing: 2px;
    font-style: normal;
}

.index-about-subtitle {
    margin: 0;
    font-size: 1.05rem;
    color: rgba(36, 64, 106, 0.72);
    letter-spacing: 0.08em;
}

.index-about-content p {
    margin: 0;
    color: #393939;
    line-height: 1.85;
}

.index-about-btn {
    align-self: flex-start;
    padding: 0.75rem 2.35rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.05em;
    overflow: hidden; /* 隐藏超出按钮的伪元素 */
  z-index: 1;
}

.index-about-media {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    flex: 0 1 44%;
    align-items: center;
    overflow: hidden;
    margin-top: -3rem;
}

.index-about-image {
    margin: 0;
    width: clamp(240px, 28vw, 360px);
    aspect-ratio: 5 / 4;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 24px 38px rgba(26, 41, 71, 0.18);
}

.index-about-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center;
    animation: aboutImageZoomOut 1.5s ease-out forwards;
}

@keyframes aboutImageZoomOut {
    0% {
        transform: scale(1.25); /* 开始时放大 */
    }
    100% {
        transform: scale(1); /* 结束时恢复正常大小 */
    }
}

.bg-blue {
    background-color: #E58393 !important;
    color: white !important;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
}

.bg-blue:hover,
.bg-blue:focus {
    background-color: #E58393 !important;
    color: white !important;
}

/* 鼠标悬停时的浅色遮罩滑动效果 */
.bg-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
     transform: translateX(-100%); /* 初始位置：从左侧完全隐藏 */
    background-color: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
     z-index: -1;
}

.bg-blue:hover::before {
    left: 100%;
    transform: translateX(0);
}

/* 轮播图样式 */
.index-banner-header {
    position: relative;
    overflow: hidden;
}

.banner-carousel {
    position: relative;
    height: 80vh;
    min-height: 600px;
    width: 100%;
    background-color: #f0f0f0; /* 灰色背景 */
    overflow: hidden !important; /* 确保溢出控制优先生效 */
    contain: layout; /* 优化渲染性能 */
    touch-action: none; /* 完全由 JavaScript 控制触摸行为 */
    -webkit-overflow-scrolling: touch; /* iOS 平滑滚动 */
}

.banner-carousel.is-dragging {
    user-select: none; /* 拖拽时禁止选择文本 */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: grabbing;
}

.banner-carousel.is-dragging * {
    pointer-events: none; /* 拖拽时禁用所有子元素的指针事件 */
}

.banner-slides {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.8s ease-in-out, visibility 1.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    z-index: 1; /* 非活动幻灯片在底层 */
    pointer-events: none; /* 防止非活动幻灯片接收鼠标事件 */
    overflow: hidden;
}

.banner-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 3; /* 确保活动幻灯片在顶层显示 */
    pointer-events: auto; /* 允许活动幻灯片接收鼠标事件 */
}

/* 背景图片铺满 */
.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.banner-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.5s ease;
    transform: scale(1); /* 初始设为正常大小，避免加载时溢出 */
    display: block;
    max-width: 100%;
    max-height: 100%;
    transform-origin: center;
    will-change: transform;
    animation: initialZoomOut 1s ease;/*页面加载的放大效果*/
}

.banner-slide.active .banner-background img {
    animation: zoomOutAnimation 1.3s ease forwards;
}

/* 页面加载时的初始动画，仅作用于第一张激活幻灯片 */
.banner-slide:first-child.active .banner-background img {
    animation: initialZoomOut 1.1s ease forwards;
}

@keyframes initialZoomOut {
    0% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1); /* 结束时恢复正常 */
    }
}

@keyframes zoomOutAnimation {
    0% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1); /* 结束时恢复正常 */
    }
}

/* 确保非活动幻灯片完全在底层，避免显示干扰 */
.banner-slide:not(.active) {
    z-index: 1 !important;
}

/* 居中显示的文字内容 */
.banner-content-center {
    position: relative;
    z-index: 4; /* 确保在活动幻灯片内可见，但不会在幻灯片切换时穿透 */
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 1.2s ease-in-out 0.4s;
}

.banner-slide.active .banner-content-center {
    transform: translateY(0);
    opacity: 1;
}

.banner-content-center h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-content-center p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.banner-content-center .btn {
    font-size: 16px;
    padding: 0.875rem 2.5rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.index-slider-item {
    width: 162px;
    height: 72px;
    flex: 0 0 162px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.index-slider-item img {
    width: 162px;
    height: 72px;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

.banner-content-center .btn:hover {
    transform: translateY(0px);
}

/* 切换按钮/指示器样式 */
.banner-dots {
    position: absolute;
    bottom: 4.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.banner-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: inherit;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.banner-dot:hover,
.banner-dot:focus-visible {
    transform: scale(1.25);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 6px 18px rgba(9, 17, 35, 0.25);
}

.banner-dot.active {
    width: 52px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 14px 26px rgba(9, 17, 35, 0.32);
    transform: none;
}

.banner-dot.active::after {
    transform: scaleX(1);
    transition: transform var(--banner-interval, 7000ms) linear;
}

.banner-dot:is(:not(.active))::after {
    transform: scaleX(0);
    transition: transform 0.15s ease;
}



/* 响应式设计 */
@media (max-width: 991.98px) {
    .banner-carousel {
        height: 70vh;
        min-height: 500px;
    }
    
    .banner-content-center h1 {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .banner-autoplay-indicator {
        padding: 0.625rem 1.25rem;
    }
    
    .banner-autoplay-indicator i {
        font-size: 1.125rem;
    }
    
    .banner-autoplay-indicator .autoplay-text {
        font-size: 0.8125rem;
    }

    .service-index-section {
        padding: clamp(3.5rem, 8vw, 4.5rem) 0;
    }

    .service-index-grid {
        gap: 2.5rem;
    }

    .service-index-icon {
        width: 120px;
        height: 120px;
    }

    .service-index-card-copy {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .index-banner-header {
        /* Ensure banner is not covered by the fixed navbar on mobile */
        margin-top: 66px;
    }

    .banner-carousel {
        height: 60vh;
        min-height: 400px;
    }
    
    .banner-content-center {
        padding: 1rem;
    }
    
    .banner-content-center h1 {
        font-size: clamp(1.75rem, 3vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .banner-content-center p {
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        margin-bottom: 1.5rem;
    }
    
    .banner-content-center .btn {
        padding: 0.75rem 2rem;
        font-size: 0.875rem;
    }
    
    .banner-autoplay-indicator {
        bottom: 1.5rem;
        padding: 0.5rem 1rem;
    }

    /* Mobile layout: image on top, content below, but keep PC-like switching + animations */
    .banner-carousel {
        height: 547px; /* 312 (image) + 235 (content) */
        min-height: 547px;
    }

    .banner-slide {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }

    .banner-background {
        position: relative; /* no longer full-cover background */
        height: 312px;
        width: 100%;
    }

    .banner-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        /* keep animation/transition from desktop for autoplay consistency */
    }

    .banner-content-center {
        max-width: none;
        width: 100%;
        flex: 0 0 235px;
        height: 235px;
        box-sizing: border-box;
        padding: 1.25rem 1.25rem 1.25rem;
        background: #fff;
        text-align: center;
    }

    .banner-content-center h1 {
        color: #333;
        text-shadow: none;
    }

    .banner-content-center p {
        color: #666;
        text-shadow: none;
    }

    .banner-dots {
        bottom: 1rem; /* keep inside carousel like PC, but lower */
        left: 50%;
        transform: translateX(-50%);
        padding: 0;
        background: transparent;
    }

    .banner-dot{
        background-color: #d0d0d0;
    }

    .service-index-inner {
        gap: 2.5rem;
    }

    .service-index-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-index-card {
        max-width: 420px;
        margin: 0 auto;
        gap:1rem;
    }

    .service-index-icon {
        width: 110px;
        height: 110px;
    }

    /* Engin cases (mobile): center content and hide switcher */
    .engin-cases-header {
        padding-left: 0;
        padding-right: 0;
        justify-content: center;
        text-align: center;
    }

    .engin-cases-heading {
        align-items: center;
        text-align: center;
    }

    .engin-cases-nav {
        display: none !important;
    }

    .engin-cases-slider {
        padding-left: 0;
        padding-right: 0;
    }

    .engin-cases-track {
        justify-content: flex-start;
        padding: 0;
        gap: 0;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 0;
        scroll-behavior: smooth;
    }

    .engin-case-media {
        flex: 0 0 100%;
        min-width: 100%;
        width: 100%;
        max-width: none;
        margin: 0;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
    
    .engin-case-card {
        width: 100%;
        height: 100%;
    }

    .engin-cases-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 0;
        padding: 0;
        position: absolute;
        left: 50%;
        bottom: 14px;
        transform: translateX(-50%);
        z-index: 5;
        pointer-events: none;
        width: 100%;
    }

    .engin-cases-dot {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        border: 0;
        background: rgba(57, 57, 57, 0.28);
        padding: 0;
        cursor: pointer;
        pointer-events: auto;
        transition: width 0.25s ease, background 0.25s ease;
    }

    .engin-cases-dot.active {
        width: 50px;
        background: rgb(8 8 8 / 70%);
    }
}

@media (max-width: 575.98px) {
    /* Keep the same stacked layout on small phones (do not override to 50vh) */
    .index-banner-header {
        margin-top: 66px;
    }

    .banner-carousel {
        height: 547px; /* 312 (image) + 235 (content) */
        min-height: 547px;
    }

    .banner-background {
        height: 312px;
    }

    .banner-content-center {
        flex: 0 0 235px;
        height: 235px;
    }
    
    .banner-content-center h1 {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }
    
    .banner-autoplay-indicator {
        bottom: 1rem;
    }
    
    .banner-autoplay-indicator i {
        font-size: 1rem;
    }
    
    .banner-autoplay-indicator .autoplay-text {
        font-size: 0.75rem;
    }

    .service-index-section {
        padding: 3.25rem 0 0 0 ;
    }
    .index-share-header{
        gap: 1.2rem;
    }
    .index-share-inner{
        gap:2rem;
    }
    .index-share{
        padding: 3rem 0;
    }
    .service-index-icon img {
        width: 96px;
        height: 96px;
    }

    .service-index-card-title {
        font-size: 1.35rem;
        margin-top:1.2rem;
    }

    .service-index-card-copy {
        font-size: 0.96rem;
    }

    /* Engin cases (small phones): keep centered + no switcher */
    .engin-cases-nav {
        display: none !important;
    }

    .engin-cases-header {
        padding-left: 0;
        padding-right: 0;
        justify-content: center;
        text-align: center;
    }

    .engin-cases-heading {
        align-items: center;
        text-align: center;
    }

    .engin-cases-slider {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .engin-cases-track {
        justify-content: center;
        padding: 0 1rem;
    }
    .service-index-title,.index-share-title,.furniture-contact-title{
        font-size: 30.97px;
    }
}

.index-about-images-row {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    height: 100%;
}

.index-about-images-row {
    display: flex;
    gap: 1.5rem; /* 添加图片间距 */
    height: auto;
    min-height: 350px;
    align-items: flex-start; /* 顶部对齐，确保左边图片完整显示 */
}



.index-about-images-row .index-about-image {
    flex: 1;
    width: 45%; /* 调整宽度以适应间距 */
    margin: 0;
    transform: none;
    height: 100%;
    overflow: hidden;
    padding: 0;
}

.index-about-images-row .index-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 991.98px) {
    .engin-cases-track {
        gap: 1.5rem;
    }

    .engin-case-card {
        min-width: clamp(312px, 66vw, 432px);
    }

    .index-share-track {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 0;
        overflow: visible;
        cursor: default;
    }

    .index-share-track .index-share-card {
        flex: 1 1 auto;
        max-width: 100%;
        scroll-snap-align: unset;
        cursor: default;
    }

    .index-about-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
    }

    .index-about-content {
        padding-bottom: 1rem;
    }

    .index-about-media {
        gap: 0;
        justify-content: center;
    }

    .index-about-images-row {
        flex-direction: column;
        gap: 1rem;
        height: auto;
        align-items: center;
    }

    .index-about-images-row .index-about-image:first-child {
        margin-bottom: 0; /* 移动设备上不需要高度差 */
    }

    .index-about-images-row .index-about-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        height: 250px; /* 移动设备上的固定高度 */
    }
    .service-index-header{
        gap: 1.2rem;
    }
}

@media (max-width: 575.98px) {
    .engin-cases-section-index {
        padding: 2.7rem 0 2rem;
    }
    .engin-cases-inner{
        gap: 1.7rem;
    }
    .engin-case-media {
        min-width: 100vw;
        width: 100vw;
    }
    
    .engin-case-card {
        width: 100%;
        height: 100%;
    }

    .index-share-track {
        padding: 0 6vw;
        justify-content: flex-start;
        flex-direction: column;
        align-items: stretch;
        overflow-x: visible;
        cursor: default;
    }

    .index-share-card {
        flex: 1 1 auto;
        width: 100%;
    }

    .index-share-card-image {
        aspect-ratio: 3 / 5;
    }

    .index-about {
        padding: 3rem 0;
    }

    .index-about-content {
        gap: 1rem;
    }

    .index-about-media {
        flex-direction: column;
        align-items: center;
    }

    .index-about-images-row {
        flex-direction: column;
        align-items: center;
        height: auto;
    }
    
    .index-about-images-row .index-about-image:last-child {
        margin-top: 1.5rem; /* 移动设备上调整间距 */
    }
    
    .index-about-image {
        width: min(100%, 360px);
        aspect-ratio: 4 / 3;
        transform: none;
    }
}

.index-share-track {
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 clamp(1rem, 3vw, 3vw);
    -webkit-overflow-scrolling: touch;
    justify-content: center;
    scrollbar-width: none;
}

.index-share-track::-webkit-scrollbar {
    height: 0;
}

.index-share-track::-webkit-scrollbar-thumb {
    background: transparent;
}

.index-share-track {
    --mobile-direction: row;
}

@media (max-width: 991.98px) {
    .index-share-track {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0;
        overflow: visible;
        scroll-snap-type: none;
        cursor: default;
    }

    .index-share-track .index-share-card {
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%;
        scroll-snap-align: unset;
        cursor: default;
    }

    .index-share-card-image {
        aspect-ratio: 16 / 9;
    }
}
.index-share-track.is-dragging {
    cursor: grabbing;
}

.index-share-grid {
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
}

.index-share-grid::-webkit-scrollbar {
    height: 0;
}

.index-share-grid.is-dragging {
    cursor: grabbing;
}

.index-share-grid.is-dragging .index-share-card {
    cursor: grabbing;
}

.index-share-track .index-share-card {
    /*flex: 0 0 clamp(336px, 48vw, 680px);*/
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 0;
}


.index-share-track .index-share-card.is-dragging,
.index-share-track .index-share-card:active {
    cursor: grabbing;
}
.text-truncate-two-lines{
    /* 多行截断核心属性 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 限制显示2行 */
    overflow: hidden; /* 隐藏超出部分 */
    text-overflow: ellipsis; /* 超出部分显示省略号 */

    /* 清除编辑器格式 */
    white-space: normal; /* 取消强制不换行 */
    margin: 0; /* 清除默认边距 */
    padding: 0; /* 清除默认内边距 */
    font: inherit; /* 继承父元素字体样式 */
}
.footer_a{
    color:#fff;
}

/* Service Section Styles */
.index-service {
    background: #fff;
    padding: clamp(4rem, 8vw, 6rem) 0;
    overflow: hidden;
}

.index-service-inner {
    max-width: 1430px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 6vw, 4rem);
}

.index-service-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.55rem;
}

.index-service-eyebrow {
    text-transform: uppercase;
    font-size: 14.4px;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 0.1em;
}

.index-service-title {
    color: #995964;
    margin: 0;
    font-size: 36px;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.index-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.2rem, 3vw, 0.6rem);
    width: 100%;
}

.index-service-card {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 0;
    background: #f5f5f5;
}

.index-service-card-link {
    position: absolute;
    inset: 0;
    display: block;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
}

.index-service-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.index-service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform-origin: center;
    transform: scale(1.15);
    animation: serviceImageZoomOut 1.5s ease ;
    transition: transform 0.6s ease;
    will-change: transform;
}

.index-service-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes serviceImageZoomOut {
    0% {
        transform: scale(1.25);
    }
    100% {
        transform: scale(1.15);
    }
}

.index-service-card:hover .index-service-card-image img,
.index-service-card:focus-within .index-service-card-image img,
.index-service-card-link:hover .index-service-card-image img,
.index-service-card-link:focus .index-service-card-image img {
    transform: scale(1.25);
}

.index-service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 25, 48, 0.6) 0%, rgba(13, 25, 48, 0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: clamp(1.25rem, 2.5vw, 2rem);
    color: #ffffff;
    gap: 0.5rem;
    z-index: 2;
    transition: background 0.3s ease;
}

.index-service-card:hover .index-service-card-overlay,
.index-service-card:focus-within .index-service-card-overlay,
.index-service-card-link:hover .index-service-card-overlay,
.index-service-card-link:focus .index-service-card-overlay {
    background: linear-gradient(135deg, rgba(13, 25, 48, 0.75) 0%, rgba(13, 25, 48, 0) 60%);
}

.index-service-card-title-en {
    font-size: 14.4px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.4;
}

.index-service-card-title-zh {
    margin: 0;
    font-size: 30.8px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.3;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .index-service {
        padding: clamp(3rem, 6vw, 4.5rem) 0;
    }

    .index-service-inner {
        gap: clamp(2rem, 5vw, 3rem);
    }

    .index-service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(1.25rem, 2.5vw, 1.75rem);
    }

    .index-service-title {
        font-size: clamp(28px, 4vw, 32px);
    }
}

@media (max-width: 767.98px) {
    .index-service {
        padding: clamp(2.5rem, 5vw, 3.5rem) 0;
    }

    .index-service-inner {
        padding: 0 clamp(1rem, 4vw, 1.5rem);
        gap: 2rem;
    }

    .index-service-header {
        gap: 0.5rem;
    }

    .index-service-eyebrow {
        font-size: 14.4px;
        color: #393939;
    }

    .index-service-title {
        font-size: 28px;
    }

    .index-service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .index-service-card {
        aspect-ratio: 16 / 9;
        height: 288px;
        max-width: 384px;
        width: 100%;
    }

    .index-service-card-overlay {
        padding: 1.5rem;
    }

    /* Index Share (mobile): 2 cards per row, horizontal swipe */
    .index-share-track {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 12px !important;
        /* First card fully visible; show a bit of next card as hint */
        padding: 0 0rem 0 0rem !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        /* Use proximity to avoid snapping back when user releases mid-swipe */
        scroll-snap-type: x proximity;
        scroll-padding-left: 1rem;
        justify-content: flex-start !important;
        scrollbar-width: none; /* Firefox */
    }

    .index-share-track::-webkit-scrollbar {
        height: 0;
    }

    .index-share-track .index-share-card {
        flex: 0 0 265px !important;
        max-width: 265px !important;
        scroll-snap-align: none;
    }

    /* Snap by PAIRS (each swipe advances 2 cards) */
    .index-share-track .index-share-card:nth-child(2n + 1) {
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
}
.index-faq-mini{
    font-size: 16px;
    color: #393939;
}
@media (max-width: 375.98px) {
    .index-service-card{
        max-width: 343px;
    }
}
@media (max-width: 575.98px) {
    .index-service {
        padding: 3rem 0;
    }

    .index-service-inner {
        padding: 0 1rem;
        gap: 2.7rem;
    }

    .index-service-title {
        font-size: 30.97px;
    }

    .index-service-grid {
        gap: 0.6rem;
    }

    .index-service-card-overlay {
        padding: 1.25rem;
        gap: 0.4rem;
    }
    

    .index-service-card-title-zh {
        font-size: 27px;
    }
    .engin-cases-title{
        font-size: 30.97px;
    }

    /* Index Share (small phones): keep 2-per-row swipe layout */
    .index-share-track {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 12px !important;
        /* First card fully visible; show a bit of next card as hint */
        padding: 0 0rem 0 0rem !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        /* Use proximity to avoid snapping back when user releases mid-swipe */
        scroll-snap-type: x proximity;
        scroll-padding-left: 1rem;
        justify-content: flex-start !important;
        scrollbar-width: none; /* Firefox */
    }

    .index-share-track::-webkit-scrollbar {
        height: 0;
    }

    .index-share-track .index-share-card {
        flex: 0 0 265px !important;
        max-width: 265px !important;
        scroll-snap-align: none;
    }

    /* Snap by PAIRS (each swipe advances 2 cards) */
    .index-share-track .index-share-card:nth-child(2n + 1) {
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
}

/* FAQ Section Styles */
.index-faq {
    background: #efe8e9;
    padding: clamp(4rem, 8vw, 4rem) 0;
    overflow: hidden;
}

.index-faq-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 6vw, 4rem);
}

.index-faq-header {
    text-align: center;
}

.index-faq-title {
    color: #995964;
    margin: 0;
    font-size: 36px;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.index-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 auto;
    width: 100%;
}

.index-faq-item {
   
    overflow: hidden;
}



.index-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: clamp(1.25rem, 2.5vw, 0.75rem) 0;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    border-bottom: 1px solid rgb(201 201 201);
}

.index-faq-item.active .index-faq-question {
    border-bottom: 1px solid rgb(57 57 57);
}


.index-faq-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #995964;
}

.index-faq-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    color: #995964;
}

.index-faq-question-text {
    flex: 1;
    font-size: 24.2px;
    font-weight: 500;
    color: inherit;
    transition: color 0.3s ease;
}

.index-faq-toggle {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #995964;
    font-size: 1.2rem;
}

.index-faq-icon-minus,
.index-faq-icon-plus {
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.index-faq-item.active .index-faq-icon-minus {
    opacity: 1;
    transform: rotate(0deg);
}

.index-faq-item.active .index-faq-icon-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.index-faq-item:not(.active) .index-faq-icon-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.index-faq-item:not(.active) .index-faq-icon-plus {
    opacity: 1;
    transform: rotate(0deg);
}

.index-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease, padding 0.2s ease;
    padding: 0;
}

.index-faq-answer.collapsed {
    max-height: 0 !important;
    padding: 0 !important;
}

.index-faq-item.active .index-faq-answer:not(.collapsed) {
    max-height: 2000px;
}

.index-faq-answer-content {
    color: rgba(0, 0, 0, 0.7);
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    line-height: 3.8;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.index-faq-answer-content p {
    margin: 0 0 1rem 0;
}

.index-faq-answer-content p:last-child {
    margin-bottom: 0;
}

/* Responsive Design for FAQ */
@media (max-width: 991.98px) {
    .index-faq {
        padding: clamp(3rem, 6vw, 4.5rem) 0;
    }

    .index-faq-inner {
        gap: clamp(2rem, 5vw, 3rem);
    }

    .index-faq-title {
        font-size: clamp(28px, 4vw, 32px);
    }

    .index-faq-list {
        max-width: 100%;
        color: #393939;
    }
    .index-faq-question-text{
        color: #393939;
    }
}

@media (max-width: 767.98px) {
    .index-faq {
        padding: clamp(2.5rem, 5vw, 3.5rem) 0;
    }

    .index-faq-inner {
        padding: 0 clamp(1rem, 4vw, 1.5rem);
        gap: 2rem;
    }

    .index-faq-title {
        font-size: 28px;
    }

    .index-faq-question {
        padding: 1.25rem 0;
        gap: 0.75rem;
    }
    .index-about-content p{
        line-height: 1.7;
    }

    /* .index-faq-icon {
        width: 20px;
        height: 20px;
        font-size: 1rem;
    } */

    .index-faq-toggle {
        width: 20px;
        height: 20px;
    }

    .index-faq-answer-content {
        padding-left: calc(20px + 0.75rem);
    }
}

@media (max-width: 575.98px) {
    .index-faq {
        padding: 2.5rem 0;
    }

    .index-faq-inner {
        padding: 0 1rem;
        gap: 1.75rem;
    }

    .index-faq-title {
        font-size: 38.7px;
    }

    .index-faq-question {
        padding: 1.5rem 0;
        gap: 0.625rem;
    }

    .index-faq-question-text {
        font-size: 21.2px;
    }

    .index-faq-answer-content {
        font-size: 16px;
        padding-left: calc(20px + 0.625rem);
    }
}


.index-share-link {
    color: #5b5c5e;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    align-self: flex-start;
    padding-bottom: 2px;
    letter-spacing: 0.2rem;
}

.index-share-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background-color: #5b5c5e;
    transform: scaleX(1);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.index-share-link:hover {
    opacity: 0.9;
}

.index-share-link:hover::after {
    animation: underlineHideShow 0.5s ease-in-out;
}

/* --- Engin cases: final mobile overrides (ensure full-width 1 card & allow scrolling past 3rd) --- */
@media (max-width: 767.98px) {
    /* .engin-cases-slider {
        padding-left: 0 !important;
        padding-right: 0 !important;
    } */

    .engin-cases-track {
        justify-content: flex-start !important;
        /* Center 360px card in viewport */
        padding-left: max(0px, calc((100vw - 360px) / 2)) !important;
        padding-right: max(0px, calc((100vw - 360px) / 2)) !important;
        /* gap: 0 !important;
        scroll-padding-left: 0 !important; */
    }

    .engin-case-media {
        flex: 0 0 360px !important;
        width: 360px !important;
        max-width: 360px !important;
        margin: 0 !important;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }
    
    .engin-cases-track {
        scroll-snap-type: x mandatory !important;
    }
    
    .engin-case-card {
        width: 100%;
        height: 100%;
    }

    /* Center text overlay on mobile cases */
    .engin-case-overlay {
        justify-content: center;
        align-items: center;
        text-align: center;
        /* move text slightly up while keeping it centered */
        /* transform: translateY(-12px); */
        background: linear-gradient(1deg, rgba(13, 25, 48, 0.05) 0%, rgb(93 97 105 / 70%) 100%);
    }

    

    .engin-case-meta,
    .engin-case-title {
        text-align: center;
    }
}

