.case-list {
    padding: 16px 0;
}

.case-list .container {
    display: flex;
    justify-content: space-between;
}

.case-list .title {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    padding-left: 22px;
    position: relative;
}

.case-list .title:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 14px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='16' viewBox='0 0 14 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 8.17778C7.98347 8.17778 7.05785 3.31852 7.05785 0C7.05785 6.51852 2.89256 8.17778 0 8.17778C6.5719 8.17778 7.05785 12.9185 7.05785 16C7.05785 9.45778 11.1074 8.62001 14 8.17778Z' fill='black'/%3E%3C/svg%3E%0A");
}

.case-list__items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 57%;
}

.case-list__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;

}

.case-list__item .icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.case-list__item-title {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    position: relative;
}

@media (max-width:968px) {
    .case-list {
        padding: 8px 0 40px;
    }

    .case-list .container {
        flex-direction: column;
        gap: 12px;
    }

    .case-list__items {
        width: 100%;
    }

    .case-list__item-title {
        font-size: 16px;
    }
}