/* Main layout */
.main-container {
  display: block;
  grid-template-columns: 3fr 1fr;
  box-shadow: var(--theme_shadow_10);
}
.left-container {
  background: var(--theme_palette_background_paper);
  padding: 24px 32px 32px 32px;
  min-height: 500px;
}
.right-container {
  display: none;
  position: relative;
  background: url('https://cdn.etm.ru/ipro3/shared/etmLogoIntegration.webp') 50% 70px no-repeat
    rgb(33, 39, 49);
}
@media (min-width: 960px) {
  .main-container {
    display: grid;
  }
  .right-container {
    display: flex;
  }
}

/* Right container */
.right-text {
  position: absolute;
  color: var(--theme_palette_background_paper);
  padding-top: 144px;
  text-align: center;
  width: 100%;
  left: 0;
  right: 0;
  margin: auto;
}
.logo_RightContainer {
  background-image: url('https://cdn.etm.ru/ipro3/shared/lock.webp');
  background-position: 50% 200px;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 40px;
  width: 100%;
}

/* Article */
.block {
  padding-bottom: 16px;
}
.block-title {
  margin-bottom: 40px;
}
.article-text {
  margin-bottom: 24px;
}
.article-link {
  color: var(--theme_palette_primary_main);
  text-decoration: none;
}
.article-link:hover {
  text-decoration: underline;
}

/* Lists */
.custom-list {
  list-style-type: disc;
  padding: 0 0 24px 24px;
}
.custom-list-item {
  display: list-item;
  padding: 8px 16px;
}
