.icon-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-style: normal;
}

body {
  margin: 0;
  overflow-x: hidden;
}

.hero-progress {
  animation: hero-progress 6s linear forwards;
}

@keyframes hero-progress {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-progress {
    animation: none;
    width: 100%;
  }

  * {
    scroll-behavior: auto !important;
  }
}

.js-hero {
  padding-top: 5rem;
}

.gm-front-hero-image {
  opacity: 0.7;
  filter: grayscale(20%);
}

.gm-front-hero-overlay--bottom {
  background: linear-gradient(to top, rgba(11, 19, 38, 0.9), rgba(11, 19, 38, 0.62) 42%, rgba(11, 19, 38, 0) 100%);
}

.gm-front-hero-overlay--side {
  background: linear-gradient(to right, rgba(11, 19, 38, 0.82), rgba(11, 19, 38, 0.38) 46%, rgba(11, 19, 38, 0) 100%);
}

.js-hero-title a,
.js-hero-title a:hover,
.js-hero-title a:focus,
.js-hero-title a:visited {
  color: inherit;
  text-decoration: none;
}

.js-featured-main,
.js-featured-rail {
  min-width: 0;
}

.gm-front-hero-shell {
  min-height: 100%;
}

.gm-front-hero-rail {
  min-width: 0;
}

.gm-front-hero-selector {
  min-width: 0;
}

.gm-monthly-recap-lines {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}

.gm-monthly-recap-line {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin: 0;
  padding: 0.22rem 0;
  color: rgba(203, 195, 215, 0.76);
  line-height: 1.7;
  cursor: pointer;
  transition: color 0.2s ease;
}

.gm-monthly-recap-line.is-hidden {
  display: none;
}

.gm-monthly-recap-line:hover,
.gm-monthly-recap-line.is-active {
  color: #dae2fd;
}

.gm-monthly-recap-line-number {
  flex: 0 0 auto;
  min-width: 2rem;
  color: rgba(149, 142, 160, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  font-family: "JetBrains Mono", "SFMono-Regular", Menlo, monospace;
}

.gm-monthly-recap-line.is-active .gm-monthly-recap-line-number {
  color: #d0bcff;
}

.gm-monthly-recap-line-text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
}

.gm-monthly-recap-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.gm-monthly-recap-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border: 1px solid rgba(73, 68, 84, 0.22);
  border-radius: 1rem;
  background: rgba(45, 52, 73, 0.4);
  color: rgba(218, 226, 253, 0.88);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.gm-monthly-recap-control:hover {
  background: rgba(208, 188, 255, 0.12);
  border-color: rgba(208, 188, 255, 0.35);
  color: #f2f4ff;
}

.gm-single-shell {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem 2rem 3rem;
}

.gm-single-hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  min-height: 750px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0b1326;
}

.gm-single-hero-media {
  position: absolute;
  inset: 0;
}

.gm-single-hero-image,
.gm-single-hero-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gm-single-hero-image {
  opacity: 0.7;
  filter: grayscale(20%);
}

.gm-single-hero-fallback {
  background:
    radial-gradient(circle at 30% 20%, rgba(208, 188, 255, 0.18), transparent 0 40%),
    linear-gradient(180deg, rgba(22, 31, 53, 0.98), rgba(11, 19, 38, 1));
}

.gm-single-hero-overlay {
  position: absolute;
  inset: 0;
}

.gm-single-hero-overlay--bottom {
  background: linear-gradient(to top, rgba(11, 19, 38, 0.9), rgba(11, 19, 38, 0.66) 40%, rgba(11, 19, 38, 0.08) 100%);
}

.gm-single-hero-overlay--side {
  background: linear-gradient(to right, rgba(11, 19, 38, 0.82), rgba(11, 19, 38, 0.42) 45%, rgba(11, 19, 38, 0.06) 100%);
}

.gm-single-hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 80rem);
  margin: 0 auto;
  padding: 7rem 2rem 2.5rem;
}

.gm-single-hero-copy {
  max-width: 56rem;
}

.gm-single-hero-meta-top {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.gm-single-hero-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(208, 188, 255, 0.3);
  background: rgba(208, 188, 255, 0.1);
  color: #d0bcff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gm-single-hero-date {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #cbc3d7;
  font-size: 0.72rem;
  font-family: "JetBrains Mono", "SFMono-Regular", Menlo, monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gm-single-hero-date-dot {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: #45dfa4;
  box-shadow: 0 0 0 0 rgba(69, 223, 164, 0.75);
  animation: gm-single-pulse 1.8s infinite;
}

@keyframes gm-single-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(69, 223, 164, 0.6);
  }

  70% {
    box-shadow: 0 0 0 0.45rem rgba(69, 223, 164, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(69, 223, 164, 0);
  }
}

