.crea .bento {
    padding: 15px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 10px;
}

.crea .projects {
    grid-column: 2 / 13;
    grid-row: 1 / 7;
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    background-color: #d7d7d7;
    margin: 0px;
    transition: all .2s ease;
}

.crea .slide {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    transition: all .5s;
    border-radius: 20px;
    opacity: 0;
}

.crea .slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;    
    border-radius: 20px;
}

.crea .slide.active {
    opacity: 1;
}

.min {
    grid-column: 1;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all .2s ease;
}

.min:first-of-type {
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.min:last-of-type {
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.min:hover {
    width: calc(100% + 10px);
    border: 2px solid var(--text-800);
}

.min:hover~.projects {
    margin-left: 10px;
}