/* =============================================================================
   True Theme — Main Stylesheet (Redesign)
   True Capital Talk | Financial Journalism
   Fonts: Outfit · DM Sans · Playfair Display · Manrope · Inter
   ============================================================================= */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────────────────────── */

:root {
  /* Brand colours */
  --tt-blue: #2738d0;
  --tt-blue-hover: #1e2aaa;
  --tt-blue-light: #eef0fc; /* selago */
  --tt-blue-pale: #f7f8ff; /* zircon */
  --tt-white: #ffffff;
  --tt-dark: #111111; /* cod-gray */
  --tt-gray: #555555; /* emperor */
  --tt-border: #e5e7f0; /* athens-gray */
  --tt-green: #7ee8a2;

  /* Typography */
  --tt-font-outfit: "Outfit", sans-serif;
  --tt-font-body: "DM Sans", sans-serif;
  --tt-font-serif: "Playfair Display", serif;
  --tt-font-logo: "Manrope", sans-serif;
  --tt-font-mono: "Inter", sans-serif;

  /* Layout */
  --tt-max-w: 1520px;
  --tt-px: clamp(1.25rem, 2.5vw, 2rem);
  --tt-px-sm: clamp(1rem, 2vw, 1.5rem);
  --tt-radius-sm: 6px;
  --tt-radius-md: 12px;
  --tt-radius-lg: 20px;
  --tt-radius-pill: 100px;

  /* Shadows */
  --tt-shadow-card: 0 2px 12px rgba(39, 56, 208, 0.07);
  --tt-shadow-float: 0 8px 40px rgba(39, 56, 208, 0.15);
}

/* ── RESET / BASE ──────────────────────────────────────────────────────────── */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--tt-font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--tt-dark);
  background-color: var(--tt-white);
  line-height: 1.65;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ── INNER WRAPPER ─────────────────────────────────────────────────────────── */

.tt-inner {
  max-width: var(--tt-max-w);
  margin: 0 auto;
  padding: 0 var(--tt-px);
}

/* ── UTILITY ───────────────────────────────────────────────────────────────── */

.tt-pill-label {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  background: var(--tt-blue-light);
  color: var(--tt-blue);
  font-family: var(--tt-font-outfit);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 5px 12px;
  border-radius: var(--tt-radius-sm);
  margin-bottom: 20px;
}

.tt-form-error {
  color: #c0392b;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* ── BUTTONS ───────────────────────────────────────────────────────────────── */

.tt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border-radius: var(--tt-radius-pill);
  font-family: var(--tt-font-outfit);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  transition:
    background 0.18s ease,
    opacity 0.18s ease,
    transform 0.18s ease;
  white-space: nowrap;
  cursor: pointer;
}

.tt-btn--filled {
  background: var(--tt-blue);
  color: var(--tt-white);
  border: 2px solid var(--tt-blue);
  border-radius: 10px;
}

.tt-btn--filled:hover {
  background: var(--tt-blue-hover);
  border-color: var(--tt-blue-hover);
}

.tt-btn--outline {
  background: transparent;
  color: var(--tt-blue);
  border: 2px solid var(--tt-blue);
  border-radius: 10px;
}

.tt-btn--outline:hover {
  background: var(--tt-blue);
  color: var(--tt-white);
}

.tt-btn--white {
  background: var(--tt-white);
  color: var(--tt-blue);
  border: 2px solid var(--tt-white);
}

.tt-btn--white:hover {
  opacity: 0.9;
}

.tt-tag {
  display: inline-block;
  font-family: var(--tt-font-outfit);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--tt-blue);
  background: none;
  padding: 0;
  border-radius: 0;
}

/* ── NAVIGATION ────────────────────────────────────────────────────────────── */

.tt-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--tt-border);
}

.tt-nav__inner {
  max-width: var(--tt-max-w);
  margin: 0 auto;
  padding: 18px var(--tt-px);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.tt-nav__logo img {
  height: 40px;
  width: auto;
}

.tt-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.tt-nav__links a {
  font-family: var(--tt-font-outfit);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--tt-dark);
  transition: color 0.15s ease;
}

.tt-nav__links a:hover {
  color: var(--tt-blue);
}

.tt-nav__cta {
  flex-shrink: 0;
}

.tt-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.tt-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--tt-dark);
  border-radius: 2px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.tt-nav__mobile {
  background: var(--tt-white);
  border-top: 1px solid var(--tt-border);
  padding: 1rem var(--tt-px-sm) 1.5rem;
  display: none;
}

.tt-nav__mobile.is-open {
  display: block;
}

.tt-nav__mobile ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tt-nav__mobile a {
  font-family: var(--tt-font-outfit);
  font-size: 1rem;
  font-weight: 500;
  color: var(--tt-dark);
}

.tt-nav__mobile a.tt-btn--filled {
  color: var(--tt-white);
}

/* ── HOME HERO ─────────────────────────────────────────────────────────────── */

/* ── HERO ──────────────────────────────────────────────────────────────────── */

.tt-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: stretch;
  background:
    url("../images/hero-bg.png") center / cover no-repeat,
    #0b0e1c;
}

.tt-hero__inner {
  max-width: var(--tt-max-w);
  width: 100%;
  margin: 0 auto;
  padding: 80px var(--tt-px) 72px;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: end;
}

/* Left column: all content */
.tt-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tt-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--tt-radius-pill);
  padding: 6px 14px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--tt-font-outfit);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  align-self: flex-start;
}

.tt-hero__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tt-green);
  flex-shrink: 0;
}

.tt-hero__heading {
  font-family: var(--tt-font-outfit);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.05;
  color: var(--tt-white);
  max-width: 850px;
}

.tt-hero__heading em {
  font-style: normal;
  color: var(--tt-blue);
}

.tt-hero__subline {
  font-family: var(--tt-font-body);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  max-width: 460px;
}

.tt-hero__form-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 490px;
}

.tt-hero__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tt-hero__form-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.tt-hero__input {
  flex: 1;
  min-height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  color: var(--tt-white);
  font-family: var(--tt-font-body);
  font-size: 0.9375rem;
  padding: 0 20px;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
  outline: none;
}

.tt-hero__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.tt-hero__input:focus {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.15);
}

.tt-hero__input.is-invalid {
  border-color: #ff6b6b;
}

.tt-hero__submit {
  flex-shrink: 0;
  min-height: 50px;
  background: var(--tt-white);
  color: var(--tt-blue);
  border: none;
  border-radius: 10px;
  font-family: var(--tt-font-outfit);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0 28px;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease;
  white-space: nowrap;
}

.tt-hero__submit:hover {
  background: var(--tt-blue-light);
  color: var(--tt-blue-hover);
}

.tt-hero__consent-label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  cursor: pointer;
  position: relative;
}

.tt-hero__consent-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 15px;
  height: 15px;
  top: 1px;
  left: 0;
  margin: 0;
  cursor: pointer;
  z-index: 1;
}

