#showcase_section {
    margin-bottom: 80px;
}

#showcase_section * {
    margin: 0;
    padding: 0;
}

#showcase_section ul {
    list-style: none;
}

#showcase_section a {
    text-decoration: none;
}

#showcase_section img {
    width: 100%;
    height: 100%;
}

#showcase_section .showcase_card_item_img {
    line-height: 0;
}


#showcase_section #showcase_container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-auto-flow: column;
    gap: 10px;
    margin-bottom: 10px;
}

#showcase_section #showcase_container .showcase_card_item {
    position: relative;
}

#showcase_section #showcase_container .showcase_card_item_img {
    aspect-ratio: 500 / 379;
}

#showcase_section #showcase_container .showcase_card_item_cat {
    position: absolute;
    bottom: min(calc(1vw * calc(5 / 7.68)), 20px);
    left: min(calc(1vw * calc(5 / 7.68)), 20px);
}

#showcase_section #showcase_container.container001 .showcase_card_item.item_large {
    grid-area: 1 / 1 / 3 / 3;
}

#showcase_section #showcase_container.container002 .showcase_card_item.item_large {
    grid-area: 1 / 2 / 3 / 4;
}

#showcase_section #showcase_container.container003 .showcase_card_item.item_large {
    grid-area: 1 / 3 / 3 / 5;
}

#showcase_section #showcase_container .showcase_card_item_cat ul {
    display: flex;
    align-items: center;
    justify-content: left;
    flex-wrap: wrap;
    gap: 10px;
}

#showcase_section #showcase_container .showcase_card_item_cat ul li a {
    display: block;
    padding: 5px 15px;
    line-height: 1;
    background: rgba(255,255,255,.8);
    border-radius: 50px;
    font-size: min(calc(1vw * calc(7 / 7.68)), 14px);
    color: #95AAB4;
}

@media screen and (min-width:1025px) {
    #showcase_section #showcase_container .showcase_card_item_img {
        overflow: hidden;
    }

    #showcase_section #showcase_container .showcase_card_item_img img {
        position: relative;
        scale: 1;
        transition: .5s all;
        transform-origin: center center;
    }

    #showcase_section #showcase_container .showcase_card_item_img a:hover img {
        scale: 1.03;
    }

}

@media screen and (max-width:1024px) {
    #showcase_section #showcase_container .showcase_card_item_cat {
        display: none;
    }
}

@media screen and (max-width:767px) {
    #showcase_section {
        margin-bottom: 8%;
    }

    #showcase_section #showcase_container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
        gap: 5px;
        margin-bottom: 5px;
    }

    #showcase_section #showcase_container.container001 .showcase_card_item.item_large {
        grid-area: 1 / 1 / 3 / 3;
    }

    #showcase_section #showcase_container.container002 .showcase_card_item.item_large {
        grid-area: 2 / 1 / 4 / 3;
    }

    #showcase_section #showcase_container.container003 .showcase_card_item.item_large {
        grid-area: 3 / 1 / 5 / 3;
    }
}

#showcase_section .animation img {
    position: relative;
    opacity: 1;
}

#showcase_section .animation.active img {
    /* animation: fall-in .8s ease-out 0s forwards; */
}

#showcase_section .animation .showcase_card_item_cat {
    opacity: 1;
    transition: .8 all;
}

#showcase_section .animation.active .showcase_card_item_cat {
    /* opacity: 1; */
}

@keyframes fall-in {
    0% {
        translate: 0 -8px;
        box-shadow: 0px 0px 6px 4px rgba(0, 0, 0, .1);
        opacity: 0;
    }

    100% {
        translate: 0 0;
        box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .3);
        opacity: 1;
    }
}