#table-block.table-block {
  padding: 0 0 2rem;
}

#table-block .table-block__inner {
  position: relative;
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(220, 38, 38, .12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .045), transparent 28%),
    linear-gradient(135deg, #151717 0%, #0b0d0d 100%);
  border: 1px solid rgba(220, 38, 38, .42);
  border-radius: 8px;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, .32),
    inset 0 1px 0 rgba(255, 255, 255, .04);
}

#table-block .table-block__row {
  display: grid;
  grid-template-columns: minmax(190px, 260px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 8px;
  background: rgba(255, 255, 255, .028);
  transition: border-color .18s ease, background .18s ease;
}

#table-block .table-block__row + .table-block__row {
  margin-top: 10px;
}

#table-block .table-block__row:hover {
  border-color: rgba(220, 38, 38, .42);
  background: rgba(220, 38, 38, .055);
}

#table-block .table-block__name {
  color: #a8a8a8;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

#table-block .table-block__description {
  color: #ffffff;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.55;
  word-break: break-word;
}

#table-block .table-block__description p {
  margin: 0 0 .35rem;
}

#table-block .table-block__description p:last-child {
  margin-bottom: 0;
}

#table-block .table-block__description a {
  color: #ffffff;
  text-decoration: none;
}

#table-block .table-block__description a:hover {
  color: #ff3939;
}

@media (max-width: 680px) {
  #table-block .table-block__inner {
    padding: 14px;
  }

  #table-block .table-block__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px;
  }
}
