/*
Theme Name: Top Business Blog WP Accurate Customizer
Theme URI: https://example.com/
Author: ClickDo Conversion
Description: WordPress conversion of the Top Business Blog Next.js design with demo content, full Customizer design controls, mobile optimisation, dropdown menus, and #002970 brand styling.
Version: 2.8.7
Text Domain: top-business-blog
*/

:root {
  --brand: #002970;
  --brand-dark: #001438;
  --brand-soft: #e8eefb;
  --zinc-50: #fafafa;
  --zinc-100: #f4f4f5;
  --zinc-200: #e4e4e7;
  --zinc-300: #d4d4d8;
  --zinc-400: #a1a1aa;
  --zinc-500: #71717a;
  --zinc-600: #52525b;
  --zinc-700: #3f3f46;
  --zinc-800: #27272a;
  --zinc-900: #18181b;
  --zinc-950: #09090b
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
  font-family: Outfit, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--zinc-900);
  background: #fff
}

a {
  color: inherit;
  text-decoration: none;
  transition: .25s ease
}

img {
  max-width: 100%;
  display: block
}

.tbb-container {
  width: min(100% - 32px, 1280px);
  margin-inline: auto
}

.tbb-site-header {
  position: relative;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--zinc-200);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04)
}

.tbb-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--zinc-200)
}

.tbb-socials {
  display: flex;
  gap: 20px;
  color: var(--zinc-500);
  font-weight: 800;
  font-size: 12px
}

.tbb-socials a:hover {
  color: var(--brand)
}

.tbb-date {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--zinc-500);
  font-weight: 600
}

.tbb-mainbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 28px
}

.tbb-logo {
  flex: 0 0 auto
}

.tbb-logo a {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1;
  color: var(--zinc-900)
}

.tbb-logo a:hover,
.tbb-logo span {
  color: var(--brand)
}

.tbb-desktop-nav {
  flex: 1;
  display: flex;
  justify-content: center
}

.tbb-menu,
.tbb-mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0
}

.tbb-menu {
  display: flex;
  align-items: center;
  gap: 26px
}

.tbb-menu li {
  position: relative
}

.tbb-menu>li>a {
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: var(--zinc-600);
  text-transform: uppercase;
  letter-spacing: .16em;
  padding: 10px 0;
  position: relative
}

.tbb-menu>li>a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  height: 2px;
  width: 100%;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: .25s
}

.tbb-menu>li:hover>a,
.tbb-menu>li.current-menu-item>a,
.tbb-menu>li.current-menu-ancestor>a {
  color: var(--brand)
}

.tbb-menu>li:hover>a:after {
  transform: scaleX(1);
  transform-origin: left
}

.tbb-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 80;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--zinc-200);
  box-shadow: 0 22px 45px rgba(24, 24, 27, .12);
  border-radius: 18px;
  padding: 12px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: .25s
}

.tbb-menu li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.tbb-menu .sub-menu li a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--zinc-600);
  font-size: 13px;
  font-weight: 700
}

.tbb-menu .sub-menu li a:hover {
  background: var(--zinc-100);
  color: var(--brand)
}

.tbb-search-wrap {
  position: relative
}

.tbb-search-toggle,
.tbb-mobile-toggle {
  border: 0;
  background: transparent;
  cursor: pointer
}

.tbb-search-toggle {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 28px;
  line-height: 1;
  color: var(--zinc-700)
}

.tbb-search-toggle:hover {
  background: var(--zinc-100);
  color: var(--brand)
}

.tbb-search-pop {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  display: flex;
  background: #fff;
  border: 1px solid var(--zinc-200);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .14);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: scale(.96);
  transform-origin: top right;
  transition: .22s
}

.tbb-search-pop.is-open {
  opacity: 1;
  visibility: visible;
  transform: scale(1)
}

.tbb-search-pop input {
  width: 260px;
  border: 0;
  outline: 0;
  padding: 14px 16px;
  color: var(--zinc-800)
}

.tbb-search-pop button {
  border: 0;
  border-left: 1px solid var(--zinc-200);
  background: var(--zinc-50);
  padding: 0 16px;
  font-size: 22px;
  cursor: pointer
}

.tbb-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px
}

.tbb-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--zinc-800);
  display: block
}

.tbb-mobile-panel {
  display: none;
  background: #fff;
  border-bottom: 1px solid var(--zinc-200);
  max-height: 0;
  overflow: hidden;
  transition: .3s
}

.tbb-mobile-panel.is-open {
  max-height: 700px
}

.tbb-mobile-menu {
  padding: 24px 20px
}

.tbb-mobile-menu li a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--zinc-200);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  color: var(--zinc-700)
}

.tbb-mobile-menu .sub-menu {
  list-style: none;
  margin: 0 0 0 16px;
  padding: 0
}

.tbb-home {
  margin-bottom: 128px
}

.tbb-hero-section {
  padding-top: 24px;
  padding-bottom: 128px
}

.tbb-hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
  height: 520px
}

.tbb-hero-main {
  grid-column: span 8;
  height: 100%;
  border-radius: 24px;
  overflow: hidden
}

.tbb-hero-stack {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  gap: 28px;
  height: 100%
}

.tbb-hero-small {
  height: 45%;
  border-radius: 24px;
  overflow: hidden
}

.tbb-hero-black {
  height: 55%;
  border-radius: 24px;
  overflow: hidden;
  background: var(--zinc-950)
}

.tbb-card {
  position: relative;
  height: 100%;
  overflow: hidden
}

.tbb-card-overlay {
  min-height: 300px;
  border-radius: 24px;
  background: var(--zinc-100);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04)
}

.tbb-card-image-link,
.tbb-card-image-link img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.tbb-card img {
  transition: transform .7s ease
}

.tbb-card:hover img {
  transform: scale(1.055)
}

.tbb-overlay-grad {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(9, 9, 11, .92), rgba(9, 9, 11, .52), transparent);
  pointer-events: none
}

.tbb-overlay-content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start
}

.tbb-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em
}

.tbb-pill-primary {
  background: var(--brand);
  color: #fff
}

.tbb-pill-primary:hover {
  background: var(--brand-dark)
}

.tbb-pill-light {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  color: var(--zinc-900)
}

.tbb-overlay-content h2 {
  font-size: clamp(21px, 2.4vw, 32px);
  line-height: 1.08;
  color: #fff;
  margin: 16px 0 12px;
  font-weight: 900;
  letter-spacing: -.035em
}

.tbb-overlay-content a:hover h2 {
  color: #dbeafe
}

.tbb-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--zinc-500);
  font-weight: 800
}

.tbb-meta a {
  color: var(--brand);
  font-weight: 900
}

.tbb-meta-light {
  color: var(--zinc-300)
}

.tbb-meta-light a {
  color: #fff
}

.tbb-section-title {
  margin-bottom: 48px
}

.tbb-section-title.is-center {
  text-align: center
}

.tbb-section-title span {
  display: block;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 900
}

.tbb-section-title h2 {
  margin: 0;
  color: var(--zinc-900);
  font-size: clamp(42px, 6vw, 88px);
  line-height: .88;
  text-transform: uppercase;
  letter-spacing: -.075em;
  font-weight: 950
}

.tbb-section-title.is-light h2 {
  color: #fff
}

.tbb-section-title.is-light span {
  color: #8ab1ff
}

.tbb-business-section {
  background: var(--zinc-50);
  border-block: 1px solid var(--zinc-200);
  padding: 112px 0
}

.tbb-business-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center
}

.tbb-card-default {
  background: #fff;
  border: 1px solid var(--zinc-100);
  border-radius: 18px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: .45s
}

.tbb-card-default:hover {
  box-shadow: 0 22px 40px rgba(24, 24, 27, .1)
}

.tbb-default-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden
}

.tbb-default-img-wrap img,
.tbb-latest-img img,
.tbb-market-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.tbb-default-cat {
  position: absolute;
  top: 16px;
  left: 16px
}

.tbb-default-body {
  padding: 24px
}

.tbb-default-body h3 {
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -.035em;
  margin: 16px 0;
  color: var(--zinc-900)
}

.tbb-default-body a:hover h3 {
  color: var(--brand)
}

.tbb-default-body p {
  color: var(--zinc-600);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 300;
  margin: 0
}

.tbb-quote {
  border-left: 2px solid var(--zinc-200);
  padding: 8px 0 8px 24px;
  color: var(--zinc-500);
  font-size: 26px;
  line-height: 1.18;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 48px
}

.tbb-business-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.tbb-business-link {
  position: relative;
  display: block;
  padding: 24px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid transparent;
  margin-left: -24px
}

.tbb-business-link:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: var(--brand);
  transition: .3s
}

.tbb-business-link:hover {
  background: var(--zinc-100);
  box-shadow: 0 14px 30px rgba(24, 24, 27, .08)
}

.tbb-business-link:hover:before {
  height: 100%
}

.tbb-business-link h4 {
  font-size: 19px;
  line-height: 1.18;
  margin: 0 0 12px;
  font-weight: 900;
  letter-spacing: -.025em
}

.tbb-business-link:hover h4 {
  color: var(--brand)
}

.tbb-business-link p {
  color: var(--zinc-500);
  font-size: 14px;
  line-height: 1.45;
  margin: 0 0 18px;
  font-weight: 300
}

.tbb-business-link div {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.tbb-business-link span {
  font-size: 10px;
  font-weight: 900;
  color: var(--zinc-400);
  text-transform: uppercase;
  letter-spacing: .16em
}

.tbb-business-link b {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--brand);
  opacity: 0;
  transform: translateX(-16px);
  transition: .3s
}

.tbb-business-link:hover b {
  opacity: 1;
  transform: translateX(0)
}

.tbb-market-section {
  position: relative;
  overflow: hidden;
  background: var(--zinc-950) !important;
  background-image: none !important;
  padding: 128px 0
}

.tbb-market-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 96px
}

.tbb-market-grid>div:first-child p {
  color: var(--zinc-400);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 48px
}

.tbb-dark-link {
  display: inline-flex;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
  border-bottom: 1px solid var(--brand);
  padding-bottom: 6px
}

.tbb-dark-link:hover {
  color: #8ab1ff
}

.tbb-market-list {
  display: flex;
  flex-direction: column;
  gap: 44px
}

.tbb-market-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  border-bottom: 1px solid var(--zinc-800);
  padding-bottom: 44px
}

.tbb-market-item:last-child {
  border-bottom: 0;
  padding-bottom: 0
}

.tbb-market-img {
  width: 33%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0
}

.tbb-market-item span {
  display: block;
  color: #5d8de5;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .2em;
  margin-bottom: 10px
}

.tbb-market-item h3 {
  font-size: 24px;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: -.025em
}

.tbb-market-item a:hover h3 {
  color: #8ab1ff
}

.tbb-market-item p {
  color: var(--zinc-500);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 300;
  margin: 0
}

.tbb-finance-section {
  padding: 112px 0
}

.tbb-finance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
  align-items: start
}

.tbb-finance-feature {
  grid-column: span 2;
  height: 500px
}

.tbb-finance-list {
  grid-column: span 2
}

.tbb-finance-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--zinc-200)
}

.tbb-finance-item:hover {
  padding-inline: 24px;
  background: var(--zinc-50);
  border-radius: 24px
}

.tbb-finance-item h3 {
  font-size: 22px;
  line-height: 1.18;
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: -.025em
}

