.line-two-rows p {
  margin-bottom: 0;
}
.line-two-rows .detail-panel {
  display: grid;
  grid-template-columns: 0.4fr 4fr;
  align-items: center;
}
.line-two-rows .detail-line {
  width: 0.9em;
  background-color: black;
  height: 120%;
  -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 96%, 0 100%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 0, 100% 96%, 0 100%, 0% 100%);
}
.line-two-rows ul {
  text-decoration: none;
  list-style: none;
  display: grid;
  grid-template-rows: auto;
  gap: 3em;
}
.line-two-rows ul li {
  display: grid;
  grid-template-columns: 0.9fr 1.9fr;
  align-items: flex-start;
  gap: 3em;
}
.line-two-rows ul li.center-grid {
  align-items: center;
}
.line-two-rows ul .text-row {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}

@media (max-width: 600px) {
  .line-two-rows .detail-panel {
    display: grid;
    grid-template-columns: 0.15fr 4fr;
  }
  .line-two-rows .detail-line {
    width: 0.3em;
    height: 120%;
  }
  .line-two-rows ul {
    grid-template-rows: auto;
    gap: 2em;
  }
  .line-two-rows ul li {
    grid-template-columns: 2.4fr 1.9fr;
    align-items: flex-start;
  }
  .line-two-rows ul li.center-grid {
    align-items: center;
  }
  .line-two-rows ul .text-row {
    display: flex;
    flex-direction: column;
    gap: 0.2em;
  }
}