.card {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    flex-direction: row;
    align-items: center;
    background-color: rgb(74, 74, 74);
    border-radius: 12px;
}

.card:hover {
    background-color: rgb(102, 102, 102);
}

.card:active {
    background-color: rgb(51, 51, 51);
    transform: translateY(1px);
}

.card-icon-block {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 64px;  
}

.card-icon-block-left {
    width: 64px;
}

.card-icon-block-right {
    width: 32px;
}

.card-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.card-content-block {
    width: 100%;
    height: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4px;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
}

.card-content {
    line-height: 1.7;
    font-size: 12px;
}

.card-content p {
    margin: 0;
}