.reports_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: -45px;
}

.report_card {
    width: 31%;
    background-color: var(--white);
    box-shadow: 0px 5px 10px #00000014;
    border-radius: 10px;
    padding: 15px;
    box-sizing: border-box;
    margin-bottom: 45px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.report_card .report_image {
    height: 250px;
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
}

.report_card .report_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 5px;
}

.report_card .report_info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 250px);
    width: 100%;
    margin-top: 20px;
}

.report_info h3 {
    margin-top: -5px;
    margin-bottom: 10px;
    font-size: 24px;
    color: var(--black);
}

.report_info h4 {
    margin: 0;
    color: var(--bronze);
    font-size: 18px;
}

.report_info h4 i {
    width: 30px;
}

.report_date .fa-clock {
    margin-left: 1px;
    margin-right: -1px;
}

.report_date .fa-bookmark {
    margin-left: 3px;
    margin-right: -3px;
}

.report_info .description {
    margin-top: 5px;
}

.report_info .button {
    float: left;
}

.empty_state {
    text-align: center;
    display: none;
    margin-top: 50px;
}

.view_more_button {
    margin-top: 50px;
}

.list_dummy_card {
    height: 0px !important;
    padding-top: 0px !important;
    margin-top: 0px !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
}

/************************ Archive ***************************/
.archive_item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    background-color: var(--white);
    box-shadow: 0px 5px 10px #00000014;
    border-radius: 10px;
    margin-top: 45px;
}

.archive_item h3 {
    margin: 0;
    padding-top: 3px;
}

@media (max-width: 1400px) {
    .report_card {
        width: 48%;
    }
}

@media (max-width: 750px) {
    .report_card {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .report_card .report_info {
        height: calc(100% - 200px);
    }

    .report_info .button {
        width: 100%;
    }

    .view_more_button {
        width: 100%;
    }

    .report_card .report_image {
        height: 200px;
    }

    .report_card:last-of-type {
        margin-bottom: 0;
    }
}