/* Hover Card (orbisk/hover-card) */

.orbisk_hover_card {
    width: 371px;
    max-width: 100%;
}

.orbisk-hc-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.orbisk-hc-top {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    box-sizing: border-box;
    background-color: var(--orbisk-hc-bg, #035939);
    border-radius: 8px;
}

.orbisk-hc-image-wrap {
    position: relative;
    width: 289px;
    height: 212px;
    max-width: 100%;
}

.orbisk-hc-image-behind {
    position: absolute;
    inset: 0;
    width: 289px;
    height: 212px;
    max-width: 100%;
    border-radius: 6px;
    background-color: var(--orbisk-hc-behind-bg, #B5E37C);
    transform-origin: bottom left;
    transform: rotate(0deg) translate(0, 0);
    transition: transform 0.3s ease;
}

.orbisk-hc-image {
    position: relative;
    display: block;
    width: 289px;
    height: 212px;
    max-width: 100%;
    border-radius: 6px;
    object-fit: cover;
}

.orbisk_hover_card:hover .orbisk-hc-image-behind {
    transform: rotate(3deg) translate(10px, 10px);
}

.orbisk-hc-heading {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    color: #13382A;
    margin: 20px 0 12px;
    padding: 0;
}

.orbisk-hc-body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    color: #666666;
    margin: 0;
}
