/* =========================================================
   Müller Arbeitsschutz – Sortiment-Kacheln
   ========================================================= */

#top .mueller-sortiment-section {
    padding: 42px 0 38px !important;
}

#top .mueller-sortiment-section .container {
    max-width: 1400px !important;
}

#top .mueller-sortiment-head {
    margin-bottom: 18px !important;
}

#top .mueller-sortiment-kicker {
    color: #d60000 !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    letter-spacing: .06em !important;
    margin-bottom: 6px !important;
    text-transform: uppercase !important;
}

#top .mueller-sortiment-head h2 {
    margin: 0 0 22px 0 !important;
    font-size: 32px !important;
    line-height: 1.15 !important;
    font-weight: 800 !important;
    color: #111 !important;
}

#top .mueller-sortiment-grid {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 14px !important;
    width: 100% !important;
}

#top .mueller-sortiment-grid a.mueller-sortiment-card {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: 305px !important;
    min-height: 305px !important;
    overflow: hidden !important;
    border-radius: 5px !important;
    background: #111 !important;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 10px 25px rgba(0,0,0,.18) !important;
}

#top .mueller-sortiment-grid {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
}

#top .mueller-sortiment-card {
    position: relative !important;
    display: block !important;
    height: 305px !important;
    min-height: 305px !important;
    overflow: hidden !important;
    border-radius: 5px !important;
    background: #111 !important;
    color: #fff !important;
    cursor: pointer !important;
    box-shadow: 0 10px 25px rgba(0,0,0,.18) !important;
}

#top .mueller-sortiment-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border: 0 !important;
    background: #111 !important;
    transition: transform .35s ease !important;
}

#top .mueller-sortiment-card::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.05) 0%,
        rgba(0,0,0,0.25) 45%,
        rgba(0,0,0,0.92) 100%
    ) !important;
    pointer-events: none !important;
}

#top .mueller-sortiment-content {
    position: absolute !important;
    left: 15px !important;
    right: 15px !important;
    bottom: 15px !important;
    z-index: 2 !important;
    color: #fff !important;
}

#top .mueller-sortiment-icon {
    width: 25px !important;
    height: 25px !important;
    margin-bottom: 8px !important;
    color: #fff !important;
}

#top .mueller-sortiment-icon svg {
    width: 25px !important;
    height: 25px !important;
    display: block !important;
    stroke: #fff !important;
    fill: none !important;
    stroke-width: 1.8 !important;
}

#top .mueller-sortiment-content strong {
    display: block !important;
    font-size: 16px !important;
    line-height: 1.15 !important;
    font-weight: 800 !important;
    color: #fff !important;
}

#top .mueller-sortiment-content span {
    display: block !important;
    color: #e3000b !important;
    font-size: 25px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    margin-top: 8px !important;
}

#top .mueller-sortiment-card:hover img {
    transform: scale(1.04) !important;
}

#top .mueller-sortiment-button-wrap {
    text-align: center !important;
    margin-top: 24px !important;
}

#top .mueller-sortiment-button {
    display: inline-block !important;
    background: #d60000 !important;
    color: #fff !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: .05em !important;
    padding: 15px 34px !important;
    border-radius: 4px !important;
    box-shadow: 0 8px 18px rgba(214,0,0,.22) !important;
}

#top .mueller-sortiment-button:hover {
    background: #b90000 !important;
    color: #fff !important;
}

#top .mueller-sortiment-placeholder {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(to bottom, #1b1b1b 0%, #050505 100%) !important;
    z-index: 0 !important;
}

#top .mueller-sortiment-card {
    position: relative !important;
}

#top .mueller-sortiment-content {
    position: absolute !important;
}

#top .mueller-sortiment-placeholder {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(to bottom, #1b1b1b 0%, #050505 100%) !important;
    z-index: 0 !important;
}

/* Tablet / kleinere Desktopbreite: 3 Spalten x 2 Reihen */
@media only screen and (max-width: 1100px) {
    #top .mueller-sortiment-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 14px !important;
    }

    #top .mueller-sortiment-card {
        height: 285px !important;
        min-height: 285px !important;
    }
}

/* Smartphone quer / größere Smartphones: 2 Spalten x 3 Reihen */
@media only screen and (max-width: 767px) {
    #top .mueller-sortiment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    #top .mueller-sortiment-card {
        height: 230px !important;
        min-height: 230px !important;
    }

    #top .mueller-sortiment-content {
        left: 13px !important;
        right: 13px !important;
        bottom: 13px !important;
    }

    #top .mueller-sortiment-content strong {
        font-size: 15px !important;
    }
}