.tbb-finance-item:hover h3 {
  color: var(--brand)
}

.tbb-finance-item p {
  color: var(--zinc-500);
  font-size: 14px;
  margin: 0
}

.tbb-finance-item span {
  font-size: 10px;
  color: var(--zinc-400);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
  white-space: nowrap
}

.tbb-latest-section {
  padding: 64px 0;
  margin-bottom: 64px
}

.tbb-latest-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--zinc-200);
  padding-bottom: 16px;
  margin-bottom: 48px
}

.tbb-latest-head .tbb-section-title {
  margin-bottom: 0
}

.tbb-latest-head a {
  font-size: 12px;
  font-weight: 900;
  color: var(--zinc-500);
  text-transform: uppercase;
  letter-spacing: .2em;
  margin-bottom: 12px
}

.tbb-latest-head a:hover {
  color: var(--brand)
}

.tbb-latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px
}

.tbb-latest-img {
  display: block;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: var(--zinc-100);
  margin-bottom: 24px
}

.tbb-latest-card:hover img {
  transform: scale(1.06)
}

.tbb-latest-body h3 {
  font-size: 22px;
  line-height: 1.18;
  margin: 14px 0 12px;
  font-weight: 900;
  letter-spacing: -.025em
}

.tbb-latest-body a:hover h3 {
  color: var(--brand)
}

.tbb-latest-body p {
  color: var(--zinc-500);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 300;
  margin: 0 0 22px
}

.tbb-readmore {
  display: block;
  border-top: 1px solid rgba(244, 244, 245, .8);
  padding-top: 16px;
  color: var(--zinc-400);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em
}

.tbb-readmore:hover {
  color: var(--brand)
}

.tbb-content-sidebar {
  display: flex;
  gap: 60px;
  align-items: flex-start
}

.tbb-main-list {
  flex: 1;
  min-width: 0
}

.tbb-sidebar {
  width: 340px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 48px
}

.tbb-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px
}

.tbb-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.tbb-archive-wrap {
  margin-top: 24px
}

.tbb-archive-header {
  background: #fff;
  border: 1px solid var(--zinc-100);
  box-shadow: 0 1px 6px rgba(24, 24, 27, .04);
  border-radius: 24px;
  text-align: center;
  padding: 48px;
  margin-bottom: 56px
}

.tbb-archive-header p,
.tbb-search-header p {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin: 0 0 16px
}

.tbb-archive-header h1,
.tbb-search-header h1 {
  font-size: clamp(48px, 6vw, 84px);
  line-height: .95;
  letter-spacing: -.065em;
  margin: 0 0 24px;
  font-weight: 700 !important
}

.tbb-archive-header div {
  font-size: 20px;
  line-height: 1.5;
  color: var(--zinc-600);
  font-weight: 300
}

.tbb-search-header {
  text-align: center;
  max-width: 760px;
  margin: 32px auto 56px
}

.tbb-search-header form {
  max-width: 580px;
  margin: 0 auto
}

.tbb-search-header input {
  width: 100%;
  border: 1px solid var(--zinc-200);
  border-radius: 999px;
  padding: 18px 24px;
  font-size: 18px;
  box-shadow: 0 8px 18px rgba(24, 24, 27, .06);
  outline: 0
}

.tbb-search-header input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 41, 112, .12)
}

.tbb-about-widget {
  background: #fff;
  border: 1px solid var(--zinc-200);
  border-radius: 24px;
  box-shadow: 0 1px 6px rgba(24, 24, 27, .05);
  padding: 32px;
  text-align: center
}

.tbb-about-widget h1 {
  font-size: 26px;
  line-height: 1;
  margin: 0 0 16px;
  letter-spacing: -.045em
}

.tbb-about-widget h1 span {
  color: var(--brand)
}

.tbb-about-widget p {
  color: var(--zinc-500);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 300;
  margin: 0 0 24px
}

.tbb-about-widget div {
  display: flex;
  justify-content: center;
  gap: 14px
}

.tbb-about-widget a {
  color: var(--zinc-400);
  font-weight: 800
}

.tbb-about-widget a:hover {
  color: var(--brand);
  transform: translateY(-3px)
}

.tbb-most-read h3 {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  color: var(--zinc-800);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  margin: 0 0 24px
}

.tbb-most-read h3 span {
  height: 1px;
  background: var(--zinc-200);
  flex: 1
}

.tbb-most-read>a {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px
}

.tbb-most-read>a>b {
  font-size: 44px;
  line-height: .85;
  color: var(--zinc-200);
  font-style: italic
}

.tbb-most-read>a:hover>b {
  color: #b9cbef
}

.tbb-most-read section>a {
  font-size: 10px;
  font-weight: 900;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: .16em
}

.tbb-most-read h4 {
  font-size: 18px;
  line-height: 1.15;
  margin: 8px 0 10px;
  font-weight: 900
}

.tbb-most-read a:hover h4 {
  color: var(--brand)
}

.tbb-most-read time {
  font-size: 10px;
  color: var(--zinc-400);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800
}

.tbb-newsletter {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: #eaf1ff;
  border: 1px solid #dbe7ff;
  border-radius: 24px;
  padding: 32px
}

.tbb-mail-icon {
  position: absolute;
  right: -16px;
  top: -34px;
  font-size: 130px;
  color: rgba(0, 41, 112, .1);
  transform: rotate(12deg)
}

.tbb-newsletter p {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin: 0 0 12px
}

.tbb-newsletter h3 {
  font-size: 34px;
  line-height: 1;
  margin: 0 0 10px
}

.tbb-newsletter span {
  display: block;
  color: var(--zinc-600);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 28px
}

.tbb-newsletter input,
.tbb-newsletter button {
  width: 100%;
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px solid var(--zinc-200);
  text-align: center
}

.tbb-newsletter input {
  background: #fff;
  margin-bottom: 12px
}

.tbb-newsletter button {
  border: 0;
  background: var(--brand);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer
}

.tbb-newsletter button:hover {
  background: var(--brand-dark)
}

.tbb-single {
  margin-top: 24px
}

.tbb-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  z-index: 200
}

.tbb-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--brand)
}

.tbb-single-head {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center
}

.tbb-single-cat {
  display: inline-block;
  border-radius: 999px;
  background: var(--zinc-100);
  color: var(--zinc-800);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
  padding: 8px 16px;
  margin-bottom: 24px
}

.tbb-single-head h1 {
  font-size: clamp(42px, 6vw, 84px);
  line-height: 1.08;
  letter-spacing: -.065em;
  margin: 0 0 40px;
  font-weight: 950
}

.tbb-single-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--zinc-500);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em
}

.tbb-single-meta i {
  height: 16px;
  width: 1px;
  background: var(--zinc-300)
}

.tbb-single-meta a {
  color: var(--zinc-800)
}

.tbb-single-meta a:hover {
  color: var(--brand)
}

.tbb-single-hero {
  max-width: 1120px;
  aspect-ratio: 21/9;
  margin: 0 auto 64px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(24, 24, 27, .12)
}

.tbb-single-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.tbb-single-layout {
  display: flex;
  gap: 52px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: center
}

.tbb-share {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.tbb-share p {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--zinc-400);
  font-weight: 900;
  text-align: center;
  margin: 0
}

.tbb-share a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--zinc-100);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 6px rgba(24, 24, 27, .05);
  color: var(--zinc-400);
  font-weight: 900
}

.tbb-share a:hover {
  background: #eaf1ff;
  color: var(--brand);
  transform: scale(1.1)
}

.tbb-post-content {
  flex: 1;
  max-width: 780px
}

.tbb-toc {
  border: 1px solid var(--zinc-200);
  border-radius: 18px;
  background: var(--zinc-50);
  padding: 24px;
  margin-bottom: 40px
}

.tbb-toc h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin: 0 0 16px;
  color: var(--zinc-700)
}

.tbb-toc ul {
  margin: 0;
  padding-left: 18px
}

.tbb-toc li {
  margin: 8px 0;
  color: var(--zinc-600)
}

.tbb-toc a:hover {
  color: var(--brand)
}

.tbb-post-content h2 {
  font-size: 42px;
  line-height: 1.02;
  letter-spacing: -.06em;
  margin: 64px 0 28px;
  font-weight: 950;
  scroll-margin-top: 120px
}

.tbb-post-content h3 {
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.035em;
  margin: 40px 0 18px;
  font-weight: 900;
  scroll-margin-top: 120px
}

.tbb-post-content p,
.tbb-post-content li {
  font-size: 20px;
  line-height: 1.75;
  color: var(--zinc-700);
  font-weight: 300
}

.tbb-post-content p {
  margin: 0 0 30px
}

.tbb-post-content ul,
.tbb-post-content ol {
  padding-left: 28px;
  margin: 0 0 32px
}

.tbb-post-content strong {
  font-weight: 800;
  color: var(--zinc-900)
}

.tbb-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--zinc-200);
  border-radius: 18px;
  margin: 36px 0;
  box-shadow: 0 1px 6px rgba(24, 24, 27, .05)
}

.tbb-table-wrap table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px
}

.tbb-table-wrap thead {
  background: var(--brand);
  color: #fff
}

.tbb-table-wrap th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: left;
  padding: 16px
}

.tbb-table-wrap td {
  padding: 16px;
  color: var(--zinc-700);
  border-top: 1px solid var(--zinc-100);
  font-weight: 300
}

.tbb-author-box {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: var(--zinc-50);
  border: 1px solid var(--zinc-100);
  border-radius: 24px;
  padding: 40px;
  margin-top: 64px
}

.tbb-author-box>div {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: #eaf1ff;
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 36px;
  flex-shrink: 0
}

.tbb-author-box h3 {
  font-size: 26px;
  margin: 0 0 10px
}

.tbb-author-box p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 22px
}

.tbb-author-box a {
  color: var(--brand);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900
}

.tbb-related {
  max-width: 1120px;
  margin: 80px auto 96px;
  border-top: 1px solid var(--zinc-200);
  padding-top: 56px
}

.tbb-related>h3 {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 22px;
  margin: 0 0 32px
}

.tbb-page {
  padding: 64px 0
}

.tbb-page article {
  max-width: 900px;
  margin: 0 auto
}

.tbb-page h1 {
  font-size: clamp(44px, 6vw, 76px);
  letter-spacing: -.06em;
  line-height: 1;
  margin: 0 0 32px
}

.tbb-page h2 {
  font-size: 34px;
  letter-spacing: -.045em;
  margin-top: 40px
}

.tbb-page p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--zinc-700);
  font-weight: 300
}

.tbb-contact-page {
  min-height: 60vh;
  padding: 48px 0 128px
}

.tbb-contact-inner {
  max-width: 800px;
  margin: 0 auto
}

.tbb-contact-title {
  text-align: center;
  margin-bottom: 64px
}

.tbb-contact-title span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--brand)
}

.tbb-contact-title h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: -.06em;
  margin: 24px 0
}

.tbb-contact-title p {
  font-size: 20px;
  color: var(--zinc-500);
  font-weight: 300;
  line-height: 1.6
}

.tbb-contact-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: rgba(250, 250, 250, .8);
  border: 1px solid rgba(228, 228, 231, .8);
  border-radius: 40px;
  padding: 64px;
  box-shadow: 0 28px 60px rgba(24, 24, 27, .12)
}

