.premium-corner-cta .elementor-cta {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #000;
    isolation: isolate;
}

/* Image */
.premium-corner-cta .elementor-cta__bg {
    transition: transform 0.45s ease;
}

/* Normal bottom overlay */
.premium-corner-cta .elementor-cta__bg-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.35) 45%,
        rgba(0, 0, 0, 0.05) 100%
    );
    transition: all 0.45s ease;
}

/* Content */
.premium-corner-cta .elementor-cta__content {
    position: relative;
    z-index: 3;
}

/* Description hidden normally */
.premium-corner-cta .elementor-cta__description {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(14px);
    transition: all 0.4s ease;
}

/* Title */
.premium-corner-cta .elementor-cta__title {
    position: relative;
    display: inline-block;
    transition: all 0.35s ease;
}

/* Yellow border beside title */
.premium-corner-cta .elementor-cta__title::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 6px;
    height: 38px;
    background: #ffc72c;
    transition: transform 0.35s ease;
    transform-origin: center;
}

/* White corner cut shape */
.premium-corner-cta .elementor-cta::after {
    content: "";
    position: absolute;
    top: -2px;
    right: -2px;
    width: 0;
    height: 0;
    background: #fff;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    z-index: 20;
    transition: width 0.45s ease, height 0.45s ease;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Hover */
.premium-corner-cta:hover .elementor-cta__bg {
    transform: scale(1.06);
}

.premium-corner-cta:hover .elementor-cta__bg-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.52) 50%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

.premium-corner-cta:hover .elementor-cta__description {
    opacity: 1;
    max-height: 180px;
    transform: translateY(0);
    margin-top: 12px;
}

.premium-corner-cta:hover .elementor-cta__title::before {
    transform: translateY(-50%) scaleY(1);
}

.premium-corner-cta:hover .elementor-cta::after {
    width: 105px;
    height: 105px;
}

/* Mobile */
@media (max-width: 767px) {
    .premium-corner-cta:hover .elementor-cta::after {
        width: 78px;
        height: 78px;
    }

    .premium-corner-cta .elementor-cta__title::before {
        left: -14px;
        width: 5px;
        height: 34px;
    }
}