/* Language switching transition effect */
[data-translate] {
    transition: opacity 0.5s ease;
}

/* Fade in and out when switching */
.translating [data-translate] {
    opacity: 0.65;
}

/* Chinese specific style */

[data-lang="zh"] .hero-2__introduction-smalltext p {
    font-weight: 500;
    font-size: 18px;
    line-height: 38px;
}
[data-lang="en"] .hero-2__introduction-smalltext p{
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
}

[data-lang="zh"] .hero-2__areas-text h4,
[data-lang="zh"] .hero-2__graphic-text h4,
[data-lang="zh"] .hero-2__animation-text h4,
[data-lang="zh"] .hero-2__introduction-text h4 {
    text-transform: uppercase;
    display: inline-block;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
}

[data-lang="zh"] .hero-2__areas-text h4::after,
[data-lang="zh"] .hero-2__graphic-text h4::after,
[data-lang="zh"] .hero-2__animation-text h4::after,
[data-lang="zh"] .hero-2__introduction-text h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 90%;
    height: 2px;
}

/* Language button hover effect */
.language a {
    cursor: pointer;
}