@font-face {
  font-family: Gilroy;
  src: url("../fonts/Gilroy-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: Gilroy;
  src: url("../fonts/Gilroy-Medium.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: Gilroy;
  src: url("../fonts/Gilroy-SemiBold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: Gilroy;
  src: url("../fonts/Gilroy-Bold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700 900;
}

:root {
  --q-dark: #0c0c0e;
  --q-surface: rgb(255 255 255 / 10%);
  --q-surface-2: rgb(255 255 255 / 7%);
  --q-copy: #dadbe1;
  --q-soft: #9698a0;
  --q-purple: #9172e8;
  --q-white: #fff;
}

body.qulture-home-refresh,
body.post-type-archive-questions,
body.single-questions,
body.single-series,
body.post-type-archive-series {
  background: var(--q-dark) !important;
  color: var(--q-copy) !important;
  font-family: Gilroy, Inter, Arial, sans-serif !important;
  -webkit-font-smoothing: antialiased;
}

/* Landing pages */
body.qulture-home-refresh {
  --blue: var(--q-purple);
  --blue-dark: #6e51c5;
  --black: var(--q-dark);
  --ink: var(--q-white);
  --muted: var(--q-soft);
  --background: var(--q-dark);
  --card: var(--q-surface);
  --line: rgba(255,255,255,.09);
  overflow-x: hidden;
  padding-bottom: 0 !important;
}

body.qulture-home-refresh .shell { width: min(1160px, calc(100% - 40px)); }
body.qulture-home-refresh .site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1001;
  background: rgba(12,12,14,0);
  border-bottom: 0;
  transition: background-color 850ms cubic-bezier(.22,1,.36,1), -webkit-backdrop-filter 850ms cubic-bezier(.22,1,.36,1), backdrop-filter 850ms cubic-bezier(.22,1,.36,1);
}
body.qulture-home-refresh .site-header.is-scrolled,
body.qulture-home-refresh.mobile-menu-is-open .site-header {
  background: rgba(12,12,14,.6);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
body.qulture-home-refresh .nav { min-height: 104px; padding: 0; }
body.qulture-home-refresh .wordmark { color: #fff; font-family: Gilroy, sans-serif; font-size: 30px; font-weight: 700; letter-spacing: -.045em; }
body.qulture-home-refresh .nav-links { gap: 7px; }
body.qulture-home-refresh .nav-links > a {
  padding: 11px 15px;
  border-radius: 999px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}
body.qulture-home-refresh .nav-links > a:hover,
body.qulture-home-refresh .nav-links > .nav-quiz-link { background: rgba(255,255,255,.1); color: #fff; }
body.qulture-home-refresh .nav-links > .nav-cta { margin-left: 6px; padding: 14px 20px; background: #fff; color: #111; }
body.qulture-home-refresh .nav-links > .nav-cta:hover { background: rgba(255,255,255,.9); color: #111; }
body.qulture-home-refresh .nav-cta-mobile { display: none; }

body.qulture-home-refresh .nav-menu-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}
body.qulture-home-refresh .nav-menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: #fff;
  transition: transform 260ms ease, opacity 180ms ease;
}
body.qulture-home-refresh .nav-menu-toggle span:nth-child(1) { transform: translateY(-6px); }
body.qulture-home-refresh .nav-menu-toggle span:nth-child(3) { transform: translateY(6px); }
body.qulture-home-refresh .nav-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
body.qulture-home-refresh .nav-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
body.qulture-home-refresh .nav-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }

body.qulture-home-refresh .mobile-navigation {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  padding: 0 24px;
  place-items: center;
  background: #0c0c0e;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 400ms ease, visibility 400ms ease;
}
body.qulture-home-refresh .mobile-navigation.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
body.qulture-home-refresh .mobile-navigation nav { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px; text-align: center; }
body.qulture-home-refresh .mobile-navigation a {
  color: #fff;
  font-size: clamp(32px, 10vw, 52px);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.05;
  text-decoration: none;
  transition: color 180ms ease;
}
body.qulture-home-refresh .mobile-navigation a:hover { color: var(--q-purple); }
body.qulture-home-refresh.mobile-menu-is-open { overflow: hidden; }

body.qulture-home-refresh .hero {
  position: relative;
  min-height: min(850px, 96vh);
  padding: 120px 0 80px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(12,12,14,.98) 0%, rgba(12,12,14,.82) 42%, rgba(12,12,14,.16) 100%),
    linear-gradient(0deg, #0c0c0e 0%, transparent 40%),
    url("https://www.qulture-app.com/wp-content/uploads/2024/03/history.png") center/cover no-repeat;
}
body.qulture-home-refresh .hero::before { display: none; }
body.qulture-home-refresh .hero-grid { display: flex; min-height: 650px; align-items: center; }
body.qulture-home-refresh .hero-copy { max-width: 850px; }
body.qulture-home-refresh .hero-copy > .eyebrow { margin: 0 0 18px; color: rgba(255,255,255,.58); font-size: 13px; font-weight: 800; letter-spacing: .14em; }
body.qulture-home-refresh .hero h1 {
  max-width: 780px;
  margin: 18px 0 24px;
  color: #fff;
  font-size: clamp(54px, 8vw, 106px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .94;
}
body.qulture-home-refresh .hero-copy > p:not(.eyebrow) { max-width: 640px; margin: 0; color: rgba(255,255,255,.7); font-size: clamp(18px,2vw,22px); line-height: 1.55; }
body.qulture-home-refresh .hero-primary-button {
  display: inline-flex;
  min-height: 58px;
  margin-top: 34px;
  padding: 0 26px;
  align-items: center;
  gap: 18px;
  border-radius: 999px;
  background: #fff;
  color: #15161a;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}
body.qulture-home-refresh .hero-primary-button:hover { transform: translateY(-2px); background: #f1f1f3; }
body.qulture-home-refresh .store-badge img { filter: none; }

body.qulture-home-refresh .numbers { border: 0; background: var(--q-dark); }
body.qulture-home-refresh .number-grid {
  padding: 44px 48px !important;
  border: 0 !important;
  border-radius: 30px;
  background: linear-gradient(135deg, #1a1a1f, #121215) !important;
  box-shadow: none !important;
}
body.qulture-home-refresh .number-item { border-color: rgba(255,255,255,.09); }
body.qulture-home-refresh .number-item strong {
  display: block !important;
  color: #fff !important;
  font-size: clamp(44px, 5vw, 64px) !important;
  font-weight: 600 !important;
  line-height: .95 !important;
  opacity: 1 !important;
  visibility: visible !important;
}
body.qulture-home-refresh .number-item span {
  display: block;
  margin-top: 14px;
  color: var(--q-soft) !important;
  font-size: 15px !important;
  line-height: 1.35;
}

body.qulture-home-refresh .section,
body.qulture-home-refresh .category-section,
body.qulture-home-refresh .trust-section { background: var(--q-dark); }
body.qulture-home-refresh .section { padding-block: 112px; }
body.qulture-home-refresh .section-heading h2,
body.qulture-home-refresh .split-copy h2,
body.qulture-home-refresh .trust-panel h2,
body.qulture-home-refresh .final-cta h2 { color: #fff; font-size: clamp(42px,6vw,76px); font-weight: 600; letter-spacing: -.05em; line-height: .98; }
body.qulture-home-refresh .section-heading p,
body.qulture-home-refresh .split-copy > p,
body.qulture-home-refresh .trust-copy p { color: var(--q-soft); line-height: 1.7; }

body.qulture-home-refresh .benefit,
body.qulture-home-refresh .trust-panel,
body.qulture-home-refresh .question-list li { border: 0; background: var(--q-surface); box-shadow: none; }
body.qulture-home-refresh .benefit {
  min-height: 300px;
  border-color: rgba(12,12,14,.08);
  border-radius: 26px;
  background: rgb(255 255 255 / 10%);
}
body.qulture-home-refresh .benefit-number { background: #fff; color: #0c0c0e; }
body.qulture-home-refresh .benefit h3 { color: #fff; }
body.qulture-home-refresh .benefit p { color: rgba(255,255,255,.64); }
body.qulture-home-refresh .question-list a { color: #fff; }

body.qulture-home-refresh .conversion-section { background: var(--q-dark); }
body.qulture-home-refresh .conversion-band {
  padding: 74px 58px;
  border: 0;
  border-radius: 32px;
  background: rgb(255 255 255 / 10%);
  box-shadow: none;
}
body.qulture-home-refresh .conversion-band h2 { color: #fff; font-weight: 600; letter-spacing: -.035em; }
body.qulture-home-refresh .conversion-band p { color: var(--q-soft); }

body.qulture-home-refresh .category-grid { gap: 16px; }
body.qulture-home-refresh .category-card { min-height: 360px; border: 0; border-radius: 28px; background: var(--q-surface); box-shadow: none; }
body.qulture-home-refresh .category-card::after { background: linear-gradient(180deg, transparent 26%, rgba(12,12,14,.7) 100%); }
body.qulture-home-refresh .category-card:hover { transform: translateY(-4px); box-shadow: none; }
body.qulture-home-refresh .category-copy strong { color: #fff; font-size: 30px; letter-spacing: -.03em; }
body.qulture-home-refresh .category-copy span { color: rgba(255,255,255,.62); }

body.qulture-home-refresh .button-primary {
  border-radius: 999px;
  background: #fff;
  box-shadow: none !important;
  color: #111;
}
body.qulture-home-refresh .button-primary:hover { box-shadow: none !important; }
body.qulture-home-refresh .question-list { display: grid; gap: 12px; border-top: 0; }
body.qulture-home-refresh .question-list li { border-radius: 18px; }
body.qulture-home-refresh .question-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  padding: 26px 28px 26px 80px;
}
body.qulture-home-refresh .question-list a::before {
  top: 50%;
  left: 24px;
  color: rgba(255,255,255,.3);
  transform: translateY(-50%);
}
body.qulture-home-refresh .question-list a strong { margin-left: 12px; color: rgba(255,255,255,.3); }
body.qulture-home-refresh .trust-panel { border-radius: 32px; }
body.qulture-home-refresh .final-section { background: #111115; }
body.qulture-home-refresh .final-cta {
  background: #0c0c0e !important;
  border: 0;
}
body.qulture-home-refresh .final-cta::after { display: none !important; }
body.qulture-home-refresh .final-cta h2 {
  max-width: 26ch !important;
  white-space: normal !important;
  overflow-wrap: normal;
  text-wrap: balance;
}
body.qulture-home-refresh .site-footer { border-color: rgba(255,255,255,.08); background: #111115; }
body.qulture-home-refresh .footer-links a { color: var(--q-soft); }
body.qulture-home-refresh .floating-download { border-radius: 999px; background: #fff; color: #111; }

/* Shared public hubs, category pages and editorial pages */
body.post-type-archive-questions,
body.single-questions {
  --q-blue: var(--q-purple);
  --q-blue-dark: #7458c8;
  --q-ink: var(--q-white);
  --q-muted: var(--q-soft);
  --q-bg: var(--q-dark);
  --q-card: var(--q-surface);
  --q-line: rgba(255,255,255,.09);
}

.qulture-seo-main,
.qulture-question-page { background: var(--q-dark) !important; color: var(--q-copy) !important; font-family: Gilroy, Inter, Arial, sans-serif !important; }
.qulture-seo-shell, .qulture-question-shell { width: min(1160px, calc(100% - 40px)) !important; }
.qulture-wordmark { color: #fff !important; font-family: Gilroy, sans-serif; font-size: 30px; font-weight: 700; }
.qulture-wordmark span { color: #fff !important; }
.qulture-eyebrow { color: var(--q-purple) !important; font-size: 12px !important; font-weight: 600 !important; letter-spacing: .15em; }

/* Landing navigation shared by category pages. */
.qulture-global-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1001;
  border-bottom: 0;
  background: rgba(12,12,14,0);
  transition: background-color 850ms cubic-bezier(.22,1,.36,1), -webkit-backdrop-filter 850ms cubic-bezier(.22,1,.36,1), backdrop-filter 850ms cubic-bezier(.22,1,.36,1);
}
.qulture-global-header.is-scrolled,
body.mobile-menu-is-open .qulture-global-header {
  background: rgba(12,12,14,.6);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.qulture-global-header .nav {
  display: flex;
  min-height: 104px;
  padding: 0 !important;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.qulture-global-header .wordmark {
  color: #fff !important;
  font-family: Gilroy, sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1;
  text-decoration: none;
}
.qulture-global-header .nav-links { display: flex; align-items: center; gap: 7px; }
.qulture-global-header .nav-links > a {
  padding: 11px 15px;
  border-radius: 999px;
  color: rgba(255,255,255,.72) !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
  transition: color 180ms ease, background 180ms ease;
}
.qulture-global-header .nav-links > a:hover,
.qulture-global-header .nav-links > .is-active { background: rgba(255,255,255,.1); color: #fff !important; }
.qulture-global-header .nav-links > .nav-cta { margin-left: 6px; padding: 14px 20px; background: #fff; color: #111 !important; }
.qulture-global-header .nav-links > .nav-cta:hover { background: rgba(255,255,255,.9); color: #111 !important; }
.qulture-global-header .nav-cta-mobile { display: none; }
.qulture-global-header .nav-menu-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}
.qulture-global-header .nav-menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: #fff;
  transition: transform 260ms ease, opacity 180ms ease;
}
.qulture-global-header .nav-menu-toggle span:nth-child(1) { transform: translateY(-6px); }
.qulture-global-header .nav-menu-toggle span:nth-child(3) { transform: translateY(6px); }
.qulture-global-header .nav-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
.qulture-global-header .nav-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.qulture-global-header .nav-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }
.qulture-global-mobile-navigation {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  padding: 0 24px;
  place-items: center;
  background: #0c0c0e;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 400ms ease, visibility 400ms ease;
}
.qulture-global-mobile-navigation.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.qulture-global-mobile-navigation nav { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px; text-align: center; }
.qulture-global-mobile-navigation a { color: #fff !important; font-size: clamp(32px,10vw,52px); font-weight: 600; letter-spacing: -.04em; line-height: 1.05; text-decoration: none !important; }
body.mobile-menu-is-open { overflow: hidden; }

.qulture-hub-nav,
.qulture-question-nav,
.qulture-seo-nav { min-height: 96px; padding: 0 !important; }
.qulture-nav-links { display: flex; align-items: center; gap: 8px; }
.qulture-nav-links a,
.qulture-hub-nav > a:not(.qulture-wordmark),
.qulture-question-nav > a:not(.qulture-wordmark),
.qulture-seo-nav > a {
  display: inline-flex;
  min-height: 42px;
  padding: 0 16px !important;
  align-items: center;
  border: 1px solid rgba(255,255,255,.14) !important;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.76) !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
}
.qulture-nav-links a:hover,
.qulture-hub-nav > a:not(.qulture-wordmark):hover,
.qulture-question-nav > a:not(.qulture-wordmark):hover { background: rgba(255,255,255,.1); color: #fff !important; }
.qulture-nav-links .is-active { background: #fff; color: #111 !important; }

.qulture-question-hub .qulture-seo-hero {
  position: relative !important;
  min-height: 650px;
  padding: 0 0 90px !important;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(12,12,14,.98), rgba(12,12,14,.78) 48%, rgba(12,12,14,.18)),
    linear-gradient(0deg, #0c0c0e, transparent 42%),
    url("https://www.qulture-app.com/wp-content/uploads/2024/04/sciencfghe.png") center/cover no-repeat !important;
}
.qulture-hero-copy { max-width: 850px; margin-top: 105px !important; }
.qulture-hero-copy h1,
.qulture-topic-hero h1 {
  max-width: 11ch;
  margin-top: 16px !important;
  color: #fff !important;
  font-size: clamp(58px,8vw,104px) !important;
  font-weight: 600 !important;
  letter-spacing: -.06em !important;
  line-height: .92 !important;
}
.qulture-hero-copy > p:not(.qulture-eyebrow),
.qulture-topic-hero-grid > div > p:not(.qulture-eyebrow) { max-width: 650px; color: rgba(255,255,255,.72) !important; font-size: 20px !important; line-height: 1.6 !important; }

.qulture-app-download-placement { padding-top: 72px !important; }
.qulture-download-cta,
.qulture-app-cta {
  border: 0 !important;
  border-radius: 30px !important;
  background: rgb(255 255 255 / 10%) !important;
  box-shadow: none !important;
}
.qulture-download-cta h2, .qulture-download-cta h3, .qulture-app-cta h2 { color: #fff !important; font-weight: 600 !important; letter-spacing: -.04em; }
.qulture-download-cta p, .qulture-app-cta p { color: var(--q-soft) !important; }

.qulture-section-heading h2 {
  color: #fff !important;
  font-size: clamp(40px,5.5vw,68px) !important;
  font-weight: 600 !important;
  letter-spacing: -.05em !important;
  line-height: 1 !important;
}
.qulture-category-browser,
.qulture-category-library,
.qulture-topic-editorial,
.qulture-topic-mini-quiz,
.qulture-topic-library,
.qulture-related-questions { padding-top: 112px !important; }
.qulture-category-grid { gap: 16px !important; }
.qulture-category-card { min-height: 380px !important; border: 0; border-radius: 28px !important; box-shadow: none !important; }
.qulture-category-overlay { background: linear-gradient(180deg, transparent 20%, rgba(12,12,14,.95) 100%) !important; }
.qulture-category-copy strong { color: #fff !important; font-size: 32px !important; font-weight: 600 !important; letter-spacing: -.035em; }
.qulture-category-copy small { color: rgba(255,255,255,.62) !important; }
.qulture-category-dot { box-shadow: none !important; }
.qulture-question-tile { border: 0 !important; background: var(--q-surface) !important; box-shadow: none !important; color: #fff !important; }
.qulture-question-tile:hover { border: 0 !important; box-shadow: none !important; }
.qulture-question-tile h3 { color: #fff !important; }

/* Questions-by-category hub: dark, borderless cards like the landing. */
.qulture-question-hub-document .qulture-question-hub .qulture-seo-hero { padding: 0 !important; }
.qulture-question-hub-document .qulture-question-hub .qulture-seo-hero > .qulture-seo-shell { display: flex; min-height: 650px; padding: 130px 0 90px !important; align-items: center; }
.qulture-question-hub-document .qulture-hero-copy { max-width: 850px; margin: 0 !important; }
.qulture-question-hub-document .qulture-hero-copy .qulture-eyebrow { margin: 0 0 18px !important; color: rgba(255,255,255,.58) !important; font-size: 13px !important; font-weight: 800 !important; letter-spacing: .14em; }
.qulture-question-hub-document .qulture-hero-copy h1 { max-width: 780px; margin: 18px 0 24px !important; font-size: clamp(54px,8vw,106px) !important; font-weight: 800 !important; letter-spacing: -.055em !important; line-height: .94 !important; }
.qulture-question-hub-document .qulture-hero-copy > p:last-child { max-width: 640px; margin: 0 !important; color: rgba(255,255,255,.7) !important; font-size: clamp(18px,2vw,22px) !important; line-height: 1.55 !important; }
.qulture-question-hub-document .qulture-web-quiz-promo-grid a,
.qulture-question-hub-document .qulture-download-cta { border: 0 !important; box-shadow: none !important; }
.qulture-question-hub-document .qulture-category-grid { gap: 20px !important; }
.qulture-question-hub-document .qulture-category-card { border: 0 !important; box-shadow: none !important; }
.qulture-question-hub-document .qulture-library-heading { border-top: 0 !important; }
.qulture-question-hub-document .qulture-category-section {
  padding: 54px 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}
.qulture-question-hub-document .qulture-category-question-list { gap: 12px !important; }
.qulture-question-hub-document .qulture-category-question {
  border: 0 !important;
  border-radius: 18px;
  background: var(--q-surface);
  box-shadow: none !important;
  color: #fff !important;
  transition: background-color 180ms ease, transform 180ms ease;
}
.qulture-question-hub-document .qulture-category-question:hover { border: 0 !important; background: #1d1d22; box-shadow: none !important; transform: translateY(-2px); }
.qulture-question-hub-document .qulture-category-question::before { color: rgba(255,255,255,.3); }
.qulture-question-hub-document .qulture-category-question > span { color: #fff !important; }
.qulture-question-hub-document .qulture-category-question > strong,
.qulture-question-hub-document .qulture-category-question > strong span { color: rgba(255,255,255,.3) !important; }
.qulture-question-hub-document .qulture-category-all-link {
  margin-top: 20px !important;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  color: #111 !important;
}

.qulture-category-section,
.qulture-topic-quiz-card,
.qulture-topic-paths a,
.qulture-topic-question-list li,
.qulture-related-questions li,
.qulture-question-series-links {
  border: 0 !important;
  border-radius: 24px !important;
  background: var(--q-surface) !important;
  box-shadow: none !important;
}
.qulture-category-section h3,
.qulture-topic-paths strong,
.qulture-topic-quiz-card strong,
.qulture-topic-question-list a,
.qulture-related-questions a { color: #fff !important; }
.qulture-category-section-header > span,
.qulture-topic-paths small,
.qulture-topic-anecdote,
.qulture-topic-library-note { color: var(--q-soft) !important; }

.qulture-topic-hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #111 !important;
  isolation: isolate;
}
.qulture-topic-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(12,12,14,.98), rgba(12,12,14,.8) 50%, rgba(12,12,14,.3)), linear-gradient(0deg,#0c0c0e,transparent 45%); }
.qulture-topic-hero-grid { position: static !important; min-height: 540px; padding: 90px 0 80px !important; }
.qulture-topic-hero-grid figure { position: absolute !important; inset: 0; z-index: -2; width: 100% !important; height: 100% !important; margin: 0 !important; border-radius: 0 !important; }
.qulture-topic-hero-grid figure img { width: 100% !important; height: 100% !important; object-fit: cover; }
.qulture-topic-count { display: inline-flex; margin-top: 28px; padding: 12px 17px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; background: rgba(12,12,14,.32); color: #fff; }

.qulture-topic-document .qulture-topic-hero { min-height: min(780px,88vh); }
.qulture-topic-document .qulture-topic-hero-grid { min-height: 650px; padding: 150px 0 96px !important; align-items: center; }
.qulture-topic-document .qulture-topic-hero-grid .qulture-eyebrow { margin: 0 0 18px !important; color: rgba(255,255,255,.58) !important; font-size: 13px !important; font-weight: 800 !important; letter-spacing: .14em; }
.qulture-topic-document .qulture-topic-hero h1 { max-width: 780px; margin: 18px 0 24px !important; font-size: clamp(54px,8vw,106px) !important; font-weight: 800 !important; letter-spacing: -.055em !important; line-height: .94 !important; }
.qulture-topic-document .qulture-topic-hero-grid > div > p:not(.qulture-eyebrow) { max-width: 640px; margin: 0; color: rgba(255,255,255,.7) !important; font-size: clamp(18px,2vw,22px) !important; line-height: 1.55 !important; }
.qulture-topic-question-list li { border: 0 !important; background: transparent !important; }
.qulture-topic-question-list a { border: 0 !important; background: var(--q-surface) !important; color: #fff !important; box-shadow: none !important; }
.qulture-topic-question-list a::before,
.qulture-topic-question-list strong { color: rgba(255,255,255,.3) !important; }

.qulture-question-page { padding: 132px 0 100px !important; }
.qulture-question-nav { border-bottom: 0 !important; }
.qulture-breadcrumb { color: var(--q-soft) !important; }
.qulture-breadcrumb a { color: var(--q-soft) !important; }
.qulture-question-layout { gap: 18px !important; }
.qulture-question-visual,
.qulture-question-card { border: 0 !important; border-radius: 30px !important; background: var(--q-surface) !important; box-shadow: none !important; }
.qulture-question-visual { overflow: hidden; }
.qulture-question-card { padding: clamp(30px,5vw,58px) !important; }
.qulture-question-card h1 { color: #fff !important; font-size: clamp(38px,5vw,64px) !important; font-weight: 600 !important; letter-spacing: -.05em !important; line-height: 1.02 !important; }
.qulture-answer-block { border: 0 !important; border-radius: 22px !important; background: rgb(255 255 255 / 10%) !important; }
.qulture-answer-label { color: var(--q-purple) !important; }
.qulture-answer-value, .qulture-explanation h2 { color: #fff !important; }
.qulture-explanation p { color: var(--q-copy) !important; }

.qulture-app-download { border: 0 !important; background: rgb(255 255 255 / 10%) !important; box-shadow: none !important; }
.qulture-app-download h2 { color: #fff !important; }
.qulture-app-download p:not(.qulture-eyebrow) { color: var(--q-copy) !important; }
.qulture-question-series-links { background: transparent !important; }
.qulture-question-series-links a { border: 0 !important; background: rgb(255 255 255 / 10%) !important; color: #fff !important; }
.qulture-related-questions { border-top: 0 !important; }
.qulture-related-questions li { border: 0 !important; background: transparent !important; }
.qulture-related-questions a { border: 0 !important; background: var(--q-surface) !important; color: #fff !important; box-shadow: none !important; }
.qulture-related-questions a strong { color: rgba(255,255,255,.3) !important; }
.qulture-web-quiz-promo { border: 0; background: rgb(255 255 255 / 10%) !important; box-shadow: none !important; }
.qulture-web-quiz-promo-grid a { border: 0 !important; background: var(--q-surface) !important; box-shadow: none !important; }
.qulture-web-quiz-promo-grid small { color: var(--q-purple) !important; }

body.questions-template-default .your-custom-class { border: 0 !important; background: var(--q-surface) !important; box-shadow: none !important; color: #fff !important; }
body.questions-template-default .your-custom-class > h1 { color: #fff !important; }
body.questions-template-default .your-custom-class > .correctAnswer { border: 0 !important; background: rgb(255 255 255 / 10%) !important; color: #fff !important; }
body.home .qulture-home-hub-link,
body.home .qulture-home-seo-intro { border: 0 !important; box-shadow: none !important; }

/* Series templates rendered inside the WordPress theme. */
body.single-series .qulture-seo-main,
body.post-type-archive-series .qulture-seo-main { background: var(--q-dark) !important; }
body.single-series,
body.post-type-archive-series { margin: 0 !important; }
body.single-series #header,
body.single-series #footer,
body.post-type-archive-series #header,
body.post-type-archive-series #footer { display: none !important; }
body.single-series .qulture-seo-hero,
body.post-type-archive-series .qulture-seo-hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: #111115 !important;
  color: #fff !important;
}
.qulture-series-hero {
  background:
    linear-gradient(90deg,rgba(12,12,14,.98),rgba(12,12,14,.76) 52%,rgba(12,12,14,.2)),
    linear-gradient(0deg,#0c0c0e,transparent 44%),
    #111 var(--q-series-cover) center/cover no-repeat !important;
}
.qulture-series-archive-hero {
  background:
    linear-gradient(90deg,rgba(12,12,14,.98),rgba(12,12,14,.76) 52%,rgba(12,12,14,.2)),
    linear-gradient(0deg,#0c0c0e,transparent 44%),
    url("https://www.qulture-app.com/wp-content/uploads/2024/03/literature.png") center/cover no-repeat !important;
}
body.single-series .qulture-seo-hero .qulture-seo-shell,
body.post-type-archive-series .qulture-seo-hero .qulture-seo-shell { display: flex; min-height: 600px; padding-bottom: 82px !important; flex-direction: column; justify-content: center; }
body.single-series .qulture-seo-hero .qulture-seo-nav,
body.post-type-archive-series .qulture-seo-hero .qulture-seo-nav { position: absolute !important; top: 0; right: 0; left: 0; }
body.single-series .qulture-seo-hero h1,
body.post-type-archive-series .qulture-seo-hero h1 { color: #fff !important; font-family: Gilroy,sans-serif; font-size: clamp(50px,7vw,90px) !important; font-weight: 600; letter-spacing: -.055em; line-height: .95; }
body.single-series .qulture-seo-hero p,
body.post-type-archive-series .qulture-seo-hero p { max-width: 660px; color: rgba(255,255,255,.7) !important; font-size: 20px; line-height: 1.6; }
.qulture-seo-section > h2, .qulture-series-intro h2 { color: #fff !important; }
.qulture-seo-card,
.qulture-seo-list li,
.qulture-mini-quiz { border: 0 !important; border-radius: 24px !important; background: var(--q-surface) !important; box-shadow: none !important; }
.qulture-seo-card h2, .qulture-seo-list a, .qulture-mini-quiz-question { color: #fff !important; }

@media (max-width: 900px) {
  body.qulture-home-refresh .nav-links > a:not(.nav-cta) { display: none; }
  body.qulture-home-refresh .nav-menu-toggle { display: inline-flex; }
  .qulture-global-header .nav-links > a:not(.nav-cta) { display: none; }
  .qulture-global-header .nav-menu-toggle { display: inline-flex; }
  body.qulture-home-refresh .hero { min-height: 760px; background-position: 62% center; }
  body.qulture-home-refresh .hero-grid { min-height: 600px; }
  .qulture-nav-links a:not(.is-active):not(:last-child) { display: none; }
}

@media (max-width: 700px) {
  body.qulture-home-refresh .nav { min-height: 82px; }
  body.qulture-home-refresh .nav-links { gap: 7px; }
  body.qulture-home-refresh .nav-menu-toggle { width: 42px; height: 42px; }
  body.qulture-home-refresh .nav-links > .nav-cta { min-height: 42px; margin-left: 0; padding: 0 14px; font-size: 12px; }
  body.qulture-home-refresh .nav-cta-desktop { display: none; }
  body.qulture-home-refresh .nav-cta-mobile { display: inline; }
  .qulture-global-header .nav { min-height: 82px; }
  .qulture-global-header .nav-links { gap: 7px; }
  .qulture-global-header .nav-menu-toggle { width: 42px; height: 42px; }
  .qulture-global-header .nav-links > .nav-cta { min-height: 42px; margin-left: 0; padding: 0 14px; font-size: 12px; }
  .qulture-global-header .nav-cta-desktop { display: none; }
  .qulture-global-header .nav-cta-mobile { display: inline; }
  body.qulture-home-refresh .hero { min-height: 720px; padding-top: 90px; }
  body.qulture-home-refresh .hero h1 { font-size: clamp(52px,15vw,76px); }
  body.qulture-home-refresh .section { padding-block: 80px; }
  body.qulture-home-refresh .conversion-band { padding: 30px 24px; }
  body.qulture-home-refresh .number-grid { padding: 26px 24px !important; }
  body.qulture-home-refresh .number-item strong { font-size: 46px !important; }
  body.qulture-home-refresh .question-list a { gap: 18px; padding: 22px 20px 22px 64px; }
  body.qulture-home-refresh .question-list a::before { left: 20px; }
  body.qulture-home-refresh .question-list a strong { margin-left: 4px; }
  body.qulture-home-refresh .final-cta h2 { max-width: 100% !important; font-size: clamp(42px, 13vw, 60px); }
  body.qulture-home-refresh .category-card { min-height: 310px; }
  .qulture-hub-nav, .qulture-question-nav, .qulture-seo-nav { min-height: 78px; }
  .qulture-nav-links a, .qulture-hub-nav > a:not(.qulture-wordmark), .qulture-question-nav > a:not(.qulture-wordmark) { min-height: 38px; padding: 0 12px !important; font-size: 12px; }
  .qulture-question-hub .qulture-seo-hero, .qulture-topic-hero { min-height: 590px; }
  .qulture-question-hub-document .qulture-question-hub .qulture-seo-hero > .qulture-seo-shell { min-height: 590px; padding: 120px 0 72px !important; }
  .qulture-hero-copy { margin-top: 80px !important; }
  .qulture-topic-hero-grid { min-height: 500px; padding-top: 70px !important; }
  .qulture-topic-document .qulture-topic-hero { min-height: 690px; }
  .qulture-topic-document .qulture-topic-hero-grid { min-height: 570px; padding: 130px 0 72px !important; }
  .qulture-question-page { padding-top: 104px !important; }
  .qulture-hero-copy h1, .qulture-topic-hero h1 { font-size: clamp(52px,15vw,76px) !important; }
  .qulture-category-browser, .qulture-category-library, .qulture-topic-editorial, .qulture-topic-mini-quiz, .qulture-topic-library, .qulture-related-questions { padding-top: 80px !important; }
  .qulture-category-card { min-height: 320px !important; }
}

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