/* 首页快捷入口卡片 — 与 AgentDNA 主题一致 */
.banner-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 28px;
    background: linear-gradient(165deg, rgba(15, 15, 15, 0.92), rgba(10, 10, 10, 0.88)) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    cursor: pointer;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
    position: relative;
    overflow: hidden;
    min-height: 120px;
}

.banner-item:hover {
    background: linear-gradient(165deg, rgba(15, 15, 15, 0.96), rgba(10, 10, 10, 0.92)) !important;
    border-color: rgba(74, 222, 128, 0.35) !important;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45) !important;
    transform: translateY(-3px);
}

.banner-item .banner-icon,
.banner-icon {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(74, 222, 128, 0.1) !important;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(74, 222, 128, 0.25) !important;
}

.banner-icon i {
    font-size: 24px;
    color: #4ade80 !important;
}

.banner-item .banner-text {
    min-width: 0;
    width: 100%;
    padding-right: 72px;
    box-sizing: border-box;
}

.banner-title {
    font-size: 18px;
    font-weight: 600;
    color: #ededed !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.banner-desc {
    font-size: 13px;
    color: #a1a1aa !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    line-height: 1.4;
}
