.section-grid > p {
    grid-column: 1/-1;
}

blockquote p {
    margin-top: 0;
}

.pricing-text {
    justify-self: left;
}

table {
    width: 100%;
    border-collapse: collapse;
    grid-column: 1/-1;
    margin-bottom: 1rem;
}

th, td {
    border: 1px solid #ddd;
    padding: 0.75rem;
    text-align: left;
}

th {
    background-color: #f4f4f4;
    font-weight: bold;
}

tr:nth-child(even) {
    background-color: #fafafa;
}

tr:hover {
    background-color: #f1f1f1;
}

th:nth-child(3), td:nth-child(3) {
    display: none;
}

@media (min-width: 400px) {
    th:nth-child(3), td:nth-child(3) {
        display: table-cell;
    }
}