.report_title{
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #004A7B;
    margin-top: 32px;
}

.report-block{
    width: 80%;
    padding-left: 4%;
}

.report_category{
    display: flex;
    justify-content: center;
    margin-top: 32px;
    align-items: start;
    gap: 16px;
}

.report_category_text{
    display: flex;
    gap: 16px;
    align-items: center;
    color: #004A7B;
    font-weight: 700;
    font-size: 20px;
}

.category_tag{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    width: 40%;
}

.tag{
    color: #43AFF8;
    border: 2px solid #43AFF8;
    padding: 8px;
    border-radius: 8px;
}

.click_tag{
    color: #ffffff;
    background-color: #43AFF8;
}

.report_item{
    margin-bottom: 72px;
}

.report_thumb{
    width: 100%;
    height: 400px;
}

.report_thumb img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.report_column_title{
    color: #004A7B;
    font-size: 26px;
    margin: 16px 0;
}

.report_column_text{
    color: #484848;
    font-size: 16px;
    margin: 16px 0;
}

.report_column_tags{
    margin: 24px 0;
}

.report_column_tag{
    color: #43AFF8;
    border: 2px solid #43AFF8;
    padding: 8px;
    border-radius: 8px;
    width: 10%;
    text-align: center;
    margin-right: 16px;
}

.report_column_line{
    width: 100%;
    height: 2px;
    background-color: #A9A9A9;
    margin: 16px 0;
}

.report_date{
    display: flex;
    color: #A9A9A9;
    justify-content: space-between;
}

.report_flex{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.report_flex img{
    width: 25px;
}

.pagination{
    display: flex;
    justify-content: center;
}

.mail_bt{
    background-color: #ffffff;
    border: 0px;
}

@media (max-width: 769px) {
    .report_title {
        font-size: 20px;
    }
    .report_category {
        font-size: 14px;
        display: flex;
        flex-direction: column;
        padding: 4%;
    }

    .category_tag {
        width: 100%;
    }

    .report-block {
        width: 100%;
        padding: 4%;
    }

    .report_thumb {
        height: 200px;
    }

    .report_column_title {
        font-size: 20px;
    }

    .report_column_text {
        font-size: 14px;
    }

    .report_column_tags{
        display: flex;
        flex-wrap: wrap;
        margin: 0;
    }

    .report_column_tag{
        width: 100px;
        font-size: 14px;
        margin-top: 8px;
        padding: 6px;
        margin-right: 12px;
    }
}