@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@400;500&display=swap');

.value-card-wrapper-c9225dcc {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: background-color 0.3s ease;
    overflow: hidden;
}

.value-card-border-c9225dcc {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    opacity: 0.3;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.value-card-wrapper-c9225dcc:hover .value-card-border-c9225dcc {
    opacity: 1;
}

.value-card-content-c9225dcc {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
}

.value-card-content-c9225dcc.value-card-layout-vertical {
    flex-direction: column;
}

.value-card-content-c9225dcc.value-card-layout-horizontal {
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
}

.value-card-text-wrap-c9225dcc {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.value-card-number-c9225dcc {
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1;
    font-weight: 400;
}

.value-card-layout-vertical .value-card-number-c9225dcc {
    margin-bottom: 20px;
}

.value-card-layout-horizontal .value-card-number-c9225dcc {
    margin-bottom: 0;
    flex-shrink: 0;
}

.value-card-title-c9225dcc {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    /* margin-bottom handled by dynamic control */
    line-height: 1.2;
    font-weight: 400;
}

.value-card-desc-c9225dcc {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    font-weight: 400;
}