.text-rows {
    text-align: center;
    padding-inline: 3rem;
}

.text-rows__rows {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.text-rows__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    padding: 2rem 0;
    border-bottom: 1px solid #b7b9b9;
}
@media screen and (min-width: 768px) {
    .text-rows__row {
        grid-template-columns: 5rem 1fr;
        column-gap: 2.5rem;
        padding: 2rem 2.5rem;
    }

}
.text-rows__row:first-child {
    border-top: 1px solid #b7b9b9;
}

.text-rows__imgbox {
    height: 5rem;
    width: 5rem;
    align-self: center;
    display: none;
}
.text-rows__img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
@media screen and (min-width: 768px) {
    .text-rows__imgbox {
        display: block;
    }
}

.text-rows__title {
    color: #494949;
    font-size: 1.5rem;
    overflow-wrap: break-word;
    text-wrap: balance;
    hyphens: auto;
}

.text-rows__text {
    font-size: 1.25rem;
}