.warehouse_card_container {
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.warehouse_card_container>div:first-child {
    order: 2;
}

.warehouse_card_container>div:nth-child(2) {
    order: 1;
}

.warehouse_card_section {
    height: 100%;
    width: 100%;
}

.warehouse_details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    height: fit-content;
    gap: 10px;

    background-color: rgba(0, 0, 0, 0.8);
    color: white;
}

@media (min-width: 576px) {
    .warehouse_card_section {
        width: 50%;
    }

    .warehouse_card_container {
        height: 300px;
        flex-direction: row;
    }

    .warehouse_card_container>div:first-child {
        order: 1;
    }

    .warehouse_card_container>div:nth-child(2) {
        order: 2;
    }
}

@media (min-width: 992px) {}