/* =========================
   Weapons List Page
   ========================= */

.weapons-list-page .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: stretch;
}

/* =========================
   Card
   ========================= */

.weapons-list-page .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* =========================
   Image
   ========================= */

.weapons-list-page .weapon-image-link {
    display: block;
    text-decoration: none;
}

.weapons-list-page .weapon-card-image-wrap {
    width: 100%;
    height: 105px;
    overflow: hidden;
    border-radius: 12px;
    margin: 12px 0;

    /* 🔥 neuer Hintergrund */
    background: radial-gradient(
    circle at center,
    rgba(94,162,255,0.18) 0%,   /* leicht blauer Glow */
    rgba(255,255,255,0.10) 25%,
    rgba(255,255,255,0.04) 50%,
    rgba(0,0,0,0.35) 100%
);

    border: 1px solid rgba(255,255,255,0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 6px 10px;
    box-sizing: border-box;

    flex-shrink: 0;
}

.weapons-list-page .weapon-card-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.25s ease;
}

.weapons-list-page .weapon-image-link:hover .weapon-card-image {
    transform: scale(1.03);
}

.weapons-list-page .weapon-card-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;

    /* 🔥 Glow */
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.6));

    transition: transform 0.25s ease;
}

.weapons-list-page .weapon-image-link:hover .weapon-card-image-wrap {
    background: radial-gradient(
        circle at center,
        rgba(94,162,255,0.12) 0%,
        rgba(255,255,255,0.05) 40%,
        rgba(0,0,0,0.5) 100%
    );
}

/* =========================
   Title Fix (gleichmäßige Höhe)
   ========================= */

.weapons-list-page .card h2 {
    min-height: 48px;
}

/* =========================
   Mobile
   ========================= */

@media (max-width: 768px) {

    .weapons-list-page .grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .weapons-list-page .weapon-card-image-wrap {
        height: 95px;
        padding: 6px 8px;
    }

    .weapons-list-page .card h2 {
        min-height: auto;
    }
}