/*
Theme Name: TradePulse
Theme URI: https://example.com/tradepulse
Author: Codex
Author URI: https://example.com
Description: A clean trading and markets blog theme with a professional editorial homepage.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tradepulse
Tags: blog, news, finance, custom-homepage, featured-images
*/

:root {
  --tp-bg: #f4f6f7;
  --tp-surface: #ffffff;
  --tp-surface-muted: #eef2f3;
  --tp-text: #172126;
  --tp-heading: #0c1418;
  --tp-muted: #647177;
  --tp-line: #dce3e6;
  --tp-line-strong: #c9d3d7;
  --tp-accent: #0b6b54;
  --tp-accent-dark: #084c3c;
  --tp-negative: #b42318;
  --tp-dark: #10191e;
  --tp-wrap: min(1160px, calc(100vw - 40px));
  --tp-radius: 6px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

/* Only apply these constraints on screens wider than 768px (Desktop/Tablet) */
/* Fix for featured image heights and blank space */
/* Force the container to handle layout and remove all internal gaps */

body {
  margin: 0;
  background: var(--tp-bg);
  color: var(--tp-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.58;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--tp-accent);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 28px rgba(15, 23, 27, 0.08);
}

.site-header__top {
  border-bottom: 1px solid var(--tp-line);
  background: var(--tp-dark);
  color: #dce5e7;
}

.site-header__top-inner {
  width: var(--tp-wrap);
  min-height: 34px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  overflow-x: auto;
  white-space: nowrap;
  font-size: 0.78rem;
}

.site-header__top-inner span:first-child {
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-header__top strong {
  color: #39c789;
}

.site-header__top strong.is-negative,
.ticker em.is-negative {
  color: #ff8b82;
}

.site-header__inner {
  width: var(--tp-wrap);
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--tp-heading);
  font-weight: 900;
}

.brand__mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--tp-line-strong);
  border-radius: var(--tp-radius);
  color: var(--tp-accent);
  background: var(--tp-surface);
}

.brand__mark svg {
  width: 21px;
  height: 21px;
}

.brand__name {
  display: block;
  font-size: 1.06rem;
  line-height: 1.05;
}

.brand__tagline {
  display: block;
  margin-top: 2px;
  color: var(--tp-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.main-navigation a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--tp-radius);
  color: #3f4b51;
  font-size: 0.94rem;
  font-weight: 700;
}

.main-navigation a:hover,
.main-navigation a:focus-visible,
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a {
  color: var(--tp-heading);
  background: var(--tp-surface-muted);
}

.main-navigation .menu-item-has-children {
  position: relative;
}

.main-navigation .menu-item-has-children > a::after {
  content: "";
  width: 6px;
  height: 6px;
  margin: -3px 0 0 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.main-navigation .sub-menu {
  min-width: 180px;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 2px;
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  left: 0;
  padding: 8px;
  border: 1px solid var(--tp-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(13, 31, 37, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.main-navigation .sub-menu::before {
  content: "";
  height: 10px;
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
}

.main-navigation .menu-item-has-children:hover > .sub-menu,
.main-navigation .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-navigation .sub-menu a {
  width: 100%;
  min-height: 38px;
  padding: 0 11px;
  white-space: nowrap;
}

.header-search {
  width: min(280px, 26vw);
  min-height: 40px;
  display: flex;
  align-items: center;
  border: 1px solid var(--tp-line-strong);
  border-radius: var(--tp-radius);
  background: var(--tp-surface);
  overflow: hidden;
}

.header-search input {
  width: 100%;
  min-width: 0;
  height: 38px;
  border: 0;
  padding: 0 11px;
  color: var(--tp-heading);
  background: transparent;
  font: inherit;
  font-size: 0.88rem;
  outline: 0;
}

.header-search button {
  height: 38px;
  border: 0;
  border-left: 1px solid var(--tp-line);
  padding: 0 12px;
  color: #ffffff;
  background: var(--tp-accent);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
}

.header-search button:hover {
  background: var(--tp-accent-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  background: #11191e;
  border-bottom: 1px solid var(--tp-line);
  color: #ffffff;
}

.hero--media {
  min-height: 610px;
}

.hero__background {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(10, 17, 21, 0.94) 0%, rgba(10, 17, 21, 0.82) 42%, rgba(10, 17, 21, 0.34) 100%),
    linear-gradient(180deg, rgba(10, 17, 21, 0.2), rgba(10, 17, 21, 0.72)),
    url("assets/images/tradepulse-hero.svg");
  background-size: cover;
  background-position: center right;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(17, 25, 30, 0), rgba(244, 246, 247, 0.98));
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: var(--tp-wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 54px;
  align-items: center;
  padding: 106px 0 120px;
}

.eyebrow {
  display: inline-flex;
  color: var(--tp-accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 16px 0 18px;
  color: #ffffff;
  font-size: clamp(2.6rem, 6vw, 5.1rem);
  line-height: 1;
  font-weight: 900;
  text-wrap: balance;
}

.hero__lede {
  max-width: 650px;
  margin: 0 0 28px;
  color: #d5dee1;
  font-size: 1.12rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid var(--tp-line-strong);
  border-radius: var(--tp-radius);
  font-size: 0.92rem;
  font-weight: 900;
}

.button--primary {
  border-color: var(--tp-accent);
  color: #ffffff;
  background: var(--tp-accent);
}

.button--primary:hover {
  color: #ffffff;
  background: var(--tp-accent-dark);
}

.button--ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
}

.session-card {
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius);
  background: #fbfcfc;
}

.session-card--glass {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.session-card__header {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  border-bottom: 1px solid var(--tp-line);
}

.session-card__header span {
  color: var(--tp-heading);
  font-weight: 900;
}

.session-card__header strong {
  color: var(--tp-muted);
  font-size: 0.86rem;
}

.session-card ul {
  margin: 0;
  padding: 8px 18px 16px;
  list-style: none;
}

.session-card li {
  padding: 12px 0;
  border-bottom: 1px solid var(--tp-line);
  color: #435157;
  font-size: 0.94rem;
}

.session-card li:last-child {
  border-bottom: 0;
}

.market-strip {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
  border-bottom: 1px solid var(--tp-line);
  background: #10191e;
  scroll-behavior: smooth;
}

.ticker {
  min-width: 170px;
  padding: 9px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: #dce5e7;
}

.ticker b {
  display: block;
  color: #ffffff;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.ticker span {
  display: block;
  color: #a7b3b7;
  font-size: 0.78rem;
}

.ticker em {
  color: #39c789;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 900;
  transition: color 180ms ease;
}

.section {
  padding: 68px 0;
}

.section--white {
  background: var(--tp-surface);
}

.section--bordered {
  border-top: 1px solid var(--tp-line);
  border-bottom: 1px solid var(--tp-line);
  background: #fbfcfc;
}

.wrap {
  width: var(--tp-wrap);
  margin: 0 auto;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--tp-line);
}

.section-heading h2 {
  margin: 0;
  color: var(--tp-heading);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.section-heading p {
  max-width: 430px;
  margin: 0;
  color: var(--tp-muted);
  font-size: 0.96rem;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid--featured {
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  align-items: start;
}

.grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Latest Analysis: 2 posts per row */
.grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.focus-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius);
  background: var(--tp-surface);
}

.focus-card:hover {
  border-color: var(--tp-line-strong);
}

.focus-card__label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 5px 8px;
  border: 1px solid var(--tp-line);
  border-radius: 4px;
  color: var(--tp-accent);
  background: #f6faf8;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.focus-card h3 {
  margin: 0 0 10px;
  color: var(--tp-heading);
  font-size: 1.28rem;
  line-height: 1.16;
}

.focus-card p {
  margin: 0;
  color: #526167;
  font-size: 0.96rem;
}

.focus-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
}

.focus-card__meta span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  color: #45535a;
  background: var(--tp-surface-muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.insight-stack {
  display: grid;
  gap: 14px;
}

/* Session card dynamic area (market highlight, top category, sparkline) */
.session-card__dynamic {
  padding: 12px 18px 18px;
  border-top: 1px solid var(--tp-line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: transparent;
}

.session-card__highlight,
.session-card__topcat {
  font-size: 0.9rem;
  color: #33414a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.session-card__highlight a,
.session-card__topcat a {
  color: var(--tp-accent);
  font-weight: 800;
}

.session-card__chart {
  display: flex;
  align-items: center;
  gap: 10px;
}

.session-sparkline {
  width: 140px;
  height: 40px;
  display: block;
}

.session-card__chart-label {
  font-size: 0.78rem;
  color: var(--tp-muted);
}

/* Ensure two-column grid stacks to one column on smaller screens */
@media (max-width: 900px) {
  .grid--two {
    grid-template-columns: 1fr;
  }
}

.post-card {
  height: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius);
  background: var(--tp-surface);
}

.will-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.will-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.post-card:hover {
  border-color: var(--tp-line-strong);
}

.post-card--large {
  display: grid;
}

.post-card__image {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--tp-line);
  background: var(--tp-surface-muted);
}

.post-card__image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.post-card__body {
  padding: 20px;
}

.post-card--large .post-card__body {
  padding: 24px;
}

.post-card__meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--tp-muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.post-card__meta a,
.article-meta a {
  color: var(--tp-accent);
}

.post-card h3 {
  margin: 10px 0 9px;
  color: var(--tp-heading);
  font-size: 1.14rem;
  line-height: 1.18;
}

.post-card--large h3 {
  font-size: clamp(1.85rem, 3.8vw, 3rem);
  line-height: 1.04;
}

.post-card p {
  margin: 0;
  color: #526167;
  font-size: 0.96rem;
}

.read-more-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--tp-accent);
  font-size: 0.86rem;
  font-weight: 900;
}