.tbb-contact-bg {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(0, 41, 112, .14);
  filter: blur(40px)
}

.tbb-contact-icon {
  margin: 0 auto 28px;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 42px;
  box-shadow: 0 16px 34px rgba(0, 41, 112, .12)
}

.tbb-contact-card h3 {
  font-size: 26px;
  margin: 0 0 10px
}

.tbb-contact-card p {
  color: var(--zinc-500);
  font-weight: 300;
  margin-bottom: 24px
}

.tbb-contact-card>a {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.060em;
  color: var(--brand)
}

.tbb-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--zinc-200);
  padding-top: 64px;
  margin-top: 64px;
  text-align: center
}

.tbb-trust-grid b {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  background: #eaf1ff;
  color: var(--brand);
  border-radius: 16px
}

.tbb-trust-grid h4 {
  margin: 0 0 10px
}

.tbb-trust-grid p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--zinc-500);
  font-weight: 300
}

.tbb-empty {
  text-align: center;
  padding: 96px 24px;
  background: #fff;
  border: 1px dashed var(--zinc-200);
  border-radius: 24px
}

.tbb-empty h1,
.tbb-empty h2 {
  font-size: 42px;
  margin: 0 0 12px
}

.tbb-footer {
  background: #fff;
  border-top: 1px solid var(--zinc-200);
  margin-top: 64px;
  padding: 64px 0 40px
}

.tbb-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid var(--zinc-200);
  padding-bottom: 64px
}

.tbb-footer-logo {
  display: inline-block;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -.055em;
  margin-bottom: 24px
}

.tbb-footer-logo span,
.tbb-footer-logo:hover {
  color: var(--brand)
}

.tbb-footer-brand p {
  max-width: 390px;
  color: var(--zinc-500);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 300
}

.tbb-footer-socials {
  display: flex;
  gap: 16px
}

.tbb-footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--zinc-100);
  display: grid;
  place-items: center;
  color: var(--zinc-500);
  font-size: 12px;
  font-weight: 900
}

.tbb-footer-socials a:hover {
  background: var(--brand);
  color: #fff
}

.tbb-footer h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin: 0 0 24px
}

.tbb-footer ul {
  list-style: none;
  margin: 0;
  padding: 0
}

.tbb-footer li {
  margin-bottom: 16px
}

.tbb-footer li a {
  color: var(--zinc-500);
  font-weight: 300
}

.tbb-footer li a:hover {
  color: var(--brand);
  padding-left: 8px
}

.tbb-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 36px;
  color: var(--zinc-500);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900
}

.tbb-copyright p:last-child {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400
}

.tbb-copyright a {
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-style: dotted
}

.nav-links {
  display: flex;
  gap: 10px;
  margin-top: 40px
}

.nav-links a,
.nav-links span {
  padding: 10px 14px;
  border: 1px solid var(--zinc-200);
  border-radius: 10px
}

.nav-links .current {
  background: var(--brand);
  color: #fff
}

@media(max-width:1024px) {
  .tbb-logo a {
    font-size: 38px
  }
  .tbb-desktop-nav {
    display: none
  }
  .tbb-mobile-toggle {
    display: flex
  }
  .tbb-mobile-panel {
    display: block
  }
  .tbb-hero-grid {
    grid-template-columns: 1fr;
    height: auto
  }
  .tbb-hero-main,
  .tbb-hero-stack {
    grid-column: auto
  }
  .tbb-hero-main {
    height: 420px
  }
  .tbb-hero-stack {
    height: auto
  }
  .tbb-hero-small,
  .tbb-hero-black {
    height: 300px
  }
  .tbb-business-grid,
  .tbb-market-grid,
  .tbb-finance-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }
  .tbb-finance-feature,
  .tbb-finance-list {
    grid-column: auto
  }
  .tbb-content-sidebar,
  .tbb-single-layout {
    flex-direction: column
  }
  .tbb-sidebar {
    width: 100%
  }
  .tbb-share {
    display: none
  }
  .tbb-latest-grid,
  .tbb-grid-3 {
    grid-template-columns: repeat(2, 1fr)
  }
  .tbb-footer-grid {
    grid-template-columns: 1fr 1fr
  }
  .tbb-footer-brand {
    grid-column: span 2
  }
}

@media(max-width:720px) {
  .tbb-container {
    width: min(100% - 24px, 1280px)
  }
  .tbb-topbar {
    display: none
  }
  .tbb-mainbar {
    padding: 18px 0
  }
  .tbb-logo a {
    font-size: 28px
  }
  .tbb-search-pop input {
    width: 210px
  }
  .tbb-hero-section {
    padding-bottom: 64px
  }
  .tbb-hero-main {
    height: 350px
  }
  .tbb-section-title h2 {
    font-size: 42px
  }
  .tbb-business-section,
  .tbb-market-section,
  .tbb-finance-section {
    padding: 72px 0
  }
  .tbb-business-links,
  .tbb-latest-grid,
  .tbb-grid-2,
  .tbb-grid-3,
  .tbb-footer-grid,
  .tbb-trust-grid {
    grid-template-columns: 1fr
  }
  .tbb-footer-brand {
    grid-column: auto
  }
  .tbb-latest-head {
    display: block
  }
  .tbb-market-item {
    display: block
  }
  .tbb-market-img {
    width: 100%;
    margin-bottom: 20px
  }
  .tbb-finance-item {
    display: block
  }
  .tbb-single-head h1 {
    font-size: 42px
  }
  .tbb-single-hero {
    aspect-ratio: 16/10
  }
  .tbb-post-content h2 {
    font-size: 34px
  }
  .tbb-post-content p,
  .tbb-post-content li {
    font-size: 18px
  }
  .tbb-author-box {
    display: block;
    text-align: center
  }
  .tbb-author-box>div {
    margin: 0 auto 24px
  }
  .tbb-contact-card {
    padding: 40px 22px
  }
  .tbb-copyright {
    display: block;
    text-align: center
  }
  .tbb-footer {
    margin-top: 32px
  }
}

/* --- Mobile/design refinement patch v2.1 --- */

:root {
  --brand: #002970;
  --brand-dark: #001f54;
  --brand-soft: #f0f4f9
}

.tbb-site-header {
  position: relative
}

.tbb-mainbar {
  min-height: 104px
}

.tbb-logo a {
  font-size: clamp(30px, 4vw, 48px);
  white-space: nowrap
}

.tbb-search-toggle {
  display: grid;
  place-items: center
}

.tbb-search-pop button {
  display: grid;
  place-items: center;
  color: var(--zinc-600)
}

.tbb-menu .sub-menu:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 24px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff
}

.tbb-mobile-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.tbb-mobile-toggle.is-open span:nth-child(2) {
  opacity: 0
}

.tbb-mobile-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.tbb-mobile-toggle span {
  transition: .25s ease
}

.tbb-mobile-menu .sub-menu a {
  font-size: 12px;
  letter-spacing: .12em;
  padding-left: 14px;
  color: var(--zinc-500)
}

.tbb-home {
  overflow: hidden
}

.tbb-hero-section {
  padding-top: 24px
}

.tbb-hero-grid {
  align-items: stretch
}

.tbb-card-overlay {
  border-radius: 24px
}

.tbb-overlay-content h2 {
  line-height: 1.05
}

.tbb-business-link,
.tbb-finance-item,
.tbb-latest-card {
  will-change: transform
}

.tbb-business-link:hover,
.tbb-latest-card:hover {
  transform: translateY(-2px)
}

.tbb-market-item h3 {
  letter-spacing: -.03em
}

.tbb-latest-section {
  padding-top: 64px
}

.tbb-latest-card {
  min-width: 0
}

.tbb-latest-card h3 {
  overflow-wrap: anywhere
}

.tbb-default-body h3,
.tbb-latest-card h3,
.tbb-finance-item h3 {
  letter-spacing: -.035em
}

.tbb-single {
  margin-top: 24px;
  position: relative
}

.tbb-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  z-index: 9999
}

.tbb-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--brand)
}

.tbb-single-head {
  max-width: 880px;
  margin: 0 auto 48px;
  text-align: center
}

.tbb-single-cat {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--zinc-100);
  color: var(--zinc-900);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em
}

.tbb-single-cat:hover {
  background: var(--brand);
  color: #fff
}

.tbb-single-head h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1.1;
  margin: 24px 0 40px;
  color: var(--zinc-900)
}

.tbb-single-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 22px;
  color: var(--zinc-500);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800
}

.tbb-single-meta i {
  display: block;
  width: 1px;
  height: 16px;
  background: var(--zinc-300)
}

.tbb-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.tbb-meta-author a {
  color: var(--zinc-800);
  font-weight: 900
}

.tbb-meta-author a:hover {
  color: var(--brand)
}

.tbb-single-hero {
  max-width: 1120px;
  margin: 0 auto 64px;
  aspect-ratio: 21/9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(24, 24, 27, .12)
}

.tbb-single-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.tbb-single-layout {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  gap: 64px;
  align-items: flex-start;
  justify-content: center
}

.tbb-share {
  position: sticky;
  top: 128px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 48px
}

.tbb-share p {
  text-align: center;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--zinc-400);
  margin: 0 0 4px
}

.tbb-share a {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--zinc-100);
  box-shadow: 0 1px 4px rgba(24, 24, 27, .06);
  display: grid;
  place-items: center;
  color: var(--zinc-400);
  font-size: 13px;
  font-weight: 900
}

.tbb-share a:hover {
  transform: scale(1.08);
  background: var(--brand-soft);
  color: var(--brand)
}

.tbb-post-content {
  flex: 1;
  width: 100%;
  max-width: 768px;
  color: var(--zinc-800)
}

.tbb-toc {
  background: var(--zinc-50);
  border: 1px solid var(--zinc-100);
  border-radius: 24px;
  padding: 24px 28px;
  margin: 0 0 48px;
  box-shadow: none
}

.tbb-toc-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-align: left
}

.tbb-toc-toggle span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--zinc-900)
}

.tbb-toc-toggle b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  white-space: nowrap
}

.tbb-toc.is-open .tbb-toc-toggle b {
  background: var(--zinc-200);
  color: var(--zinc-600)
}

.tbb-toc-panel {
  display: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--zinc-200)
}

.tbb-toc.is-open .tbb-toc-panel {
  display: block
}

.tbb-toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px
}

.tbb-toc li {
  font-size: 16px;
  line-height: 1.45;
  margin: 0
}

.tbb-toc li.tbb-toc-level-3 {
  margin-left: 28px
}

.tbb-toc a {
  display: flex;
  align-items: flex-start;
  color: var(--zinc-600);
  font-weight: 400;
  padding: 0
}

.tbb-toc a:hover {
  color: var(--brand)
}

.tbb-toc em {
  font-style: normal;
  color: var(--zinc-300);
  margin-right: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  line-height: 1.45;
  opacity: .75
}

.tbb-toc a:hover em {
  color: var(--brand)
}

.tbb-post-content h2 {
  font-size: clamp(32px, 4.5vw, 44px);
  line-height: 1.05;
  letter-spacing: -.06em;
  margin: 64px 0 28px;
  font-weight: 950;
  color: var(--zinc-900);
  scroll-margin-top: 128px
}

