Specific text not affected by CSS style [closed]

You can do that with CSS pseudo nth-child classes. Here is an example to make first two strong black.

.beer-description strong:nth-child(1), .beer-description strong:nth-child(2) {
    color: #404040;
}

You can modify CSS in this as you wish.