.table {
    font-size: 1.3rem;
}
@media(min-width: 768px) {
    .table .table__row {
        display: flex;
        text-align: center;
    }
}
.table .table__desktop .table__field {
    padding: 20px 3px;
}
.table .table__row:nth-child(even) {
    background-color: #f5f5f5;
}
.table .table__field > div > div {
    margin-top: 10px;
}
@media(max-width: 768px) {
    .table .table__row {
        border-top: 1px solid black
    }
}
@media(min-width: 768px) {
    .table.table--columns-4 .table__row {
        display: grid;
        grid-template-columns: 1fr 1.2fr 1.2fr 1.4fr;
    }
}
@media(min-width: 768px) {
    .table .table__mobile {
        display: none !important;
    }
}
@media(max-width: 768px) {
    .table .table__desktop {
        display: none !important;
    }
}
.table .table__field {
    flex: 1;
    display: grid;
    gap: 30px;
    grid-template-columns: 40% auto;
    padding: 25px 5% 25px 5%;
}
@media(min-width: 768px) {
    .table .table__field {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
}
@media(min-width: 768px) {
    .table .table__row:not(:first-child) {
        border-top: 1px solid #000;
    }
}
.table > div img {
    max-height: 55px;
    max-width: 100%;
    height: auto;
    width: auto;
    vertical-align: middle;
}
.table .table__data-img img {
    max-height: 100px;
}
@media(max-width: 768px) {
    .table .table__data > div:nth-child(1) img {
        height: 120px;
    }
}
.table h1,
.table h2,
.table h3,
.table h4,
.table h5,
.table p {
    margin: 0
}
.table h3 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.05rem;
}
@media(max-width: 768px) {
    .table h3 {
        font-size: 1rem;
    } 
}


div:has(> img):not(.table__data-img) {
	display: flex;
}