/* ==========================================================
   VAHU HERO DECORATION
   ========================================================== */

.vahu-hero {
    position: relative;
    overflow: hidden;
}

.vahu-hero::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -70px;

    width: 240px;
    height: 240px;

    border-radius: 50%;
    background: rgba(255, 255, 255, .20);

    pointer-events: none;
}

.vahu-hero-decoration {
    position: absolute;
    top: 34px;
    right: 38px;
    z-index: 1;

    pointer-events: none;
}

.vahu-hero-decoration-card {
    display: grid;
    place-items: center;

    width: 92px;
    height: 92px;

    border: 1px solid rgba(255, 255, 255, .58);
    border-radius: 26px;

    background: rgba(255, 255, 255, .50);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .55),
        0 14px 30px rgba(91, 58, 49, .11);

    transform: rotate(4deg);
}

.vahu-hero-decoration-star {
    color: var(--vahu-text);
    font-size: 2.6rem;
    line-height: 1;

    transition: transform .6s ease;
}

.vahu-hero:hover .vahu-hero-decoration-star {
    transform: rotate(360deg);
}

@media (max-width: 760px) {

    .vahu-hero-decoration {
        top: 24px;
        right: 24px;
    }

    .vahu-hero-decoration-card {
        width: 68px;
        height: 68px;

        border-radius: 20px;
    }

    .vahu-hero-decoration-star {
        font-size: 2rem;
    }
}

@media (max-width: 620px) {

    .vahu-hero-decoration {
        display: none;
    }
}