.tbb-post-content h3 {
  font-size: clamp(23px, 3vw, 28px);
  line-height: 1.18;
  letter-spacing: -.035em;
  margin: 42px 0 18px;
  font-weight: 850;
  color: #27272a;
  scroll-margin-top: 128px
}

.tbb-post-content h4 {
  font-size: 22px;
  line-height: 1.25;
  margin: 34px 0 14px;
  color: var(--zinc-900)
}

.tbb-post-content p,
.tbb-post-content li {
  font-size: 20px;
  line-height: 1.75;
  color: var(--zinc-700);
  font-weight: 300
}

.tbb-post-content p {
  margin: 0 0 30px
}

.tbb-post-content ul,
.tbb-post-content ol {
  padding-left: 28px;
  margin: 0 0 34px
}

.tbb-post-content li {
  margin: 0 0 12px;
  padding-left: 4px
}

.tbb-post-content a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none
}

.tbb-post-content a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px
}

.tbb-post-content blockquote {
  border-left: 3px solid var(--brand);
  margin: 42px 0;
  padding: 6px 0 6px 24px;
  color: var(--zinc-600);
  font-size: 24px;
  line-height: 1.45;
  font-style: italic;
  font-weight: 300
}

.tbb-post-content blockquote p {
  font-size: inherit;
  color: inherit;
  line-height: inherit
}

.tbb-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--zinc-200);
  border-radius: 18px;
  margin: 36px 0;
  box-shadow: 0 1px 6px rgba(24, 24, 27, .05);
  background: #fff
}

.tbb-table-wrap table {
  min-width: 680px;
  border-collapse: collapse;
  width: 100%;
  font-size: 14px
}

.tbb-table-wrap thead {
  background: var(--brand);
  color: #fff
}

.tbb-table-wrap th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: left;
  padding: 16px 18px;
  color: #fff;
  white-space: nowrap
}

.tbb-table-wrap td {
  padding: 16px 18px;
  color: var(--zinc-700);
  border-top: 1px solid var(--zinc-100);
  font-weight: 300;
  vertical-align: top
}

.tbb-table-wrap tr:hover td {
  background: rgba(250, 250, 250, .8)
}

.tbb-mobile-share {
  display: none
}

.tbb-author-box {
  margin-top: 56px
}

.tbb-related {
  max-width: 1120px
}

.tbb-related>h3 {
  text-align: left
}

@media(max-width:1180px) {
  .tbb-menu {
    gap: 18px
  }
  .tbb-menu>li>a {
    font-size: 11px;
    letter-spacing: .13em
  }
  .tbb-single-layout {
    gap: 40px
  }
  .tbb-post-content {
    max-width: 740px
  }
}

@media(max-width:1024px) {
  .tbb-mainbar {
    min-height: auto;
    padding: 22px 0
  }
  .tbb-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: calc(100% - 150px);
    overflow: hidden;
    text-align: center
  }
  .tbb-logo a {
    display: block;
    font-size: 38px;
    overflow: hidden;
    text-overflow: ellipsis
  }
  .tbb-mobile-toggle {
    z-index: 2
  }
  .tbb-search-wrap {
    z-index: 2;
    margin-left: auto
  }
  .tbb-mobile-panel {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 40;
    box-shadow: 0 20px 40px rgba(24, 24, 27, .08)
  }
  .tbb-mobile-menu {
    width: min(100% - 32px, 760px);
    margin: 0 auto
  }
  .tbb-hero-grid {
    gap: 22px
  }
  .tbb-business-grid {
    align-items: start
  }
  .tbb-quote {
    font-size: 23px
  }
  .tbb-single-head {
    margin-bottom: 40px
  }
  .tbb-single-layout {
    display: block;
    max-width: 800px
  }
  .tbb-share {
    display: none
  }
  .tbb-post-content {
    max-width: 100%
  }
  .tbb-mobile-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: var(--zinc-50);
    border-block: 1px solid var(--zinc-200);
    border-radius: 18px;
    padding: 22px;
    margin: 48px 0 0
  }
  .tbb-mobile-share span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 900;
    color: var(--zinc-500);
    margin-right: 8px
  }
  .tbb-mobile-share a {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid var(--zinc-200);
    color: var(--zinc-500);
    font-size: 12px;
    font-weight: 900
  }
  .tbb-mobile-share a:hover {
    background: var(--brand-soft);
    color: var(--brand)
  }
}

@media(max-width:720px) {
  body {
    overflow-x: hidden
  }
  .tbb-container {
    width: min(100% - 24px, 1280px)
  }
  .tbb-mainbar {
    padding: 16px 0
  }
  .tbb-logo {
    max-width: calc(100% - 112px)
  }
  .tbb-logo a {
    font-size: 25px;
    letter-spacing: -.045em
  }
  .tbb-search-toggle {
    width: 38px;
    height: 38px
  }
  .tbb-search-pop {
    right: -4px;
    max-width: calc(100vw - 24px)
  }
  .tbb-search-pop input {
    width: min(230px, calc(100vw - 110px));
    font-size: 16px
  }
  .tbb-mobile-menu {
    padding: 18px 0 22px
  }
  .tbb-mobile-menu li a {
    padding: 13px 0;
    font-size: 13px
  }
  .tbb-hero-section {
    padding-top: 18px;
    padding-bottom: 56px
  }
  .tbb-hero-grid {
    gap: 18px
  }
  .tbb-hero-main,
  .tbb-hero-small,
  .tbb-hero-black {
    height: 360px;
    border-radius: 22px
  }
  .tbb-card-overlay {
    min-height: 280px;
    border-radius: 22px
  }
  .tbb-overlay-content {
    padding: 22px
  }
  .tbb-overlay-content h2 {
    font-size: 24px;
    margin: 13px 0 10px
  }
  .tbb-section-title {
    margin-bottom: 34px
  }
  .tbb-section-title h2 {
    font-size: clamp(42px, 14vw, 58px);
    line-height: .9
  }
  .tbb-business-section,
  .tbb-market-section,
  .tbb-finance-section {
    padding: 64px 0
  }
  .tbb-business-grid,
  .tbb-market-grid,
  .tbb-finance-grid {
    gap: 34px
  }
  .tbb-quote {
    font-size: 20px;
    margin-bottom: 28px;
    padding-left: 18px
  }
  .tbb-business-link {
    margin-left: 0;
    padding: 20px
  }
  .tbb-market-item {
    padding-bottom: 34px;
    margin-bottom: 34px
  }
  .tbb-market-item h3 {
    font-size: 24px
  }
  .tbb-finance-feature {
    height: 360px
  }
  .tbb-finance-item {
    padding: 22px 0
  }
  .tbb-latest-section {
    padding-top: 56px
  }
  .tbb-latest-head {
    margin-bottom: 32px
  }
  .tbb-default-body h3,
  .tbb-latest-card h3 {
    font-size: 22px
  }
  .tbb-single {
    margin-top: 18px
  }
  .tbb-single-head {
    margin-bottom: 28px
  }
  .tbb-single-cat {
    padding: 7px 13px
  }
  .tbb-single-head h1 {
    font-size: clamp(36px, 11vw, 46px);
    line-height: 1.08;
    letter-spacing: -.055em;
    margin: 20px 0 28px
  }
  .tbb-single-meta {
    gap: 12px 14px;
    font-size: 11px;
    letter-spacing: .12em
  }
  .tbb-single-meta i {
    display: none
  }
  .tbb-read-time {
    display: none
  }
  .tbb-single-hero {
    aspect-ratio: 16/10;
    border-radius: 20px;
    margin-bottom: 36px;
    box-shadow: 0 14px 34px rgba(24, 24, 27, .10)
  }
  .tbb-toc {
    border-radius: 22px;
    padding: 20px;
    margin-bottom: 38px
  }
  .tbb-toc-toggle {
    gap: 10px
  }
  .tbb-toc-toggle span {
    font-size: 11px;
    letter-spacing: .14em
  }
  .tbb-toc-toggle b {
    padding: 8px 11px;
    font-size: 9px;
    letter-spacing: .1em
  }
  .tbb-toc-panel {
    margin-top: 18px;
    padding-top: 18px
  }
  .tbb-toc ul {
    gap: 12px
  }
  .tbb-toc li {
    font-size: 15px
  }
  .tbb-toc li.tbb-toc-level-3 {
    margin-left: 18px
  }
  .tbb-toc em {
    margin-right: 10px
  }
  .tbb-post-content h2 {
    font-size: 32px;
    line-height: 1.08;
    letter-spacing: -.052em;
    margin: 50px 0 22px;
    scroll-margin-top: 88px
  }
  .tbb-post-content h3 {
    font-size: 23px;
    margin: 34px 0 16px;
    scroll-margin-top: 88px
  }
  .tbb-post-content p,
  .tbb-post-content li {
    font-size: 18px;
    line-height: 1.72
  }
  .tbb-post-content p {
    margin-bottom: 26px
  }
  .tbb-post-content ul,
  .tbb-post-content ol {
    padding-left: 22px;
    margin-bottom: 28px
  }
  .tbb-post-content blockquote {
    font-size: 20px;
    margin: 34px 0;
    padding-left: 18px
  }
  .tbb-table-wrap {
    border-radius: 16px;
    margin: 30px -2px 34px;
    box-shadow: none
  }
  .tbb-table-wrap:before {
    content: "Swipe table sideways →";
    display: block;
    padding: 10px 14px;
    border-bottom: 1px solid var(--zinc-100);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--zinc-500);
    background: var(--zinc-50)
  }
  .tbb-table-wrap table {
    min-width: 620px;
    font-size: 13px
  }
  .tbb-table-wrap th,
  .tbb-table-wrap td {
    padding: 13px 14px
  }
  .tbb-mobile-share {
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 42px;
    padding: 18px
  }
  .tbb-mobile-share span {
    width: 100%;
    text-align: center;
    margin: 0 0 2px
  }
  .tbb-author-box {
    padding: 28px 22px;
    border-radius: 22px;
    margin-top: 42px
  }
  .tbb-author-box h3 {
    font-size: 23px
  }
  .tbb-author-box p {
    font-size: 16px
  }
  .tbb-related {
    margin-top: 56px;
    padding-top: 40px;
    margin-bottom: 64px
  }
  .tbb-related>h3 {
    text-align: center;
    font-size: 18px
  }
  .tbb-footer {
    padding-top: 48px
  }
  .tbb-footer-grid {
    gap: 30px;
    padding-bottom: 42px
  }
  .tbb-footer-logo {
    font-size: 30px
  }
  .nav-links {
    flex-wrap: wrap
  }
}

@media(max-width:420px) {
  .tbb-logo a {
    font-size: 22px
  }
  .tbb-hero-main,
  .tbb-hero-small,
  .tbb-hero-black {
    height: 320px
  }
  .tbb-overlay-content h2 {
    font-size: 22px
  }
  .tbb-single-head h1 {
    font-size: 34px
  }
  .tbb-single-meta {
    font-size: 10px
  }
  .tbb-post-content h2 {
    font-size: 29px
  }
  .tbb-post-content p,
  .tbb-post-content li {
    font-size: 17px
  }
  .tbb-table-wrap table {
    min-width: 560px
  }
  .tbb-author-box {
    padding: 24px 18px
  }
}

/* v2.2 Customizer and mobile design refinements */

.tbb-custom-logo {
  max-height: 58px;
  width: auto;
  object-fit: contain;
  display: block
}

