/* VISION 2026 按鈕組件樣式 - 臺灣引路人計畫 */
.mentor-link-container {
    text-align: center;
    margin: 20px 0;
}

.mentor-link {
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff !important; /* 強制白色，避免被全站樣式覆蓋 */
    background: linear-gradient(to right, #004d99, #0073e6);
    padding: 12px 24px;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mentor-link:hover {
    background: linear-gradient(to right, #003366, #005bb5);
    transform: scale(1.05);
    color: #ffffff !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none; /* 移除底線 */
}