.table-section__title {
    margin-bottom: 16px;
}

.table-section__title * {
    color: #1700FF;
    font-family: "ClashDisplay-SemiBold";
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 16px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 550px) {
    .table-section__title * {
        font-size: 32px;
        line-height: 1.2;
    }
}

.table-section__table-wrapper {
    position: relative;
    overflow-x: auto;
    margin: auto;
}


.table-section__table {
    display: flex;
    overflow: hidden;
    border: 1px solid #12112724;
    border-radius: 12px;
    min-width: 930px;
    -webkit-box-shadow: 0 4px 20px rgba(23, 0, 255, 0.15);
    box-shadow: 0 4px 20px rgba(23, 0, 255, 0.15);
}

.table-section__column {
    flex: 1;
    border-right: 1px solid #12112724;
}

.table-section__column:last-of-type {
    border-right: none;
}


.table-section__column-name {
    padding: 16px;
    border-bottom: 1px solid #12112724;
    background-color: white;
    font-family: "ClashDisplay-SemiBold";
}

@media (max-width: 930px) {
    .table-section__column:not(:last-of-type) .table-section__column-name::after {
        content: "→";
        margin-left: 8px;
        color: #1700FF;
    }
}

.table-section__column-line {
    padding: 12px;
    border-bottom: 1px solid #12112724;
}

.table-section__column-line * {
    white-space: nowrap;
}

.table-section__column-line:nth-of-type(even) {
    background-color: #FBFBFE;
}

.table-section__column-line:nth-of-type(odd) {
    background-color: #F3F3FF;
}

.table-section__column-line:last-of-type {
    border-bottom: none;
}

.table-section__column-line--bold {
    font-family: "ClashDisplay-SemiBold";
}

.table-section__disclaimer {
    max-width: 1000px;
    margin: 16px auto 0 auto;
}

.table-section__small-text {
    margin-top: 16px;
}

.table-section__cta-wrapper {
    margin: 32px auto 0 auto;
    text-align: center;
    max-width: 1000px;
}