.content-table {
    font-size: 18px;
    border-collapse: collapse;
    width: 100%;
    margin: 2rem 0;
}
.content-table th,
.content-table td {
    padding: 15px 20px;
    text-align: left;
    vertical-align: top;
}
.content-table--with-borders tr {
    border-bottom: 1px solid rgb(160 160 160);
}
.content-table--with-borders tbody > tr:last-of-type {
    border-bottom: none;
}
.content-table--even-gray tbody > tr:nth-of-type(even) {
    background-color: rgb(237 238 242);
}
.content-table--heading-mw-200 th,
.content-table--heading-mw-200 td {
    min-width: 200px;
}

.content-table th {
    background-color: rgb(247 247 247);
    font-weight: 600;
    color: #333;
}
.content-table tbody th[scope="row"] {
    background-color: rgb(247 247 247);
    font-weight: 600;
    color: #333;
}

/* MEDIA */
@media screen and (max-width: 992px) {
    .content-table {
        display: block;
        border: none;
        background: none;
        margin: 1rem 0;
    }
    .content-table thead {
        display: none;
    }
    .content-table tbody,
    .content-table tr,
    .content-table td,
    .content-table th[scope="row"] {
        display: block;
        border: none;
        padding: 0;
        background: none;
        min-width: auto !important;
    }
    /* Hide the first column header cells in rows */
    .content-table tbody tr th[scope="row"] {
        display: none;
    }
    /* Create columns container */
    .mobile-columns {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    /* Individual column styling */
    .mobile-column {
        background: white;
        border: 1px solid rgb(160 160 160);
        border-radius: 4px;
        padding: 1.5rem;
        font-size: 16px;
    }
    /* Column header - matches original table header style */
    .mobile-column-header {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        /*margin-bottom: 1.25rem;*/
        /*padding-bottom: 0.75rem;*/
        border-bottom: 1px solid rgb(160 160 160);
        text-align: center;
        background-color: rgb(247 247 247);
        margin: -1.5rem -1.5rem 1.25rem -1.5rem;
        padding: 15px 20px;
    }
    /* Each item in column */
    .mobile-item {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgb(237 238 242);
        line-height: 1.4;
    }
    .mobile-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }
    /* Alternating row colors to match .content-table--even-gray
    .mobile-column .mobile-item:nth-child(even) {
        background-color: rgb(237 238 242);
        margin: 0 -1.5rem;
        padding: 10px 20px;
    } */
    /* Item content styling */
    .mobile-item-header {
        font-weight: 600;
        color: #333;
        margin-right: 0.5rem;
        display: inline;
    }
    .mobile-item-content {
        color: #333;
        display: inline;
    }
    .mobile-item-content::after {
        /*content: ".";*/
    }
    .mobile-item-content:has(img)::after {
        content: "";
    }
    /* Remove original table borders and backgrounds */
    .content-table--with-borders tr,
    .content-table--even-gray tbody > tr:nth-of-type(even),
    .content-table tbody th[scope="row"] {
        background-color: transparent !important;
        border: none !important;
    }
    .content-table img {
        max-width: 100%;
        height: auto;
    }
}
/* Small mobile devices */
@media screen and (max-width: 576px) {
    .mobile-columns {
        gap: 1rem;
    }
    .mobile-column {
        padding: 1rem;
    }
    .mobile-column-header {
        font-size: 17px;
        margin: -1rem -1rem 1rem -1rem;
        padding: 12px 16px;
    }
    .mobile-item {
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
        font-size: 15px;
    }
    .mobile-column .mobile-item:nth-child(even) {
        /*margin: 0 -1rem;*/
        margin-left: -1rem;
        padding: 8px 16px;
    }
}
/* Desktop-only */
.desktop-only {
    display: table;
}
@media screen and (max-width: 992px) {
    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: block;
    }
}
.mobile-only {
    display: none;
}