.list_box {
    display: flex;
    gap: 50px;
    justify-content: center;
    margin: 10px auto;
    max-width: 1100px;
    width: 100%;
}
.list_content {
    flex: 3;
    margin: 0 20px;
}

.list_side_munu {
    flex: 1;
}

.list_content_list {
    max-width: 1200px;
    margin: 0 auto;
}

.list_content_item {
    display: flex;
    gap: 20px;
    padding: 24px 0 12px 0;
    text-decoration: none;
    color: #000;
    width: 100%;
}

.list_border_box {
    border-bottom: 1px solid #cfcfcf;
}

.list_content_image {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    width: 255px;
}

.list_content_image:not(.single_list_image) {
    border: 1px solid #bfbfbf;
}

.list_content_image img {
    max-width: 100%;
    height: auto;
    width: auto;
    max-height: 100%;
}


.single_list_image {
    width: 500px;
    height: 250px;
    overflow: hidden;
}
 .single_list_image img {
    width: 500px;
    height: 250px;
    object-fit: cover;
}

.list_content_content {
    flex: 1;
}

.list_content_meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
}

.list_content_date {
    color: #000;
}

.list_content_category::before {
    content: "| ";
}

.list_content_badge {
    background: #ff3050;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 8px;
    line-height: 1.4;
}

.list_content_title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
}

.list_content_item:hover .list_content_title {
    text-decoration: underline;
}

.single_list_title {
    font-size: 24px;
}

@media (max-width: 1023.9px) {
    .list_box {
        flex-direction: column;
        padding: 10px 20px;
        box-sizing: border-box;
    }

    .list_content_item {
        flex-direction: column;
    }

    .list_content_center {
        justify-content: center;
        align-items: center;
    }

    .list_content_image {
        max-width: 630px;
        width: 100%;
        margin: 0 auto;
        gap: 10px;
        aspect-ratio: 2 / 1;
    }

    .single_list {
        max-width: 630px;
        width: 100%;
        margin: 0 auto;
        gap: 10px;
        padding-bottom: 10px;
    }

    .single_list_image img {
        max-width: 100% !important;
        width: 100%;
        height: auto;
    }


    .single_list_image {
        width: 100%;
        height: auto;
    }

    .list_content_image {
        width: 100%;
        height: auto;
    }

    .list_content_title {
        font-size: 18px;
    }
}


