.teleports-flow > * + * {
      margin-top: 16px;
    }

    .teleports-flow .info-text {
      margin: 0;
    }

    .teleports-flow .info-list {
      margin: 0;
      padding-left: 20px;
      display: block;
    }

    .teleports-flow .info-list li {
      margin: 0;
      line-height: 1.42;
    }

    .teleports-flow .info-list li + li {
      margin-top: 4px;
    }

    .teleports-grid {
      display: grid;
      gap: 16px;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      margin-top: 18px;
    }

    .teleports-card {
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 24px;
      background:
        radial-gradient(circle at top right, rgba(255, 184, 82, 0.08), transparent 34%),
        rgba(255, 255, 255, 0.02);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
    }

    .teleports-card img {
      display: block;
      width: 100%;
      object-fit: cover;
      border-radius: 18px;
    }

    .teleports-card h3 {
      margin: 14px 0 0;
    }

    .teleports-grid--locations {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .teleports-card--location {
      padding: 14px;
    }

    .teleports-card--location img {
      aspect-ratio: 1.25 / 1;
    }

    .teleports-image-button {
      display: block;
      width: 100%;
      padding: 0;
      border: 0;
      background: transparent;
      cursor: zoom-in;
    }

    .teleports-card--compact img {
      aspect-ratio: 1.15 / 1;
      padding: 18px;
    }

    .teleports-grid--cards .teleports-card--compact {
      padding: 14px;
    }

    .teleports-modal[hidden] {
      display: none;
    }

    .teleports-modal {
      position: fixed;
      inset: 0;
      z-index: 70;
      display: grid;
      place-items: center;
      padding: 16px;
    }

    .teleports-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(6, 6, 8, 0.82);
      backdrop-filter: blur(8px);
    }

    .teleports-modal__dialog {
      position: relative;
      z-index: 1;
      width: min(1080px, calc(100vw - 32px));
      max-height: calc(100vh - 32px);
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 28px;
      background:
        radial-gradient(circle at top right, rgba(255, 184, 82, 0.10), transparent 34%),
        rgba(18, 18, 22, 0.96);
      box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
      overflow: auto;
    }

    .teleports-modal__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 16px;
    }

    .teleports-modal__head h2 {
      margin: 0;
    }

    .teleports-modal__close {
      min-height: 42px;
      padding: 0 18px;
      border-radius: 999px;
      border: 1px solid rgba(255, 170, 70, 0.2);
      background: rgba(255, 170, 70, 0.12);
      color: #fff;
      font: inherit;
      font-weight: 700;
      cursor: pointer;
    }

    .teleports-modal__image {
      display: block;
      width: 100%;
      border-radius: 22px;
    }

    body.modal-open {
      overflow: hidden;
    }

    @media (max-width: 680px) {
      .teleports-card {
        padding: 16px;
      }
    }

    @media (max-width: 1100px) {
      .teleports-grid--locations {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 680px) {
      .teleports-grid--locations {
        grid-template-columns: 1fr;
      }

      .teleports-modal__dialog {
        width: calc(100vw - 20px);
        max-height: calc(100vh - 20px);
        padding: 14px;
        border-radius: 22px;
      }
    }
