.content-item > h3 {
    display: flex;
    align-items: center;
    gap: .5rem;
}

table {
    width: 100%;
    border-collapse: collapse;
}
table td:first-child{
    background-color: var(--yellow300);
    color: var(--white, #FFF);
    font-size: var(--static---sub6);
    font-weight: 700;
    line-height: 130%;
    letter-spacing: -0.025rem;
    padding-left: 3.9125rem;
    padding-right: 3.9125rem;
}
table td {
    padding: 2.25rem;
    color: var(--gray400, #3A3A3A);
    font-size: var(--static---body5);
    font-weight: 400;
    line-height: 155.556%;
    letter-spacing: -0.0225rem;
}
table td:last-child {
    border-top: 1px solid var(--gray100);
    min-width: 70rem;
}

@media (max-width: 768px) {
    table td:first-child{
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        font-size: var(--static---body5);
    }
    table td {
        padding: 1.5rem;
        font-size: var(--static---body6);
    }
    table td:last-child {
        min-width: auto;
    }
}