/* Kunden Grid Styles - 1:1 von der Startseite übernommen */
.ns2025-kunden-small {
    width: 60%;
    margin: 0 auto;
    padding: 4rem 0;
}

.ns2025-kunden-small h2,
.ns2025-kunden-large h2 {
    text-align: center;
    color: var(--wp--preset--color--primary);
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 0.5rem;
}

.ns2025-kunden-small .description,
.ns2025-kunden-large .description {
    text-align: center;
    font-size: 1rem;
    line-height: 1.5rem;
    color: rgb(63 63 70);
    margin-bottom: 2rem;
}

.ns2025-kunden-small .grid,
.ns2025-kunden-large .grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.ns2025-kunden-small .kunden-item,
.ns2025-kunden-large .kunden-item {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255 255 255);
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.ns2025-kunden-small .kunden-item img,
.ns2025-kunden-large .kunden-item img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.ns2025-kunden-small .kunden-item a,
.ns2025-kunden-large .kunden-item a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255 255 255);
    color: rgb(23 23 23);
    font-weight: 600;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    transition: background-color 0.15s ease-in-out;
    text-align: center;
    font-size: 26px;
    line-height: 1.75rem;
    place-content: center;
    text-decoration: none;
    padding: 16px;
}

.ns2025-kunden-small .kunden-item a:hover,
.ns2025-kunden-large .kunden-item a:hover {
    background-color: rgb(229 231 235);
}

.ns2025-kunden-small .kunden-item a i,
.ns2025-kunden-large .kunden-item a i {
    margin-left: 0.5rem;
}