/* стиль выдержек */
.normdocs-detail .normdocs-text {
  line-height: 1.55;
  font-size: 16px;
}

.normdocs-detail .normdocs-text p {
  margin: 0 0 12px;
}

.normdocs-detail .normdocs-text h2,
.normdocs-detail .normdocs-text h3,
.normdocs-detail .normdocs-text h4 {
  margin: 18px 0 10px;
  line-height: 1.25;
	font-size: 24px;
}

.normdocs-detail .normdocs-text ul,
.normdocs-detail .normdocs-text ol {
  margin: 0 0 12px 22px;
}

.normdocs-detail .normdocs-text li {
  margin: 0 0 6px;
}

.normdocs-detail .normdocs-text a {
  text-decoration: underline;
}

.normdocs-detail .normdocs-text blockquote {
  margin: 12px 0;
  padding: 10px 14px;
  border-left: 3px solid rgba(64,144,149,.6); 
  background: rgba(0,0,0,.03);
}
h3.type__title{
    font-size:24px;
}
/* Блок отрасли внизу выдержки */
.normdoc-industry-link{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(19,30,42,.10);
}

.normdoc-industry-tile{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 14px;
  border-radius: 14px;
  background: #fff;
  text-decoration: none;

  border: 1px solid rgba(19,30,42,.12);
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.normdoc-industry-tile:hover{
  transform: translateY(-2px);
  border-color: rgb(184 210 210);
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
}

.normdoc-industry-tile__icon img{
  width: 100px;
  height: 100px;
  display: block;
}

.normdoc-industry-tile__title{
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  color:#131e2a;
  text-transform: uppercase;
  text-align: center;
}

/* кнопка справа под текстом */
.normdoc-industry-link__cta{
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
}

/* мобилка */
@media (max-width: 767px){
  .normdoc-industry-link{
    grid-template-columns: 1fr;
  }
  .normdoc-industry-link__cta{
    justify-content: flex-start;
  }
}
/* Типографика текста справа в блоке "Отрасль" (выдержка) */
.normdoc-industry-link__text{
  font-size: 14px;
  line-height: 1.55;
  color: rgba(19,30,42,.92);
}

/* абзацы */
.normdoc-industry-link__text p{
  margin: 0 0 10px;
}
.normdoc-industry-link__text p:last-child{
  margin-bottom: 0;
}

/* ссылки */
.normdoc-industry-link__text a{
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px dashed rgba(64,144,149,.55); /* подстрой под твой accent, можно оставить как есть */
  transition: border-color .15s ease, opacity .15s ease;
}
.normdoc-industry-link__text a:hover{
  border-bottom-color: rgba(64,144,149,.95);
  opacity: .95;
}

/* если внутри есть списки */
.normdoc-industry-link__text ul,
.normdoc-industry-link__text ol{
  margin: 8px 0 10px 18px;
  padding: 0;
}
.normdoc-industry-link__text li{
  margin: 0 0 6px;
}
.normdoc-industry-link__text li:last-child{
  margin-bottom: 0;
}

/* "мелкий текст" если вдруг будет */
.normdoc-industry-link__text small{
  font-size: 12.5px;
  color: rgba(19,30,42,.72);
}