.tbb-logo a:has(.tbb-custom-logo) {
  display: inline-flex;
  align-items: center;
  letter-spacing: 0
}

.tbb-menu .menu-item-has-children>a {
  display: flex;
  align-items: center;
  gap: 6px
}

.tbb-menu .menu-item-has-children>a:before {
  content: ""
}

.tbb-menu .menu-item-has-children>a:after {
  bottom: 4px
}

.tbb-menu .menu-item-has-children>a::marker {
  display: none
}

.tbb-menu .menu-item-has-children>a span {
  display: none
}

.tbb-menu .menu-item-has-children>a {
  white-space: nowrap
}

.tbb-menu .menu-item-has-children>a::before {
  content: ""
}

.tbb-menu .menu-item-has-children>a::selection {
  background: transparent
}

.tbb-menu .menu-item-has-children>a {
  position: relative
}

.tbb-menu .menu-item-has-children>a:not(:only-child) {
  padding-right: 14px
}

.tbb-menu .menu-item-has-children>a:not(:only-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-62%) rotate(45deg);
  background: transparent;
  left: auto;
  bottom: auto;
  transform-origin: center
}

.tbb-menu .menu-item-has-children:hover>a:not(:only-child)::after {
  transform: translateY(-38%) rotate(225deg)
}

.tbb-single-meta {
  row-gap: 12px
}

.tbb-published-date span,
.tbb-updated-date span {
  white-space: nowrap
}

.tbb-updated-date {
  color: var(--zinc-600)
}

.tbb-toc {
  position: relative
}

.tbb-toc-toggle b::after {
  content: " ↓"
}

.tbb-toc.is-open .tbb-toc-toggle b::after {
  content: " ↑"
}

.tbb-toc a {
  border-radius: 12px;
  padding: 8px 10px;
  margin-left: -10px
}

.tbb-toc a:hover {
  background: var(--brand-soft);
  text-decoration: none
}

.tbb-toc-level-2 a {
  font-weight: 700;
  color: var(--zinc-800)
}

.tbb-toc-level-3 a {
  font-size: 15px;
  color: var(--zinc-600)
}

.tbb-post-content table {
  border-collapse: collapse
}

.tbb-post-content figure.wp-block-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch
}

.tbb-post-content figure.wp-block-table table {
  min-width: 680px
}

.tbb-post-content .wp-block-table {
  margin: 36px 0
}

.tbb-post-content .wp-block-table table {
  width: 100%;
  border: 1px solid var(--zinc-200);
  border-radius: 18px;
  overflow: hidden
}

.tbb-post-content .wp-block-table th {
  background: var(--brand);
  color: #fff
}

.tbb-post-content .wp-block-table td,
.tbb-post-content .wp-block-table th {
  padding: 16px 18px;
  border: 1px solid var(--zinc-100)
}

@media(max-width:1024px) {
  .tbb-single-layout {
    display: block
  }
  .tbb-toc {
    position: relative;
    top: auto
  }
  .tbb-single-meta {
    justify-content: center
  }
  .tbb-published-date span,
  .tbb-updated-date span {
    white-space: normal
  }
  .tbb-custom-logo {
    max-height: 46px
  }
}

@media(max-width:720px) {
  .tbb-topbar {
    display: none
  }
  .tbb-mobile-panel {
    display: block
  }
  .tbb-mobile-menu .menu-item-has-children>a {
    font-weight: 900;
    color: var(--brand)
  }
  .tbb-mobile-menu .sub-menu {
    margin-left: 14px;
    border-left: 2px solid var(--brand-soft);
    padding-left: 14px
  }
  .tbb-mobile-menu .sub-menu a {
    text-transform: none;
    letter-spacing: .02em;
    font-size: 14px;
    font-weight: 700;
    color: var(--zinc-600)
  }
  .tbb-single-meta {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px
  }
  .tbb-published-date,
  .tbb-updated-date {
    justify-content: center;
    text-align: center
  }
  .tbb-single-hero {
    max-width: 100%;
  }
  .tbb-toc {
    position: sticky;
    top: 0;
    z-index: 20;
    margin-inline: -2px;
    box-shadow: 0 10px 24px rgba(24, 24, 27, .06)
  }
  .tbb-toc-panel {
    max-height: 52vh;
    overflow-y: auto;
    padding-right: 4px
  }
  .tbb-toc a {
    padding: 10px 8px;
    margin-left: -8px
  }
  .tbb-post-content .wp-block-table,
  .tbb-table-wrap {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
  }
  .tbb-post-content figure.wp-block-table:before {
    content: "Swipe table sideways →";
    display: block;
    padding: 10px 14px;
    border: 1px solid var(--zinc-100);
    border-bottom: 0;
    border-radius: 16px 16px 0 0;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--zinc-500);
    background: var(--zinc-50)
  }
  .tbb-custom-logo {
    max-height: 40px
  }
}

@media(max-width:420px) {
  .tbb-single-meta {
    font-size: 10px
  }
  .tbb-published-date svg,
  .tbb-updated-date svg {
    width: 14px;
    height: 14px
  }
  .tbb-toc-toggle {
    align-items: flex-start
  }
  .tbb-toc-toggle b {
    white-space: nowrap
  }
  .tbb-custom-logo {
    max-height: 34px
  }
}

/* v2.3.0 design corrections: remove Market Pulse glow, restore light text, and standardise Lucide-style SVG icons */

.tbb-icon {
  display: inline-block;
  vertical-align: -0.16em;
  flex: 0 0 auto;
  stroke: currentColor
}

.tbb-dark-link,
.tbb-readmore,
.tbb-business-link b,
.tbb-latest-head>a {
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.tbb-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.tbb-mobile-toggle {
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--zinc-800)
}

.tbb-mobile-toggle:hover {
  background: var(--zinc-100);
  color: var(--brand)
}

.tbb-mobile-toggle span {
  display: none !important
}

.tbb-market-section {
  background: #09090b !important;
  background-image: none !important;
  box-shadow: none !important
}

.tbb-market-section:before,
.tbb-market-section:after {
  display: none !important;
  content: none !important
}

.tbb-market-section .tbb-section-title h2,
.tbb-market-section .tbb-market-item h3 {
  color: #fff !important;
  text-shadow: none !important
}

.tbb-market-section .tbb-section-title span,
.tbb-market-section .tbb-market-item span {
  color: #8ab1ff !important
}

.tbb-market-section p,
.tbb-market-section .tbb-market-item p {
  color: #cbd5e1 !important
}

.tbb-market-section .tbb-market-item {
  border-bottom-color: #273142 !important
}

.tbb-market-section a:hover h3 {
  color: #bfdbfe !important
}

.tbb-dark-link {
  color: #fff !important;
  border-bottom-color: #8ab1ff !important
}

.tbb-dark-link:hover {
  color: #bfdbfe !important
}

.tbb-overlay-content h2,
.tbb-overlay-content a h2 {
  color: #fff !important;
  text-shadow: none !important
}

.tbb-overlay-content a:hover h2 {
  color: #dbeafe !important
}

.tbb-meta-light,
.tbb-meta-light span {
  color: #e5e7eb !important
}

.tbb-meta-light a {
  color: #fff !important
}

.tbb-overlay-content .tbb-pill {
  color: #fff !important
}

.tbb-pill-light {
  color: var(--zinc-900) !important
}

/* v2.4.0 card + market pulse refinements */

.tbb-icon {
  display: block;
  flex-shrink: 0
}

.tbb-search-toggle,
.tbb-mobile-toggle,
.tbb-footer-socials a,
.tbb-about-widget a,
.tbb-share a,
.tbb-mobile-share a {
  display: inline-grid;
  place-items: center
}

.tbb-mobile-toggle span {
  display: none !important
}

.tbb-card-overlay,
.tbb-latest-card,
.tbb-card-default,
.tbb-business-link,
.tbb-finance-item {
  min-width: 0
}

.tbb-overlay-content {
  max-width: 100%
}

.tbb-overlay-content h2,
.tbb-default-body h3,
.tbb-latest-card h3,
.tbb-business-link h4,
.tbb-finance-item h3,
.tbb-market-item h3 {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto
}

.tbb-overlay-content h2 {
  max-width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden
}

.tbb-hero-main .tbb-overlay-content h2 {
  -webkit-line-clamp: 2
}

.tbb-default-body h3,
.tbb-latest-card h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden
}

.tbb-business-link h4,
.tbb-finance-item h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden
}

.tbb-market-item h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden
}

.tbb-market-img {
  display: block !important;
  background: #18181b
}

.tbb-market-img img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important
}

.tbb-market-item.has-image {
  align-items: center
}

.tbb-market-section .tbb-market-item p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden
}

.tbb-market-section .tbb-section-title h2 {
  font-size: clamp(44px, 7vw, 92px)
}

@media(max-width:1024px) {
  .tbb-market-grid {
    grid-template-columns: 1fr !important;
    gap: 44px !important
  }
  .tbb-market-list {
    gap: 28px
  }
  .tbb-market-item {
    gap: 24px
  }
  .tbb-market-img {
    width: 38%;
    min-width: 220px
  }
  .tbb-market-grid>div:first-child p {
    max-width: 680px;
    margin-bottom: 28px
  }
}

@media(max-width:720px) {
  .tbb-hero-section {
    padding-bottom: 44px
  }
  .tbb-hero-main,
  .tbb-hero-small,
  .tbb-hero-black {
    height: auto !important;
    min-height: 0 !important
  }
  .tbb-card-overlay {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 1.04/1
  }
  .tbb-hero-main .tbb-card-overlay {
    aspect-ratio: 1/1.08
  }
  .tbb-card-image-link,
  .tbb-card-image-link img {
    position: absolute !important
  }
  .tbb-overlay-content {
    padding: 18px !important
  }
  .tbb-overlay-content h2 {
    font-size: clamp(20px, 7vw, 27px) !important;
    line-height: 1.06 !important;
    -webkit-line-clamp: 3;
    margin: 12px 0 9px !important
  }
  .tbb-hero-main .tbb-overlay-content h2 {
    -webkit-line-clamp: 3
  }
  .tbb-meta {
    font-size: 9px;
    letter-spacing: .13em;
    gap: 7px;
    flex-wrap: wrap
  }
  .tbb-pill {
    font-size: 9px;
    padding: 6px 10px
  }
  .tbb-market-section {
    padding: 58px 0 !important
  }
  .tbb-market-grid {
    gap: 32px !important
  }
  .tbb-market-section .tbb-section-title {
    margin-bottom: 22px
  }
  .tbb-market-section .tbb-section-title h2 {
    font-size: clamp(48px, 17vw, 68px) !important;
    line-height: .9 !important
  }
  .tbb-market-grid>div:first-child p {
    font-size: 16px !important;
    line-height: 1.55 !important;
    margin-bottom: 24px !important
  }
  .tbb-market-list {
    gap: 24px !important
  }
  .tbb-market-item,
  .tbb-market-item.has-image {
    display: grid !important;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 16px !important;
    align-items: start !important;
    padding-bottom: 24px !important;
    margin-bottom: 0 !important
  }
  .tbb-market-item:not(.has-image) {
    grid-template-columns: 1fr
  }
  .tbb-market-img {
    width: 112px !important;
    min-width: 112px !important;
    aspect-ratio: 1/1 !important;
    border-radius: 14px !important;
    margin: 0 !important
  }
  .tbb-market-item span {
    font-size: 9px !important;
    letter-spacing: .18em !important;
    margin-bottom: 8px !important
  }
  .tbb-market-item h3 {
    font-size: 30px !important;
    line-height: 1.08 !important;
    -webkit-line-clamp: 3;
    margin-bottom: 10px !important
  }
  .tbb-market-item p {
    font-size: 13px !important;
    line-height: 1.45 !important;
    -webkit-line-clamp: 2 !important
  }
  .tbb-dark-link {
    font-size: 11px !important
  }
  .tbb-default-body h3,
  .tbb-latest-card h3 {
    font-size: 21px !important;
    line-height: 1.12 !important
  }
  .tbb-latest-body {
    padding: 20px !important
  }
  .tbb-footer-socials a,
  .tbb-about-widget a,
  .tbb-share a,
  .tbb-mobile-share a {
    font-size: 0 !important
  }
}