.gm-single-hero-title {
  margin: 0 0 1.5rem;
  color: #dae2fd;
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
  text-shadow: 0 18px 40px rgba(6, 10, 19, 0.7);
}

.gm-single-hero-summary {
  max-width: 42rem;
  margin: 0;
  color: #cbc3d7;
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  line-height: 1.7;
  font-weight: 500;
}

.gm-single-meta-band {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  color: #cbc3d7;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.gm-single-meta-band-item {
  color: #cbc3d7;
}

.gm-single-article {
  width: 100%;
  border: 1px solid rgba(73, 68, 84, 0.2);
  border-radius: 1rem;
  background: rgba(19, 27, 46, 0.92);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  padding: 2rem;
  color: #cbc3d7;
}

.gm-single-article > * + * {
  margin-top: 2.5rem;
}

.gm-single-summary-box {
  border: 1px solid rgba(73, 68, 84, 0.22);
  border-radius: 0.85rem;
  background: rgba(45, 52, 73, 0.2);
  padding: 1.5rem;
}

.gm-single-summary-title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: #dae2fd;
  font-size: 1.125rem;
  font-weight: 700;
}

.gm-single-summary-list {
  margin: 0;
  padding-left: 1.25rem;
  color: #cbc3d7;
  line-height: 1.8;
}

.gm-single-summary-list li + li {
  margin-top: 0.5rem;
}

.gm-single-summary-copy {
  color: #cbc3d7;
  line-height: 1.8;
}

.gm-single-summary-copy > *:first-child {
  margin-top: 0;
}

.gm-single-summary-copy > *:last-child {
  margin-bottom: 0;
}

.gm-single-article-body {
  color: #cbc3d7;
  line-height: 1.85;
}

.gm-single-article-body > * + * {
  margin-top: 1.5rem;
}

.gm-single-article-body h1,
.gm-single-article-body h2,
.gm-single-article-body h3,
.gm-single-article-body h4 {
  color: #dae2fd;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.gm-single-article-body h1 {
  font-size: clamp(1.75rem, 2.4vw, 2.4rem);
}

