зачем нужен
nth-child
, если есть конкретные классы и можно управлять
mobile-br
,
tablet-br
,
desktop-br
и
mobile-tablet-br
?
media запросы им поставить и все.
UPD
Если все-же нужно:
/* mobile-br */
.about__item:last-child > p br:nth-child(1),
.about__item:last-child > p br:nth-child(3),
.about__item:last-child > p br:nth-child(6),
.about__item:last-child > p br:nth-child(7), {
display: inline;
}
/* mobile-tablet-br */
.about__item:last-child > p br:nth-child(2), {
display: inline;
}
/* tablet-br */
.about__item:last-child > p br:nth-child(4), {
display: inline;
}
/* desktop-br */
.about__item:last-child > p br:nth-child(5), {
display: inline;
}