.tt-hero__consent-box {
  width: 15px;
  height: 15px;
  border-radius: 3px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  margin-top: 1px;
  transition:
    background 0.15s ease,
    border-color 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.tt-hero__consent-label input[type="checkbox"]:checked + .tt-hero__consent-box {
  background: var(--tt-blue);
  border-color: var(--tt-blue);
}

.tt-hero__consent-label input[type="checkbox"]:checked + .tt-hero__consent-box::after {
  content: "";
  display: block;
  width: 4px;
  height: 7px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}

.tt-hero__consent-text {
  font-family: var(--tt-font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.tt-hero__form-error {
  font-family: var(--tt-font-body);
  font-size: 0.75rem;
  color: #ff9999;
  margin-top: 2px;
}

.tt-hero__message {
  font-family: var(--tt-font-body);
  font-size: 0.875rem;
  color: var(--tt-green);
  margin-top: 4px;
}

.tt-hero__message.is-error {
  color: #ff6b6b;
}

.tt-hero__note {
  font-family: var(--tt-font-body);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin-top: 16px;
}

/* Right column: stats pinned to bottom-right */
.tt-hero__stats-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-bottom: 4px;
}

.tt-hero__stats {
  display: flex;
  align-items: flex-end;
  gap: 0;
}

.tt-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.tt-hero__stat-value {
  font-family: var(--tt-font-outfit);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--tt-white);
  line-height: 1;
}

.tt-hero__stat-label {
  font-family: var(--tt-font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.tt-hero__stat-divider {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.18);
  margin: 0 28px;
  flex-shrink: 0;
  align-self: center;
}

/* ── LATEST POSTS SECTION ──────────────────────────────────────────────────── */

.tt-posts {
  padding: 80px 0;
}

.tt-posts__inner {
  max-width: var(--tt-max-w);
  margin: 0 auto;
  padding: 0 var(--tt-px);
}

.tt-posts__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 40px;
}

.tt-posts__header-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tt-posts__title {
  font-family: var(--tt-font-serif);
  font-style: italic;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--tt-dark);
  line-height: 1.2;
  max-width: 330px;
}

.tt-posts__see-all {
  font-family: var(--tt-font-outfit);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--tt-blue);
  white-space: nowrap;
  margin-top: 8px;
  transition: opacity 0.15s ease;
}

.tt-posts__see-all:hover {
  opacity: 0.75;
}

.tt-posts__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
}

.tt-posts__col-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── CARD — FEATURED LARGE ─────────────────────────────────────────────────── */

.tt-card-featured {
  display: flex;
  flex-direction: column;
  background: var(--tt-white);
  border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.tt-card-featured:hover {
  box-shadow: var(--tt-shadow-card);
}

.tt-card-featured__img {
  width: 100%;
  min-height: 680px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.tt-card-featured__img-placeholder {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, var(--tt-blue-light) 0%, var(--tt-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.tt-card-featured__body {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.tt-card-featured__category {
  font-family: var(--tt-font-outfit);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--tt-blue);
}

.tt-card-featured__title {
  font-family: var(--tt-font-outfit);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--tt-dark);
  line-height: 1.3;
}

.tt-card-featured__title a {
  color: inherit;
}
.tt-card-featured__title a:hover {
  color: var(--tt-blue);
}

.tt-card-featured__excerpt {
  font-family: var(--tt-font-body);
  font-size: 0.9375rem;
  color: var(--tt-gray);
  line-height: 1.65;
}

.tt-card-featured__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.tt-card-featured__meta span {
  font-family: var(--tt-font-body);
  font-size: 12px;
  color: var(--tt-gray);
}

.tt-card-featured__meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--tt-border);
  flex-shrink: 0;
}

/* ── CARD — SMALL ──────────────────────────────────────────────────────────── */

.tt-card-small {
  display: flex;
  flex-direction: column;
  background: var(--tt-white);
  border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius-md);
  overflow: hidden;
  flex: 1;
  transition: box-shadow 0.2s ease;
}

.tt-card-small:hover {
  box-shadow: var(--tt-shadow-card);
}

.tt-card-small__img {
  width: 100%;
  /* height: 160px; */
  object-fit: cover;
  object-position: center top;
  display: block;
}

.tt-card-small__img-placeholder {
  width: 100%;
  /* height: 160px; */
  background: linear-gradient(135deg, var(--tt-blue-light) 0%, #c7d2f8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.tt-card-small__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.tt-card-small__category {
  font-family: var(--tt-font-outfit);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--tt-blue);
}

.tt-card-small__title {
  font-family: var(--tt-font-outfit);
  font-size: 1rem;
  font-weight: 700;
  color: var(--tt-dark);
  line-height: 1.35;
}

.tt-card-small__title a {
  color: inherit;
}
.tt-card-small__title a:hover {
  color: var(--tt-blue);
}

.tt-card-small__excerpt {
  font-family: var(--tt-font-body);
  font-size: 0.875rem;
  color: var(--tt-gray);
  line-height: 1.6;
}

.tt-card-small__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.tt-card-small__meta span {
  font-family: var(--tt-font-body);
  font-size: 11px;
  color: var(--tt-gray);
}

.tt-card-small__meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--tt-border);
  flex-shrink: 0;
}

/* ── HOME ABOUT SECTION ────────────────────────────────────────────────────── */

.tt-about-home {
  padding: 80px 0;
  background: var(--tt-blue-pale);
}

.tt-about-home__inner {
  max-width: var(--tt-max-w);
  margin: 0 auto;
  padding: 0 var(--tt-px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.tt-about-home__left {
  position: relative;
}

.tt-about-photo {
  position: relative;
  height: 100%;
  min-height: 500px;
  border-radius: var(--tt-radius-lg);
  overflow: hidden;
}

.tt-about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tt-about-signal {
  position: absolute;
  bottom: 80px;
  left: 80px;
  right: 80px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--tt-radius-md);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tt-about-signal__label {
  font-family: var(--tt-font-outfit);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--tt-gray);
}

.tt-about-signal__title {
  font-family: var(--tt-font-outfit);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--tt-dark);
}

.tt-about-signal__bar-wrap {
  height: 6px;
  background: var(--tt-border);
  border-radius: 3px;
  overflow: hidden;
}

.tt-about-signal__bar {
  width: 70%;
  height: 100%;
  background: var(--tt-blue);
  border-radius: 3px;
}

.tt-about-signal__value {
  font-family: var(--tt-font-body);
  font-size: 0.875rem;
  color: var(--tt-gray);
}

.tt-about-home__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.tt-about-home__title {
  font-family: var(--tt-font-serif);
  font-style: italic;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 600;
  color: var(--tt-dark);
  line-height: 1.25;
  max-width: 340px;
}

.tt-about-home__desc {
  font-family: var(--tt-font-body);
  font-size: 1rem;
  color: var(--tt-gray);
  line-height: 1.7;
}

.tt-about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tt-about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.tt-about-feature__num {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--tt-blue);
  color: var(--tt-white);
  font-family: var(--tt-font-outfit);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tt-about-feature__text h4 {
  font-family: var(--tt-font-outfit);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--tt-dark);
  margin-bottom: 4px;
}

.tt-about-feature__text p {
  font-family: var(--tt-font-body);
  font-size: 0.875rem;
  color: var(--tt-gray);
  line-height: 1.6;
}

/* ── HOME SUBSCRIBE SECTION ────────────────────────────────────────────────── */

