/* .trail-img {
    position: relative;
    width: max-content !important;
}

.trail-img:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1080px;
    height: 100%;
    z-index: 0;
    background: var(--trail-color, currentColor);
}

.trail-img.from-left:after {
    right: 50%;
}

.trail-img.from-right:after {
    left: 50%;
}

.trail-img.brand-1 {
    --trail-color: var(--theme-palette-color-1);
}

.trail-img img {
    position: relative;
    z-index: 1;
} */

/* Overflow */

.wp-block-columns:has(.overflow-img) {
    overflow: hidden;
}

.wp-block-column:has(.img-centered-absolute) {
    position: relative;
}

.img-centered-absolute {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.img-centered-absolute.overflow-top-bottom {
    height: calc(100% + 96px);
    margin: -48px 0;
}

/* Image Full */

.img-full {
    width: 100%;
    height: 100%;
}

.img-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay Image */
.wp-block-column:has(.overlay-img) {
    position: relative;
}
.overlay-img {
    position: absolute;
    top: 50%;
    right: 75%;
    z-index: 2;;
}

/* Circle Behind */

.circle-behind {
    position: relative;
}

.circle-behind:after {
    content: "";
    position: absolute;
    top: 25%;
    right: -120px;
    width: 120px;
    height: 120px;
    border-radius: 9999px;
    background: var(--circle-color, currentColor);
    z-index: 0;
}

.circle-behind:before {
    content: "";
    position: absolute;
    top: 25%;
    right: 60px;
    width: 120px;
    height: 120px;
    border-radius: 9999px;
    border: 1px solid var(--circle-color, currentColor);
    transform: translate(-50%, -50%);
    z-index: 0;
}

.circle-behind img {
    position: relative;
    z-index: 1;
}