.read-more-link::after {
  content: ">";
  margin-left: 7px;
}

.insight-panel {
  min-height: 178px;
  padding: 22px;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius);
  background: var(--tp-surface);
}

.insight-panel h3 {
  margin: 0 0 9px;
  color: var(--tp-heading);
  font-size: 1.08rem;
}

.insight-panel p {
  margin: 0;
  color: var(--tp-muted);
  font-size: 0.95rem;
}

.category-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-cloud a,
.category-cloud span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius);
  color: var(--tp-heading);
  background: var(--tp-surface);
  font-size: 0.9rem;
  font-weight: 800;
}

.category-cloud a:hover {
  border-color: var(--tp-accent);
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius);
  background: #10191e;
  color: #ffffff;
}

.newsletter h2 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.1;
}

.newsletter p {
  margin: 0;
  color: #b6c2c6;
}

.newsletter .button--primary {
  border-color: #ffffff;
  color: var(--tp-heading);
  background: #ffffff;
}

.page-shell {
  width: min(860px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 68px 0 82px;
}

.archive-shell {
  width: var(--tp-wrap);
  margin: 0 auto;
  padding: 68px 0 82px;
}

.page-title {
  margin: 0 0 24px;
  color: var(--tp-heading);
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.04;
}

.article-content {
  color: #344249;
  font-size: 1.04rem;
}

.article-content a {
  color: var(--tp-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content h2,
.article-content h3 {
  color: var(--tp-heading);
  line-height: 1.16;
}

.article-content blockquote {
  margin: 26px 0;
  padding: 8px 0 8px 22px;
  border-left: 3px solid var(--tp-accent);
  color: var(--tp-heading);
  font-size: 1.18rem;
}

.single-featured-image {
  overflow: hidden;
  margin: 0 0 30px;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius);
  background: var(--tp-surface-muted);
}

.single-featured-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.site-footer {
  border-top: 1px solid var(--tp-line);
  background: #0f171b;
  color: #dce5e7;
}

.site-footer__main {
  width: var(--tp-wrap);
  margin: 0 auto;
  padding: 44px 0 36px;
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(150px, 0.7fr));
  gap: 34px;
}

.brand--footer {
  color: #ffffff;
}

.brand--footer .brand__mark {
  border-color: rgba(255, 255, 255, 0.18);
  color: #39c789;
  background: rgba(255, 255, 255, 0.06);
}

.brand--footer .brand__tagline,
.site-footer__brand p,
.footer-column p {
  color: #a7b3b7;
}

.site-footer__brand p {
  max-width: 330px;
  margin: 16px 0 0;
  font-size: 0.95rem;
}

.footer-column h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column li + li {
  margin-top: 9px;
}

.footer-column a {
  color: #dce5e7;
  font-size: 0.94rem;
}

.footer-column a:hover {
  color: #39c789;
}

.footer-column p {
  margin: 0 0 14px;
  font-size: 0.93rem;
}

.footer-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--tp-radius);
  color: #ffffff;
  font-weight: 900;
}

.site-footer__bottom {
  width: var(--tp-wrap);
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8f9da2;
  font-size: 0.84rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom a {
  color: var(--tp-heading);
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header__inner,
  .section-heading,
  .newsletter,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-navigation ul {
    flex-wrap: wrap;
  }

  .header-search {
    width: 100%;
  }

  .hero__inner,
  .grid--featured,
  .grid--three,
  .grid--two,
  .focus-grid,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    gap: 32px;
    padding: 72px 0 88px;
  }

  .market-strip {
    justify-content: flex-start;
  }

  .site-footer__main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  :root {
    --tp-wrap: min(100vw - 28px, 1160px);
  }

  .site-header {
    position: static;
  }

  .site-header__inner {
    min-height: 0;
    padding: 15px 0;
    gap: 13px;
  }

  .main-navigation a {
    padding: 0 9px;
    font-size: 0.86rem;
  }

  .site-header__top-inner {
    min-height: 32px;
    gap: 14px;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    padding: 34px 0 28px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero--media {
    min-height: auto;
  }

  .section {
    padding: 52px 0;
  }

  .post-card__body,
  .post-card--large .post-card__body,
  .insight-panel,
  .newsletter {
    padding: 18px;
  }
}

/* Refined editorial layout */
:root {
  --tp-bg: #f5f7f8;
  --tp-surface: #ffffff;
  --tp-surface-muted: #edf2f1;
  --tp-text: #26353b;
  --tp-heading: #0a171b;
  --tp-muted: #64747a;
  --tp-line: #dce5e5;
  --tp-line-strong: #c3d0d0;
  --tp-accent: #08785b;
  --tp-accent-dark: #055b45;
  --tp-dark: #0b171b;
  --tp-wrap: min(1180px, calc(100vw - 48px));
  --tp-article: min(980px, calc(100vw - 48px));
  --tp-radius: 12px;
  --tp-shadow: 0 18px 50px rgba(13, 31, 37, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea,
select {
  font: inherit;
}

a,
button {
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(8, 120, 91, 0.3);
  outline-offset: 3px;
}

.site-header {
  border-bottom: 1px solid rgba(220, 229, 229, 0.9);
}

.admin-bar .site-header {
  top: 32px;
}

.site-header__top-inner {
  scrollbar-width: none;
}

.site-header__top-inner::-webkit-scrollbar {
  display: none;
}

.site-header__inner {
  min-height: 78px;
  position: relative;
}

.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(8, 120, 91, 0.1);
}

.brand__name {
  font-size: 1.12rem;
}

.main-navigation {
  margin-left: auto;
}

.menu-toggle {
  display: none;
}

.header-search {
  width: min(260px, 24vw);
  border-radius: 10px;
}

.hero--media {
  min-height: min(680px, calc(100vh - 112px));
  display: grid;
  align-items: center;
}

.hero__background {
  background-image:
    linear-gradient(90deg, rgba(5, 15, 19, 0.97) 0%, rgba(5, 15, 19, 0.9) 42%, rgba(5, 15, 19, 0.48) 72%, rgba(5, 15, 19, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 15, 19, 0.08), rgba(5, 15, 19, 0.72)),
    var(--hero-image);
  background-position: center, center, center;
  background-size: cover;
  transform: none;
}

.hero::after {
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(11, 23, 27, 0.62));
}

.hero__inner {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 350px);
  padding: 92px 0 104px;
}

.hero__content {
  max-width: 720px;
}

.hero .eyebrow {
  color: #5ae0ac;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(3rem, 6.6vw, 5.7rem);
  letter-spacing: -0.055em;
}

.hero__lede {
  max-width: 590px;
  color: #d8e3e4;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.button {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 9px;
}

.button:hover {
  transform: translateY(-2px);
}

.session-card--glass {
  border-radius: 16px;
  background: rgba(250, 253, 252, 0.94);
}

.market-strip {
  min-height: 68px;
}

.ticker {
  min-width: 190px;
}

.section {
  padding: 82px 0;
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading h2 {
  letter-spacing: -0.035em;
}

.grid {
  gap: 24px;
}

.post-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(13, 31, 37, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tp-shadow);
}

.post-card__image img {
  transition: transform 400ms ease;
}

.post-card:hover .post-card__image img {
  transform: scale(1.025);
}

.post-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.post-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  letter-spacing: -0.025em;
}

.post-card .read-more-link {
  margin-top: auto;
  padding-top: 18px;
}

.focus-card,
.newsletter {
  border-radius: 14px;
}

.focus-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.focus-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--tp-shadow);
}

.page-shell,
.archive-shell {
  width: 100%;
  margin: 0;
}

.page-shell {
  padding: 72px 0 96px;
}

.article-shell {
  width: var(--tp-article);
  margin: 0 auto;
}

.single-article {
  min-width: 0;
}

.entry-header {
  margin-bottom: 34px;
}

.entry-title,
.page-title {
  margin: 10px 0 0;
  color: var(--tp-heading);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  overflow-wrap: anywhere;
}

.article-meta {
  margin-bottom: 14px;
}

.single-featured-image {
  width: min(980px, calc(100vw - 48px));
  margin: 0 50% 42px;
  transform: translateX(-50%);
  border-radius: 16px;
  box-shadow: var(--tp-shadow);
}

