:root {
  --vx-clr-theme: #d46b4c;
  --vx-clr-theme-dark: #b8573b;
  --vx-clr-bg-page: #f2f2f2;
  --vx-clr-bg-card: #ffffff;
  --vx-clr-text-main: #333333;
  --vx-clr-text-sub: #777777;
  --vx-clr-accent: #3498db;
  --vx-clr-border-color: #dfdfdf;
  --vx-radius-sm: 4px;
  --vx-shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.08);
  --vx-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

body.vortex-canvas {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: var(--vx-clr-bg-page);
  color: var(--vx-clr-text-main);
  overflow-x: hidden;
}

.ad-container {
  margin: 16px auto;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
}

.ad-container[data-ad-index="0"] {
  margin-top: 0;
}

.gptslot {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  min-height: 250px;
  max-width: 300px;
  margin: auto;
}

.vortex-roof {
  background-color: var(--vx-clr-theme);
  padding: 15px 0;
}

.vortex-roof-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}

.vortex-brand-mark {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
}

.vortex-search-input-group {
  width: 0;
  overflow: hidden;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.vortex-search-input-group input {
  border: none;
  background: transparent;
  outline: none;
  padding: 5px 10px;
  width: 200px;
  background-color: var(--vx-clr-bg-card);
  font-size: 14px;
}

.vortex-search-bar-container.active {
  cursor: default;
}

.vortex-search-bar-container.active .vortex-search-input-group {
  width: 200px;
}

.vortex-search-bar-container.active .search-text {
  color: #ff6600;
}

.vortex-search-bar-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.vortex-search-icon-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  width: 40px;
  aspect-ratio: 1;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url(../../images/search.4e5976b.png);
}

.search-button {
  background-color: var(--vx-clr-bg-card);
  border-radius: 5px;
  font-weight: 600;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  padding: 5px 10px;
  border: 1px solid var(--vx-clr-border-color);
}

.vortex-ribbon {
  max-width: 1200px;
  margin: 10px auto;
  background-color: #fff;
  border-bottom: 2px solid var(--vx-clr-theme);
  border: 1px solid var(--vx-clr-theme);
}

.vortex-container {
  margin: 0 auto;
  padding: 10px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  gap: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  background-color: var(--vx-clr-theme);
  color: #fff;
}

.vortex-container .vortex-home {
  background-color: var(--vx-clr-bg-card);
  color: var(--vx-clr-theme);
  padding: 5px 15px;
  border-radius: 5px;

}

.vortex-ribbon-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 10px 20px;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  color: #fff;
}

.vortex-ribbon-node {
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: #fff;

}

.vortex-core-engine {
  max-width: 1200px;
  margin: 20px auto;
}

.vortex-text-cluster {
  background: var(--vx-clr-bg-card);
  padding: 15px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.vortex-text-link {
  font-size: 12px;
  color: var(--vx-clr-text-sub);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vortex-text-link:hover {
  color: var(--vx-clr-theme);
  text-decoration: underline;
  cursor: pointer;
}

.vortex-visual-cell {
  background: var(--vx-clr-bg-card);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  text-decoration: none;
  color: inherit;
  -webkit-transition: var(--vx-transition);
  transition: var(--vx-transition);
}

.vortex-visual-cell:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  box-shadow: var(--vx-shadow-subtle);
  cursor: pointer;
}

.vortex-lens-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1.3;
  overflow: hidden;
}

.vortex-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 30px;
  aspect-ratio: 1;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url(../../images/play.a442ec4.png);
}