@media(max-width:420px) {
  .tbb-card-overlay {
    aspect-ratio: .94/1
  }
  .tbb-overlay-content h2 {
    font-size: 22px !important
  }
  .tbb-market-item,
  .tbb-market-item.has-image {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px !important
  }
  .tbb-market-item:not(.has-image) {
    grid-template-columns: 1fr
  }
  .tbb-market-img {
    width: 96px !important;
    min-width: 96px !important
  }
  .tbb-market-item h3 {
    font-size: 20px !important
  }
  .tbb-market-item p {
    display: none !important
  }
}

/* v2.5.0 hero card long-title + Lucide SVG social refinements */

.tbb-socials a,
.tbb-footer-socials a,
.tbb-about-widget a,
.tbb-share a,
.tbb-mobile-share a {
  font-size: 0 !important;
  line-height: 1;
  color: currentColor
}

.tbb-socials svg,
.tbb-footer-socials svg,
.tbb-about-widget svg,
.tbb-share svg,
.tbb-mobile-share svg {
  display: block;
  stroke: currentColor;
  fill: none
}


.tbb-overlay-content h2 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  hyphens: auto;
  overflow-wrap: anywhere;
  margin: 12px 0 10px !important;
  line-height: 1.04 !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2 !important
}

.tbb-hero-main .tbb-overlay-content h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  -webkit-line-clamp: 3 !important
}

.tbb-hero-small .tbb-overlay-content h2,
.tbb-hero-black .tbb-overlay-content h2 {
  font-size: clamp(23px, 2.25vw, 31px) !important;
  -webkit-line-clamp: 2 !important;
  letter-spacing: -.04em
}

.tbb-overlay-content .tbb-meta,
.tbb-overlay-content .tbb-meta-light {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  font-size: 10px;
  letter-spacing: .14em;
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0;
  padding-bottom: 1px
}

.tbb-overlay-content .tbb-meta a,
.tbb-overlay-content .tbb-meta span {
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.tbb-overlay-content .tbb-meta span:last-child {
  flex: 0 0 auto
}

.tbb-overlay-content .tbb-pill {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 0;
  margin-bottom: 0
}

.tbb-card-overlay:hover .tbb-overlay-content h2 {
  color: #dbeafe !important
}

@media(max-width:1100px) {
  .tbb-hero-small .tbb-overlay-content h2,
  .tbb-hero-black .tbb-overlay-content h2 {
    font-size: 24px !important
  }
  .tbb-overlay-content .tbb-meta {
    font-size: 9px;
    gap: 7px
  }
  .tbb-overlay-content {
    padding: 20px !important
  }
}

@media(max-width:720px) {
  .tbb-overlay-content {
    padding: 16px !important
  }
  .tbb-overlay-content h2,
  .tbb-hero-main .tbb-overlay-content h2,
  .tbb-hero-small .tbb-overlay-content h2,
  .tbb-hero-black .tbb-overlay-content h2 {
    font-size: clamp(20px, 6.3vw, 25px) !important;
    line-height: 1.06 !important;
    -webkit-line-clamp: 2 !important;
    margin: 10px 0 8px !important
  }
  .tbb-hero-main .tbb-overlay-content h2 {
    -webkit-line-clamp: 3 !important
  }
  .tbb-overlay-content .tbb-meta {
    font-size: 9px !important;
    letter-spacing: .11em !important;
    gap: 6px !important
  }
  .tbb-overlay-content .tbb-pill {
    font-size: 8.5px !important;
    padding: 6px 10px !important
  }
}

@media(max-width:390px) {
  .tbb-overlay-content h2,
  .tbb-hero-small .tbb-overlay-content h2,
  .tbb-hero-black .tbb-overlay-content h2 {
    font-size: 20px !important
  }
  .tbb-overlay-content .tbb-meta {
    font-size: 8px !important
  }
  .tbb-overlay-content {
    padding: 14px !important
  }
  .tbb-overlay-content .tbb-pill {
    font-size: 8px !important;
    padding: 5px 9px !important
  }
}

/* v2.6.1 final desktop hamburger override
   Keep the hamburger completely hidden on desktop even if older cached rules or Customizer CSS load later. */

@media screen and (min-width: 769px) {
  html body .tbb-site-header .tbb-mainbar>button.tbb-mobile-toggle,
  html body .tbb-site-header button.tbb-mobile-toggle {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    min-width: 0 !important;
    max-width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -9999px !important;
  }
  html body .tbb-site-header .tbb-desktop-nav {
    display: flex !important;
    visibility: visible !important;
  }
  html body .tbb-site-header .tbb-mobile-panel {
    display: none !important;
    visibility: hidden !important;
    max-height: 0 !important;
    overflow: hidden !important;
  }
}

@media screen and (max-width: 768px) {
  html body .tbb-site-header .tbb-mainbar>button.tbb-mobile-toggle,
  html body .tbb-site-header button.tbb-mobile-toggle {
    display: inline-grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    position: relative !important;
    left: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: auto !important;
  }
  html body .tbb-site-header .tbb-desktop-nav {
    display: none !important;
  }
  html body .tbb-site-header .tbb-mobile-panel {
    display: block !important;
  }
}

/* About Us page */

.tbb-about-page {
  margin-bottom: 110px;
  overflow: hidden
}

.tbb-about-hero {
  padding: 72px 0 88px;
  background: linear-gradient(180deg, #fff 0%, var(--zinc-50) 100%);
  border-bottom: 1px solid var(--zinc-200)
}

.tbb-about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center
}

.tbb-about-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .22em
}

.tbb-about-copy h1 {
  margin: 0 0 28px;
  color: var(--zinc-900);
  font-size: clamp(48px, 6vw, 92px);
  line-height: .92;
  font-weight: 950;
  letter-spacing: -.075em
}

.tbb-about-copy p {
  margin: 0 0 20px;
  color: var(--zinc-600);
  font-size: 20px;
  line-height: 1.72;
  font-weight: 300
}

.tbb-about-image-wrap {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 41, 112, .16);
  background: #fff
}

.tbb-about-image-wrap img {
  width: 100%;
  height: auto;
  display: block
}

.tbb-about-values {
  padding: 84px 0 30px
}

.tbb-about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.tbb-about-values-grid article {
  padding: 34px;
  border: 1px solid var(--zinc-200);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 24, 27, .04)
}

.tbb-about-values-grid h2 {
  margin: 0 0 14px;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -.035em;
  color: var(--zinc-900)
}

.tbb-about-values-grid p {
  margin: 0;
  color: var(--zinc-600);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300
}

.tbb-authors-section {
  padding: 58px 0 110px
}

.tbb-author-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.tbb-author-card {
  padding: 30px 24px;
  border: 1px solid var(--zinc-200);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(24, 24, 27, .055);
  transition: .28s ease
}

.tbb-author-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(0, 41, 112, .12);
  border-color: color-mix(in srgb, var(--brand) 28%, var(--zinc-200))
}

.tbb-author-avatar {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: linear-gradient(135deg, var(--brand), #3b82f6);
  color: #fff;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: .02em
}

.tbb-author-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -.035em;
  color: var(--zinc-900)
}

.tbb-author-card h3 a:hover {
  color: var(--brand)
}

.tbb-author-card p {
  margin: 0 0 22px;
  color: var(--zinc-600);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 300
}

.tbb-author-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .14em
}

.tbb-author-link:hover {
  gap: 12px;
  color: var(--brand-dark)
}

@media(max-width:1024px) {
  .tbb-about-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }
  .tbb-author-grid {
    grid-template-columns: repeat(2, 1fr)
  }
  .tbb-about-values-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:720px) {
  .tbb-about-page {
    margin-bottom: 56px
  }
  .tbb-about-hero {
    padding: 48px 0 58px
  }
  .tbb-about-copy h1 {
    font-size: clamp(42px, 13vw, 60px);
    line-height: .95
  }
  .tbb-about-copy p {
    font-size: 18px
  }
  .tbb-about-image-wrap {
    border-radius: 24px
  }
  .tbb-about-values {
    padding: 54px 0 20px
  }
  .tbb-about-values-grid article {
    padding: 26px;
    border-radius: 22px
  }
  .tbb-authors-section {
    padding: 42px 0 72px
  }
  .tbb-author-grid {
    grid-template-columns: 1fr
  }
  .tbb-author-card {
    border-radius: 24px
  }
  .tbb-author-avatar {
    width: 68px;
    height: 68px;
    border-radius: 20px
  }
}

/* About Publication page extracted from the supplied design */

.tbb-about-publication-page {
  background: rgba(250, 250, 250, .5);
  padding: 64px 0 100px;
  overflow: hidden
}

.tbb-about-publication-container {
  width: min(100% - 32px, 1280px);
  margin-inline: auto
}

.tbb-about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 34px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #a1a1aa
}

.tbb-about-breadcrumb a:hover {
  color: #002970
}

.tbb-about-breadcrumb span:last-child {
  color: #002970
}

.tbb-about-publication-hero {
  position: relative;
  overflow: hidden;
  background: #002970;
  color: #fff;
  border-radius: 28px;
  padding: 76px 78px;
  margin-bottom: 66px;
  box-shadow: 0 28px 70px rgba(0, 41, 112, .22)
}

.tbb-about-grid-bg {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
  background-size: 16px 16px
}

.tbb-about-publication-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px
}

.tbb-about-established {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(8px);
  color: #dbeafe;
  border-radius: 999px;
  padding: 8px 13px;
  margin-bottom: 30px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase
}

.tbb-about-established svg,
.tbb-about-standard-icon svg,
.tbb-about-publications-link svg {
  display: block
}

.tbb-about-publication-hero h1 {
  font-family: Outfit, Inter, system-ui, sans-serif;
  color: #fff !important;
  margin: 0 0 26px;
  font-size: clamp(46px, 6.2vw, 80px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.055em;
  max-width: 720px
}

.tbb-about-publication-hero p {
  margin: 0;
  max-width: 700px;
  color: rgba(219, 234, 254, .92);
  font-size: 20px;
  line-height: 1.65;
  font-weight: 300
}

.tbb-about-manifest-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(340px, 5fr);
  gap: 58px;
  align-items: stretch;
  margin-bottom: 82px
}

.tbb-about-narrative {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px
}

.tbb-about-narrative h2 {
  margin: 0;
  color: #18181b !important;
  font-size: clamp(31px, 3.4vw, 42px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -.045em;
  max-width: 720px
}

.tbb-about-narrative p {
  margin: 0 0 26px;
  color: #52525b;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 300
}

.tbb-about-standard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-top: 22px
}

