.cardwithlinkcontrol {
    border: 1px solid #E1E4EA;
    width: 100%;
    min-height: auto;
    padding: 32px;
    gap: 24px;
    border-radius: 8px;
    position: relative;
    background-color: #ffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-bottom: 8px solid #FFCC00;
    flex-grow: 1;

    .card-icon {
        width: 36px;
        height: 36px;
    }

    .card-content {
        display: flex;
        flex-direction: column;
        gap: unset;
        flex-grow: 1;
    }

    .card-content h2 {
        font-size: 16px;
        font-weight: 700;
        line-height: 28px;
        text-align: left;
        color: #23282E;
        margin-bottom: 1rem;
    }

    .card-content p {

        font-size: 16px;
        font-weight: 400;
        line-height: 28px;
        text-align: left;
        color: #23282E;
        margin-bottom: 0;
    }

    .card-link {
        width: 24px;
        height: 24px;

    }

    .card-button {
        display: flex;
        justify-content: flex-end;
    }


    .card-button-icon:hover {
        background-color: #E1E4EA;
        border-radius: 0.25rem;
        padding: .3125rem;
        cursor: pointer;
    }

    .card-button-icon {
        color: #23282E;
        padding: .3125rem;
        cursor: pointer;
        border-radius: 0.25rem;
    }

    .card-icon {
        width: 36px;
        height: 36px;
    }
}

.cardwithlinkcontrol:hover {
    box-shadow: 0rem 1.875rem 3.75rem 0rem #00000014;
    transform: translateY(-1rem);
}

.cardwithlinkcontrol:active {
    box-shadow: 0rem 0.625rem 1.25rem 0rem #00000014;
    transform: translateY(0);
}

@media (max-width: 48rem) {

    .cardwithlinkcontrol:hover {
        box-shadow: none;
        transform: unset;
    }

    .cardwithlinkcontrol:active {
        box-shadow: none;
        transform: unset;
    }
}