.vortex-lazy-lens {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.vortex-lazy-lens.loaded {
  opacity: 1;
}

.vortex-time-stamp {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 2px;
  font-weight: bold;
}

.vortex-cell-data {
  padding: 8px 5px;
}

.vortex-cell-title {
  font-size: 13px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 13px;
  max-height: 27px;
}

.vortex-cell-title:hover {
  color: var(--vx-clr-theme-dark);
  cursor: pointer;
}

.vortex-cell-meta {
  font-size: 11px;
  color: var(--vx-clr-text-sub);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
}

.vortex-upper-matrix .vortex-cell-meta,
.vortex-slider-page .vortex-cell-meta {
  display: none;
}

.vortex-upper-matrix {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 15px;
  margin-bottom: 30px;
  border: 1px solid var(--vx-clr-border-color);
  padding: 20px 10px;
  background-color: var(--vx-clr-bg-card);
}

.vortex-slider-realm {
  background: #fff;
  border: 1px solid var(--vx-clr-theme-dark);
  border-radius: 5px;
  margin-bottom: 30px;
  position: relative;
}

.vortex-slider-crown {
  position: absolute;
  top: -15px;
  left: 20px;
  background: var(--vx-clr-theme);
  color: #fff;
  display: inline-block;
  padding: 6px 20px;
  font-weight: bold;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid var(--vx-clr-theme-dark);
}

.vortex-slider-mechanism {
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  padding: 0 10px 20px 10px;
}

.vortex-paddle {
  background: var(--vx-clr-theme);
  color: #fff;
  border: none;
  width: 30px;
  height: 60px;
  cursor: pointer;
  font-size: 18px;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  -webkit-transition: var(--vx-transition);
  transition: var(--vx-transition);
  position: absolute;
  border-radius: 5px;
  border: 1px solid var(--vx-clr-theme-dark);
}

.vortex-paddle.vortex-paddle-left {
  left: -15px;
}

.vortex-paddle.vortex-paddle-right {
  right: -15px;
}

.vortex-paddle:hover {
  background: var(--vx-clr-theme-dark);
}

.vortex-slider-viewport {
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
          flex-grow: 1;
  margin: 0 10px;
}

.vortex-slider-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.vortex-slider-page {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 15px;
}

.vortex-split-architecture {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 10px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
          align-items: flex-start;
}

.vortex-spine {
  width: 280px;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  background: #fff;
  border: 1px solid #ddd;
}

.vortex-spine-filter {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  text-align: center;
  background-color: var(--vx-clr-border-color);
}

.vortex-filter-node {
  font-size: 16px;
  cursor: pointer;
  color: var(--vx-clr-text-sub);
  padding: 10px 20px;
  white-space: nowrap;
}

.vortex-filter-node.active {
  font-weight: bold;
  background-color: var(--vx-clr-bg-card);
  color: var(--vx-clr-text-main);
}

.vortex-spine-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  padding: 10px 0;
}

.vortex-lateral-cell {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 5px;
  text-decoration: none;
  color: inherit;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  padding: 10px;
  border-bottom: dotted 1px var(--vx-clr-border-color);
  overflow: hidden;
}

.vortex-lateral-cell .vortex-lens-frame {
  width: 100px;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}

.vortex-lateral-cell .vortex-cell-title {
  font-size: 12px;
  -webkit-line-clamp: 3;
}

.vortex-lateral-cell .vortex-cell-meta {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  white-space: nowrap;
}

.vortex-bulk {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
          flex-grow: 1;
  min-width: 0;
  background-color: var(--vx-clr-bg-card);
  padding: 10px;
}

.vortex-hero-stage {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  overflow: hidden;
}

.vortex-hero-prime {
  min-width: 60%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  border: 1px solid #ddd;
  background: #fff;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
          flex: 1;
}

.vortex-hero-prime-visuals-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.vortex-hero-prime-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.vortex-play-shield {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  color: #fff;
  font-size: 24px;
  padding-left: 5px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

#vx-hero-prime-visuals {
  position: relative;
}

.vortex-hero-prime-visuals-wrapper:hover .vortex-play-shield {
  background: var(--vx-clr-theme);
  cursor: pointer;
}

.vortex-prime-dots {
  position: absolute;
  bottom: 15px;
  left: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 6px;
  z-index: 999;
}

.vortex-prime-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.5;
  cursor: pointer;
}

.vortex-prime-dot.active {
  opacity: 1;
  background: var(--vx-clr-theme);
}

.vortex-hero-prime-info {
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
          align-items: flex-start;
}

.vortex-prime-text-col {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
          flex: 1;
}

.vortex-prime-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.vortex-prime-category {
  font-size: 13px;
  color: #999;
}

.vortex-prime-duration {
  background: #888;
  color: #fff;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: bold;
}

.vortex-hero-queue {
  width: -webkit-calc(30% - 10px);
  width: calc(30% - 10px);
  background: #fff;
  border: 1px solid #ddd;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
}

.vortex-queue-viewport {
  overflow: hidden;
  width: 100%;
}

.vortex-queue-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.vortex-queue-page {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  padding: 0 10px;
}

.vortex-queue-roof {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.vortex-queue-title {
  font-size: 15px;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  gap: 8px;
  color: #555;
}

.vortex-emerald-pill {
  width: 6px;
  height: 16px;
  background: #8cc63f;
  border-radius: 4px;
  display: inline-block;
}

.vortex-queue-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 5px;
}

.vortex-queue-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

.vortex-queue-dot.active {
  background: var(--vx-clr-theme);
}

.vortex-queue-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
}

.vortex-queue-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px dashed #ddd;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}

.vortex-queue-card:last-child {
  border-bottom: none;
}

.vortex-queue-visual {
  position: relative;
  width: 90px;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  aspect-ratio: 16/9;
  background: #000;
}

.vortex-queue-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vortex-queue-duration {
  position: absolute;
  bottom: 2px;
  right: 2px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 10px;
  padding: 1px 4px;
  border-radius: 2px;
}

.vortex-queue-data {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  min-width: 0;
}