.tbb-about-standard-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border: 1px solid #eeeef0;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(24, 24, 27, .045)
}

.tbb-about-standard-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #eff6ff;
  color: #002970;
  display: grid;
  place-items: center;
  flex: 0 0 auto
}

.tbb-about-standard-card h3 {
  margin: 0 0 8px;
  color: #18181b !important;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -.01em
}

.tbb-about-standard-card p {
  margin: 0;
  color: #71717a;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 300
}

.tbb-about-manifest-card {
  background: #fff;
  border: 1px solid rgba(228, 228, 231, .8);
  border-radius: 28px;
  padding: 44px 42px;
  box-shadow: 0 14px 38px rgba(24, 24, 27, .085);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 42px
}

.tbb-about-manifest-card>div:first-child>span,
.tbb-about-contributors-head span {
  display: block;
  color: #002970;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 950
}

.tbb-about-manifest-card h3 {
  margin: 12px 0 24px;
  color: #18181b !important;
  font-size: 26px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -.025em
}

.tbb-about-manifest-card p {
  margin: 0 0 22px;
  color: #71717a;
  font-size: 18px;
  line-height: 1.72;
  font-weight: 300
}

.tbb-about-stats {
  border-top: 1px solid #f1f1f3;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center
}

.tbb-about-stats div {
  text-align: center;
  min-width: 0
}

.tbb-about-stats strong {
  display: block;
  color: #002970;
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.035em
}

.tbb-about-stats small {
  display: block;
  margin-top: 8px;
  color: #a1a1aa;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  white-space: nowrap
}

.tbb-about-stats i {
  display: block;
  width: 1px;
  height: 40px;
  background: #e4e4e7
}

.tbb-about-contributors {
  margin-top: 10px
}

.tbb-about-contributors-head {
  border-bottom: 1px solid #e4e4e7;
  padding-bottom: 26px;
  margin-bottom: 46px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px
}

.tbb-about-contributors-head h2 {
  margin: 10px 0 0;
  color: #18181b !important;
  font-size: clamp(32px, 3.8vw, 44px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.045em
}

.tbb-about-contributors-head p {
  margin: 0;
  max-width: 460px;
  color: #71717a;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 300
}

.tbb-about-author-grid-new {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 40px
}

.tbb-about-author-card-new {
  background: #fff;
  border: 1px solid #eeeef0;
  border-radius: 26px;
  padding: 34px 32px;
  box-shadow: 0 12px 30px rgba(24, 24, 27, .045);
  display: flex;
  gap: 32px;
  align-items: flex-start;
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease
}

.tbb-about-author-card-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 41, 112, .11);
  border-color: rgba(0, 41, 112, .16)
}

.tbb-about-author-image {
  width: 124px;
  height: 124px;
  border-radius: 18px;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 9px 20px rgba(24, 24, 27, .14);
  background: #f4f4f5
}

.tbb-about-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease
}

.tbb-about-author-card-new:hover .tbb-about-author-image img {
  transform: scale(1.055)
}

.tbb-about-author-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start
}

.tbb-about-author-info h3 {
  margin: 8px 0 10px;
  color: #18181b !important;
  font-size: 26px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.035em
}

.tbb-about-author-info h3 a:hover {
  color: #002970
}

.tbb-about-author-role {
  margin: 0 0 16px !important;
  color: #71717a !important;
  font-size: 13px !important;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 800 !important;
  line-height: 1.35 !important
}

.tbb-about-author-bio {
  margin: 0 0 18px !important;
  color: #52525b !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
  font-weight: 300 !important
}

.tbb-about-focus {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 8px;
  background: #fafafa;
  color: #a1a1aa;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
  padding: 9px 12px;
  margin-bottom: 24px
}

.tbb-about-focus b {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #a1a1aa;
  display: block;
  flex: 0 0 auto
}

.tbb-about-publications-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: #002970;
  font-size: 13px;
  font-weight: 900;
  transition: gap .2s ease, color .2s ease
}

.tbb-about-publications-link:hover {
  gap: 14px;
  color: #2563eb
}

.tbb-about-publications-link svg {
  stroke: currentColor
}

@media(max-width:1050px) {
  .tbb-about-manifest-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }
  .tbb-about-author-card-new {
    gap: 24px
  }
  .tbb-about-author-image {
    width: 104px;
    height: 104px
  }
  .tbb-about-publication-hero {
    padding: 60px 48px
  }
  .tbb-about-author-grid-new {
    gap: 26px
  }
}

@media(max-width:820px) {
  .tbb-about-publication-page {
    padding: 42px 0 72px
  }
  .tbb-about-publication-container {
    width: min(100% - 24px, 1280px)
  }
  .tbb-about-publication-hero {
    border-radius: 24px;
    padding: 46px 28px;
    margin-bottom: 48px
  }
  .tbb-about-publication-hero h1 {
    font-size: clamp(42px, 11vw, 62px)
  }
  .tbb-about-publication-hero p {
    font-size: 18px
  }
  .tbb-about-standard-grid,
  .tbb-about-author-grid-new {
    grid-template-columns: 1fr
  }
  .tbb-about-contributors-head {
    display: block
  }
  .tbb-about-contributors-head p {
    margin-top: 18px;
    max-width: 100%
  }
  .tbb-about-manifest-card {
    padding: 34px 26px;
    border-radius: 24px
  }
  .tbb-about-author-card-new {
    padding: 28px 24px;
    border-radius: 24px
  }
  .tbb-about-stats {
    gap: 10px
  }
  .tbb-about-stats strong {
    font-size: 22px
  }
  .tbb-about-stats small {
    font-size: 9px
  }
}

@media(max-width:560px) {
  .tbb-about-breadcrumb {
    font-size: 10px;
    gap: 7px;
    margin-bottom: 24px
  }
  .tbb-about-publication-hero {
    padding: 36px 22px
  }
  .tbb-about-established {
    font-size: 10px
  }
  .tbb-about-publication-hero h1 {
    font-size: 40px;
    line-height: 1.05
  }
  .tbb-about-publication-hero p {
    font-size: 16px;
    line-height: 1.6
  }
  .tbb-about-narrative h2,
  .tbb-about-contributors-head h2 {
    font-size: 30px
  }
  .tbb-about-narrative p {
    font-size: 16px
  }
  .tbb-about-standard-card {
    padding: 20px
  }
  .tbb-about-stats {
    align-items: flex-start
  }
  .tbb-about-stats small {
    white-space: normal
  }
  .tbb-about-author-card-new {
    display: block
  }
  .tbb-about-author-image {
    width: 112px;
    height: 112px;
    margin-bottom: 22px
  }
  .tbb-about-author-info h3 {
    font-size: 24px
  }
  .tbb-about-focus {
    display: flex;
    width: 100%
  }
}

/* v2.8.1: remove author stats and focus labels from About author cards */

.tbb-about-author-info>span,
.tbb-about-focus {
  display: none !important;
}

.tbb-about-author-info h3 {
  margin-top: 0 !important;
}

.tbb-about-author-bio {
  margin-bottom: 24px !important;
}

/* v2.8.2: About page mobile optimisation */

.tbb-about-author-image {
  display: block !important;
  line-height: 0;
  max-width: 100%;
}

