.scaffolding-container {
  position: relative;
  display: inline-block;
  margin: 0 1rem;
  width: calc(100% - 2rem);
  box-sizing: border-box;
  min-height: 136px;
  overflow: hidden;
}

.scaffolding-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  padding: 1rem 1.5rem;
  gap: 1.5rem;
}

.title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
}

.title svg {
  width: 36px;
  height: 36px;
}

.scaffolding-wrapper .headline-small {
  margin: 0;
}

.desc {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  max-width: 1960px;
  margin-right: 4rem;
}

.top-line,
.bottom-line {
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: var(--stroke--color);
}

.left-line,
.right-line {
  position: absolute;
  height: 100%;
  width: 4px;
  background-color: var(--stroke--color);
}

.bottom-line {
  bottom: 7px;
}

.top-line {
  top: 7px;
}

.left-line {
  left: 6px;
  bottom: 0;
}

.right-line {
  right: 6px;
  bottom: 0;
}

.bottom-left,
.bottom-right,
.bottom-spikes,
.top-right,
.top-left,
.top-spikes {
  position: absolute;
}

.bottom-left path,
.bottom-right path,
.bottom-spikes path,
.top-right path,
.top-left path,
.top-spikes path {
  stroke: var(--stroke--color);
}

.bottom-left {
  bottom: 0;
  left: 0;
}

.bottom-right {
  bottom: 0;
  right: 0;
}

.top-left {
  top: 0;
  left: 0;
}

.top-right {
  top: 0;
  right: 0;
}

.bottom-spikes {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.top-spikes {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 1400px) {
}

@media screen and (min-width: 1900px) {
}

@media screen and (min-width: 2500px) {
}

@media screen and (max-width: 1400px) {
  /* XXL */
}

@media screen and (max-width: 1250px) {
}

@media screen and (max-width: 1200px) {
  /* XL */
}

@media screen and (max-width: 992px) {
  /* LG */
  .scaffolding-wrapper {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  /* M */
}

@media screen and (max-width: 576px) {
  /* S */
}

@media screen and (max-width: 258px) {
  /* XS */
  .title {
    flex-wrap: wrap;
  }
}
