@charset "UTF-8";

.list_download {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.list_download .list_item {
    width: calc((100% - 60px) / 3);
    padding-bottom: 30px;
    background-color: #fff;
    border: 1px solid #efefef;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.list_download .list_item:nth-child(3n) {
    margin-right: 0%;
}

@media screen and (max-width: 767px) {
    .list_download .list_item {
        width: 48.7%;
        margin-right: 2%;
    }

    .list_download .list_item:nth-child(3n) {
        margin-right: 2%;
    }

    .list_download .list_item:nth-child(2n) {
        margin-right: 0%;
    }
}

@media screen and (max-width: 540px) {
    .list_download .list_item {
        width: 100%;
        margin-right: 0%;
    }

    .list_download .list_item:nth-child(3n) {
        margin-right: 0%;
    }
}

.list_download .list_item figure {
    width: 100%;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    background-color: #efefef;
    overflow: hidden;
}

.list_download .list_item figure img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: contain;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.list_download .list_item h5,
.list_download .list_item p,
.list_download .list_item .c_btn {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.list_download .list_item .c_btn {
    margin-top: auto;
}

.list_download .list_item .c_btn.general_exhibits {
    background: var(--ceatecblue);
}

.list_download .list_item .c_btn.x_park {
    background: var(--xpark);
}

.list_download .list_item .c_btn.next_generation_park {
    background: var(--next);
}

.list_download .list_item h5 span {
    font-size: 15px;
    display: block;
}

.list_download .list_item p {
    font-size: 14px;
}

.list_download .list_item > p:last-of-type {
    margin-bottom: 10px;
}