.article-content {
  color: #314148;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.5vw, 1.16rem);
  line-height: 1.82;
}

.article-content > *:first-child {
  margin-top: 0;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  margin: 2em 0 0.65em;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.035em;
}

.article-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
}

.article-content h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content blockquote,
.article-content table,
.article-content figure {
  margin-top: 0;
  margin-bottom: 1.45em;
}

.article-content img {
  border-radius: 10px;
}

.article-content blockquote {
  padding: 16px 0 16px 24px;
  font-size: 1.18em;
  font-style: italic;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.9em;
}

.article-content th,
.article-content td {
  padding: 12px;
  border: 1px solid var(--tp-line);
  text-align: left;
}

.article-content .alignwide {
  width: min(980px, calc(100vw - 48px));
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.article-content .alignfull {
  width: 100vw;
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.post-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--tp-line);
}

.post-navigation > div:last-child {
  text-align: right;
}

.post-navigation a {
  display: block;
  color: var(--tp-heading);
  font-weight: 800;
}

.post-navigation span {
  display: block;
  margin-bottom: 4px;
  color: var(--tp-muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.archive-shell {
  width: var(--tp-wrap);
  margin: 0 auto;
  padding: 72px 0 96px;
}

.archive-header {
  max-width: 980px;
  margin-bottom: 42px;
}

.archive-header .eyebrow {
  color: var(--tp-accent);
}

.archive-header p,
.archive-description {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--tp-muted);
  font-size: 1.06rem;
}

.archive-description p {
  margin: 0;
}

.navigation.pagination {
  margin-top: 44px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.page-numbers {
  min-width: 42px;
  min-height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0 12px;
  border: 1px solid var(--tp-line);
  border-radius: 8px;
  background: var(--tp-surface);
  font-weight: 800;
}

.page-numbers.current,
.page-numbers:hover {
  border-color: var(--tp-accent);
  color: #fff;
  background: var(--tp-accent);
}

.empty-state {
  padding: 48px;
  border: 1px solid var(--tp-line);
  border-radius: 14px;
  background: var(--tp-surface);
  text-align: center;
}

.comments-area {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--tp-line);
}

.comments-area textarea,
.comments-area input:not([type="submit"]):not([type="checkbox"]) {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--tp-line-strong);
  border-radius: 8px;
  background: #fff;
}

.comments-area input[type="submit"] {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  color: #fff;
  background: var(--tp-accent);
  font-weight: 800;
  cursor: pointer;
}

.search-form {
  max-width: 560px;
  display: flex;
  margin: 24px auto 0;
}

.search-form label {
  flex: 1;
}

.search-field {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--tp-line-strong);
  border-radius: 9px 0 0 9px;
  padding: 0 14px;
  background: #fff;
}

.search-submit {
  min-height: 48px;
  border: 0;
  border-radius: 0 9px 9px 0;
  padding: 0 18px;
  color: #fff;
  background: var(--tp-accent);
  font-weight: 800;
  cursor: pointer;
}

.error-page {
  min-height: 58vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.error-page__content {
  max-width: 680px;
}

.error-page__code {
  display: block;
  color: var(--tp-accent);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .site-header__inner {
    min-height: 70px;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .main-navigation {
    order: 2;
  }

  .menu-toggle {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--tp-line-strong);
    border-radius: 8px;
    padding: 0 12px;
    color: var(--tp-heading);
    background: #fff;
    font-weight: 800;
    cursor: pointer;
  }

  .menu-toggle__icon,
  .menu-toggle__icon::before,
  .menu-toggle__icon::after {
    width: 17px;
    height: 2px;
    display: block;
    position: relative;
    background: currentColor;
  }

  .menu-toggle__icon::before,
  .menu-toggle__icon::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .menu-toggle__icon::before { top: -5px; }
  .menu-toggle__icon::after { top: 5px; }

  .main-navigation > ul {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 0;
    top: 100%;
    padding: 10px max(24px, calc((100vw - 1180px) / 2));
    border-bottom: 1px solid var(--tp-line);
    background: #fff;
    box-shadow: 0 14px 30px rgba(13, 31, 37, 0.08);
  }

  .main-navigation.is-open > ul {
    display: flex;
  }

  .main-navigation a {
    width: 100%;
  }

  .main-navigation .sub-menu {
    min-width: 0;
    position: static;
    margin: 2px 0 4px 14px;
    padding: 2px 0 2px 10px;
    border: 0;
    border-left: 2px solid var(--tp-line);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .main-navigation .sub-menu a {
    min-height: 34px;
    color: var(--tp-muted);
    font-size: 0.82rem;
  }

  .header-search {
    order: 3;
    width: 100%;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 28px;
  }

  .site-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --tp-wrap: min(100vw - 32px, 1180px);
    --tp-article: min(100vw - 32px, 980px);
  }

  .admin-bar .site-header {
    top: 46px;
  }

  .site-header {
    position: sticky;
  }

  .site-header__top-inner span:nth-child(2) {
    display: none;
  }

  .brand__tagline {
    display: none;
  }

  .main-navigation > ul {
    padding: 10px 16px 16px;
  }

  .hero--media {
    min-height: auto;
  }

  .hero__background {
    background-image:
      linear-gradient(180deg, rgba(5, 15, 19, 0.9), rgba(5, 15, 19, 0.8)),
      var(--hero-image);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding: 72px 0 76px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .session-card {
    max-width: 480px;
  }

  .grid--two,
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .section-heading,
  .newsletter,
  .site-footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .page-shell,
  .archive-shell {
    padding-top: 52px;
    padding-bottom: 72px;
  }

  .single-featured-image,
  .article-content .alignwide {
    width: calc(100vw - 32px);
  }

  .entry-title,
  .page-title {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .post-navigation {
    grid-template-columns: 1fr;
  }

  .post-navigation > div:last-child {
    text-align: left;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
  }
}

/* Topic and prop firm pages */
.topic-page,
.firm-page {
  background: #f7f9f9;
}

.topic-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 85% 25%, rgba(57, 199, 137, 0.2), transparent 26%),
    linear-gradient(125deg, #08171a 0%, #102a2a 58%, #0b6b54 140%);
}

.topic-hero::after {
  content: "";
  width: 420px;
  height: 420px;
  position: absolute;
  right: -120px;
  bottom: -270px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.025), 0 0 0 120px rgba(255, 255, 255, 0.02);
}

.topic-hero__inner {
  width: var(--tp-wrap);
  min-height: 420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 1;
  padding: 72px 0;
}

.topic-hero .eyebrow,
.firm-hero .eyebrow {
  color: #70e2ad;
}

.topic-hero h1,
.firm-hero h1 {
  margin: 12px 0 18px;
  color: #fff;
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.topic-hero p,
.firm-hero__content > p {
  max-width: 680px;
  margin: 0;
  color: #c8d5d7;
  font-size: 1.08rem;
}

.topic-symbol {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.025), 0 28px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
}

.topic-symbol strong {
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.topic-symbol span {
  margin-top: 9px;
  color: #9fb4b7;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.topic-feed,
.firm-feed,
.firm-rankings {
  background: #f7f9f9;
}

.topic-grid .post-card {
  background: #fff;
}

.market-directory {
  background: #f7f9f9;
}

.market-directory__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.market-directory__card {
  min-height: 290px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--tp-line);
  border-radius: 16px;
  background: #fff;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.market-directory__card:hover {
  border-color: #afc8c1;
  color: inherit;
  box-shadow: 0 18px 44px rgba(19, 48, 43, 0.08);
  transform: translateY(-3px);
}

.market-directory__card > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--tp-accent);
  font-size: 0.82rem;
  font-weight: 900;
}

.market-directory__card h2 {
  margin: 28px 0 8px;
  color: var(--tp-heading);
  font-size: 1.7rem;
}

.market-directory__card p {
  margin: 0;
  color: var(--tp-muted);
}

.market-directory__card strong {
  margin-top: auto;
  padding-top: 28px;
  color: var(--tp-accent);
  font-size: 0.84rem;
}

.topic-empty {
  min-height: 310px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 42px;
  border: 1px dashed var(--tp-line-strong);
  border-radius: 16px;
  text-align: center;
  background: #fff;
}

.topic-empty > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--tp-accent);
  font-size: 1.2rem;
  font-weight: 900;
}

.topic-empty h2 {
  margin: 0 0 8px;
  color: var(--tp-heading);
}

.topic-empty p {
  max-width: 570px;
  margin: 0;
  color: var(--tp-muted);
}

.firm-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 76% 22%, rgba(57, 199, 137, 0.2), transparent 25%),
    linear-gradient(125deg, #071417, #102328 62%, #123b34);
}

.firm-hero__inner {
  width: var(--tp-wrap);
  min-height: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 80px;
  padding: 78px 0;
}

.firm-hero__content .button {
  margin-top: 28px;
}

