/* Keep the action beside the label, with the destination underneath. */
@media (min-width: 769px) {
    .delivery-control {
        display: grid;
        /* Keep long destinations from stretching the label-to-button gap. */
        grid-template-columns: max-content max-content minmax(max-content, 1fr);
        align-items: center;
        column-gap: .25rem;
        row-gap: .2rem;
    }

    .delivery-control > i {
        grid-column: 1;
        grid-row: 1 / 3;
        margin-right: .3rem;
    }

    .delivery-control .delivery-copy { display: contents; }

    .delivery-control .delivery-label {
        grid-column: 2;
        grid-row: 1;
    }

    .delivery-control .delivery-change-btn {
        grid-column: 3;
        grid-row: 1;
        justify-self: start;
        min-height: 0;
        margin: 0;
        padding: .2rem .55rem;
        font-size: .75rem;
    }

    .delivery-control #deliveryLocationText {
        grid-column: 2 / 4;
        grid-row: 2;
        min-width: 0;
    }
}
