.aviation_safety_banner {
    width: 100%;
    height: 373px;
    -o-object-fit: cover;
    object-fit: cover;
}

.aviation_safety_reports {
    display: -ms-grid;
    display: grid;
    grid-gap: 20px;
    margin-top: 40px;
}

.aviation_safety_head {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
}

.aviation_safety_reports_report {
    font-size: 14px;
    line-height: 22px;
    padding: 34px 36px;
    background: #ffffff;
    -webkit-box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.report_name_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 29px;
}

.report_site_link {
    color: var(--main_color);
    text-align: right;
    font-weight: 600;
}

.report_site_link:hover {
    font-weight: 600;
}

@media screen and (max-width: 420px) {
    .aviation_safety_head {
        font-size: 20px;
        line-height: 1.4;
    }
    .aviation_safety_reports_report {
        padding: 20px;
        gap: 10px;
    }
    .aviation_safety_reports_report p {
        font-size: 12px;
        line-height: 1.2;
    }
    .aviation_safety_reports_report img {
        max-width: 30px !important;
    }
    .report_name_wrapper {
        gap: 10px;
    }
    .report_site_link {
        font-size: 12px;
        line-height: 1.2;
    }
    .report_name_wrapper {
        font-size: 12px;
        line-height: 1.2;
    }
}