.tt-subscribe {
  position: relative;
  padding: 100px var(--tt-px);
  background: var(--tt-dark) url("../images/subs.png") center / cover no-repeat;
  text-align: center;
}

.tt-subscribe__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.tt-subscribe__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #a5b4fc;
  font-family: var(--tt-font-outfit);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 5px 12px;
  border-radius: var(--tt-radius-sm);
}

.tt-subscribe__title {
  font-family: var(--tt-font-outfit);
  font-size: 44px;
  font-weight: 800;
  color: var(--tt-white);
  line-height: 1.15;
}

.tt-subscribe__desc {
  font-family: var(--tt-font-body);
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 560px;
}

.tt-subscribe__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tt-subscribe__row {
  display: flex;
  gap: 12px;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
}

.tt-subscribe__input {
  flex: 1;
  min-height: 52px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: var(--tt-white);
  font-family: var(--tt-font-body);
  font-size: 0.9375rem;
  padding: 0 20px;
  outline: none;
  transition: border-color 0.15s ease;
}

.tt-subscribe__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.tt-subscribe__input:focus {
  border-color: rgba(255, 255, 255, 0.5);
}
.tt-subscribe__input.is-invalid {
  border-color: #ff6b6b;
}

.tt-subscribe__btn {
  flex-shrink: 0;
  min-height: 52px;
  background: var(--tt-white);
  color: var(--tt-blue);
  border: none;
  border-radius: 10px;
  font-family: var(--tt-font-outfit);
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 0 32px;
  cursor: pointer;
  transition: opacity 0.18s ease;
}

.tt-subscribe__btn:hover {
  opacity: 0.9;
}

.tt-subscribe__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}

.tt-subscribe__consent-label {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

.tt-subscribe__consent-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 16px;
  height: 16px;
  top: 2px;
  left: 0;
  margin: 0;
  cursor: pointer;
  z-index: 1;
}

