.info-block {
  display: grid;
  gap: var(--size-content-space-4xl);
  border-radius: 8px;
  padding: var(--size-card-padding-xl);
}
.info-block__main-item {
  padding-bottom: var(--size-content-space-2xl);
  margin-bottom: var(--size-content-space-2xl);
  position: relative;
}
.info-block__main-item::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  border-radius: 4px;
  background: #DDD;
  position: absolute;
  bottom: 0;
  left: 0;
}
.info-block__title {
  color: var(--color-content-neutral-primary);
  /* Heading4xlSemiBold */
  font-variant-numeric: var(--font-varian-Heading4xlSemiBold);
  font-family: var(--font-family-Heading4xlSemiBold);
  font-size: var(--font-size-Heading4xlSemiBold);
  font-style: var(--font-style-Heading4xlSemiBold);
  font-weight: var(--font-weight-Heading4xlSemiBold);
  line-height: var(--font-line-height-Heading4xlSemiBold);
  letter-spacing: var(--font-letter-spacing-Heading4xlSemiBold);
}
.info-block__subtitle {
  color: var(--color-content-neutral-secondary);
  /* BodyLgRegular */
  font-variant-numeric: var(--font-variant-numeric-BodyLgRegular);
  font-family: var(--font-family-BodyLgRegular);
  font-size: var(--font-size-BodyLgRegular);
  font-style: var(--font-style-BodyLgRegular);
  font-weight: var(--font-weight-BodyLgRegular);
  line-height: var(--font-line-height-BodyLgRegular);
  letter-spacing: var(--font-letter-spacing-BodyLgRegular);
}
.info-block__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--size-content-space-1xl);
}
.info-block__description {
  color: var(--color-content-neutral-secondary);
  /* BodyLgRegular */
  font-variant-numeric: var(--font-variant-numeric-BodyLgRegular);
  font-family: var(--font-family-BodyLgRegular);
  font-size: var(--font-size-BodyLgRegular);
  font-style: var(--font-style-BodyLgRegular);
  font-weight: var(--font-weight-BodyLgRegular);
  line-height: var(--font-line-height-BodyLgRegular);
  letter-spacing: var(--font-letter-spacing-BodyLgRegular);
}
.info-block__list-wrap {
  display: grid;
  gap: var(--size-content-space-1xl);
}
.info-block__list-label {
  color: var(--color-content-neutral-primary);
  /* Heading2xlSemiBold */
  font-family: var(--font-family-Heading2xlSemiBold);
  font-size: var(--font-size-Heading2xlSemiBold);
  font-style: var(--font-style-Heading2xlSemiBold);
  font-weight: var(--font-weight-Heading2xlSemiBold);
  line-height: var(--font-line-height-Heading2xlSemiBold);
}
.info-block__list-item.list {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px var(--size-content-space-1xl);
}
.info-block__list-item .list-mark__item {
  color: var(--color-content-neutral-secondary);
  gap: var(--size-content-space-md);
}
.info-block__list-item .list-mark__item::before {
  width: 4px;
  height: 4px;
  margin: 0 3px 0 1px;
  background-color: var(--color-content-neutral-secondary);
}
.info-block.light {
  background: var(--color-bg-light);
}
.info-block.neutral {
  background: #F7F7F7;
}
.info-block.dark {
  background: var(--color-base-base-1000);
}

@media (max-width: 1680px) {
  .info-block__list-item.list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .info-block__details {
    grid-template-columns: 1fr;
  }
  .info-block__details .triple-data:first-child {
    padding-bottom: var(--size-content-space-2xl);
    margin-bottom: var(--size-content-space-2xl);
    position: relative;
  }
  .info-block__details .triple-data:first-child::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    border-radius: 4px;
    background: #DDD;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .info-block__list-item.list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .info-block {
    padding: 24px;
  }
}/*# sourceMappingURL=info-block.css.map */