/*Animation */

section[data-cattype="415"] {
  width: 100%;
  font-family: Helvetica, Arial, sans-serif;
  color: #000000;
}

section[data-cattype="415"] .hino-row {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  aspect-ratio: 2 / 1; /* 50% + 50% 的正方形组合 */
  height: 850px;
}
#TransportDetails {
  padding-top: 0;
	padding-bottom: 1px;
}
@keyframes customFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
section[data-cattype="415"] .content-inner > * {
  opacity: 0;
  transform: translateY(30px);
}
section[data-cattype="415"] .hino-image {
  position: relative;
  overflow: hidden; /* ✅ 防止图片超出去 */
  width: 100%;
  height: 100%;
}

/* 图片内部 scale，但不影响容器 */
section[data-cattype="415"] .hino-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  transition: transform 0.8s ease;
  display: block;
}

/* 加入 .scaled 时视觉上放大 */
section[data-cattype="415"] .hino-image.scaled img {
  transform: scale(1.3);
}
.fadeInUp {
    animation: customFadeInUp 1.3s ease forwards;
}
section[data-cattype="415"] .content-inner > *:not(.fadeInUp) {
  transition: opacity 0.3s ease;
}
section[data-cattype="415"] .hino-content,
section[data-cattype="415"] .hino-image {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  box-sizing: border-box;
}

/* 左边文字内容 */
section[data-cattype="415"] .hino-content {
  background-color: #ffffff;
  width: 50%;
  display: flex;
  justify-content: flex-end; /* 整体向右 */
  align-items: center;
  padding: 40px 60px;
  box-sizing: border-box;
  text-align: left;
  
}
section[data-cattype="415"] .hino-mobile-image {
  display: none;
}
section[data-cattype="415"] .hino-content .content-inner {
  max-width: 700px;
  width: 100%;
  text-align: left;
}

/* 右边背景图 */
section[data-cattype="415"] .hino-image {
  background-size: cover;
  background-position: center;
}

/* 标题 */
section[data-cattype="415"] .hino-content h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* 段落 */
section[data-cattype="415"] .hino-content p {
  font-size: 16px;
  margin-bottom: 35px;
  color: #000;
}


section[data-cattype="415"] .content-inner .btn-primary {
  margin-top: 16px;
}
section[data-cattype="415"] .hino-content .btn-primary:hover {
  background-color: #000000;
}
@media screen and (max-width: 1450px){
  section[data-cattype="415"] .hino-content .content-inner{
    margin:0;
  }
  section[data-cattype="415"] .hino-row{
    height: 550px;
  }
}
/* Responsive (mobile first 显示图片在上，内容在下) */
@media screen and (max-width: 768px) {
  section[data-cattype="415"] .hino-row {
    flex-direction: column;
    aspect-ratio: unset;
  }
  section[data-cattype="415"] .hino-row{
    height: auto;
  }
  section[data-cattype="415"] .hino-item {
    width: 100%;
  }

  /* ✅ 隐藏 desktop 版本的背景图 */
  section[data-cattype="415"] .hino-image {
    display: none;
  }

  /* ✅ 显示 mobile 专用图像 */
  section[data-cattype="415"] .hino-mobile-image {
    display: block;
    width: 100%;
    height: 45vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  section[data-cattype="415"] .hino-content {
    padding: 30px 20px;
    padding-bottom: 50px;
	padding-top: 15px;
  }

  section[data-cattype="415"] .content-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 2%;
  }

  section[data-cattype="415"] .hino-content h2 {
    font-size: 28px;
  }

  section[data-cattype="415"] .hino-content p {
    font-size: 15px;
  }

  section[data-cattype="415"] .read-more {
    font-size: 15px;
    padding: 10px 20px;
  }
  section[data-cattype="415"] h2{
    margin-top: 0;
  }
}
