.elementor-34572 .elementor-element.elementor-element-0e841a2{--display:flex;--margin-top:60px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-34572 .elementor-element.elementor-element-c9f1a5d{text-align:center;}/* Start custom CSS for html, class: .elementor-element-caf4453 *//* --- 1. 容器與全域設定 (Scope) --- */
/* 加上 ursa-custom 前綴，避免污染全域樣式 */
.ursa-custom-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333333;
    line-height: 1.6;
}

/* --- 2. 限制標題與文字樣式 (只影響容器內的標題) --- */
.ursa-custom-container h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 50px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    border: none; /* 清除可能的主題預設邊框 */
}

/* 標題下方的裝飾線 */
.ursa-custom-container h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #00695f; /* 品牌色 */
    margin: 10px auto 0;
    border-radius: 2px;
}

.ursa-custom-container h3 {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
    border: none;
}

.ursa-custom-container p {
    font-size: 15px;
    color: #555;
    margin-bottom: 0;
}

.ursa-custom-container ul {
    padding-left: 20px;
    color: #555;
    margin-bottom: 0;
}

.ursa-custom-container li {
    margin-bottom: 5px;
}

/* --- 3. RWD 網格系統 --- */
.ursa-custom-grid {
    display: grid;
    /* 自動填滿，最小寬度 280px，不夠寬時自動換行 */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

/* --- 4. 卡片組件 --- */
.ursa-custom-card {
    background-color: #ffffff;
    border: 1px solid #e1e4e8;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* 等高 */
}

.ursa-custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #00695f;
}

/* --- 5. 標籤組件 (Badge) --- */
.ursa-custom-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    align-self: flex-start;
}

/* 綠色標籤 (頻率/預設) */
.ursa-custom-badge.badge-green {
    background-color: #e0f2f1;
    color: #00695f;
}

/* 藍色標籤 (步驟) */
.ursa-custom-badge.badge-blue {
    background-color: #e3f2fd;
    color: #1565c0;
}

/* 紅色標籤 (其他用途) */
.ursa-custom-badge.badge-red {
    background-color: #fce4ec;
    color: #c2185b;
}

/* --- 6. 警告與提示框 --- */
.ursa-custom-warning {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: #d32f2f;
    font-weight: 500;
    background: #ffebee;
    padding: 8px 12px;
    border-radius: 6px;
}

.ursa-custom-alert {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 15px;
}

/* --- 7. Q&A 區塊 --- */
.ursa-custom-qa {
    background-color: #f8f9fa;
    border-left: 4px solid #2c3e50;
    padding: 20px 24px;
    margin-bottom: 16px;
    border-radius: 0 8px 8px 0;
}

.ursa-custom-qa-title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

/* --- 8. 總結區塊 (深色背景) --- */
.ursa-custom-summary {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: #ffffff;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.15);
}

.ursa-custom-summary h3 {
    color: #ffffff !important; /* 強制覆蓋上面的 h3 設定 */
    margin-top: 0;
    font-size: 24px;
    margin-bottom: 25px;
}

.ursa-custom-summary-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.ursa-custom-summary-item {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.ursa-custom-footer-note {
    text-align: center;
    font-size: 13px;
    color: #999;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* --- 9. 手機版微調 --- */
@media (max-width: 768px) {
    .ursa-custom-container {
        padding: 30px 16px;
    }

    .ursa-custom-container h2 {
        font-size: 24px;
        margin-top: 30px;
    }

    .ursa-custom-grid {
        grid-template-columns: 1fr; /* 強制單欄 */
        gap: 16px;
    }

    .ursa-custom-summary {
        padding: 25px;
    }
    
    .ursa-custom-summary-item {
        width: 100%;
    }
}/* End custom CSS */