.tt-subscribe__consent-box {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  margin-top: 2px;
  pointer-events: none;
  transition:
    background 0.15s ease,
    border-color 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tt-subscribe__consent-label input[type="checkbox"]:checked + .tt-subscribe__consent-box {
  background: var(--tt-blue);
  border-color: var(--tt-blue);
}

.tt-subscribe__consent-label input[type="checkbox"]:checked + .tt-subscribe__consent-box::after {
  content: "";
  display: block;
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

.tt-subscribe__consent-text {
  font-family: var(--tt-font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.tt-subscribe__footer-note {
  font-family: var(--tt-font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 663px;
  margin: 0 auto;
}

.tt-subscribe__error {
  font-size: 0.75rem;
  color: #ff9999;
  text-align: left;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
}

.tt-subscribe__message {
  font-size: 0.875rem;
  color: var(--tt-green);
}

.tt-subscribe__message.is-error {
  color: #ff6b6b;
}

/* ── FOOTER ────────────────────────────────────────────────────────────────── */

.tt-footer {
  background: #060919;
  color: var(--tt-white);
  overflow: hidden;
}

.tt-footer__inner {
  max-width: var(--tt-max-w);
  margin: 0 auto;
  padding: 60px var(--tt-px) 0;
  /* --tt-px on footer__inner is correct: footer bg is full width, inner is contained */
}

.tt-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: start;
}

.tt-footer__nav-heading {
  font-family: var(--tt-font-outfit);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.tt-footer__nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tt-footer__nav-links a {
  font-family: var(--tt-font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.15s ease;
  width: fit-content;
}

.tt-footer__nav-links a:hover {
  color: var(--tt-white);
}

.tt-footer__subscribe-heading {
  font-family: var(--tt-font-outfit);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--tt-white);
  line-height: 1.3;
  margin-bottom: 10px;
}

.tt-footer__subscribe-desc {
  font-family: var(--tt-font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 18px;
}

.tt-footer-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tt-footer-form__row {
  display: flex;
  gap: 10px;
}

.tt-footer-form__input {
  width: 100%;
  min-height: 48px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  color: var(--tt-white);
  font-family: var(--tt-font-body);
  font-size: 0.9375rem;
  padding: 0 18px;
  outline: none;
  transition: border-color 0.15s ease;
}

.tt-footer-form__input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.tt-footer-form__input:focus {
  border-color: rgba(255, 255, 255, 0.55);
}
.tt-footer-form__input.is-invalid {
  border-color: #ff6b6b;
}

.tt-footer-form__btn {
  width: 100%;
  min-height: 48px;
  background: var(--tt-blue);
  color: var(--tt-white);
  border: none;
  border-radius: 8px;
  font-family: var(--tt-font-outfit);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease;
}

.tt-footer-form__btn:hover {
  background: var(--tt-blue-hover);
}

.tt-footer-form__consent {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.tt-footer-form__consent input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 16px;
  height: 16px;
  top: 2px;
  left: 0;
  margin: 0;
  cursor: pointer;
  z-index: 1;
}

.tt-footer-form__consent-box {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  margin-top: 2px;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.15s ease,
    border-color 0.15s ease;
}

.tt-footer-form__consent input[type="checkbox"]:checked + .tt-footer-form__consent-box {
  background: var(--tt-blue);
  border-color: var(--tt-blue);
}

.tt-footer-form__consent input[type="checkbox"]:checked + .tt-footer-form__consent-box::after {
  content: "";
  display: block;
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

.tt-footer-form__consent span:last-child {
  font-family: var(--tt-font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

.tt-footer-form__consent span:last-child a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
}

.tt-footer-form__note {
  font-family: var(--tt-font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin-top: 4px;
}

.tt-footer-form__error {
  font-size: 0.75rem;
  color: #ff9999;
}

.tt-footer-form__message {
  font-size: 0.875rem;
  color: var(--tt-green);
}

.tt-footer-form__message.is-error {
  color: #ff6b6b;
}

.tt-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tt-footer__brand-logo {
  display: inline-flex;
  width: fit-content;
}

.tt-footer__brand-logo img {
  height: 40px;
  width: auto;
  max-width: 100%;
}

.tt-footer__brand-desc {
  font-family: var(--tt-font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 280px;
}

.tt-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 20px 0;
}

.tt-footer__copy {
  font-family: var(--tt-font-body);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

.tt-footer__copy-line2::before {
  content: " ";
}

@media (max-width: 767px) {
  .tt-footer__copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .tt-footer__copy-line2::before {
    content: none;
  }
  .tt-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .tt-footer__legal {
    column-gap: 24px;
    row-gap: 8px;
  }
}

.tt-footer__legal {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tt-footer__legal a {
  font-family: var(--tt-font-body);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.15s ease;
}

.tt-footer__legal a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ── ARCHIVE / CATEGORY ────────────────────────────────────────────────────── */

/* archive.php — posts hero wrapper */
.tt-posts-hero {
  padding: 56px 0 48px;
  background: var(--tt-white);
}

.tt-posts-hero__inner {
  max-width: var(--tt-max-w);
  margin: 0 auto;
  padding: 0 var(--tt-px);
}

.tt-posts-hero__title {
  font-family: "Playfair Display", var(--tt-font-serif);
  font-size: 38px;
  font-style: italic;
  font-weight: 600;
  color: #111;
  line-height: 45.6px;
  margin-bottom: 32px;
}

.tt-posts-hero__blue {
  color: var(--tt-blue);
  font-style: normal;
}

/* archive.php — archival posts section */
.tt-posts-archive {
  padding: 60px 0 80px;
  background: var(--tt-white);
}

.tt-posts-archive__inner {
  max-width: var(--tt-max-w);
  margin: 0 auto;
  padding: 0 var(--tt-px);
}

.tt-posts-archive__title {
  font-family: "Playfair Display", var(--tt-font-serif);
  font-size: 38px;
  font-style: italic;
  font-weight: 600;
  color: #111;
  line-height: 45.6px;
  margin-bottom: 24px;
}

.tt-posts-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.tt-posts-archive__btn {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 11px 24px;
  border-radius: 10px;
  background: #2738d0;
  color: #fff;
  font-family: var(--tt-font-outfit);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.18s ease;
}
.tt-posts-archive__btn[data-loading="true"] {
  opacity: 0.6;
  pointer-events: none;
}
.tt-posts-archive__btn:hover {
  opacity: 0.88;
}

.tt-posts-archive__more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* archive.php — arch card */
.tt-arch-card {
  display: flex;
  flex-direction: column;
  background: var(--tt-white);
  border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius-md);
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.2s ease;
}

.tt-arch-card:hover {
  box-shadow: var(--tt-shadow-card);
}

.tt-arch-card--blue {
}
.tt-arch-card--green {
}
.tt-arch-card--orange {
}

.tt-arch-card__cover-link {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tt-arch-card__thumb {
  width: 100%;
  height: 180px;
  min-height: 250px;
  overflow: hidden;
}

.tt-arch-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tt-arch-card__body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.tt-arch-card__top {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.tt-arch-card__title {
  font-family: var(--tt-font-outfit);
  font-size: 1rem;
  font-weight: 700;
  color: var(--tt-dark);
  line-height: 1.35;
}

.tt-arch-card__title a {
  color: inherit;
}

.tt-arch-card__title a:hover {
  color: var(--tt-blue);
}

.tt-arch-card__excerpt {
  font-family: var(--tt-font-body);
  font-size: 0.875rem;
  color: var(--tt-gray);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tt-arch-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--tt-border);
  font-family: var(--tt-font-body);
  font-size: 11px;
  color: var(--tt-gray);
}

.tt-arch-card__meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--tt-border);
  flex-shrink: 0;
}

/* category.php — archive card category badge */
.tt-archive-card__cat {
  font-family: var(--tt-font-outfit);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--tt-blue);
}

.tt-archive-content {
  padding: 0 0 80px;
}

.tt-archive-content__inner {
  max-width: var(--tt-max-w);
  margin: 0 auto;
  padding: 0 var(--tt-px);
}

.tt-archive-hero {
  padding: 60px 0 40px;
}

.tt-archive-hero__inner {
  max-width: var(--tt-max-w);
  margin: 0 auto;
  padding: 0 var(--tt-px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tt-archive-hero__title {
  font-family: var(--tt-font-serif);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--tt-dark);
  line-height: 1.15;
}

.tt-archive-hero__desc {
  font-family: var(--tt-font-body);
  font-size: 1rem;
  color: var(--tt-gray);
}

.tt-archive-top {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  margin-bottom: 40px;
}

.tt-archive-top__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tt-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.tt-archive-card {
  display: flex;
  flex-direction: column;
  background: var(--tt-white);
  border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.tt-archive-card:hover {
  box-shadow: var(--tt-shadow-card);
}

.tt-archive-card__thumb {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.tt-archive-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.tt-archive-card__thumb--placeholder {
  background: linear-gradient(135deg, var(--tt-blue-light) 0%, #c7d2f8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.tt-archive-card__body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.tt-archive-card__top {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.tt-archive-card__title {
  font-family: var(--tt-font-outfit);
  font-size: 1rem;
  font-weight: 700;
  color: var(--tt-dark);
  line-height: 1.35;
}

.tt-archive-card__title a {
  color: inherit;
}
.tt-archive-card__title a:hover {
  color: var(--tt-blue);
}

.tt-archive-card__excerpt {
  font-family: var(--tt-font-body);
  font-size: 0.875rem;
  color: var(--tt-gray);
  line-height: 1.6;
}

.tt-archive-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--tt-border);
}

.tt-archive-card__meta time,
.tt-archive-card__meta span {
  font-family: var(--tt-font-body);
  font-size: 11px;
  color: var(--tt-gray);
}

.tt-card__meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--tt-border);
  flex-shrink: 0;
}

.tt-archive-pagination {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.tt-archive-pagination .nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.tt-archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-family: var(--tt-font-outfit);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--tt-gray);
  border: 1px solid var(--tt-border);
  transition: all 0.15s ease;
}

.tt-archive-pagination .page-numbers:hover,
.tt-archive-pagination .page-numbers.current {
  background: var(--tt-blue);
  color: var(--tt-white);
  border-color: var(--tt-blue);
}

.tt-archive-pagination .prev,
.tt-archive-pagination .next {
  width: auto;
  padding: 0 16px;
}

/* ── SINGLE POST ───────────────────────────────────────────────────────────── */

.tt-single-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
}

.tt-single-hero__bg {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat #111;
  background-image: var(--tt-hero-img, none);
}

.tt-single-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.tt-single-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  min-height: 340px;
}

.tt-single-hero__top {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tt-single-hero__datebox {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
  padding-bottom: 4px;
}

.tt-single-hero__datebox-date {
  font-family: var(--tt-font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
}

.tt-single-hero__datebox-read {
  font-family: var(--tt-font-outfit);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
}

.tt-single-hero__category-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tt-single-hero__cat {
  background: var(--tt-blue);
  color: var(--tt-white);
  font-family: var(--tt-font-outfit);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 5px 12px;
  border-radius: var(--tt-radius-sm);
}

.tt-single-hero__title {
  font-family: var(--tt-font-outfit);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--tt-white);
  line-height: 1.1;
  max-width: 800px;
}

.tt-single-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tt-single-hero__meta-item {
  font-family: var(--tt-font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.tt-single-hero__meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.tt-single-body {
  padding: 56px 0 80px;
}

.tt-single-body__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: flex-start;
}

.tt-single-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-family: var(--tt-font-outfit);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--tt-gray);
}

.tt-single-breadcrumb a {
  color: var(--tt-blue);
}
.tt-single-breadcrumb a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .tt-single-breadcrumb {
    display: none;
  }
}

.tt-single-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--tt-border);
  border-bottom: 2px solid #2738d0;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.tt-single-meta-bar__left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tt-single-meta-bar__right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}

.tt-single-meta-bar__cat {
  display: inline-block;
  font-family: var(--tt-font-outfit);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 4px 10px;
  border-radius: 6px;
  background: #eef0fc;
  color: var(--tt-blue);
}

.tt-single-meta-bar__dot {
  font-size: 16px;
  color: var(--tt-border);
  line-height: 1;
  user-select: none;
}

.tt-single-meta-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--tt-font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--tt-gray);
}

.tt-single-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--tt-font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--tt-gray);
  border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius-pill);
  padding: 7px 16px;
  background: var(--tt-white);
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    color 0.15s ease;
  text-decoration: none;
}

