  .pm-page {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
  }

  .pp-promo-header {
    margin-bottom: 0;
  }

  .page-content {
    display: block;
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .content-container {
    padding: 0 0.5rem;
  }

  iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .page-content> :not(.pc-menu) {
    margin-top: 1rem;
  }

  .right-sidebar {
    max-width: 100%;
  }

  .x-sell {
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--color-black) 12.5%, transparent);
    transition: all .2s ease-in-out;
  }

  .x-sell .pc-txt {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
  }

  .x-sell p:last-child {
    margin-bottom: 0;
  }

  .x-sell:hover {
    transform: scale(1.03);
  }

  .pp-container .pc-folder > .pc-header {
    display: none;
  }

  @media screen and (min-width: 600px) {
    .page-content {
      display: grid;
      column-gap: 1rem;
      grid-template-columns: 1fr 3fr;
      grid-template-rows: auto auto;
      max-width: 1280px;
      width: 100%;
    }

.page-content > * {
min-width: 0;
}

    .right-sidebar {
      grid-column: 2 / 3;
      grid-row: 2 / 3;
    }

    .pc-menu {
      grid-row: 1 / 3;
    }
  }

  @media screen and (min-width: 960px) {
    .page-content {
      grid-template-columns: minmax(auto, 213px) auto;
    }
  }


  @media screen and (min-width: 1280px) {
    .page-content {
      grid-template-columns: minmax(auto, 213px) auto;
    }

    .page-content:has(> :nth-child(3):last-child) {
      grid-template-columns: 1fr 3fr auto;
    }

    .right-sidebar {
      max-width: 210px;
      grid-column: unset;
      grid-row: unset;
    }

    .pc-menu {
      grid-row: unset;
    }
  }

.border-orange {
border: 1px solid #ffA500;
}

.grid-even-columns {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.grid-even-columns > div {
width: 100%;
}