.yichen_company_info {
    padding: var(--component-gap, 90px) 0;
    background: #F5F5F5;
}

.yichen_company_info h2 {
    color: #545353;
    text-align: center;
    font-size: var(--title-size-h2);
    font-weight: 700;
    line-height: 1;
}

.yichen_company_info .company_content_list {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.yichen_company_info .company_content_item a {
    width: 100%;
    display: flex;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.yichen_company_info .company_content_item img {
    width: 51%;
    aspect-ratio: 457/262;
    object-fit: cover;
}

.yichen_company_info .company_content_item_content {
    width: 49%;
    padding: 60px 30px 50px;
}

.yichen_company_info .company_content_item_content h3 {
    color: #595757;
    font-size: var(--title-size-h3);
    font-weight: 600;
    line-height: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.yichen_company_info .company_content_item_content .line {
    width: 18%;
    height: 1px;
    background: #595757;
    margin: 29px 0;
}

.yichen_company_info .company_content_item_content_text {
    color: #545353;
    font-size: var(--text-size);
    font-weight: 400;
    line-height: 1.25;
    height: calc(var(--text-size) * 1.25 * 4);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

@media (max-width: 992px) {
    .yichen_company_info .company_content_item_content {
        padding: 30px 15px 25px;
    }

    .yichen_company_info .company_content_list {
        gap: 20px;
        margin-top: 20px;
    }

    .yichen_company_info .company_content_item_content .line {
        margin: 19px 0;
    }
}

@media (max-width: 576px) {
    .yichen_company_info .company_content_item_content {
        padding: 20px 15px 15px;
    }

    .yichen_company_info .company_content_list {
        gap: 10px;
        margin-top: 12px;
    }

    .yichen_company_info .company_content_item_content .line {
        margin: 14px 0;
    }
}