.tt-single-share-btn:hover {
  border-color: var(--tt-blue);
  color: var(--tt-blue);
}

/* Prose content */
.tt-prose {
  font-family: var(--tt-font-body);
  font-size: 1rem;
  color: var(--tt-gray);
  line-height: 1.75;
}

.tt-prose h2 {
  font-family: var(--tt-font-outfit);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--tt-dark);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.tt-prose h3 {
  font-family: var(--tt-font-outfit);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--tt-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.tt-prose p {
  margin-bottom: 1.25rem;
}

.tt-prose a {
  color: var(--tt-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tt-prose a:hover {
  opacity: 0.8;
}

.tt-prose blockquote {
  border-left: 3px solid var(--tt-blue);
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: var(--tt-blue-light);
  border-radius: 0 var(--tt-radius-sm) var(--tt-radius-sm) 0;
  font-style: italic;
  color: var(--tt-dark);
}

.tt-prose ul,
.tt-prose ol {
  margin: 1rem 0 1.25rem 1.5rem;
}

.tt-prose ul li {
  list-style: disc;
  margin-bottom: 0.4rem;
}
.tt-prose ol li {
  list-style: decimal;
  margin-bottom: 0.4rem;
}

.tt-prose img {
  border-radius: var(--tt-radius-md);
  margin: 1.5rem 0;
  max-width: 100%;
}

.tt-prose figure {
  margin: 1.5rem 0;
}

.tt-prose figcaption {
  font-size: 0.8125rem;
  color: #999;
  text-align: center;
  margin-top: 0.5rem;
}

.tt-prose strong {
  color: var(--tt-dark);
  font-weight: 700;
}

.tt-single-lead {
  font-family: var(--tt-font-body);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--tt-dark);
  line-height: 1.7;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--tt-border);
}

.tt-article-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 1.5rem 0;
}

.tt-article-stat-card {
  background: var(--tt-blue-light);
  border: 1px solid rgba(39, 56, 208, 0.12);
  border-radius: var(--tt-radius-md);
  padding: 20px 16px;
  text-align: center;
}

.tt-article-stat-card__value {
  font-family: var(--tt-font-outfit);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--tt-blue);
  line-height: 1;
  margin-bottom: 8px;
}

.tt-article-stat-card__label {
  font-family: var(--tt-font-body);
  font-size: 12px;
  color: var(--tt-gray);
  line-height: 1.4;
}

.tt-pullquote {
  border-left: 4px solid var(--tt-blue);
  margin: 2rem 0;
  padding: 1.25rem 1.75rem;
  background: var(--tt-blue-pale);
  border-radius: 0 var(--tt-radius-md) var(--tt-radius-md) 0;
}

.tt-pullquote p {
  font-family: var(--tt-font-serif);
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--tt-dark);
  line-height: 1.6;
  margin: 0;
}

.tt-single-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--tt-border);
}

.tt-single-tag {
  font-family: var(--tt-font-body);
  font-size: 12px;
  color: var(--tt-gray);
  border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius-pill);
  padding: 4px 14px;
  transition: all 0.15s ease;
}

.tt-single-tag:hover {
  background: var(--tt-blue);
  color: var(--tt-white);
  border-color: var(--tt-blue);
}

.tt-single-disclaimer {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: #f9f9f9;
  border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius-md);
  font-family: var(--tt-font-body);
  font-size: 0.8125rem;
  color: var(--tt-gray);
  line-height: 1.65;
}

.tt-single-disclaimer a {
  color: var(--tt-blue);
  text-decoration: underline;
}

/* ── SIDEBAR ───────────────────────────────────────────────────────────────── */

.tt-single-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 80px;
}

.tt-sidebar-card {
  border-radius: 16px;
  border: 1px solid #e5e7f0;
  background: #f7f8ff;
  padding: 22px 24px;
}

.tt-sidebar-card__heading {
  font-family: var(--tt-font-outfit);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #555;
  margin-bottom: 16px;
}

.tt-toc__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--tt-border);
  font-family: var(--tt-font-body);
  font-size: 0.875rem;
  color: var(--tt-gray);
  transition: color 0.15s ease;
  cursor: pointer;
}

.tt-toc__item:last-child {
  border-bottom: none;
}
.tt-toc__item:hover {
  color: var(--tt-blue);
}
.tt-toc__item--active {
  color: var(--tt-blue);
  font-weight: 600;
}

.tt-toc__num {
  font-family: var(--tt-font-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--tt-blue);
  padding: 2px 6px;
  background: var(--tt-blue-light);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
}

.tt-sidebar-subscribe {
  border-radius: 16px;
  background: linear-gradient(136deg, #0a0e2a 0%, #2738d0 100%);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tt-sidebar-subscribe__label {
  font-family: var(--tt-font-outfit);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.tt-sidebar-subscribe__title {
  font-family: var(--tt-font-outfit);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin: 0;
}

.tt-sidebar-subscribe__desc {
  font-family: var(--tt-font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0;
}
.tt-sidebar-card--topics {
  margin-top: 16px;
}

.tt-sidebar-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tt-sidebar-topic {
  display: inline-block;
  font-family: var(--tt-font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--tt-dark);
  border: 1px solid var(--tt-border);
  border-radius: 999px;
  padding: 6px 14px;
  background: var(--tt-white);
  transition:
    border-color 0.15s ease,
    color 0.15s ease;
  white-space: nowrap;
}

.tt-sidebar-topic:hover {
  border-color: var(--tt-blue);
  color: var(--tt-blue);
}

.tt-sidebar-subscribe__heading {
  display: none;
}

.tt-sidebar-subscribe__desc {
  font-family: var(--tt-font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0;
}

.tt-sidebar-subscribe__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tt-sidebar-subscribe__input {
  width: 100%;
  min-height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--tt-radius-pill);
  color: #fff;
  font-family: var(--tt-font-body);
  font-size: 0.875rem;
  padding: 0 18px;
  outline: none;
  transition: border-color 0.15s ease;
  box-sizing: border-box;
}

.tt-sidebar-subscribe__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.tt-sidebar-subscribe__input:focus {
  border-color: rgba(255, 255, 255, 0.5);
}
.tt-sidebar-subscribe__input.is-invalid {
  border-color: #f87171;
}

.tt-sidebar-subscribe__consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}

.tt-sidebar-subscribe__consent label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}

.tt-sidebar-subscribe__consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: #fff;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.tt-sidebar-subscribe__consent-text {
  font-family: var(--tt-font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.tt-sidebar-subscribe__consent-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}

.tt-sidebar-subscribe__btn {
  width: 100%;
  min-height: 50px;
  background: #fff;
  color: var(--tt-blue);
  border: none;
  border-radius: var(--tt-radius-pill);
  font-family: var(--tt-font-outfit);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.18s ease;
}

.tt-sidebar-subscribe__btn:hover {
  opacity: 0.9;
}

.tt-sidebar-subscribe__note {
  font-family: var(--tt-font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0;
}

.tt-sidebar-subscribe__error {
  font-size: 0.75rem;
  color: #f87171;
}

.tt-sidebar-subscribe__message {
  font-size: 0.875rem;
  color: #a5f3fc;
  font-weight: 600;
}

.tt-sidebar-related__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--tt-border);
}

