.search_block {
    width: 90%;
    margin: 100px auto 0;
    max-width: 1300px;
}

.search_block .text_search {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.search_block .text_search input {
    width: 100%;
    height: 50px;
    border-radius: 25px;
    padding: 0 25px 0 60px;
    background-color: #f1f5ff;
    border: solid 1.5px #007260;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.16);
}

.search_block .text_search input::placeholder {
    font-weight: 700;
    color: #929292;
}

.search_block .text_search button {
    width: 26px;
    height: 26px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    margin: auto;
    background-image: url(../img/btn_search2.svg);
    background-size: 100% 100%;
}

.search_block .year_check {
    display: flex;
    margin: 75px auto 0;
    justify-content: center;
    flex-wrap: wrap;
    gap: max(25px, calc(calc(100% - 1040px) / 7));
}

.search_block .year_check label {
    width: 130px;
    height: 45px;
    border-radius: 22.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #969696;
    cursor: pointer;
}

.search_block .year_check label:has(input:checked) {
    background-color: #007260;
}

.search_block .year_check label input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.search_block .year_check label p {
    font-size: 18px;
    color: white;
}

.report_list {
    max-width: 1300px;
    width: 90%;
    margin: 70px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 95px 6%;
}

.report_list .report {
    width: calc(82% / 4);
}

.report_list .report .head_text {
    width: 100%;
    padding-bottom: 10px;
    border-bottom: solid 1.5px #007260;
}

.report_list .report .head_text h2 {
    font-size: 18px;
    line-height: 1;
    color: #007260;
}

.report_list .report .rpt_img {
    width: 100%;
    aspect-ratio: 262/370;
    margin-top: 15px;
}

.report_list .report .rpt_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.report_list .report .detail_btn {
    width: 100%;
    margin-top: 25px;
    height: 60px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #009f86;
    background: linear-gradient(
        90deg,
        rgba(0, 159, 134, 1) 0%,
        rgba(0, 114, 96, 1) 50%,
        rgba(0, 159, 134, 1) 100%
    );
    background-position: left center;
    background-size: 200%;
    transition: all 0.3s;
}

.report_list .report .detail_btn:hover {
    background-position: right center;
}

.report_list .report .detail_btn p {
    font-size: 18px;
    color: white;
}

.report_list .report .detail_btn img {
    width: 7.5px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 22px;
    margin: auto;
    transition: all 0.3s;
}

.report_list .report .detail_btn:hover img {
    right: 10px;
}

@media screen and (max-width: 1000px) {
    .report_list {
        gap: 70px 6%;
    }

    .report_list .report {
        width: calc(88% / 3);
    }
}

@media screen and (max-width: 700px) {
    .search_block {
        margin-top: 30px;
    }

    .search_block .year_check {
        margin-top: 45px;
        gap: 20px;
    }

    .search_block .year_check label {
        width: 115px;
        height: 40px;
        border-radius: 20px;
    }

    .search_block .year_check label p {
        font-size: 16px;
    }

    .report_list {
        gap: 50px 4%;
    }

    .report_list .report {
        width: 48%;
    }

    .report_list .report .head_text h2 {
        font-size: 16px;
    }

    .report_list .report .detail_btn p {
        font-size: 15px;
    }

    .report_list .report .detail_btn {
        height: 50px;
        border-radius: 25px;
        margin-top: 15px;
    }

    .report_list .report .detail_btn img {
        width: 6.5px;
        right: 15px;
    }
}

@media screen and (max-width: 500px) {
    .search_block .year_check {
        gap: 15px;
    }

    .search_block .year_check label {
        width: 95px;
    }

    .search_block .year_check label p {
        font-size: 14px;
    }

    .report_list .report .detail_btn {
        height: 44px;
        border-radius: 22px;
    }
}