.tbb-about-author-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media(max-width:640px) {
  .tbb-about-publication-page {
    padding: 30px 0 58px !important;
    overflow: hidden;
  }
  .tbb-about-publication-container {
    width: calc(100% - 28px) !important;
    margin-inline: auto;
  }
  .tbb-about-breadcrumb {
    margin-bottom: 20px !important;
    white-space: normal;
    line-height: 1.4;
  }
  .tbb-about-publication-hero {
    border-radius: 20px !important;
    padding: 30px 20px 34px !important;
    margin-bottom: 38px !important;
    box-shadow: 0 16px 38px rgba(0, 41, 112, .16) !important;
  }
  .tbb-about-established {
    font-size: 9px !important;
    padding: 7px 10px !important;
    margin-bottom: 22px !important;
    letter-spacing: .06em !important;
  }
  .tbb-about-publication-hero h1 {
    font-size: clamp(34px, 12vw, 46px) !important;
    line-height: 1.03 !important;
    letter-spacing: -.055em !important;
    margin-bottom: 18px !important;
  }
  .tbb-about-publication-hero p {
    font-size: 15px !important;
    line-height: 1.62 !important;
  }
  .tbb-about-manifest-grid {
    gap: 28px !important;
    margin-bottom: 54px !important;
  }
  .tbb-about-narrative {
    gap: 22px !important;
  }
  .tbb-about-narrative h2,
  .tbb-about-contributors-head h2 {
    font-size: 28px !important;
    line-height: 1.16 !important;
    letter-spacing: -.035em !important;
  }
  .tbb-about-narrative p {
    font-size: 15px !important;
    line-height: 1.68 !important;
    margin-bottom: 18px !important;
  }
  .tbb-about-standard-grid {
    gap: 14px !important;
    padding-top: 6px !important;
  }
  .tbb-about-standard-card {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    gap: 14px !important;
    padding: 18px !important;
    border-radius: 16px !important;
  }
  .tbb-about-standard-icon {
    width: 42px !important;
    height: 42px !important;
    border-radius: 11px !important;
  }
  .tbb-about-manifest-card {
    padding: 26px 20px !important;
    border-radius: 20px !important;
    gap: 28px !important;
  }
  .tbb-about-manifest-card h3 {
    font-size: 23px !important;
    line-height: 1.24 !important;
    margin-bottom: 18px !important;
  }
  .tbb-about-manifest-card p {
    font-size: 14px !important;
    line-height: 1.65 !important;
    margin-bottom: 16px !important;
  }
  .tbb-about-stats {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
    padding-top: 22px !important;
  }
  .tbb-about-stats i {
    display: none !important;
  }
  .tbb-about-stats strong {
    font-size: 20px !important;
  }
  .tbb-about-stats small {
    font-size: 8px !important;
    line-height: 1.25 !important;
    letter-spacing: .08em !important;
  }
  .tbb-about-contributors-head {
    padding-bottom: 20px !important;
    margin-bottom: 24px !important;
    display: block !important;
  }
  .tbb-about-contributors-head span {
    font-size: 10px !important;
    letter-spacing: .14em !important;
  }
  .tbb-about-contributors-head p {
    font-size: 14px !important;
    line-height: 1.55 !important;
    margin-top: 14px !important;
  }
  .tbb-about-author-grid-new {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .tbb-about-author-card-new {
    display: grid !important;
    grid-template-columns: 88px minmax(0, 1fr) !important;
    gap: 16px !important;
    align-items: start !important;
    padding: 18px !important;
    border-radius: 18px !important;
    box-shadow: 0 10px 24px rgba(24, 24, 27, .055) !important;
    overflow: hidden !important;
  }
  .tbb-about-author-card-new:hover {
    transform: none !important;
  }
  .tbb-about-author-image {
    width: 88px !important;
    height: 88px !important;
    margin: 0 !important;
    border-radius: 15px !important;
    box-shadow: 0 8px 16px rgba(24, 24, 27, .12) !important;
  }
  .tbb-about-author-info {
    min-width: 0 !important;
    width: 100% !important;
  }
  .tbb-about-author-info h3 {
    font-size: 22px !important;
    line-height: 1.08 !important;
    margin: 0 0 7px !important;
    overflow-wrap: anywhere;
  }
  .tbb-about-author-role {
    font-size: 10.5px !important;
    letter-spacing: .1em !important;
    line-height: 1.32 !important;
    margin: 0 0 10px !important;
    overflow-wrap: anywhere;
  }
  .tbb-about-author-bio {
    font-size: 13.5px !important;
    line-height: 1.55 !important;
    margin: 0 0 13px !important;
  }
  .tbb-about-publications-link {
    font-size: 11px !important;
    gap: 7px !important;
    letter-spacing: .02em !important;
  }
}

@media(max-width:420px) {
  .tbb-about-publication-container {
    width: calc(100% - 24px) !important;
  }
  .tbb-about-author-card-new {
    grid-template-columns: 76px minmax(0, 1fr) !important;
    gap: 14px !important;
    padding: 16px !important;
  }
  .tbb-about-author-image {
    width: 76px !important;
    height: 76px !important;
    border-radius: 14px !important;
  }
  .tbb-about-author-info h3 {
    font-size: 20px !important;
  }
  .tbb-about-author-role {
    font-size: 10px !important;
  }
  .tbb-about-author-bio {
    font-size: 13px !important;
  }
}

/* v2.8.3: final hard mobile fix for About page author cards */

@media screen and (max-width: 767px) {
  html body .tbb-about-publication-page .tbb-about-author-grid-new {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  html body .tbb-about-publication-page .tbb-about-author-card-new {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 14px !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 16px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }
  html body .tbb-about-publication-page .tbb-about-author-card-new .tbb-about-author-image {
    display: block !important;
    flex: 0 0 78px !important;
    width: 78px !important;
    min-width: 78px !important;
    max-width: 78px !important;
    height: 78px !important;
    min-height: 78px !important;
    max-height: 78px !important;
    aspect-ratio: 1/1 !important;
    margin: 0 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
  }
  html body .tbb-about-publication-page .tbb-about-author-card-new .tbb-about-author-image img {
    display: block !important;
    width: 78px !important;
    min-width: 78px !important;
    max-width: 78px !important;
    height: 78px !important;
    min-height: 78px !important;
    max-height: 78px !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  html body .tbb-about-publication-page .tbb-about-author-card-new .tbb-about-author-info {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: auto !important;
    display: block !important;
  }
  html body .tbb-about-publication-page .tbb-about-author-card-new .tbb-about-author-info h3 {
    font-size: 20px !important;
    line-height: 1.1 !important;
    margin: 0 0 6px !important;
    letter-spacing: -.03em !important;
  }
  html body .tbb-about-publication-page .tbb-about-author-card-new .tbb-about-author-role {
    font-size: 9.5px !important;
    line-height: 1.28 !important;
    letter-spacing: .08em !important;
    margin: 0 0 9px !important;
  }
  html body .tbb-about-publication-page .tbb-about-author-card-new .tbb-about-author-bio {
    font-size: 13px !important;
    line-height: 1.48 !important;
    margin: 0 0 12px !important;
  }
  html body .tbb-about-publication-page .tbb-about-author-card-new .tbb-about-publications-link {
    font-size: 10.5px !important;
    line-height: 1.2 !important;
    letter-spacing: .01em !important;
  }
}

@media screen and (max-width: 374px) {
  html body .tbb-about-publication-page .tbb-about-author-card-new {
    padding: 14px !important;
    gap: 12px !important;
  }
  html body .tbb-about-publication-page .tbb-about-author-card-new .tbb-about-author-image,
  html body .tbb-about-publication-page .tbb-about-author-card-new .tbb-about-author-image img {
    flex-basis: 68px !important;
    width: 68px !important;
    min-width: 68px !important;
    max-width: 68px !important;
    height: 68px !important;
    min-height: 68px !important;
    max-height: 68px !important;
  }
}

/* About page mobile author-card final override - v2.8.4 */

@media screen and (max-width: 767px) {
  body .tbb-about-publication-page .tbb-about-author-grid-new {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  body .tbb-about-publication-page .tbb-about-author-card-new {
    display: grid !important;
    grid-template-columns: 76px minmax(0, 1fr) !important;
    align-items: start !important;
    gap: 14px !important;
    padding: 16px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
  }
  body .tbb-about-publication-page .tbb-about-author-image,
  body .tbb-about-publication-page .tbb-about-author-image img {
    width: 76px !important;
    min-width: 76px !important;
    max-width: 76px !important;
    height: 76px !important;
    min-height: 76px !important;
    max-height: 76px !important;
    aspect-ratio: 1/1 !important;
    margin: 0 !important;
    object-fit: cover !important;
  }
  body .tbb-about-publication-page .tbb-about-author-info h3 {
    font-size: 20px !important;
    line-height: 1.08 !important;
    margin: 0 0 6px !important;
  }
  body .tbb-about-publication-page .tbb-about-author-role {
    font-size: 9.5px !important;
    line-height: 1.3 !important;
    letter-spacing: .08em !important;
    margin: 0 0 9px !important;
  }
  body .tbb-about-publication-page .tbb-about-author-bio {
    font-size: 13px !important;
    line-height: 1.45 !important;
    margin: 0 0 12px !important;
  }
}

@media screen and (max-width: 374px) {
  body .tbb-about-publication-page .tbb-about-author-card-new {
    grid-template-columns: 64px minmax(0, 1fr) !important;
    gap: 12px !important;
    padding: 14px !important;
  }
  body .tbb-about-publication-page .tbb-about-author-image,
  body .tbb-about-publication-page .tbb-about-author-image img {
    width: 64px !important;
    min-width: 64px !important;
    max-width: 64px !important;
    height: 64px !important;
    min-height: 64px !important;
    max-height: 64px !important;
  }
}

/* v2.8.5 homepage H1 editorial welcome section from source design */

.tbb-home-h1-section {
  padding: 64px 0;
  margin: 8px auto 40px;
  border-top: 1px solid rgba(228, 228, 231, .8);
  border-bottom: 1px solid rgba(228, 228, 231, .8);
}

.tbb-home-h1-inner {
  max-width: 900px;
}

.tbb-home-h1-inner h1 {
  margin: 0 0 24px;
  color: var(--brand);
  font-size: clamp(40px, 5.7vw, 88px);
  line-height: 1.02;
  letter-spacing: -.065em;
  font-weight: 900;
}

.tbb-home-h1-inner h1 span {
  color: var(--zinc-900);
  font-weight: 700 !important;
}

.tbb-home-h1-inner p {
  max-width: 720px;
  margin: 0 0 32px;
  color: var(--zinc-600);
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.55;
  font-weight: 300;
}

.tbb-home-h1-inner p strong {
  display: inline-block;
  margin-left: 4px;
  padding: 2px 8px;
  border-radius: 7px;
  background: #fef3c7;
  color: var(--zinc-900);
  font-weight: 800;
}

.tbb-home-h1-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 18px;
  background: var(--brand);
  color: #fff !important;
  box-shadow: 0 16px 32px rgba(0, 41, 112, .16);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.tbb-home-h1-cta:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(0, 41, 112, .2);
}

.tbb-home-h1-cta svg {
  stroke: currentColor;
}

@media(max-width:900px) {
  .tbb-home-h1-section {
    padding: 48px 0;
    margin: 0 auto 28px;
  }
  .tbb-home-h1-inner h1 {
    font-size: clamp(34px, 9vw, 58px);
    letter-spacing: -.055em;
  }
  .tbb-home-h1-inner p {
    font-size: 18px;
    line-height: 1.55;
  }
}

@media(max-width:520px) {
  .tbb-home-h1-section {
    padding: 36px 0;
    margin-bottom: 20px;
  }
  .tbb-home-h1-inner h1 {
    font-size: 34px;
    line-height: 1.05;
    margin-bottom: 18px;
  }
  .tbb-home-h1-inner p {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .tbb-home-h1-inner p strong {
    margin: 6px 0 0 0;
  }
  .tbb-home-h1-cta {
    width: 100%;
    justify-content: center;
    padding: 15px 18px;
    font-size: 10.5px;
    letter-spacing: .1em;
  }
}

/* Archive and category title weight fix */
body.category .tbb-archive-header h1,
body.archive .tbb-archive-header h1,
body.search .tbb-search-header h1 {
  font-weight: 500 !important;
}

.tbb-business-link h4,
.tbb-business-link h4 a,
.tbb-business-links h4 {
  font-weight: 500 !important;
}

.tbb-toc-toggle b svg,
.tbb-toc-toggle b .tbb-icon,
.tbb-toc-toggle b::after {
  display: none !important;
  content: none !important;
}

.tbb-toc-toggle b::after,
.tbb-toc-toggle::after {
  content: none !important;
  display: none !important;
}

.tbb-toc-toggle b {
  padding-right: 14px !important;
}

.tbb-author-box {
  display: grid !important;
  grid-template-columns: 120px 1fr !important;
  gap: 36px !important;
  align-items: start !important;
}

.tbb-author-avatar,
.tbb-author-box > div:first-child {
  width: 120px !important;
  height: 120px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
}

.tbb-author-avatar img,
.tbb-author-box > div:first-child img {
  width: 120px !important;
  height: 120px !important;
  border-radius: 18px !important;
  object-fit: cover !important;
}

.tbb-author-box section {
  padding-top: 18px !important;
}

.tbb-author-box h3 {
  margin-top: 0 !important;
}
@media (max-width: 720px) {
  .tbb-author-box,
  .tbb-author-mobile-fixed {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    justify-items: center !important;
    align-items: center !important;
    text-align: center !important;
    padding: 28px 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .tbb-author-avatar,
  .tbb-author-box > div:first-child {
    width: 96px !important;
    height: 96px !important;
    margin: 0 auto !important;
    border-radius: 18px !important;
    overflow: hidden !important;
  }

  .tbb-author-avatar img,
  .tbb-author-box > div:first-child img {
    width: 96px !important;
    height: 96px !important;
    border-radius: 18px !important;
    object-fit: cover !important;
    margin: 0 auto !important;
  }

  .tbb-author-content,
  .tbb-author-box section {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding-top: 0 !important;
    text-align: center !important;
  }

  .tbb-author-box h3,
  .tbb-author-box p,
  .tbb-author-box a,
  .tbb-author-link {
    text-align: center !important;
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  .tbb-author-link {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
  }
}

@media screen and (max-width: 720px) {
  body.single-post .tbb-post-content h2,
  body.single .tbb-post-content h2,
  html body .tbb-post-content h2 {
    letter-spacing: 0.018em !important;
  }

  body.single-post .tbb-post-content h3,
  body.single .tbb-post-content h3,
  html body .tbb-post-content h3 {
    letter-spacing: 0.016em !important;
  }

  body.single-post .tbb-post-content p,
  body.single-post .tbb-post-content li,
  body.single .tbb-post-content p,
  body.single .tbb-post-content li,
  html body .tbb-post-content p,
  html body .tbb-post-content li {
    letter-spacing: 0.016em !important;
  }

  body.single-post .tbb-toc,
  body.single-post .tbb-toc *,
  body.single .tbb-toc,
  body.single .tbb-toc *,
  html body .tbb-toc,
  html body .tbb-toc * {
    letter-spacing: 0.016em !important;
  }
}
