.m-card {
  display: grid;
  gap: 20px;
}
.table-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-right: 1px solid rgba(200,200,200,1);
  border-left: 1px solid rgba(200,200,200,1);
  border-top: 1px solid rgba(200,200,200,1);
}
.tg-cell {
  padding: 7px;
  border-bottom: 1px solid rgba(200,200,200,1);
}
.ol-list {
  counter-reset: ol-numbers;
  margin: 0;
  padding: 0;
}
.traktor-tip {
  z-index: 0;
  position: relative;
  text-decoration: underline;
  text-decoration-color: var(--accent-color);
  cursor: pointer;
}
.traktor-tip:hover {
  color: var(--accent-color);
}
.traktor-tip::after {
  z-index: 1;
  position: absolute;
  content: "";
  width: 150px;
  height: 0px;
  right: 0%;
  opacity: 0;
  bottom: 120%;
  border-radius: 5px;
  overflow: hidden;
  background: url('../img/product/traktor-k-730.jpg') 50% 50% no-repeat;
  background-size: cover;
  box-shadow: 10px 10px 20px rgba(0,0,0,0.3);
  transition: all 0.25s ease-out;
}
.traktor-tip:hover::after {
  height: 172px;
  width: 300px;
  opacity: 1;
}
.traktor-tip-660 {
  z-index: 0;
  position: relative;
  text-decoration: underline;
  text-decoration-color: var(--accent-color);
  cursor: pointer;
}
.traktor-tip-660:hover {
  color: var(--accent-color);
}
.traktor-tip-660::after {
  z-index: 1;
  position: absolute;
  content: "";
  width: 150px;
  height: 0px;
  right: 0%;
  opacity: 0;
  bottom: 120%;
  border-radius: 5px;
  overflow: hidden;
  background: url('../img/product/traktor-k-730-2.jpg') 50% 50% no-repeat;
  background-size: cover;
  box-shadow: 10px 10px 20px rgba(0,0,0,0.3);
  transition: all 0.25s ease-out;
}
.traktor-tip-660:hover::after {
  height: 172px;
  width: 300px;
  opacity: 1;
}
.ol-list .li {
  position: relative;
  padding: 0 0 0 30px;
}
.ol-list .li::before {
  counter-increment: ol-numbers;
  content: counter(ol-numbers) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 24px;
  line-height: 16px;
  font-weight: 700;
  color: var(--accent-color);
}
.li {
  list-style-type: none;
}
@media (min-width: 992px) {
  .m-card {
    display: grid;
    gap: 30px;
    grid-template-columns: 300px auto;
    align-items: center;
  }
  .table-grid {
    grid-template-columns: 2fr 3fr;
  }
  .traktor-tip::after {
    width: 0px;
    height: 0px;
    left: 0%;
    bottom: 120%;
    opacity: 0;
  }
  .traktor-tip:hover::after {
    width: 355px;
    height: 210px;
    opacity: 1;
  }
  .traktor-tip-660::after {
    width: 0px;
    height: 0px;
    left: 0%;
    bottom: 120%;
    opacity: 0;
  }
  .traktor-tip-660:hover::after {
    width: 355px;
    height: 210px;
    opacity: 1;
  }
}
@media (min-width: 1200px) {
  .m-card {
    gap: 30px;
    grid-template-columns: 320px auto;
  }
  .table-grid {
    grid-template-columns: 1fr 2fr;
  }
  .traktor-tip::after {
    width: 0px;
    height: 0px;
    left: 0%;
    bottom: 120%;
    box-shadow: 25px 25px 50px rgba(0,0,0,0.2);
  }
  .traktor-tip:hover::after {
    width: 385px;
    height: 225px;
    opacity: 1;
  }
  .traktor-tip-660::after {
    width: 0px;
    height: 0px;
    left: 0%;
    bottom: 120%;
    box-shadow: 25px 25px 50px rgba(0,0,0,0.2);
  }
  .traktor-tip-660:hover::after {
    width: 385px;
    height: 225px;
    opacity: 1;
  }
  .ol-list .li {
    position: relative;
    padding: 0 0 0 35px;
  }
  .ol-list .li::before {
    font-size: 24px;
    line-height: 18px;
  }
}