/* ========== 通用工具类 ========== */
.text-shadow {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}


.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #C9A227;
    margin: 16px auto 0;
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(15, 52, 96, 0.15);
}

/* ========== 平滑滚动 ========== */
html {
    scroll-behavior: smooth;
}

/* ========== 细节优化 ========== */
summary {
    list-style: none;
}
summary::-webkit-details-marker {
    display: none;
}