/* ============================================
   HEC SYMPTOMS TABLE
   ============================================ */

.hec-symptoms-table-widget {
    --hec-symptoms-bg: transparent;
    --hec-symptoms-padding-top: 0px;
    --hec-symptoms-padding-right: 0px;
    --hec-symptoms-padding-bottom: 0px;
    --hec-symptoms-padding-left: 0px;
    --hec-symptoms-title-mb: 28px;
    --hec-symptoms-column-left: 50%;
    --hec-symptoms-column-gap: 12px;
    --hec-symptoms-row-padding-top: 12px;
    --hec-symptoms-row-padding-right: 0px;
    --hec-symptoms-row-padding-bottom: 12px;
    --hec-symptoms-row-padding-left: 0px;
    --hec-symptoms-border-width: 1px;
    --hec-symptoms-border-color: rgba(33, 33, 33, 0.10);
    --hec-symptoms-text-color: #212121;
    --hec-symptoms-header-color: #212121;

    width: 100%;
    padding: var(--hec-symptoms-padding-top) var(--hec-symptoms-padding-right) var(--hec-symptoms-padding-bottom) var(--hec-symptoms-padding-left);
    background: var(--hec-symptoms-bg);
    box-sizing: border-box;
}

.hec-symptoms-table-widget,
.hec-symptoms-table-widget * {
    box-sizing: border-box;
}

.hec-symptoms-table__title {
    margin: 0 0 var(--hec-symptoms-title-mb);
    color: var(--hec-symptoms-text-color);
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.16;
    letter-spacing: -0.02em;
}

.hec-symptoms-table {
    width: 100%;
    color: var(--hec-symptoms-text-color);
    font-family: var(--font-primary);
}

.hec-symptoms-table__row {
    display: grid;
    grid-template-columns: var(--hec-symptoms-column-left) minmax(0, 1fr);
    gap: var(--hec-symptoms-column-gap);
    align-items: center;
    width: 100%;
    padding: var(--hec-symptoms-row-padding-top) var(--hec-symptoms-row-padding-right) var(--hec-symptoms-row-padding-bottom) var(--hec-symptoms-row-padding-left);
    border-bottom: var(--hec-symptoms-border-width) solid var(--hec-symptoms-border-color);
}

.hec-symptoms-table__row--head {
    align-items: center;
}

.hec-symptoms-table__cell {
    min-width: 0;
    color: var(--hec-symptoms-text-color);
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.52;
    letter-spacing: 0;
}

.hec-symptoms-table__cell--head {
    color: var(--hec-symptoms-header-color);
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.52;
    letter-spacing: 0;
}

@media (max-width: 767px) {
    .hec-symptoms-table-widget {
        --hec-symptoms-title-mb: 20px;
    }

    .hec-symptoms-table__title {
        font-size: 32px;
    }

    .hec-symptoms-table__row {
        grid-template-columns: 1fr;
        gap: 6px;
        align-items: start;
    }

    .hec-symptoms-table__row--head {
        display: none;
    }

    .hec-symptoms-table__cell {
        font-size: 16px;
    }

    .hec-symptoms-table__cell--body-right {
        color: rgba(33, 33, 33, 0.72);
    }
}

.hec-symptoms-table-widget--hide-last-border .hec-symptoms-table__row:last-child {
    border-bottom: 0;
}
