.bento-hero {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding: 16px;
}

.main-bento {
    flex-grow: 1;
    width: 100%;
}

.bento-box, .main-bento {
    position: relative;
    border-radius: var(--radius);
    overflow: clip;
}

.main-bento, .sm-bento {
    animation-name: popIn;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.85, 0.09, 0.15, 0.91);
}

@keyframes popIn {
    0% {
        transform: scale(.2);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* main */
.main-bento {
    background: var(--main);
}

.main-bento .overdrive-bg {
    opacity: .15;
}

.bento-hero-content img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    object-fit: cover;
    width: 50%;
}

.bento-hero-content {
    padding: calc(clamp(2.5rem, 8.681vw - 1.667rem, 8.75rem)) calc(clamp(1.25rem, 7.726vw - 2.458rem, 6.813rem));
}

.bento-hero-content .acf-innerblocks-container {
    width: 50%;
    color: white;
}

.small-bento {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}

.sm-bento {
    width: 400px;
    flex-grow: 1;
    min-height: 400px;
    position: relative;
    display: flex;
	transition: .5s;
	transition-timing-function: cubic-bezier(0.85, 0.09, 0.15, 0.91);
}

.sm-bento:hover {
	opacity: .7;
	transform: scale(.95);
}

.bento-content-wrap {
    width: 50%;
    padding: calc(clamp(0.938rem, 3.906vw - 1.563rem, 3.125rem)) calc(clamp(1.25rem, 8.929vw - 4.464rem, 6.25rem));
    padding-right: 0;
}

.bento-img {
    position: relative;
    width: 50%;
    height: 100%;
}

.bento-img img {
    position: absolute;
    inset: 0;
    height: 90%;
	width: 100%;
    object-fit: cover;
    object-position: top left!important;
    align-self: flex-end;
}

.bento-title {
    font-size: var(--fs-md);
    margin-top: 0px;
	color: inherit;
}

.bento-box p.bento-link {
    color: currentcolor;
    margin-bottom: 40px;
    display: block;
    font-size: var(--fs-xsm);
}

.bento-link::after {
    content: "\f061";
    font-family: var(--icon);
    margin-left: 10px;
}

.bento-box p {
    color: currentcolor;
    margin-bottom: 0px;
    display: block;
    font-size: var(--fs-xsm);
}

@media(max-width: 1250px) {
    .sm-bento {
        min-height: fit-content;
    }

    .bento-box p {
        margin-bottom: 30px;
    }
}

@media(max-width: 768px) {
    .bento-hero-content img {
        position: relative;
        width: 100%;
        height: 150px;
    }

    .bento-hero-content {
        display: flex;
        flex-direction: column-reverse;
        padding-bottom: 0;
        gap: 20px;
    }

    .bento-hero-content .acf-innerblocks-container {
        width: 100%;
    }
}

@media(max-width: 500px) {

    .bento-box p {
        margin-bottom: 0px;
    }

    .bento-content-wrap {
        width: 100%;
    }

}