/* 移除image-card-left的悬停效果 */
.image-card-left {
    transform: none !important;
    transition: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

.image-card-left:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* 只保留图片容器的动效 */
.card-image-partial {
    overflow: hidden;
    border-radius: 12px;
}

.card-image-partial img {
    transition: transform 0.3s ease;
}

.card-image-partial:hover img {
    transform: scale(1.05);
}

/* 右侧图片覆盖层样式 */
.card-image-full {
    position: relative;
    overflow: hidden;
}

.card-image-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    z-index: 1;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    color: white;
}

.brand-logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}

.overlay-content {
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
}

.overlay-content h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.overlay-content p {
    font-size: 16px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
} 