.vortex-queue-title-text {
  font-size: 12px;
  font-weight: bold;
  color: #333;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vortex-queue-cat-text {
  font-size: 11px;
  color: #999;
}

.vortex-action-trigger {
  background: -webkit-gradient(linear, left top, left bottom, from(#7cb8eb), to(#5a9cd9));
  background: -webkit-linear-gradient(top, #7cb8eb, #5a9cd9);
  background: linear-gradient(to bottom, #7cb8eb, #5a9cd9);
  border: 1px solid #4a8bc7;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: bold;
  cursor: pointer;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  text-decoration: none;
}

.vortex-action-trigger:hover {
  background: #4a8bc7;
}

.vortex-prime-view {
  -webkit-box-flex: 3;
  -webkit-flex: 3;
     -moz-box-flex: 3;
          flex: 3;
  position: relative;
}

.vortex-prime-view .vortex-lens-frame {
  aspect-ratio: 21/9;
}

.vortex-prime-queue {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  gap: 10px;
}

.vortex-sector {
  background: #fff;
  padding: 15px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
}

.vortex-bulk .vortex-text-cluster .vortex-text-link {
  border: 1px solid var(--vx-clr-border-color);
  padding: 5px;
  color: var(--vx-clr-text-main);
}

.vx-sector-block {
  background: #fff;
  border: 1px solid #eee;
  margin-bottom: 25px;
  padding: 15px;
  border-radius: 4px;
}

.vx-sector-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid #f5f5f5;
  padding-bottom: 10px;
  overflow: hidden;
}

.vx-sector-title-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
}

.vx-sector-pill {
  width: 6px;
  height: 18px;
  background: #8cc63f;
  border-radius: 10px;
}

.vx-sector-more {
  color: var(--vx-clr-theme);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--vx-clr-border-color);
  padding: 3px 10px;
  white-space: nowrap;
}

.vx-sector-more:hover {
  text-decoration: underline;
  cursor: pointer;
}

.vx-video-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.vx-grid-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
}

.vx-grid-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background: #000;
  overflow: hidden;
}

.vx-grid-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vx-grid-duration {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 10px;
  padding: 2px 4px;
  border-radius: 2px;
}

.vx-grid-title {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.3;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-height: 13px;
  max-height: 27px;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
}

.vx-grid-title:hover {
  color: #ff6600;
}

.vortex-visual-cell--highlight {
  border: 2px solid var(--vx-clr-accent);
  border-radius: 4px;
  padding: 2px;
}

.vortex-basement {
  background-color: var(--vx-clr-theme);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  margin-top: 50px;
}

.vortex-legal-strands {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.8;
}

.vortex-legal-strands span {
  margin: 0 10px;
  cursor: pointer;
}

.vortex-legal-strands span:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .vortex-hero-stage {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
  }

  .vortex-queue-viewport {
    width: 100%;
  }

  .vortex-roof-inner,
  .vortex-ribbon,
  .vortex-core-engine {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .vortex-upper-matrix,
  .vx-video-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 10px;
  }

  .vortex-text-cluster {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vortex-split-architecture {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
  }

  .vortex-spine {
    width: 100%;
    margin-bottom: 20px;
  }

  .vortex-spine-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .vortex-hero-stage {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
  }

  .vortex-hero-prime,
  .vortex-hero-queue,
  .vortex-bulk {
    width: 100%;
  }

  .vortex-queue-page {
    width: 100%;
  }

  .vortex-slider-page {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .vortex-brand-mark {
    font-size: 20px;
  }

  .vortex-search-bar-container.active .vortex-search-input-group {
    width: 140px;
  }

  .vortex-search-input-group input {
    width: 140px;
  }

  .vortex-container .vortex-home {
    display: none;
  }

  .vortex-container {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
            align-items: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .vortex-ribbon-track {
    width: 100%;
    -webkit-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
            justify-content: flex-start;
    padding: 10px;
  }

  .vortex-upper-matrix,
  .vx-video-grid,
  .vortex-text-cluster,
  .vortex-spine-track,
  .vortex-queue-page {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px;
  }

  .vortex-text-link {
    font-size: 11px;
    padding: 4px;
  }

  .vortex-cell-title,
  .vx-grid-title {
    font-size: 12px;
    -webkit-line-clamp: 2;
    height: 32px;
  }

  .vortex-prime-duration {
    display: none;
  }

  .vortex-lateral-cell {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
  }

  .vortex-lateral-cell .vortex-lens-frame {
    width: 100%;
  }

  .vortex-legal-strands span {
    display: block;
    margin: 10px 0;
  }

  .vortex-legal-strands a:visited {
    color: white;
  }

  .vortex-lens-frame {
    height: 165px;
    aspect-ratio: auto;
  }

  .vortex-slider-page {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vx-grid-thumb {
    height: 190px;
    aspect-ratio: auto;
  }
}