.tt-sidebar-related__item:last-child {
  border-bottom: none;
}

.tt-sidebar-related__item a:has(.tt-sidebar-related__img) {
  display: block;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.tt-sidebar-related__img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  display: block;
}

.tt-sidebar-related__img-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: var(--tt-blue-light);
  flex-shrink: 0;
}

.tt-sidebar-related__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tt-sidebar-related__cat {
  font-family: var(--tt-font-outfit);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2738d0;
}

.tt-sidebar-related__title {
  font-family: var(--tt-font-outfit);
  font-size: 13px;
  font-weight: 600;
  color: #111;
  line-height: 18.2px;
}

.tt-sidebar-related__title a {
  color: inherit;
}
.tt-sidebar-related__title a:hover {
  color: var(--tt-blue);
}

.tt-sidebar-related__date {
  font-family: var(--tt-font-body);
  font-size: 11px;
  font-weight: 400;
  color: #555;
}

/* ── ABOUT PAGE ────────────────────────────────────────────────────────────── */

/* ─ Hero ─────────────────────────────────────────────────────────────────── */
.tt-abt-hero {
  background:
    url("../images/hero-bg.png") center / cover no-repeat,
    #0b0e1c;
  padding: 72px 0 80px;
}

.tt-abt-hero__inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
}

.tt-abt-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--tt-font-outfit);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.44px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.tt-abt-breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}
.tt-abt-breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.tt-abt-hero__title {
  font-family: var(--tt-font-outfit);
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.04px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.tt-abt-hero__subtitle {
  font-family: var(--tt-font-body);
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.647;
  max-width: 540px;
}

/* ─ Section wrappers ─────────────────────────────────────────────────────── */
.tt-abt-section {
  padding: 80px 0;
  border-bottom: 1px solid #e5e7f0;
}

.tt-abt-section:last-of-type {
  border-bottom: none;
}

.tt-abt-section--white {
  background: #fff;
}

.tt-abt-section--light {
  background: #f7f8ff;
}

/* ─ Section inners ─────────────────────────────────────────────────────────── */
.tt-abt-section__inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─ Label pill ─────────────────────────────────────────────────────────────── */
.tt-abt-label {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  background: #eef0fc;
  color: #2738d0;
  font-family: var(--tt-font-outfit);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.54px;
  line-height: 1.7;
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 14px;
}

/* ─ Section headings ──────────────────────────────────────────────────────── */
.tt-abt-h2 {
  font-family: var(--tt-font-outfit);
  font-size: 32px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 16px;
}

.tt-abt-h2--serif {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 600;
}

/* ─ Sub-lead ───────────────────────────────────────────────────────────────── */
.tt-abt-sub-lead {
  font-family: var(--tt-font-body);
  font-size: 16px;
  font-weight: 400;
  color: #555;
  line-height: 1.7;
  margin-bottom: 32px;
  text-wrap: pretty;
}

/* ─ Prose ──────────────────────────────────────────────────────────────────── */
.tt-abt-prose {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 760px;
  margin-top: 12px;
}

.tt-abt-prose p {
  font-family: var(--tt-font-body);
  font-size: 16px;
  color: #555;
  line-height: 1.75;
}

/* ─ Who We Are ─────────────────────────────────────────────────────────────── */
.tt-abt-who {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
}

.tt-abt-who__text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #555;
  font-family: var(--tt-font-body);
  font-size: 16px;
  line-height: 1.75;
  max-width: 600px;
}

.tt-abt-op-card {
  display: flex;
  flex-direction: column;
  gap: 9px;
  background: #eef0fc;
  border: 1px solid #c7d2f8;
  border-radius: 12px;
  padding: 24px;
  font-size: 14px;
  line-height: 1.7;
  min-width: 260px;
  max-width: 320px;
  flex-shrink: 0;
}

.tt-abt-op-card__label {
  font-family: var(--tt-font-outfit);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: #2738d0;
}

.tt-abt-op-card__name {
  font-family: var(--tt-font-body);
  color: #555;
  font-size: 14px;
  line-height: 1.7;
}

.tt-abt-op-card__address {
  font-family: var(--tt-font-body);
  color: #111;
  font-size: 14px;
  line-height: 1.8;
  margin-top: 1px;
}

/* ─ Coverage ────────────────────────────────────────────────────────────────── */
.tt-abt-cov-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

.tt-abt-cov-card {
  background: #fff;
  border: 1px solid #e5e7f0;
  border-top: 3px solid #2738d0;
  border-radius: 14px;
  padding: 24px 24px 36px;
  display: flex;
  flex-direction: column;
}

.tt-abt-cov-card__title {
  font-family: var(--tt-font-outfit);
  font-size: 17px;
  font-weight: 700;
  color: #111;
  line-height: 1.7;
  margin-bottom: 10px;
}

.tt-abt-cov-card__desc {
  font-family: var(--tt-font-body);
  font-size: 14px;
  color: #555;
  line-height: 1.65;
}

/* ─ Inflation Calculator ─────────────────────────────────────────────────── */
.tt-abt-calc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.tt-abt-calc__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  text-align: center;
  background: linear-gradient(128deg, #0a0e2a 0%, #2738d0 100%);
  padding: 40px 32px 56px;
  border-radius: 20px;
  flex-shrink: 0;
  overflow: hidden;
}

.tt-abt-calc__card-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}

.tt-abt-calc__card-icon img {
  display: block;
  width: 32px;
  height: 32px;
}

.tt-abt-calc__card-title {
  font-family: var(--tt-font-outfit);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-top: 10px;
  align-self: stretch;
}

.tt-abt-calc__card-desc {
  font-family: var(--tt-font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  align-self: stretch;
}

.tt-abt-calc__card-btn {
  display: block;
  width: 100%;
  font-family: var(--tt-font-outfit);
  font-size: 14px;
  font-weight: 700;
  color: #2738d0;
  background: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  margin-top: 15px;
  text-align: center;
}

.tt-abt-calc__card-btn:hover {
  background: #f0f2ff;
}

.tt-abt-calc__card-note {
  font-family: var(--tt-font-body);
  font-style: italic;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  align-self: stretch;
  margin-top: 2px;
}

.tt-abt-calc__text {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-self: center;
}

.tt-abt-calc__text p {
  font-family: var(--tt-font-body);
  font-size: 16px;
  color: #555;
  line-height: 1.75;
}

/* ─ Editorial Team ───────────────────────────────────────────────────────── */
.tt-abt-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

.tt-abt-team-card {
  background: #fff;
  border: 1px solid #e5e7f0;
  border-radius: 16px;
  padding: 28px 22px 36px;
  display: flex;
  flex-direction: column;
}

.tt-abt-team-card__initials {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #2738d0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--tt-font-outfit);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.54px;
  flex-shrink: 0;
  align-self: flex-start;
}

.tt-abt-team-card__name {
  font-family: var(--tt-font-outfit);
  font-size: 16px;
  font-weight: 700;
  color: #111;
  line-height: 1.7;
  margin-top: 18px;
}

.tt-abt-team-card__role {
  font-family: var(--tt-font-outfit);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: #2738d0;
  margin-top: 2px;
}

.tt-abt-team-card__bio {
  font-family: var(--tt-font-body);
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin-top: 12px;
}

/* ─ Disclosures ─────────────────────────────────────────────────────────── */
.tt-abt-disc-box {
  background: #f7f8ff;
  border-radius: 0 12px 12px 0;
  border-left: 3px solid #2738d0;
  padding: 28px 32px;
  font-family: var(--tt-font-body);
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin-top: 16px;
}

.tt-abt-disc-box strong {
  font-weight: 600;
  color: #111;
}

/* ─ Contact ─────────────────────────────────────────────────────────────── */
.tt-abt-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}

