.ts-fix {
    padding: 126px 0 100px;
    background: #F8F8F8;
}
.ts-fix__container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.ts-fix__header {
    text-align: center;
    margin-bottom: 48px;
    max-width: 842px;
    margin-left: auto;
    margin-right: auto;
}
span.ts-fix__label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 6px;
    line-height: 28px;
}
.ts-fix__title {
    font-size: 38px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 6px 0;
    line-height: 54px;
}
.ts-fix__subtitle p {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.80);
    line-height: 28px;
    max-width: 755px;
    width: 100%;
    margin: 0 auto;
    font-weight: 400;
}
.ts-fix__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.ts-fix__card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: 0px 2px 4px 0px #00000024, 0px 0px 2px 0px #0000001F;
}
.ts-fix__card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.ts-fix__warn-icon {
    flex-shrink: 0;
}
.ts-fix__card-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    line-height: 27px;
    margin: 0 0;
}
.ts-fix__card-body {
    margin-bottom: 15px;
}
.ts-fix__card-body p {
    font-size: 15px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.8);
    line-height: 25px;
    margin: 0 0 10px;
}
.ts-fix__fix-box {
    border-radius: 5px;
    padding: 24px;
    margin-top: auto;
    border: 1px solid rgba(226, 232, 240, 1);
    background: rgba(13, 90, 255, 0.08);
}
.ts-fix__fix-text p {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.7);
    line-height: 23px;
    margin: 0;
}
.ts-fix__fix-text p strong {
        font-weight: 600;
    color: rgba(0, 0, 0, 1);
}

@media (max-width: 768px) {
    .ts-fix {
        padding: 52px 0 60px;
    }
    .ts-fix__container {
        padding: 0 20px;
    }
    .ts-fix__grid {
        grid-template-columns: 1fr;
    }
    .ts-fix__title {
        font-size: 30px;
    }
    .ts-fix__card {
        padding: 22px 20px;
    }
}
@media (max-width: 480px) {
    .ts-fix__title {
        font-size: 24px;
    }
    .ts-fix__card-title {
        font-size: 16px;
    }
}
