.report_list {
    display: flex;
    align-items: center;
    gap: 43px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 28px;
}
.report_list:first-child {
    margin-top: 0;
}
.report_image {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}
.report_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.report_title {
    font-size: 30px;
    font-weight: 500;
}
.report_sub {
    font-size: 16px;
    font-weight: 400;
    margin-top: 6px;
}
.report_date {
    font-size: 16px;
    color: #838383;
    margin-top: 15px;
    font-weight: 300;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 46px;
    gap: 5px;
}

.pagination a {
    display: inline-block;
    padding: 8px 16px;
    text-decoration: none;
    color: #555;
    background-color: #f2f2f2;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.pagination a:hover:not(.active) {
    background-color: #ddd;
}

.pagination .prev,
.pagination .next {
    margin: 0 10px;
}

.pagination .active {
    background-color: #f02958;
    color: white;
}
.re_view {
    display: flex;
    align-items: center;
    padding-bottom: 21px;
    border-bottom: 1px solid #000000;
}
.ml-auto {
    margin-left: auto;
    margin-top: 0;
}
.re_text {
    font-size: 16px;
    margin-top: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.re_img_area {
    width: 100%;
    height: 400px;
    margin-top: 21px;
}
.re_img_area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page_area {
    display: flex;
    align-items: center;
    margin-top: 25px;
}
.page_area a {
    width: 466px;
}
.page_area a:first-child {
    border-left: 8px solid rgba(0, 0, 0, 1);
    padding-left: 27px;
}
.page_area a:last-child {
    border-right: 8px solid rgba(0, 0, 0, 1);
    padding-right: 27px;
    margin-left: auto;
}
.page_link01 {
    font-size: 14px;
}
.page_link02 {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.1;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
@media screen and (max-width: 1200px) {
    .report_list {
        gap: 20px;
    }
    .report_title {
        font-size: 20px;
    }
    .report_sub {
        font-size: 14px;
    }
    .report_date {
        font-size: 12px;
    }
    .report_list {
        flex-direction: column;
    }
    .report_image {
        width: 100%;
        height: 180px;
    }
    .re_img_area{
        height:200px;
    }
    .re_view {
        flex-direction: column;
        align-items: flex-start;
    }
    .re_view .report_date {
        margin-left: 0;
    }
    .re_text{
        font-size:14px;
    }
    .page_link02 {
        font-size: 16px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .page_area a:first-child {
        border-left: 4px solid rgba(0, 0, 0, 1);
        padding-left: 8px;
    }
    .page_area a:last-child {
        border-right: 4px solid rgba(0, 0, 0, 1);
        padding-right: 8px;
        margin-left: auto;
    }
    .page_area a {
        width: 150px;
    }
}
