/* ============================================================
   Recommendation Banner 推荐横幅 —— 与 resources.html 源码样式一致
   ============================================================ */

.qing-rec-banner {
    --blue: #1b3df5;
    --blue-dark: #1430c4;
    --navy: #0b1a3a;
    --radius: 12px;
    font-family: "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

.qing-rec-banner *,
.qing-rec-banner *::before,
.qing-rec-banner *::after { box-sizing: border-box; }

.qing-rec-banner .container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px;
}

.qing-rec-banner .rec-banner {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(90deg, var(--navy) 0%, rgba(11, 26, 58, .85) 40%, rgba(11, 26, 58, .35) 100%), url('../../img/07_showroom_interior_scene.webp') center/cover no-repeat;
    padding: 36px 44px;
}
.qing-rec-banner .rec-banner h3,
.qing-rec-banner .rec-banner h2,
.qing-rec-banner .rec-banner h4 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #fff;
}
.qing-rec-banner .rec-banner p {
    color: #b9c6e2;
    font-size: 14px;
    margin: 0 0 22px;
    max-width: 380px;
}

.qing-rec-banner .rec-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ---------- 按钮 ---------- */
.qing-rec-banner .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all .2s ease;
    text-decoration: none;
}
.qing-rec-banner .btn svg { width: 16px; height: 16px; }
.qing-rec-banner .btn i { font-size: 14px; }
.qing-rec-banner .btn-primary { background: var(--blue); color: #fff; }
.qing-rec-banner .btn-primary:hover { background: var(--blue-dark); }
.qing-rec-banner .btn-light { background: #fff; color: var(--navy); }
.qing-rec-banner .btn-ghost-light { background: transparent; border-color: rgba(255, 255, 255, .4); color: #fff; }
.qing-rec-banner .btn-ghost-light:hover { background: rgba(255, 255, 255, .1); }

/* ---------- 响应式 ---------- */
@media (max-width: 560px) {
    .qing-rec-banner .container { padding: 0 15px; }
    .qing-rec-banner .rec-banner { padding: 28px 24px; }
}
