/* VISION 2026 視覺形象圖區塊樣式 */
.mentor-image-container {
    text-align: center;
    margin: 20px auto;
    max-width: 800px;
    background: #ffffff; /* 增加白底提升高級感 */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* 精緻陰影 */
}

.mentor-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.mentor-image:hover {
    transform: scale(1.03); /* 懸浮時輕微放大 */
}