.custom-material-craft {
  background-color: rgb(var(--color-background));
  color: rgb(var(--color-text));
  border-radius: 0;
}

.custom-material-craft__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 60px;
}

.custom-material-craft__content {
  flex: 0 0 60%;
  max-width: 60%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.custom-material-craft__content .block-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.custom-material-craft__content .block-text {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(var(--color-text), 0.8);
}

.custom-material-craft__specs {
  flex: 0 0 40%;
  max-width: 40%;
  padding-left: 40px;
  border-left: 1px solid rgb(var(--color-entry-line));
}

.custom-material-craft__spec-item {
  padding: 16px 0;
  border-bottom: 1px solid rgb(var(--color-entry-line));
}

.custom-material-craft__spec-item:last-child {
  border-bottom: none;
}

.custom-material-craft__spec-label {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(var(--color-text), 0.5);
  margin-bottom: 6px;
}

.custom-material-craft__spec-value {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgb(var(--color-text));
  white-space: pre-line;
}

@media (max-width: 959px) {
  .custom-material-craft__inner {
    flex-direction: column;
    gap: 30px;
  }

  .custom-material-craft__content {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .custom-material-craft__specs {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    border-left: none;
  }
}
