.th36-product-availability {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 1.5rem 0;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.22);
    border-radius: 2px;
}

.th36-product-availability__heading {
    grid-column: 1 / -1;
    margin: 0 0 0.85rem;
    font-size: 1.1em;
}

.th36-product-availability__row {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
    padding: 0.2rem 1rem;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.th36-product-availability__row:first-of-type {
    padding-left: 0;
}

.th36-product-availability__row:last-child {
    padding-right: 0;
    border-right: 0;
}

.th36-product-availability__label {
    font-size: 0.82em;
    font-weight: 600;
    line-height: 1.35;
}

.th36-product-availability__value {
    font-size: 1em;
    font-weight: 500;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

@media (max-width: 780px) {
    .th36-product-availability {
        grid-template-columns: 1fr;
    }

    .th36-product-availability__row,
    .th36-product-availability__row:first-of-type,
    .th36-product-availability__row:last-child {
        padding: 0.65rem 0;
        border-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    }

    .th36-product-availability__row:last-child {
        border-bottom: 0;
    }
}
