ui-risk-card {
    display: flex;
    justify-content: center;
}

.risk-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 240px;
    height: fit-content;
    font-family: Helvetica, Arial, sans-serif;
}

.risk-title-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70px;
}

.risk-title {
    font-size: clamp(16px, 2.5vw, 18px);
    color: #053252;
    font-weight: bold;
}

.risk-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;
    border: 2px solid whitesmoke;
    width: 150px;
    height: 150px;
    overflow: hidden;
    padding: 32px;
    margin-bottom: 12px;

    z-index: 3;
    background: linear-gradient(to bottom right, #FFFFFF 25%, #C4C4C4);
}

.risk-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.risk-image-wrapper-border {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 190px;
    height: 200px;
    margin-top: -20px;
}

.risk-secondary-background {
    background: linear-gradient(
            to bottom,
            transparent 0%,
            transparent 50%,
            #FF8141 50%,
            #FFD415 100%
    );
}

.risk-primary-background {
    background: linear-gradient(
            to bottom,
            transparent 0%,
            transparent 50%,
            #053252 50%,
            #00B8FF 100%
    );
}

