.smd-ct {
    width: 100%;
    margin-top: 80px;
    margin-bottom: 80px;
    container: inline-size;
}

.smd-ct__title {
    margin-bottom: 40px;
    font-size: clamp(32px, 4cqi, 48px);
    line-height: clamp(40px, 4cqi, 56px);
    font-weight: 700;
    max-width: 400px;
}

.smd-ct__table {
    width: 100%;
}

.smd-ct__head,
.smd-ct__row {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    align-items: center;
    column-gap: 12px;
}

.smd-ct__head-cell,
.smd-ct__cell {
    padding: 18px 0;
    height: 100%;
}

.smd-ct__head-cell--brand {
    font-weight: 700;
}

.smd-ct__head-cell--brand svg {
    max-width: 100%;
}

.smd-ct__head-cell {
    display: flex;
    align-items: center;
    justify-content: center;
}
.smd-ct__head,
.smd-ct__row {
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.smd-ct__head-cell--competitors {
    font-weight: 700;
    color: #00000033;
    font-weight: 700;
    font-size: clamp(16px, 4cqi, 24px);
    line-height: 32px;

}

.smd-ct__cell--label {
    font-weight: 600;
    display: flex;
    align-items: center;
    font-size: clamp(12px, 3cqi, 16px);
    color: #0a0a0a;
}

.smd-ct__cell--value {
    display: flex;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    align-items: center;
    justify-content: center;
}

.smd-ct-badge {
    padding: 6px 12px;
    font-size: clamp(12px, 3cqi, 20px);
    color: #1E1D1B;
    border-radius: 10px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
}

.smd-ct-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.smd-ct-icon--yes {
    background: #19b56a;
    color: #fff;
}
.smd-ct-icon--yes:before {
    content: "";
    width: 10px;
    height: 18px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(45deg);
    margin-top: -2px;
}

.smd-ct-icon--no {
    background: #e45050;
    color: #fff;
}
.smd-ct-icon--no:before,
.smd-ct-icon--no:after {
    content: "";
    width: 16px;
    height: 3px;
    background: #fff;
    position: absolute;
}
.smd-ct-icon--no:before { transform: rotate(45deg); }
.smd-ct-icon--no:after  { transform: rotate(-45deg); }