.gm-single-article-body h2 {
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.gm-single-article-body h3 {
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
}

.gm-single-article-body p,
.gm-single-article-body li {
  color: #cbc3d7;
}

.gm-single-article-body ul,
.gm-single-article-body ol {
  margin: 0;
  padding-left: 1.3rem;
}

.gm-single-article-body li + li {
  margin-top: 0.4rem;
}

.gm-single-article-body hr {
  border: 0;
  border-top: 1px solid rgba(73, 68, 84, 0.35);
  margin: 2rem 0;
}

.gm-single-article-body a {
  color: #d0bcff;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.gm-single-article-body img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

.gm-single-article-body blockquote {
  margin: 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid rgba(208, 188, 255, 0.75);
  background: rgba(45, 52, 73, 0.22);
}

.gm-single-article-body div[style*="background-color: #111111"][style*="border-left: 5px solid #9a56c1"] {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.gm-single-article-body div[style*="background-color: #111111"][style*="border-left: 5px solid #9a56c1"] > h3:first-child {
  margin-top: 0 !important;
}

.gm-single-article-body div[style*="background-color: #111111"][style*="border-left: 5px solid #9a56c1"] > *:last-child {
  margin-bottom: 0 !important;
}

.gm-table-wrap {
  position: relative;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(208, 188, 255, 0.4) rgba(19, 27, 46, 0.45);
  touch-action: pan-x;
}

.gm-table-wrap::-webkit-scrollbar {
  height: 8px;
}

.gm-table-wrap::-webkit-scrollbar-track {
  background: rgba(19, 27, 46, 0.45);
  border-radius: 999px;
}

.gm-table-wrap::-webkit-scrollbar-thumb {
  background: rgba(208, 188, 255, 0.4);
  border-radius: 999px;
}

.gm-single-article-body h3 + .gm-table-wrap,
.gm-single-article-body h4 + .gm-table-wrap,
.gm-single-article-body h3 + table,
.gm-single-article-body h4 + table {
  margin-top: 10px;
}

.gm-single-article-body table {
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
  margin: 0;
  background: rgba(10, 16, 28, 0.78);
  border: 1px solid rgba(112, 129, 170, 0.18);
}

.gm-single-article-body th,
.gm-single-article-body td {
  border-bottom: 1px solid rgba(73, 68, 84, 0.24);
  padding: 0.8rem 1rem;
  text-align: left;
  white-space: nowrap;
  color: #cfd8ef;
}

.gm-single-article-body th {
  color: #f5f7ff;
  font-weight: 700;
}

.gm-single-article-body table thead tr,
.gm-single-article-body table thead tr[style],
.gm-single-article-body table tr[style*="background-color"] {
  background-color: rgba(32, 40, 62, 0.96) !important;
}

.gm-single-article-body td[style*="color: green"] {
  color: #72e0a4 !important;
  font-weight: 700;
}

.gm-single-article-body td[style*="color: red"] {
  color: #ff8f9b !important;
  font-weight: 700;
}

.gm-single-tags-block {
  padding-top: 0.5rem;
}

.gm-single-tags-label {
  margin-bottom: 0.75rem;
  color: rgba(203, 195, 215, 0.72);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.gm-single-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.gm-single-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(73, 68, 84, 0.2);
  background: rgba(45, 52, 73, 0.3);
  color: #dae2fd;
  font-size: 0.75rem;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.gm-single-tag:hover {
  background: rgba(69, 223, 164, 0.08);
  border-color: rgba(69, 223, 164, 0.35);
  color: #dae2fd;
}

.gm-archive-shell {
  max-width: 80rem;
  margin: 0 auto;
  padding: 5.5rem 2rem 4rem;
}

.gm-archive-hero {
  margin-bottom: 2rem;
}

.gm-archive-kicker {
  margin-bottom: 0.75rem;
  color: #d0bcff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gm-archive-title {
  margin: 0;
  color: #f0f4ff;
  font-size: clamp(2.3rem, 4.4vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.gm-archive-description {
  max-width: 46rem;
  margin: 1rem 0 0;
  color: rgba(203, 195, 215, 0.84);
  font-size: 1.02rem;
  line-height: 1.8;
}

.gm-archive-count {
  margin-top: 1.1rem;
  color: rgba(203, 195, 215, 0.68);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gm-post-grid,
.gm-single-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.gm-single-related {
  margin-top: 3.25rem;
}

.gm-single-related-head {
  margin-bottom: 1.25rem;
}

.gm-single-related-title {
  margin: 0;
  color: #dae2fd;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.gm-post-card,
.gm-single-related-card {
  overflow: hidden;
  border: 1px solid rgba(73, 68, 84, 0.2);
  border-radius: 0.9rem;
  background: rgba(19, 27, 46, 0.92);
}

.gm-post-card-media,
.gm-single-related-media {
  display: block;
  height: 11rem;
  overflow: hidden;
}

.gm-post-card-image,
.gm-single-related-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gm-post-card:hover .gm-post-card-image,
.gm-single-related-card:hover .gm-single-related-image {
  transform: scale(1.05);
}

.gm-post-card-copy,
.gm-single-related-copy {
  padding: 1.1rem 1.1rem 1.25rem;
}

.gm-post-card-date,
.gm-single-related-date {
  color: rgba(203, 195, 215, 0.7);
  font-size: 0.75rem;
  font-family: "JetBrains Mono", "SFMono-Regular", Menlo, monospace;
  margin-bottom: 0.55rem;
}

.gm-post-card-title,
.gm-single-related-card-title {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 700;
}

.gm-post-card-title a,
.gm-single-related-card-title a {
  color: #dae2fd;
  text-decoration: none;
}

.gm-post-card-title a:hover,
.gm-single-related-card-title a:hover {
  color: #d0bcff;
}

.gm-post-card-excerpt,
.gm-single-related-excerpt {
  margin: 0;
  color: rgba(203, 195, 215, 0.84);
  font-size: 0.9rem;
  line-height: 1.65;
}

.gm-archive-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.gm-archive-pagination-item {
  display: inline-flex;
}

.gm-archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6rem;
  min-height: 2.6rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(73, 68, 84, 0.2);
  border-radius: 999px;
  background: rgba(19, 27, 46, 0.92);
  color: #dae2fd;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.gm-archive-pagination .page-numbers.current,
.gm-archive-pagination .page-numbers:hover {
  border-color: rgba(208, 188, 255, 0.4);
  background: rgba(208, 188, 255, 0.12);
  color: #f3f6ff;
}

.gm-archive-empty {
  padding: 1.8rem 1.9rem;
  border: 1px solid rgba(73, 68, 84, 0.2);
  border-radius: 1rem;
  background: rgba(19, 27, 46, 0.92);
}

.gm-archive-empty-title {
  margin: 0 0 0.75rem;
  color: #f0f4ff;
  font-size: 1.45rem;
  font-weight: 800;
}

.gm-archive-empty-description {
  margin: 0;
  color: rgba(203, 195, 215, 0.84);
  line-height: 1.75;
}

@media (min-width: 1024px) {
  .js-featured-shell {
    column-gap: 1.5rem !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .js-nav-links {
    display: flex !important;
  }
}

@media (max-width: 767px) {
  .js-shell-pad {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .js-shell-main {
    padding: 2rem 1rem !important;
  }

  .js-shell-main > :not(:last-child) {
    margin-bottom: 3rem !important;
  }

  .js-shell-footer {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    margin-top: 3rem !important;
  }

  .js-hero {
    height: auto;
    min-height: 420px;
  }

  .gm-front-hero-shell {
    padding-top: 10rem !important;
    padding-bottom: 1rem !important;
    justify-content: flex-end;
  }

  .gm-front-hero-copy {
    max-width: 100%;
    margin-bottom: 1.25rem;
  }

  .js-hero-category {
    font-size: 0.68rem !important;
    letter-spacing: 0.16em !important;
    padding: 0.3rem 0.7rem !important;
  }

  .js-hero-date {
    font-size: 0.66rem !important;
    letter-spacing: 0.12em !important;
  }

  .js-hero-title {
    margin-bottom: 0.9rem !important;
    font-size: clamp(1.4rem, 6.1vw, 1.95rem) !important;
    line-height: 1.08 !important;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .js-hero-summary {
    display: none !important;
  }

  .js-hero-cta {
    padding: 0.75rem 1.5rem !important;
  }

  .gm-front-hero-rail-shell {
    margin-left: -1rem;
    margin-right: -1rem;
    padding: 0.9375rem 1rem;
    border-top: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .gm-front-hero-rail-shell::-webkit-scrollbar {
    display: none;
  }

  .gm-front-hero-rail {
    display: flex;
    gap: 0.85rem;
    width: max-content;
    min-width: 100%;
  }

  .gm-front-hero-selector {
    flex: 0 0 82vw;
    min-height: auto;
    padding: 0.9375rem 1rem !important;
  }

  .gm-front-hero-selector .js-hero-selector-meta {
    font-size: 0.6rem !important;
    letter-spacing: 0.16em !important;
  }

  .gm-front-hero-selector .js-hero-selector-title {
    font-size: 0.94rem !important;
    line-height: 1.5 !important;
  }

  .js-trending-card {
    min-width: 85vw !important;
  }

  .js-market-table th,
  .js-market-table td {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .js-market-table td:first-child .font-bold {
    font-size: 11px;
  }

  .gm-single-shell {
    padding: 1rem 1rem 2.5rem;
  }

  .gm-single-hero {
    min-height: 420px;
  }

  .gm-single-hero-content {
    padding: 5.5rem 1rem 1.5rem;
  }

  .gm-single-hero-copy {
    max-width: 100%;
  }

  .gm-single-hero-title {
    font-size: clamp(1.35rem, 5.6vw, 1.85rem);
  }

  .gm-single-hero-summary {
    font-size: 1rem;
  }

  .gm-single-meta-band {
    font-size: 0.88rem;
  }

  .gm-single-article {
    padding: 1.25rem;
  }

  .gm-single-article-body .gm-table-wrap {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding: 0 1.25rem 0.55rem;
  }

  .gm-single-related-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gm-post-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gm-archive-shell {
    padding: 5rem 1rem 3rem;
  }

  .gm-archive-title {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .gm-single-article-body th,
  .gm-single-article-body td {
    min-width: 8rem;
    padding: 0.7rem 0.85rem;
  }

  .gm-single-article-body table {
    min-width: 34rem;
  }

  .gm-single-article-body > table,
  .gm-single-article-body > figure.wp-block-table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding: 0 1.25rem 0.45rem;
    box-sizing: border-box;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .gm-single-shell {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .gm-archive-shell {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

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

  .gm-single-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