.firm-hero__checks span::before {
  content: "";
  width: 8px;
  height: 4px;
  position: absolute;
  left: 2px;
  top: 17px;
  border-bottom: 2px solid #70e2ad;
  border-left: 2px solid #70e2ad;
  transform: rotate(-45deg);
}

.prop-review-grid {
  display: grid;
  gap: 15px;
}

.prop-review-card {
  --review-accent: #2ee6a6;
  --review-accent-dark: #087856;
  --review-tint: rgba(46, 230, 166, 0.08);
  min-height: 205px;
  display: grid;
  grid-template-columns: 185px minmax(0, 1fr) 260px;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--review-accent) 38%, #26383e);
  border-radius: 18px;
  background: linear-gradient(135deg, #101b20, #0b1418 62%, #0d171b);
  box-shadow: 0 14px 35px rgba(2, 10, 13, 0.24), 0 0 20px color-mix(in srgb, var(--review-accent) 6%, transparent);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.prop-review-card::before {
  content: "";
  width: 5px;
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  background: var(--review-accent);
  box-shadow: 4px 0 18px color-mix(in srgb, var(--review-accent) 24%, transparent);
}

.prop-review-card::after {
  content: "";
  width: 180px;
  height: 180px;
  position: absolute;
  z-index: 0;
  right: -90px;
  top: -110px;
  border-radius: 50%;
  background: var(--review-accent);
  filter: blur(55px);
  opacity: 0.05;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.prop-review-card--2 {
  --review-accent: #4ea6ff;
  --review-accent-dark: #185b9d;
  --review-tint: rgba(78, 166, 255, 0.08);
}

.prop-review-card--3 {
  --review-accent: #b788ff;
  --review-accent-dark: #7045ae;
  --review-tint: rgba(183, 136, 255, 0.08);
}

.prop-review-card--4 {
  --review-accent: #ffad52;
  --review-accent-dark: #a75d16;
  --review-tint: rgba(255, 173, 82, 0.08);
}

.prop-review-card:hover {
  border-color: var(--review-accent);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.4), 0 0 32px color-mix(in srgb, var(--review-accent) 24%, transparent), inset 0 0 28px color-mix(in srgb, var(--review-accent) 4%, transparent);
  transform: translateY(-4px) scale(1.002);
}

.prop-review-card:hover::after {
  opacity: 0.14;
  transform: scale(1.35);
}

.prop-review-card__identity {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
  padding: 20px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, color-mix(in srgb, var(--review-accent) 22%, transparent), transparent 42%),
    linear-gradient(145deg, #142229, #0d171b);
}

.prop-review-card__logo {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg, var(--review-accent), var(--review-accent-dark));
  border: 1px solid color-mix(in srgb, var(--review-accent) 70%, #fff);
  box-shadow: 0 0 22px color-mix(in srgb, var(--review-accent) 38%, transparent), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  font-size: 1rem;
  font-weight: 900;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.prop-review-card:hover .prop-review-card__logo {
  box-shadow: 0 0 34px color-mix(in srgb, var(--review-accent) 65%, transparent), inset 0 1px 0 rgba(255, 255, 255, 0.32);
  transform: translateY(-2px) rotate(-2deg);
}

.prop-review-card__name > span {
  display: block;
  margin-top: 11px;
  color: var(--review-accent);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.prop-review-card__name h3 {
  margin: 4px 0 0;
  color: #f4f9fa;
  font-size: 1.35rem;
  line-height: 1.1;
}

.prop-review-card__score {
  min-width: 86px;
  min-height: 45px;
  display: grid;
  place-content: center;
  margin-top: 11px;
  padding: 7px 12px;
  border: 1px solid color-mix(in srgb, var(--review-accent) 48%, transparent);
  border-radius: 999px;
  background: rgba(4, 13, 17, 0.72);
  box-shadow: 0 0 16px color-mix(in srgb, var(--review-accent) 12%, transparent), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.prop-review-card:hover .prop-review-card__score {
  background: rgba(5, 16, 20, 0.95);
  box-shadow: 0 0 24px color-mix(in srgb, var(--review-accent) 36%, transparent);
  transform: translateY(-1px);
}

.prop-review-card__score strong,
.prop-review-card__score span {
  display: block;
}

.prop-review-card__score strong {
  color: var(--review-accent);
  font-size: 1.35rem;
  line-height: 1;
}

.prop-review-card__score span {
  margin-top: 4px;
  color: #9fb0b6;
  font-size: 0.68rem;
  font-weight: 800;
}

.prop-review-card__main {
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
  padding: 22px 26px;
}

.prop-review-card__summary {
  margin: 0 0 13px;
  color: #c7d3d6;
  font-size: 0.88rem;
}

.prop-review-card__facts {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  background: transparent;
}

.prop-review-card__facts li {
  min-height: 48px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8px 9px 8px 25px;
  border: 1px solid color-mix(in srgb, var(--review-accent) 24%, #29383e);
  border-radius: 9px;
  color: #e8f0f1;
  background: linear-gradient(145deg, var(--review-tint), rgba(255, 255, 255, 0.025));
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
}

.prop-review-card__facts li::before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  left: 11px;
  border-radius: 50%;
  background: var(--review-accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--review-accent) 12%, transparent);
  transform: translateY(-50%);
}

.prop-review-card__notes {
  padding: 0;
}

.prop-review-card__notes p {
  margin: 0;
  padding: 9px 11px;
  border-radius: 10px;
  color: #bcc9cc;
  background: rgba(3, 12, 15, 0.48);
  font-size: 0.76rem;
  line-height: 1.4;
}

.prop-review-card__notes p + p {
  margin-top: 7px;
  border: 1px solid rgba(255, 173, 82, 0.25);
  background: rgba(255, 173, 82, 0.055);
}

.prop-review-card__notes p:first-child {
  border: 1px solid color-mix(in srgb, var(--review-accent) 28%, #29383e);
  background: var(--review-tint);
}

.prop-review-card__notes strong {
  display: block;
  margin-bottom: 2px;
  color: var(--review-accent);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.prop-review-card__footer {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.prop-review-card__footer a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--review-accent);
  border-radius: 8px;
  color: var(--review-accent);
  font-size: 0.72rem;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  font-weight: 900;
}

.prop-review-card__footer a:hover {
  color: #fff;
  background: var(--review-accent);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--review-accent) 23%, transparent);
  transform: translateY(-1px);
}

.prop-review-card__footer a:last-child {
  color: #aebdc1;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.025);
}

.prop-review-card__footer a:last-child:hover {
  color: #fff;
  border-color: color-mix(in srgb, var(--review-accent) 50%, transparent);
  background: color-mix(in srgb, var(--review-accent) 12%, #101b20);
}

.prop-review-card__verdict {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  padding: 20px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, var(--review-tint), rgba(3, 11, 14, 0.42));
}

.research-note {
  margin: 24px 0 0;
  padding: 15px 18px;
  border-left: 3px solid var(--tp-accent);
  color: var(--tp-muted);
  background: #fff;
  font-size: 0.8rem;
}

.firm-hero__inner--centered {
  min-height: 510px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.firm-hero__inner--centered .firm-hero__content > p {
  margin-right: auto;
  margin-left: auto;
}

.firm-hero__checks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 28px;
}

.firm-hero__checks span {
  position: relative;
  padding-left: 22px;
  color: #e2ecec;
  font-size: 0.88rem;
  font-weight: 800;
}

.firm-hero__checks span::before {
  top: 6px;
}

.ranking-intro {
  border-bottom: 1px solid var(--tp-line);
  background: #fff;
}

.ranking-intro__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ranking-intro__grid > div {
  padding: 24px;
  border-right: 1px solid var(--tp-line);
  text-align: center;
}

.ranking-intro__grid > div:last-child {
  border-right: 0;
}

.ranking-intro strong,
.ranking-intro span {
  display: block;
}

.ranking-intro strong {
  color: var(--tp-heading);
}

.ranking-intro span {
  margin-top: 3px;
  color: var(--tp-muted);
  font-size: 0.8rem;
}

.firm-ranking-list {
  display: grid;
  gap: 16px;
}

.firm-ranking-card {
  --firm-accent: #2ee6a6;
  --firm-accent-dark: #087856;
  --firm-tint: rgba(46, 230, 166, 0.08);
  min-height: 180px;
  display: grid;
  grid-template-columns: 90px 190px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 18px 22px 18px 0;
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--firm-accent) 36%, #26383e);
  border-radius: 17px;
  background: linear-gradient(135deg, #101b20, #0a1317 64%, #0d171b);
  box-shadow: 0 14px 35px rgba(2, 10, 13, 0.24), 0 0 18px color-mix(in srgb, var(--firm-accent) 5%, transparent);
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.firm-ranking-card::before {
  content: "";
  width: 5px;
  position: absolute;
  z-index: 3;
  inset: 0 auto 0 0;
  background: var(--firm-accent);
  box-shadow: 4px 0 20px color-mix(in srgb, var(--firm-accent) 30%, transparent);
}

.firm-ranking-card::after {
  content: "";
  width: 190px;
  height: 190px;
  position: absolute;
  z-index: 0;
  top: -125px;
  right: -80px;
  border-radius: 50%;
  background: var(--firm-accent);
  filter: blur(58px);
  opacity: 0.06;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.firm-ranking-card--2 {
  --firm-accent: #4ea6ff;
  --firm-accent-dark: #185b9d;
  --firm-tint: rgba(78, 166, 255, 0.08);
}

.firm-ranking-card--3 {
  --firm-accent: #b788ff;
  --firm-accent-dark: #7045ae;
  --firm-tint: rgba(183, 136, 255, 0.08);
}

.firm-ranking-card--4 {
  --firm-accent: #ffad52;
  --firm-accent-dark: #a75d16;
  --firm-tint: rgba(255, 173, 82, 0.08);
}

.firm-ranking-card:hover {
  border-color: var(--firm-accent);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.4), 0 0 32px color-mix(in srgb, var(--firm-accent) 24%, transparent), inset 0 0 28px color-mix(in srgb, var(--firm-accent) 4%, transparent);
  transform: translateY(-4px) scale(1.002);
}

.firm-ranking-card:hover::after {
  opacity: 0.15;
  transform: scale(1.35);
}

.firm-ranking-card__rank {
  height: 100%;
  display: grid;
  place-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, var(--firm-tint), rgba(3, 11, 14, 0.4));
}

.firm-ranking-card__rank span {
  color: #8fa2a8;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.firm-ranking-card__rank strong {
  color: var(--firm-accent);
  font-size: 2rem;
  line-height: 1.1;
  text-shadow: 0 0 18px color-mix(in srgb, var(--firm-accent) 55%, transparent);
}

.firm-ranking-card__image {
  display: block;
  overflow: hidden;
  border-radius: 9px;
  background: var(--tp-surface-muted);
}

.firm-ranking-card__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.firm-ranking-card__badge {
  color: var(--tp-accent);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.firm-ranking-card__content h3 {
  margin: 5px 0 7px;
  color: var(--tp-heading);
  font-size: 1.32rem;
  line-height: 1.15;
}

.firm-ranking-card__content p {
  margin: 0;
  color: #bdc9cc;
  font-size: 0.9rem;
}

.firm-ranking-card__content {
  position: relative;
  z-index: 1;
}

.firm-ranking-card__action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  position: relative;
  z-index: 1;
  border: 1px solid var(--firm-accent);
  border-radius: 8px;
  color: var(--firm-accent);
  background: rgba(3, 12, 15, 0.44);
  font-size: 0.8rem;
  font-weight: 900;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.firm-ranking-card__action:hover {
  color: #fff;
  background: var(--firm-accent);
  box-shadow: 0 0 24px color-mix(in srgb, var(--firm-accent) 38%, transparent);
  transform: translateY(-2px);
}

.firm-ranking-card--data {
  grid-template-columns: 90px 230px minmax(0, 1fr) auto;
  padding-top: 24px;
  padding-bottom: 24px;
}

.firm-ranking-card__identity {
  display: flex;
  align-items: center;
  gap: 13px;
  position: relative;
  z-index: 1;
}

.firm-ranking-card__identity > span {
  width: 48px;
  height: 48px;
  display: grid;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  border: 1px solid color-mix(in srgb, var(--firm-accent) 70%, #fff);
  background: linear-gradient(145deg, var(--firm-accent), var(--firm-accent-dark));
  box-shadow: 0 0 20px color-mix(in srgb, var(--firm-accent) 35%, transparent);
  font-size: 0.76rem;
  font-weight: 900;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.firm-ranking-card:hover .firm-ranking-card__identity > span {
  box-shadow: 0 0 32px color-mix(in srgb, var(--firm-accent) 62%, transparent);
  transform: translateY(-2px) rotate(-2deg);
}

.firm-ranking-card__identity small {
  color: var(--firm-accent);
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
}

.firm-ranking-card__identity h3 {
  margin: 3px 0 0;
  color: #f4f9fa;
  font-size: 1.35rem;
}

.firm-data-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.firm-data-points > span {
  padding: 9px 10px;
  border-radius: 7px;
  border: 1px solid color-mix(in srgb, var(--firm-accent) 23%, #29383e);
  color: #e8f0f1;
  background: linear-gradient(145deg, var(--firm-tint), rgba(255, 255, 255, 0.025));
  font-size: 0.72rem;
  font-weight: 800;
}

.firm-data-points small {
  display: block;
  margin-bottom: 2px;
  color: var(--firm-accent);
  font-size: 0.58rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.firm-ranking-card__caution {
  margin-top: 12px !important;
  padding: 8px 10px;
  border: 1px solid rgba(255, 173, 82, 0.2);
  border-radius: 7px;
  background: rgba(255, 173, 82, 0.05);
  font-size: 0.76rem !important;
}

.firm-ranking-card__caution strong {
  color: #ffbd73;
}

/* Dark prop-firm dashboards */
.firm-page--dark {
  min-height: 70vh;
  color: #dbe5e7;
  background:
    radial-gradient(circle at 10% 8%, rgba(126, 53, 190, 0.2), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(34, 111, 190, 0.13), transparent 26%),
    linear-gradient(145deg, #10091a 0%, #090d12 42%, #0b1115 100%);
}

.firm-page--dark .firm-feed,
.firm-page--dark .firm-rankings {
  background: transparent;
}

.firm-page--dark .firm-feed,
.firm-page--dark .firm-rankings {
  padding-top: 48px;
  padding-bottom: 68px;
}

.firm-dashboard-heading {
  min-height: 104px;
  align-items: center;
  margin-bottom: 20px;
  padding: 20px 24px;
  border: 1px solid rgba(203, 74, 255, 0.42);
  border-radius: 18px;
  background: linear-gradient(125deg, rgba(52, 24, 66, 0.88), rgba(20, 17, 29, 0.92));
  box-shadow: 0 0 34px rgba(171, 52, 226, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.firm-dashboard-heading > div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  column-gap: 13px;
}

.firm-dashboard-heading .eyebrow,
.firm-dashboard-heading h2 {
  grid-column: 2;
}

.firm-dashboard-heading h2 {
  margin-top: 2px;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.firm-dashboard-heading p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #aebbc0;
  font-size: 0.78rem;
}

.firm-dashboard-heading__icon {
  width: 44px;
  height: 44px;
  display: grid;
  grid-row: 1 / span 2;
  place-items: center;
  border: 1px solid rgba(239, 76, 218, 0.55);
  border-radius: 12px;
  color: #ff5cd8;
  background: rgba(255, 63, 211, 0.08);
  box-shadow: 0 0 22px rgba(255, 63, 211, 0.2);
}

.firm-dashboard-heading__icon--trophy {
  color: #ffad52;
  border-color: rgba(255, 119, 55, 0.55);
  background: rgba(255, 119, 55, 0.08);
  box-shadow: 0 0 22px rgba(255, 119, 55, 0.2);
}

.firm-dashboard-heading__icon svg,
.rank-trophy svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.live-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: #2ee6a6;
  box-shadow: 0 0 12px #2ee6a6;
}

.firm-page--dark .ranking-intro {
  padding: 24px 0 0;
  border: 0;
  background: transparent;
}

.firm-page--dark .ranking-intro__grid {
  overflow: hidden;
  border: 1px solid rgba(171, 76, 232, 0.35);
  border-radius: 15px;
  background: rgba(16, 14, 23, 0.8);
  box-shadow: 0 0 28px rgba(130, 49, 183, 0.08);
}

.firm-page--dark .ranking-intro__grid > div {
  position: relative;
  padding: 17px 20px 17px 48px;
  border-color: rgba(255, 255, 255, 0.075);
  text-align: left;
}

.firm-page--dark .ranking-intro__grid > div::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 16px;
  border: 1px solid rgba(183, 136, 255, 0.45);
  border-radius: 7px;
  background: radial-gradient(circle, #b788ff 0 3px, rgba(183, 136, 255, 0.09) 4px 100%);
  box-shadow: 0 0 13px rgba(183, 136, 255, 0.16);
  transform: translateY(-50%);
}

.firm-page--dark .ranking-intro strong {
  color: #f4f7f8;
  font-size: 0.83rem;
}

.firm-page--dark .ranking-intro span {
  color: #819198;
  font-size: 0.7rem;
}

.firm-page--dark .research-note {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid #b788ff;
  border-radius: 0 9px 9px 0;
  color: #87969c;
  background: rgba(7, 13, 17, 0.72);
}

.prop-review-card__logo {
  overflow: hidden;
  padding: 4px;
}

.prop-review-card__logo img,
.firm-ranking-card__identity > span img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  object-fit: cover;
}

.rating-stars,
.mini-rating {
  color: var(--review-accent);
  letter-spacing: 0.02em;
  text-shadow: 0 0 8px currentColor;
}

.mini-rating {
  display: block;
  margin-top: 4px;
  color: var(--firm-accent);
  font-size: 0.6rem;
}

.rank-trophy {
  width: 28px;
  height: 28px;
  display: grid;
  margin: 0 auto 4px;
  place-items: center;
  color: var(--firm-accent);
  filter: drop-shadow(0 0 7px color-mix(in srgb, var(--firm-accent) 58%, transparent));
}

.firm-ranking-card__identity > span {
  overflow: hidden;
  padding: 3px;
}

.firm-ranking-card--data {
  min-height: 158px;
  padding-top: 17px;
  padding-bottom: 17px;
}

.firm-ranking-card--data .firm-ranking-card__content > p:first-child {
  font-size: 0.8rem;
  line-height: 1.4;
}

.firm-ranking-card--data .firm-data-points {
  margin-top: 10px;
}

.firm-ranking-card--data .firm-ranking-card__caution {
  margin-top: 8px !important;
  padding: 6px 9px;
}

@media (max-width: 980px) {
  .topic-hero__inner,
  .firm-hero__inner {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 38px;
  }

  .firm-ranking-card {
    grid-template-columns: 72px 150px minmax(0, 1fr);
  }

  .firm-ranking-card--data {
    grid-template-columns: 72px 190px minmax(0, 1fr);
  }

  .firm-data-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .firm-ranking-card__action {
    grid-column: 3;
    justify-self: start;
  }

  .prop-review-card {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .prop-review-card__verdict {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 210px;
    align-items: center;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 0;
  }

  .prop-review-card__footer {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }

  .prop-review-card__facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topic-hero__inner,
  .firm-hero__inner {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 64px 0;
  }

  .topic-symbol {
    width: 150px;
  }

  .firm-hero h1,
  .topic-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.3rem);
  }

  .ranking-intro__grid,
  .market-directory__grid,
  .prop-review-grid {
    grid-template-columns: 1fr;
  }

  .ranking-intro__grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--tp-line);
  }

  .ranking-intro__grid > div:last-child {
    border-bottom: 0;
  }

  .firm-dashboard-heading {
    min-height: 0;
    padding: 18px;
  }

  .firm-dashboard-heading > div {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .firm-dashboard-heading__icon {
    width: 38px;
    height: 38px;
  }

  .firm-dashboard-heading p {
    margin-top: 10px;
  }

  .firm-page--dark .ranking-intro__grid > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  }

  .firm-ranking-card {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
  }

  .firm-ranking-card--data {
    min-height: 0;
  }

  .firm-ranking-card__rank {
    grid-row: 1 / span 3;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .firm-ranking-card__image {
    width: 100%;
  }

  .firm-ranking-card__content,
  .firm-ranking-card__identity,
  .firm-ranking-card__action {
    grid-column: 2;
  }

  .firm-data-points {
    grid-template-columns: 1fr 1fr;
  }

  .prop-review-card {
    grid-template-columns: 1fr;
  }

  .prop-review-card__identity {
    padding: 24px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .prop-review-card__logo {
    width: 62px;
    height: 62px;
  }

  .prop-review-card__main {
    padding: 24px 20px;
  }

  .prop-review-card__verdict {
    grid-column: auto;
    display: flex;
    padding: 24px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .prop-review-card__footer {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .prop-review-card__facts {
    grid-template-columns: 1fr;
    padding: 0;
  }
}

/* Unified dark theme */
:root {
  --tp-bg: #080b11;
  --tp-surface: #10151d;
  --tp-surface-muted: #151c26;
  --tp-text: #d8e1e5;
  --tp-heading: #f7f9fb;
  --tp-muted: #8c9aa3;
  --tp-line: rgba(164, 123, 211, 0.18);
  --tp-line-strong: rgba(184, 132, 244, 0.34);
  --tp-accent: #42e8ba;
  --tp-accent-dark: #18a981;
  --tp-negative: #ff6f91;
  --tp-dark: #070a0f;
  --tp-violet: #b788ff;
  --tp-magenta: #ff5bd6;
  --tp-blue: #50a9ff;
  --tp-glow: 0 18px 48px rgba(0, 0, 0, 0.34);
  color-scheme: dark;
}

html {
  background: #07090e;
}

body {
  color: var(--tp-text);
  background:
    radial-gradient(circle at 8% 4%, rgba(117, 50, 177, 0.13), transparent 25%),
    radial-gradient(circle at 92% 14%, rgba(28, 121, 155, 0.09), transparent 24%),
    linear-gradient(145deg, #090b12, #070a0f 48%, #0a0e14);
  background-attachment: fixed;
}

::selection {
  color: #06100d;
  background: var(--tp-accent);
}

a:hover {
  color: var(--tp-accent);
}

.site-header {
  border-bottom: 1px solid rgba(183, 136, 255, 0.14);
  background: rgba(8, 11, 17, 0.88);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(7, 10, 15, 0.96);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45), 0 0 22px rgba(102, 63, 170, 0.08);
}

.site-header__top {
  border-color: rgba(255, 255, 255, 0.06);
  background: linear-gradient(90deg, #10091b, #080d13 52%, #071410);
}

.site-header__top-inner {
  color: #9baab0;
}

.site-header__top strong {
  color: #42e8ba;
  text-shadow: 0 0 12px rgba(66, 232, 186, 0.35);
}

.brand {
  color: #f8fbfc;
}

.brand__mark {
  border-color: rgba(66, 232, 186, 0.38);
  color: var(--tp-accent);
  background: linear-gradient(145deg, rgba(66, 232, 186, 0.13), rgba(183, 136, 255, 0.07));
  box-shadow: 0 0 20px rgba(66, 232, 186, 0.13);
}

.brand__tagline {
  color: #7f9098;
}

.main-navigation a {
  color: #bac6cb;
}

.main-navigation a:hover,
.main-navigation a:focus-visible,
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a {
  color: #fff;
  background: linear-gradient(135deg, rgba(66, 232, 186, 0.1), rgba(183, 136, 255, 0.1));
  box-shadow: inset 0 0 0 1px rgba(183, 136, 255, 0.14), 0 0 16px rgba(66, 232, 186, 0.05);
}

.main-navigation .sub-menu {
  border-color: rgba(183, 136, 255, 0.28);
  background: rgba(12, 15, 22, 0.98);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55), 0 0 25px rgba(183, 136, 255, 0.08);
}

.header-search {
  border-color: rgba(183, 136, 255, 0.25);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.header-search:focus-within {
  border-color: var(--tp-accent);
  box-shadow: 0 0 20px rgba(66, 232, 186, 0.12);
}

.header-search input,
.search-field,
.comments-area textarea,
.comments-area input:not([type="submit"]):not([type="checkbox"]) {
  color: #edf3f5;
  background: rgba(255, 255, 255, 0.035);
}

.header-search input::placeholder,
.search-field::placeholder,
.comments-area textarea::placeholder,
.comments-area input::placeholder {
  color: #68777e;
}

.header-search button,
.search-submit,
.comments-area input[type="submit"] {
  border-color: rgba(66, 232, 186, 0.45);
  color: #03110d;
  background: linear-gradient(135deg, #42e8ba, #26c99c);
  box-shadow: 0 0 18px rgba(66, 232, 186, 0.16);
}

.header-search button:hover,
.search-submit:hover,
.comments-area input[type="submit"]:hover {
  color: #fff;
  background: linear-gradient(135deg, #b788ff, #8b55d1);
  box-shadow: 0 0 24px rgba(183, 136, 255, 0.24);
}

.hero,
.hero--media {
  background: #070b10;
}

.hero__background {
  background-image:
    linear-gradient(90deg, rgba(5, 7, 12, 0.98) 0%, rgba(7, 10, 16, 0.92) 43%, rgba(24, 10, 37, 0.5) 76%, rgba(6, 12, 14, 0.42) 100%),
    linear-gradient(180deg, rgba(5, 7, 11, 0.05), rgba(5, 8, 13, 0.82)),
    var(--hero-image);
}

.hero::after {
  background: linear-gradient(180deg, transparent, #090c12);
}

.hero h1 {
  text-shadow: 0 10px 42px rgba(0, 0, 0, 0.58), 0 0 35px rgba(183, 136, 255, 0.06);
}

.hero__lede {
  color: #b8c5ca;
}

.button {
  border-color: rgba(183, 136, 255, 0.32);
  color: #e9f0f2;
  background: rgba(255, 255, 255, 0.035);
}

.button--primary {
  border-color: #42e8ba;
  color: #04110d;
  background: linear-gradient(135deg, #42e8ba, #25c99b);
  box-shadow: 0 0 22px rgba(66, 232, 186, 0.2);
}

.button--primary:hover {
  color: #fff;
  border-color: #b788ff;
  background: linear-gradient(135deg, #b788ff, #8550cf);
  box-shadow: 0 0 30px rgba(183, 136, 255, 0.28);
  transform: translateY(-2px);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.16);
  color: #e6edef;
  background: rgba(13, 17, 24, 0.7);
}

.session-card,
.session-card--glass {
  border-color: rgba(183, 136, 255, 0.25);
  color: var(--tp-text);
  background: linear-gradient(145deg, rgba(22, 18, 31, 0.94), rgba(8, 15, 19, 0.94));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.46), 0 0 25px rgba(183, 136, 255, 0.08);
}

.session-card__header,
.session-card li,
.session-card__dynamic {
  border-color: rgba(255, 255, 255, 0.075);
}

.session-card__header span {
  color: #fff;
}

.session-card__header strong,
.session-card li,
.session-card__highlight,
.session-card__topcat {
  color: #a7b5ba;
}

.market-strip {
  border-color: rgba(183, 136, 255, 0.14);
  background: #080c11;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.ticker {
  border-color: rgba(255, 255, 255, 0.075);
}

.section--white,
.section--bordered,
.topic-page,
.firm-page,
.topic-feed,
.firm-feed,
.firm-rankings,
.market-directory {
  color: var(--tp-text);
  background: transparent;
}

.section--bordered {
  border-color: rgba(183, 136, 255, 0.12);
  background: rgba(255, 255, 255, 0.012);
}

.section-heading {
  border-color: rgba(183, 136, 255, 0.18);
}

.section-heading h2,
.page-title,
.entry-title,
.archive-header h1,
.empty-state h2 {
  color: #f7f9fb;
}

.section-heading p,
.archive-header p,
.archive-description,
.empty-state p,
.error-page p {
  color: #8f9da4;
}

.eyebrow {
  color: #42e8ba;
  text-shadow: 0 0 12px rgba(66, 232, 186, 0.22);
}

.post-card,
.focus-card,
.insight-panel,
.market-directory__card,
.topic-empty,
.empty-state {
  border-color: rgba(183, 136, 255, 0.2);
  color: var(--tp-text);
  background:
    radial-gradient(circle at 100% 0, rgba(183, 136, 255, 0.07), transparent 32%),
    linear-gradient(145deg, #111720, #0c1118);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.post-card:hover,
.focus-card:hover,
.insight-panel:hover,
.market-directory__card:hover {
  border-color: rgba(66, 232, 186, 0.5);
  color: inherit;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.38), 0 0 25px rgba(66, 232, 186, 0.08);
  transform: translateY(-4px);
}

.post-card__image,
.single-featured-image {
  border-color: rgba(255, 255, 255, 0.075);
  background: #0b1017;
}

.post-card__image img {
  filter: saturate(0.88) brightness(0.82);
}

.post-card:hover .post-card__image img {
  filter: saturate(1.08) brightness(0.95);
}

.post-card h3,
.focus-card h3,
.insight-panel h3,
.market-directory__card h2,
.topic-empty h2 {
  color: #f3f7f8;
}

.post-card p,
.focus-card p,
.insight-panel p,
.market-directory__card p,
.topic-empty p {
  color: #93a2a9;
}

.post-card__meta,
.article-meta {
  color: #7f9098;
}

.post-card__meta a,
.article-meta a,
.read-more-link,
.market-directory__card strong {
  color: var(--tp-accent);
}

.focus-card__label,
.focus-card__meta span,
.category-cloud a,
.category-cloud span {
  border-color: rgba(183, 136, 255, 0.23);
  color: #cbd5d9;
  background: rgba(183, 136, 255, 0.065);
}

.category-cloud a:hover {
  border-color: var(--tp-accent);
  color: #fff;
  background: rgba(66, 232, 186, 0.1);
  box-shadow: 0 0 18px rgba(66, 232, 186, 0.1);
}

.newsletter {
  border-color: rgba(255, 91, 214, 0.3);
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 91, 214, 0.13), transparent 30%),
    linear-gradient(125deg, #181020, #0b1218);
  box-shadow: 0 0 35px rgba(255, 91, 214, 0.07);
}

.newsletter .button--primary {
  border-color: var(--tp-magenta);
  color: #fff;
  background: linear-gradient(135deg, #ff5bd6, #9c55e7);
}

.page-shell,
.archive-shell {
  color: var(--tp-text);
}

.article-shell {
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid rgba(183, 136, 255, 0.2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(183, 136, 255, 0.07), transparent 30%),
    linear-gradient(145deg, rgba(17, 22, 31, 0.96), rgba(9, 14, 20, 0.96));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.article-content {
  color: #bac6ca;
}

.article-content h2,
.article-content h3,
.article-content h4,
.article-content blockquote,
.post-navigation a {
  color: #f3f7f8;
}

.article-content blockquote {
  border-color: var(--tp-violet);
  background: rgba(183, 136, 255, 0.055);
}

.article-content th,
.article-content td {
  border-color: rgba(183, 136, 255, 0.18);
}

.article-content th {
  color: #fff;
  background: rgba(183, 136, 255, 0.08);
}

.post-navigation,
.comments-area {
  border-color: rgba(183, 136, 255, 0.18);
}

.post-navigation > div {
  padding: 16px;
  border: 1px solid rgba(183, 136, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.page-numbers {
  border-color: rgba(183, 136, 255, 0.24);
  color: #bdc9cd;
  background: #10161e;
}

.page-numbers.current,
.page-numbers:hover {
  border-color: var(--tp-violet);
  color: #fff;
  background: linear-gradient(135deg, #b788ff, #8150ca);
  box-shadow: 0 0 20px rgba(183, 136, 255, 0.2);
}

.search-field,
.comments-area textarea,
.comments-area input:not([type="submit"]):not([type="checkbox"]) {
  border-color: rgba(183, 136, 255, 0.25);
}

.search-field:focus,
.comments-area textarea:focus,
.comments-area input:focus {
  border-color: var(--tp-accent);
  outline: 0;
  box-shadow: 0 0 20px rgba(66, 232, 186, 0.1);
}

.topic-hero,
.firm-hero {
  border-bottom: 1px solid rgba(183, 136, 255, 0.16);
  background:
    radial-gradient(circle at 82% 22%, rgba(183, 136, 255, 0.2), transparent 28%),
    radial-gradient(circle at 65% 70%, rgba(66, 232, 186, 0.08), transparent 28%),
    linear-gradient(125deg, #090c12, #151020 58%, #09201a 145%);
}

.topic-symbol {
  border-color: rgba(66, 232, 186, 0.28);
  background: rgba(7, 12, 17, 0.58);
  box-shadow: inset 0 0 0 12px rgba(183, 136, 255, 0.025), 0 0 42px rgba(66, 232, 186, 0.12);
}

.topic-symbol strong {
  color: var(--tp-accent);
  text-shadow: 0 0 24px rgba(66, 232, 186, 0.3);
}

.market-directory__card > span,
.topic-empty > span {
  color: #05110e;
  background: linear-gradient(145deg, #42e8ba, #21b98f);
  box-shadow: 0 0 22px rgba(66, 232, 186, 0.18);
}

.site-footer {
  border-color: rgba(183, 136, 255, 0.16);
  background:
    radial-gradient(circle at 12% 10%, rgba(183, 136, 255, 0.08), transparent 28%),
    #070a0f;
}

.site-footer__bottom {
  border-color: rgba(255, 255, 255, 0.075);
}

.footer-column a:hover,
.footer-button:hover {
  color: var(--tp-accent);
}

.footer-button {
  border-color: rgba(66, 232, 186, 0.26);
  background: rgba(66, 232, 186, 0.045);
}

.error-page__code {
  color: var(--tp-magenta);
  text-shadow: 0 0 18px rgba(255, 91, 214, 0.28);
}

hr {
  border: 0;
  border-top: 1px solid rgba(183, 136, 255, 0.18);
}

code,
kbd,
pre {
  border: 1px solid rgba(183, 136, 255, 0.18);
  border-radius: 8px;
  color: #dce7e9;
  background: #080d13;
}

code,
kbd {
  padding: 0.15em 0.35em;
}

pre {
  overflow-x: auto;
  padding: 18px;
}

pre code {
  border: 0;
  padding: 0;
  background: transparent;
}

select,
input,
textarea {
  color-scheme: dark;
}

select {
  border: 1px solid rgba(183, 136, 255, 0.25);
  border-radius: 8px;
  color: #e6edef;
  background: #10161e;
}

.wp-caption,
.wp-block-table,
.wp-block-group.has-background {
  border-color: rgba(183, 136, 255, 0.18);
  color: var(--tp-text);
  background: #10161e !important;
}

.wp-caption-text,
.blocks-gallery-caption,
.wp-element-caption {
  color: #7f9098;
}

.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comment-body {
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(183, 136, 255, 0.17);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.comment-meta,
.comment-notes,
.logged-in-as {
  color: #7f9098;
  font-size: 0.82rem;
}

.comment-author .fn,
.comments-title,
.comment-reply-title {
  color: #f2f6f7;
}

.comment-reply-link {
  color: var(--tp-accent);
  font-size: 0.78rem;
  font-weight: 800;
}

@media (max-width: 980px) {
  .menu-toggle {
    border-color: rgba(183, 136, 255, 0.28);
    color: #eef3f4;
    background: rgba(255, 255, 255, 0.035);
  }

  .main-navigation > ul {
    border-color: rgba(183, 136, 255, 0.18);
    background: rgba(9, 12, 18, 0.98);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.48);
  }

  .main-navigation .sub-menu {
    border-left-color: rgba(183, 136, 255, 0.32);
    background: transparent;
    box-shadow: none;
  }
}

@media (max-width: 760px) {
  .article-shell {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .site-header {
    background: #080b11;
  }
}

/* Homepage trading dashboard hero */
.home .hero--media {
  min-height: 610px;
  isolation: isolate;
  border-bottom: 1px solid rgba(183, 136, 255, 0.18);
  background: #070a0f;
}

.home .hero--media::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(rgba(183, 136, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183, 136, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, #000, transparent 80%);
  pointer-events: none;
}

.home .hero__background {
  opacity: 0.34;
  background-image:
    linear-gradient(90deg, #070a0f 0%, rgba(7, 10, 15, 0.96) 38%, rgba(13, 8, 21, 0.8) 68%, rgba(7, 11, 15, 0.66) 100%),
    linear-gradient(180deg, rgba(7, 10, 15, 0.12), #070a0f),
    var(--hero-image);
  background-position: center;
  filter: saturate(0.7) contrast(1.08);
}

.home .hero::after {
  height: 130px;
  z-index: 0;
  background: linear-gradient(180deg, transparent, #080b11 92%);
}

.home .hero__inner {
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.72fr);
  gap: clamp(42px, 6vw, 82px);
  padding: 58px 0 72px;
}

.home .hero__content {
  max-width: 760px;
}

.hero__status {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border: 1px solid rgba(66, 232, 186, 0.25);
  border-radius: 999px;
  color: #9eb1b6;
  background: rgba(66, 232, 186, 0.045);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(66, 232, 186, 0.06);
}

.hero__status > span,
.hero-dashboard__live i {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
  background: #42e8ba;
  box-shadow: 0 0 12px #42e8ba;
  animation: hero-pulse 1.8s ease-in-out infinite;
}

.hero__status b,
.hero-dashboard__live b {
  font: inherit;
}

.hero__status.is-demo,
.hero-dashboard__live.is-demo {
  border-color: rgba(255, 173, 82, 0.28);
  color: #ffbd73;
  background: rgba(255, 173, 82, 0.055);
}

.hero__status.is-demo > span,
.hero-dashboard__live.is-demo i {
  background: #ffad52;
  box-shadow: 0 0 12px #ffad52;
}

.home .hero h1 {
  max-width: 760px;
  margin: 18px 0 20px;
  font-size: clamp(3rem, 5.7vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.home .hero h1 span {
  color: transparent;
  background: linear-gradient(90deg, #42e8ba 0%, #66d6ff 46%, #b788ff 92%);
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 0 18px rgba(66, 232, 186, 0.1));
}

.home .hero__lede {
  max-width: 590px;
  margin-bottom: 26px;
  color: #aebcc1;
  font-size: clamp(1rem, 1.45vw, 1.12rem);
}

.home .hero__actions {
  gap: 12px;
}

.home .hero__actions .button {
  min-height: 48px;
  padding: 0 19px;
  border-radius: 10px;
}

.home .hero__actions .button span {
  margin-left: 8px;
  transition: transform 180ms ease;
}

.home .hero__actions .button:hover span {
  transform: translateX(4px);
}

.hero__markets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 21px;
}

.hero__markets > span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  color: #829299;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.7rem;
  font-weight: 800;
}

.hero__market-dot {
  width: 6px;
  height: 6px;
  display: block;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 9px currentColor;
}

.hero__market-dot--green { color: #42e8ba; }
.hero__market-dot--blue { color: #50a9ff; }
.hero__market-dot--violet { color: #b788ff; }
.hero__market-dot--amber { color: #ffad52; }

.hero-dashboard {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(183, 136, 255, 0.3);
  border-radius: 20px;
  padding: 22px;
  background:
    radial-gradient(circle at 90% 0, rgba(183, 136, 255, 0.14), transparent 32%),
    linear-gradient(145deg, rgba(17, 22, 31, 0.96), rgba(7, 13, 18, 0.98));
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.54), 0 0 45px rgba(126, 75, 196, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  transform: perspective(1100px) rotateY(-2deg) rotateX(1deg);
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.hero-dashboard::before {
  content: "";
  height: 1px;
  position: absolute;
  inset: 0 16% auto;
  background: linear-gradient(90deg, transparent, #b788ff, transparent);
  box-shadow: 0 0 16px rgba(183, 136, 255, 0.5);
}

.hero-dashboard:hover {
  border-color: rgba(66, 232, 186, 0.44);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.58), 0 0 52px rgba(66, 232, 186, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transform: perspective(1100px) rotateY(0) rotateX(0) translateY(-4px);
}

.hero-dashboard__top,
.hero-dashboard__quote,
.hero-dashboard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-dashboard__label {
  display: block;
  color: #75868e;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-dashboard__top strong {
  display: block;
  margin-top: 3px;
  color: #f7fafb;
  font-size: 1rem;
}

.hero-dashboard__live {
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 9px;
  border: 1px solid rgba(66, 232, 186, 0.22);
  border-radius: 999px;
  color: #42e8ba;
  background: rgba(66, 232, 186, 0.055);
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-dashboard__quote {
  justify-content: flex-start;
  margin-top: 22px;
}

.hero-dashboard__quote strong {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.hero-dashboard__quote span {
  padding: 4px 8px;
  border-radius: 6px;
  color: #42e8ba;
  background: rgba(66, 232, 186, 0.08);
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-dashboard__quote span.is-negative,
.hero-dashboard__watchlist em.is-negative {
  color: #ff7693;
  background: rgba(255, 118, 147, 0.08);
}

.hero-dashboard__chart {
  height: 150px;
  margin: 12px -4px 8px;
}

.hero-dashboard__chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-dashboard__gridline {
  fill: none;
  stroke: rgba(255, 255, 255, 0.055);
  stroke-width: 1;
}

.hero-dashboard__area {
  fill: url(#hero-chart-fill);
}

.hero-dashboard__line {
  fill: none;
  stroke: #42e8ba;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(66, 232, 186, 0.6));
  stroke-dasharray: 700;
  animation: hero-chart-draw 1.5s ease-out both;
}

.hero-dashboard__chart circle {
  fill: #eafff9;
  stroke: #42e8ba;
  stroke-width: 3;
  filter: drop-shadow(0 0 7px #42e8ba);
}

.hero-dashboard__watchlist {
  display: grid;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-dashboard__watchlist > div {
  min-height: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 58px;
  align-items: center;
  gap: 10px;
  padding: 0 9px;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: border-color 160ms ease, background 160ms ease;
}

.hero-dashboard__watchlist > div:hover {
  border-color: rgba(183, 136, 255, 0.15);
  background: rgba(255, 255, 255, 0.025);
}

.hero-dashboard__watchlist span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-dashboard__watchlist b {
  color: #dce5e7;
  font-size: 0.75rem;
}

.hero-dashboard__watchlist strong {
  color: #b8c4c8;
  font-size: 0.72rem;
}

.hero-dashboard__watchlist em {
  color: #42e8ba;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
  text-align: right;
}

.hero-dashboard__symbol {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 900;
}

.hero-dashboard__symbol--btc { background: linear-gradient(145deg, #f59e0b, #b86d00); }
.hero-dashboard__symbol--fx { background: linear-gradient(145deg, #50a9ff, #2861a8); }
.hero-dashboard__symbol--gold { background: linear-gradient(145deg, #ffd166, #b27812); }

.hero-dashboard__footer {
  margin-top: 13px;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #65767e;
  font-size: 0.64rem;
}

.hero-dashboard__footer a {
  color: #b788ff;
  font-weight: 900;
}

@keyframes hero-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.82); }
}

@keyframes hero-chart-draw {
  from { stroke-dashoffset: 700; }
  to { stroke-dashoffset: 0; }
}

@media (max-width: 980px) {
  .home .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
    gap: 34px;
  }

  .home .hero h1 {
    font-size: clamp(2.8rem, 6.8vw, 4.45rem);
  }

  .hero-dashboard {
    padding: 18px;
    transform: none;
  }
}

@media (max-width: 760px) {
  .home .hero__inner {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 46px 0 62px;
  }

  .home .hero h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .hero-dashboard {
    width: 100%;
    max-width: 520px;
  }

  .hero-dashboard__chart {
    height: 125px;
  }
}

@media (max-width: 430px) {
  .home .hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.35rem);
  }

  .hero__markets {
    gap: 6px;
  }

  .hero-dashboard {
    padding: 16px;
    border-radius: 16px;
  }

  .hero-dashboard__watchlist > div {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .hero-dashboard__watchlist strong {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