.tt-abt-contact-card {
  background: #fff;
  border: 1px solid #e5e7f0;
  border-radius: 16px;
  padding: 28px 24px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tt-abt-contact-card__heading {
  font-family: var(--tt-font-outfit);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.12px;
  color: #2738d0;
  line-height: 23.8px;
}

.tt-abt-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.tt-abt-contact-row__icon {
  width: 36px;
  height: 36px;
  background: #eef0fc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tt-abt-contact-row__icon img {
  display: block;
  width: 20px;
  height: 20px;
}

.tt-abt-contact-row__label {
  font-family: var(--tt-font-outfit);
  font-size: 13px;
  font-weight: 700;
  color: #111;
  line-height: 20.8px;
}

.tt-abt-contact-row__value {
  font-family: var(--tt-font-body);
  font-size: 14px;
  font-weight: 500;
  color: #2738d0;
  line-height: 22.4px;
  margin-top: 2px;
}

.tt-abt-contact-row__value--address {
  color: #555;
  font-weight: 400;
  line-height: 23.8px;
}

.tt-abt-contact-row__sub {
  font-family: var(--tt-font-body);
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}

/* ─ Legal ───────────────────────────────────────────────────────────────── */
.tt-abt-legal-box {
  background: #0a0e2a;
  border-radius: 16px;
  padding: 40px;
  margin-top: 16px;
  font-family: var(--tt-font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}

.tt-abt-legal-box__link {
  color: #fff;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

.tt-abt-legal-box__link:hover {
  color: rgba(255, 255, 255, 0.75);
}

.tt-abt-legal-box__strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* ── TRADING TOOLS ─────────────────────────────────────────────────────────── */

.tt-trading-hero-wrap {
  background:
    url("../images/trading-hero-bg.png") center / cover no-repeat,
    #0b0e1c;
}

.tt-trading-hero-wrap__inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 80px 20px 60px;
}

.tt-trading-section {
  background: var(--tt-white);
}

.tt-trading-section__inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

.tt-trading-intro {
  display: flex;
  padding: 36px 40px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  margin-bottom: 40px;
  border-radius: 16px;
  border: 1px solid #e5e7f0;
  background: #f7f8ff;
}

.tt-trading-intro__inner {
  display: flex;
  width: 100%;
  max-width: 820px;
  flex-direction: column;
  align-items: flex-start;
}

.tt-trading-intro__inner p {
  font-family: var(--tt-font-body);
  font-size: 1rem;
  color: var(--tt-gray);
  line-height: 1.7;
  margin: 0;
}

.tt-trading-table {
  border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius-lg);
  overflow: hidden;
}

.tt-trading-table__header {
  display: grid;
  grid-template-columns: 220px 180px 1fr;
  background: var(--tt-blue-light);
  border-bottom: 1px solid var(--tt-border);
}

.tt-trading-table__header span {
  padding: 14px 20px;
  font-family: var(--tt-font-outfit);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--tt-blue);
}

.tt-trading-table__group {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid var(--tt-border);
}

.tt-trading-table__group:last-child {
  border-bottom: none;
}

.tt-trading-table__group:nth-child(even) {
  background: #fafbff;
}

.tt-trading-table__category-cell {
  padding: 24px 20px;
  font-family: var(--tt-font-outfit);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--tt-dark);
  border-right: 1px solid var(--tt-border);
  display: flex;
  align-items: flex-start;
}

.tt-trading-table__tools {
  display: flex;
  flex-direction: column;
}

.tt-trading-table__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid var(--tt-border);
}

.tt-trading-table__row:last-child {
  border-bottom: none;
}

.tt-trading-table__tool {
  padding: 16px 20px;
  border-right: 1px solid var(--tt-border);
  display: flex;
  align-items: center;
}

.tt-trading-table__tool-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--tt-font-outfit);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--tt-blue);
  text-decoration: none;
}

.tt-trading-table__tool-link:hover {
  text-decoration: underline;
}

.tt-trading-table__ext-icon {
  flex-shrink: 0;
  opacity: 0.7;
}

.tt-trading-table__desc {
  font-family: var(--tt-font-body);
  font-size: 0.875rem;
  color: var(--tt-gray);
  padding: 16px 20px;
  line-height: 1.6;
  display: flex;
  align-items: center;
}

.tt-trading-disclaimer {
  margin-top: 32px;
  padding: 40px;
  background: linear-gradient(98deg, #0a0e2a 0%, #1b2680 60%, #2738d0 100%);
  border-radius: 14px;
}

.tt-trading-disclaimer__text {
  max-width: 700px;
  font-family: var(--tt-font-body);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
  line-height: 28px;
  margin: 0;
}

.tt-trading-disclaimer strong,
.tt-trading-disclaimer__text strong {
  color: #fff;
  font-weight: 700;
}

/* ── MISC ──────────────────────────────────────────────────────────────────── */

.tt-posts__empty {
  font-family: var(--tt-font-body);
  font-size: 1rem;
  color: var(--tt-gray);
  padding: 2rem 0;
  text-align: center;
}

/* ── DEFAULT PAGE TEMPLATE (page.php) ─────────────────────────────────────── */

.tt-page-wrap {
  background: var(--tt-white);
  padding: 60px 0 80px;
}

.tt-page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--tt-px);
}

.tt-page-article__header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--tt-border);
}

.tt-page-article__title {
  font-family: var(--tt-font-outfit);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--tt-dark);
  line-height: 1.15;
  margin-bottom: 12px;
}

.tt-page-article__meta {
  font-family: var(--tt-font-body);
  font-size: 0.875rem;
  color: var(--tt-gray);
}

.tt-page-article__body {
  font-family: var(--tt-font-body);
  font-size: 1rem;
  color: var(--tt-dark);
  line-height: 1.75;
}

/* ── RESPONSIVE ────────────────────────────────────────────────────────────── */

