/* ============================================================
   精選案例專屬樣式
   ============================================================ */

.case-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: scale-down;
    background: #eef3fc;
    display: block;
}
.case-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(145deg,#e8edf6,#d5dce8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #5a7a9a;
    overflow: hidden;
}

.glass {
    background: rgba(255, 255, 255, 0.55);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    transition: all 0.2s;
}
.glass:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(43, 122, 255, 0.15);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.badge-tag {
    background: rgba(43, 122, 255, 0.06);
    border: 1px solid rgba(43, 122, 255, 0.04);
}

.tech-pill {
    background: rgba(43, 122, 255, 0.04);
    padding: 2px 10px;
    border-radius: 40px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #2a4a6a;
}

