.custom-table td {
    padding: 0 !important;
    font-size: 16px;
    width: 33.33%;
    vertical-align: top;
    border: 1px solid var(--border-gray) !important;
}

.custom-table td p {
    padding: 10px 20px !important;
}

.custom-table td strong {
    padding: 10px !important;
    color: #fff !important;
    background-color: var(--navy);
    width: 100%;
    display: inline-block;
    font-weight: normal;
    text-align: center;
}

.custom-table td strong.sky-cell {
    background-color: var(--sky);
}

.custom-table td strong.navy-cell {
    background-color: var(--deep-navy);
}

@media (max-width: 767px) {
    .custom-table tr {
        display: grid;
        grid-template-columns: 1fr;
    }

    .custom-table td {
        width: 100%;
    }
}