<h2>Заголовок</h2>
<p>Абзац</p> <!-- тут будет стиль -->
<p>Абзац</p>
<p>Абзац</p>
<h2>Заголовок</h2>
<p>Абзац</p> <!-- тут будет стиль -->
<p>Абзац</p>
<h2>Заголовок</h2>
<p>Абзац</p> <!-- тут не будет стиля -->
<style>
.text-block p:first-of-type{
color: red;
}
.text-block p:only-of-type{
color: black;
}
</style>
<!DOCTYPE html>
<html lang="ru">
<head> </head>
<body>
<div class="text-block">
<h2>Заголовок</h2>
<p>Абзац</p>
<p>Абзац</p>
<p>Абзац</p>
</div>
<div class="text-block">
<h2>Заголовок</h2>
<p>Абзац</p>
<p>Абзац</p>
</div>
<div class="text-block">
<h2>Заголовок</h2>
<p>Абзац</p>
</div>
</body>
</html>
<section>
<h2>Заголовок</h2>
<p>Абзац</p> <!-- тут будет стиль -->
<p>Абзац</p>
<p>Абзац</p>
</section>
<section>
<h2>Заголовок</h2>
<p>Абзац</p> <!-- тут будет стиль -->
<p>Абзац</p>
</section>
<section>
<h2>Заголовок</h2>
<p>Абзац</p> <!-- тут не будет стиля -->
</section>
section {
display: block;
width: 50%;
margin: 0 auto 20px;
p:first-of-type:not(:only-of-type) {
color: red;
}
}