@media (max-width: 1100px) {
  .tt-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tt-hero__stats-right {
    justify-content: flex-start;
  }

  .tt-posts__grid {
    grid-template-columns: 1fr;
  }
  .tt-card-featured__img {
    min-height: 0;
    height: 280px;
  }
  .tt-card-small__img {
    height: 180px;
  }
  .tt-posts__col-right {
    flex-direction: row;
  }

  .tt-about-home__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .tt-about-photo {
    min-height: 360px;
  }

  .tt-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .tt-footer__brand {
    grid-column: 1;
    grid-row: 1;
  }
  .tt-footer__nav {
    grid-column: 1;
    grid-row: 2;
  }
  .tt-footer__subscribe {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .tt-single-body__inner {
    grid-template-columns: 1fr;
  }
  .tt-single-sidebar {
    position: static;
  }

  .tt-abt-hero__title {
    font-size: 36px;
  }
  .tt-abt-who {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tt-abt-who__text {
    max-width: 100%;
  }
  .tt-abt-op-card {
    max-width: 100%;
  }
  .tt-abt-cov-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tt-abt-calc {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tt-abt-calc__card {
    width: 100%;
  }
  .tt-abt-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tt-abt-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tt-archive-top {
    grid-template-columns: 1fr;
  }
  .tt-archive-top__right {
    flex-direction: row;
  }

  .tt-footer__copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .tt-footer__copy-sep {
    display: none;
  }
}

@media (max-width: 900px) {
  .tt-nav__links,
  .tt-nav__cta {
    display: none;
  }
  .tt-nav__hamburger {
    display: flex;
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  .tt-hero__inner {
    padding: 60px var(--tt-px) 48px;
    grid-template-columns: 1fr;
  }

  .tt-hero__form-row {
    flex-direction: column;
  }

  .tt-hero__submit {
    width: 100%;
  }

  .tt-posts {
    padding: 60px 0;
  }
  .tt-posts__inner {
    padding: 0 var(--tt-px);
  }
  .tt-posts__header {
    flex-direction: column;
    gap: 6px;
  }
  .tt-posts__col-right {
    flex-direction: column;
  }

  .tt-about-home {
    padding: 60px 0;
  }
  .tt-about-home__inner {
    padding: 0 var(--tt-px);
  }
  .tt-subscribe {
    padding: 72px var(--tt-px);
  }
  .tt-subscribe__row {
    flex-direction: column;
  }

  .tt-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .tt-footer__brand {
    grid-column: auto;
    grid-row: auto;
  }
  .tt-footer__nav {
    grid-column: auto;
    grid-row: auto;
  }
  .tt-footer__subscribe {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .tt-archive-grid {
    grid-template-columns: 1fr;
  }
  .tt-archive-card__thumb {
    height: 260px;
  }
  .tt-card-featured__img {
    min-height: 0;
    height: 260px;
  }
  .tt-card-small__img {
    height: 200px;
  }
  .tt-archive-top__right {
    flex-direction: column;
  }
  .tt-posts-archive__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tt-about-coverage-grid,
  .tt-about-team-grid {
    grid-template-columns: 1fr;
  }

  .tt-trading-table__header {
    display: none;
  }
  .tt-trading-table__group {
    grid-template-columns: 1fr;
  }
  .tt-trading-table__category-cell {
    border-right: none;
    border-bottom: 1px solid var(--tt-border);
    padding: 14px 20px;
  }
  .tt-trading-table__row {
    grid-template-columns: 1fr;
  }
  .tt-trading-table__tool {
    border-right: none;
    border-bottom: 1px solid var(--tt-border);
    padding: 12px 20px;
  }

  .tt-hero__stats {
    flex-direction: column;
    align-items: flex-start;
  }
  .tt-hero__stat-divider {
    width: 40px;
    height: 1px;
    margin: 8px 0;
  }

  .tt-newsletter__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tt-newsletter__input-row {
    flex-direction: column;
  }
  .tt-footer-form__row {
    flex-direction: column;
  }

  .tt-article-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .tt-hero__form {
    flex-direction: column;
  }
  .tt-hero__submit {
    width: 100%;
    justify-content: center;
  }

  .tt-abt-hero {
    padding: 48px 0 40px;
  }
  .tt-abt-hero__inner,
  .tt-abt-section__inner {
    padding: 0 16px;
  }
  .tt-abt-hero__title {
    font-size: 28px;
  }
  .tt-abt-section {
    padding: 56px 0;
  }
  .tt-abt-who {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .tt-abt-cov-grid {
    grid-template-columns: 1fr;
  }
  .tt-abt-team-grid {
    grid-template-columns: 1fr;
  }
  .tt-abt-contact-grid {
    grid-template-columns: 1fr;
  }
  .tt-posts-archive__grid {
    grid-template-columns: 1fr;
  }
  .tt-trading-hero-wrap__inner {
    padding: 48px 20px 40px;
  }
  .tt-trading-section__inner {
    padding: 40px 20px 60px;
  }
  .tt-trading-intro {
    padding: 24px 20px;
    border-radius: 12px;
  }
  .tt-archive-content {
    padding: 0 0 60px;
  }

  .tt-single-body {
    padding: 40px 0 60px;
  }
  .tt-single-hero__inner {
    padding: 48px 20px;
  }

  .tt-footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .tt-footer__brand {
    grid-column: auto;
    grid-row: auto;
  }
  .tt-footer__nav {
    grid-column: auto;
    grid-row: auto;
  }
  .tt-footer__subscribe {
    grid-column: auto;
    grid-row: auto;
  }
}

/* =============================================================================
   THANK YOU PAGE
   ============================================================================= */

.tt-thankyou {
  background: var(--tt-white);
  padding: 80px 0 100px;
}

.tt-thankyou__inner {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 var(--tt-px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tt-thankyou__icon {
  margin-bottom: 28px;
}

.tt-thankyou__label {
  font-family: var(--tt-font-outfit);
  font-size: 11px;
  font-weight: 700;
  color: var(--tt-blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.tt-thankyou__title {
  font-family: var(--tt-font-outfit);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--tt-dark);
  line-height: 1.1;
  margin: 0 0 20px;
}

.tt-thankyou__text {
  font-family: var(--tt-font-body);
  font-size: 1rem;
  color: var(--tt-gray);
  line-height: 1.7;
  margin: 0 0 40px;
}

.tt-thankyou__btn {
  font-family: var(--tt-font-outfit);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  background: var(--tt-blue);
  padding: 14px 36px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.18s ease;
}

.tt-thankyou__btn:hover {
  opacity: 0.88;
}

/* =============================================================================
   THANK YOU PAGE
   ============================================================================= */

.tt-thankyou {
  background: var(--tt-white);
  padding: 80px 0 100px;
}

.tt-thankyou__inner {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 var(--tt-px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tt-thankyou__icon {
  margin-bottom: 28px;
}

.tt-thankyou__label {
  font-family: var(--tt-font-outfit);
  font-size: 11px;
  font-weight: 700;
  color: var(--tt-blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.tt-thankyou__title {
  font-family: var(--tt-font-outfit);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--tt-dark);
  line-height: 1.1;
  margin: 0 0 20px;
}

.tt-thankyou__text {
  font-family: var(--tt-font-body);
  font-size: 1rem;
  color: var(--tt-gray);
  line-height: 1.7;
  margin: 0 0 40px;
}

.tt-thankyou__btn {
  font-family: var(--tt-font-outfit);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  background: var(--tt-blue);
  padding: 14px 36px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.18s ease;
}

.tt-thankyou__btn:hover {
  opacity: 0.88;
}
