.flex_layout.assortiment_blok {
  max-width: 100%;
}
.content-switch__section {
  padding: 0 20px;
}

.assortiment_blok .component-wrapper {
  padding: 40px 0;
  background: url('./bg-pattern.png') center center;
  background-color: var(--black);
}

.assortiment_blok .grid-container {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(12, 1fr);
}

.assortiment_blok .link-arrow:hover {
  color: rgba(255, 255, 255, 0.75);
}

.assortiment_blok .component-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.assortiment_blok .component-heading * {
  color: var(--white);
}

.assortiment_blok .component-heading .link-arrow {
  display: none;
}

.assortiment_blok .component-content__left {
  grid-column: 1 / 13;
}

.assortiment_blok .switch-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.assortiment_blok .switch-button {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  font-size: clamp(14px, 2vw, 24px);
  font-weight: 500;
  line-height: 150%;
  padding: 20px 30px;
  transition: all 0.3s ease;
  border-radius: 4px;
  background: var(--white);
}

.assortiment_blok .switch-button.active {
  background: var(--orange);
}
.assortiment_blok .switch-button .icon-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: 20px;
}
.assortiment_blok .switch-button .icon-wrapper span {
  display: flex;
  line-height: 0;
}

.assortiment_blok .switch-button .term-name {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.assortiment_blok .switch-button .term-name .arrow-icon {
  opacity: 0.35;
}
.assortiment_blok .switch-button.active .term-name .arrow-icon {
  opacity: 1;
}
.assortiment_blok .switch-button .icon-wrapper .icon-top {
  transform-origin: 12.5px 12.5px;
  transition: transform 0.3s ease;
}
.assortiment_blok .switch-button:hover .icon-wrapper .icon-top {
  transform: translateY(-5px) rotate(-20deg);
}

/* Content Right */
.assortiment_blok .component-content__right {
  grid-column: 1 / 13;
}

.assortiment_blok .switch-content {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  overflow: hidden;
}

.assortiment_blok .switch-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flex_layout.assortiment_blok .component-content__right .switch-content {
  display: none;
  opacity: 0;
}

.flex_layout.assortiment_blok .component-content__right .switch-content.active {
  display: block;
  opacity: 1;
}

.assortiment_blok .cta-wrapper {
  grid-column: 1 / 13;
  margin-top: 12px;
  color: var(--white);
}

.assortiment_blok .cta-wrapper a {
  color: var(--white);
}

@media screen and (min-width: 768px) {
  .assortiment_blok .component-wrapper {
    padding: 70px 0;
  }

  .assortiment_blok .component-heading {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 64px;
  }

  .assortiment_blok .component-heading .link-arrow {
    display: inline-flex;
  }

  .assortiment_blok .component-content__left {
    grid-column: 1 / 7;
  }

  .assortiment_blok .component-content__right {
    grid-column: 7 / 13;
  }

  .assortiment_blok .cta-wrapper {
    display: none;
  }
}

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

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