/* Show pallet-rack identification guides directly on the overview without
   turning this secondary buying-guide area into another large product grid. */
.product-journey .pj-pallet-type-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.product-journey .pj-pallet-type-links a {
    min-height: 64px;
    padding: 9px 11px;
    background: #fff;
}

.product-journey .pj-pallet-type-links a img {
    width: 48px;
    height: 44px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .product-journey .pj-pallet-type-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
