.comparison {
    background-color: transparent;
    max-width: 1200px;
    margin: 0 auto;
}

.cp-70 {
    padding: 70px 7px 0;
}

.minus-margin {
    margin-bottom: -50px;
}

.comparison__header {
    text-align: center;
    margin-bottom: 70px;
}

.comparison__title {
    font-size: clamp(18px, 5vw, 36px);
    font-weight: bold;
    margin-bottom: 12px;
    letter-spacing: normal;
}

.comparison__subtitle {
    font-size: clamp(16px, 3vw, 30px);
    color: #028456;
    letter-spacing: normal;
    font-weight: 600;
    margin-bottom: 16px;
}

.comparison__description-wrap {
    max-width: 700px;
    margin: 0 auto;
}

.comparison__description,
.comparison__note {
    font-size: 16px;
    margin-bottom: 16px;
}

.highlight {
    color: #028456;
    font-weight: bold;
}

.highlight-green {
    color: #028456;
}

.comparison__table-title {
    font-size: clamp(18px, 5vw, 36px);
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: normal;
    position: relative;
}

.comparison__table-title::after {
    content: "";
    width: 100px;
    height: 5px;
    background-color: #028456;
    display: block;
    margin: 8px auto 0;
    border-radius: 2px;
}

.br-900 {
    display: none;
}

.comparison__table-wrapper {
    overflow-x: auto;
}

.comparison__table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 768px;
}

.comparison__table th,
.comparison__table td {
    padding: 8px;
    border: 1px solid #707070;
    text-align: center;
}

.comparison__table thead th {
    background-color: #FFF3E7;
    font-weight: bold;
}


.section-diagram {
    background-color: #FAFAFA;
    padding: 10px 0px;
    margin-top: 70px;
}

.diagram-wrap {
    max-width: 1200px;
    padding: 0px 7px;
    display: flex;
    margin: 0 auto;
}


.comparison__risk-section {
    text-align: center;
}

.comparison__risk-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px auto;
}


.risk-card {
    display: flex;
    background-color: #fef1e8;
    border-radius: 10px;
    padding: 10px;
    width: 49%;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.risk-card__badge {
    background-color: white;
    color: #FF770C;
    font-weight: bold;
    /* padding: 10px; */
    font-size: 12px;
    line-height: normal;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    letter-spacing: 0.5px;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    align-content: center;
}

.risk-card__content {
    flex: 1;
}

.risk-card__heading {
    font-weight: bold;
    font-size: 16px;
    color: #FF770C;
    margin-bottom: 0px;
}

.risk-card__desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 0px;
}

.comparison__risk-message {
    font-size: 20px;
    font-weight: bold;
    color: #028456;
    margin-top: 40px;
    line-height: 1.6;
}




.mbSucrose {
    display: none;
}

@media (max-width: 900px) {
    .br-900 {
        display: block;

    }
}

@media (max-width: 768px) {

    .comparison__description,
    .comparison__note {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .comparison__risk-grid {
        display: flex;
        flex-direction: column;
    }

    .risk-card {
        width: 100%;
    }

    .mbSucrose {
        display: block;
        text-align: right;
        font-size: 12px;
        font-weight: bold;
    }
}


@media (max-width: 480px) {
    .diagram-wrap {
        flex-direction: column;
    }
}