.list-blocks{
  display: grid;
  gap: 18px;
}

.list-blocks p{
  font-size: clamp(1rem, 5vw, 1.5rem);
  position: relative;
  margin: 0;
  padding: 26px 28px 26px 60px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.035),
    rgba(255,255,255,.015)
  );
  border: 1px solid rgba(245,199,107,.28);
  border-radius: 14px;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  letter-spacing: .2px;
  box-shadow:
    0 0 0 1px rgba(0,0,0,.7) inset,
    0 14px 40px rgba(0,0,0,.7);
}

/* detalhe dourado lateral */
.list-blocks p::before{
  content: "";
  position: absolute;
  left: 26px;
  top: 26px;
  bottom: 26px;
  width: 2px;
  background: linear-gradient(
    180deg,
    #f5c76b,
    #d4a73c
  );
  border-radius: 2px;
  opacity: .9;
}
