:root {
  --ct-bg: #fbfbfd;
  --ct-paper: #ffffff;
  --ct-soft: #f5f5f7;
  --ct-fg: #1d1d1f;
  --ct-muted: #6e6e73;
  --ct-subtle: #86868b;
  --ct-line: #d2d2d7;
  --ct-accent: #1080e0;
  --ct-accent-hover: #0b6bcb;
  --ct-copy: #29292e;
  --ct-inset: #1c1c1f;
  --ct-inset-line: #3a3a3c;
  --ct-footer: #1d1d1f;
  --ct-footer-muted: #a1a1a6;
  --ct-footer-line: #424245;
  --ct-max: 1120px;
  --ct-gutter: 1.25rem;
  --ct-radius-sm: 8px;
  --ct-radius: 12px;
  --ct-radius-lg: 18px;
  --ct-radius-xl: 22px;
  --ct-shadow: 0 0 0 1px rgb(0 0 0 / 0.08);
  --ct-shadow-hover: 0 0 0 1px rgb(0 0 0 / 0.14);
  --ct-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ct-font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ct-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background: var(--ct-bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ct-bg);
  color: var(--ct-fg);
  font-family: var(--ct-font);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

h1,
h2,
h3 {
  text-wrap: balance;
  font-family: var(--ct-display);
}

p {
  text-wrap: pretty;
}

::selection {
  background: color-mix(in srgb, var(--ct-accent) 22%, transparent);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ct-shell {
  width: min(var(--ct-max), calc(100% - 2 * var(--ct-gutter)));
  margin-inline: auto;
}

.ct-skip {
  position: absolute;
  left: -9999px;
}

.ct-skip:focus {
  left: 12px;
  top: 12px;
  z-index: 9999;
  background: var(--ct-paper);
  padding: 10px 14px;
  border-radius: var(--ct-radius-sm);
}

.ct-kicker {
  margin: 0 0 0.75rem;
  color: var(--ct-subtle);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1;
}

.ct-kicker-muted {
  color: var(--ct-footer-muted);
}

.ct-header {
  position: sticky;
  top: 0;
  z-index: 50;
  overflow: visible;
  background: color-mix(in srgb, var(--ct-bg) 80%, transparent);
  backdrop-filter: saturate(150%) blur(24px);
  -webkit-backdrop-filter: saturate(150%) blur(24px);
  border-bottom: 1px solid var(--ct-line);
}

body.admin-bar .ct-header {
  top: 32px;
}

.ct-bar,
.ct-nav {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ct-brand,
.ct-footer-brand,
.ct-auth-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.ct-brand img,
.ct-footer-brand img,
.ct-auth-brand img,
.ct-brand .custom-logo {
  height: 28px;
  width: auto;
  max-width: 168px;
  object-fit: contain;
}

.ct-navlinks {
  display: none !important;
  align-items: center;
  gap: 24px;
}

.ct-navlinks .ct-menu-list,
.ct-mobile-nav .ct-menu-list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.ct-navlinks li,
.ct-mobile-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ct-navlinks a,
.ct-navlinks .menu-item a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ct-muted);
  transition: opacity 0.15s ease, color 0.15s ease;
}

.ct-navlinks a:hover,
.ct-navlinks a[aria-current="page"],
.ct-navlinks .current-menu-item a {
  color: var(--ct-fg);
}

.ct-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ct-search-trigger {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ct-fg);
  border-radius: var(--ct-radius-sm);
}

.ct-nav-check {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.ct-menu {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  border-radius: var(--ct-radius-sm);
  cursor: pointer;
  position: relative;
  z-index: 61;
  -webkit-appearance: none;
  appearance: none;
}

.ct-menu span:not(.screen-reader-text) {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ct-fg);
  transition: transform 0.2s var(--ct-ease);
}

.ct-nav-check:checked ~ .ct-bar .ct-menu span:nth-of-type(2) {
  transform: translateY(3.25px) rotate(45deg);
}

.ct-nav-check:checked ~ .ct-bar .ct-menu span:nth-of-type(3) {
  transform: translateY(-3.25px) rotate(-45deg);
}

.ct-mobile-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 60;
  border-top: 1px solid var(--ct-line);
  background: var(--ct-bg);
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.ct-nav-check:checked ~ .ct-mobile-nav {
  display: block !important;
}

body:has(.ct-nav-check:checked) {
  overflow: hidden;
}

.ct-subscribe,
.ct-signin,
.wp-block-button__link,
.ct-comments .form-submit input {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 980px;
  background: var(--ct-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.ct-subscribe:hover,
.ct-signin:hover,
.wp-block-button__link:hover {
  background: var(--ct-accent-hover);
  color: #fff;
}

.ct-subscribe {
  display: none;
}

.ct-signin {
  display: none;
  white-space: nowrap;
}

.ct-text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  min-height: 44px;
  color: var(--ct-accent);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.ct-subscribe-block,
.ct-full {
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  font-size: 15px;
}

.ct-mobile-nav nav,
.ct-mobile-nav .ct-shell {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  padding-bottom: 12px;
}

.ct-mobile-nav .ct-menu-list {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
}

.ct-mobile-nav a,
.ct-mobile-nav .menu-item a {
  display: flex;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid var(--ct-line);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.ct-mobile-nav .ct-subscribe-block {
  margin-top: 16px;
  margin-bottom: 8px;
  border-bottom: 0;
}

.ct-main {
  padding-bottom: 80px;
}

.ct-today {
  margin: 0;
  padding-top: 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ct-subtle);
}

.ct-hero {
  padding: 32px 0 24px;
}

.ct-hero-grid {
  display: grid;
  gap: 28px;
}

.ct-hero-copy h1 {
  margin: 0;
  font-size: clamp(1.85rem, 7vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 650;
}

.ct-hero-copy h1.is-long {
  font-size: clamp(1.6rem, 5.4vw, 2.35rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.ct-article h1,
.ct-getfeatured h1,
.ct-empty-page h1,
.ct-auth-card h1 {
  margin: 0;
  font-size: clamp(2.375rem, 9vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 650;
}

.ct-archive h1 {
  margin: 0;
  font-size: clamp(1.85rem, 6.5vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 650;
}

.ct-dir-count {
  margin: 0 0 18px;
  color: var(--ct-subtle);
  font-size: 12px;
  font-weight: 500;
}

.ct-title-link:hover,
.ct-feature-copy h3 a:hover,
.ct-trend h3 a:hover,
.ct-startup h3 a:hover {
  opacity: 0.8;
}

.ct-deck {
  margin: 20px 0 0;
  max-width: 36rem;
  color: var(--ct-muted);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.ct-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  color: var(--ct-muted);
  font-size: 12px;
}

.ct-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ct-fg);
  color: var(--ct-paper);
  display: grid;
  place-items: center;
  font-size: 9px;
  font-weight: 600;
}

.ct-copy {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--ct-muted);
  min-height: 44px;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 500;
}

.ct-copy:hover {
  color: var(--ct-fg);
}

.ct-hero-media,
.ct-feature-media,
.ct-article-image {
  overflow: hidden;
  background: var(--ct-soft);
}

.ct-hero-media {
  aspect-ratio: 1.42;
  border-radius: var(--ct-radius);
}

.ct-hero-media a,
.ct-feature-media a {
  display: block;
  width: 100%;
  height: 100%;
}

.ct-hero-media img,
.ct-feature-media img,
.ct-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: 1px solid rgb(0 0 0 / 0.08);
  outline-offset: -1px;
  transition: transform 0.5s var(--ct-ease);
}

.ct-hero-media a:hover img,
.ct-feature-media a:hover img {
  transform: scale(1.015);
}

.ct-art {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 650;
  font-size: clamp(2.5rem, 10vw, 5rem);
  letter-spacing: -0.06em;
  background: radial-gradient(circle at 75% 20%, #7ab8ff, #0071e3 38%, #111118 82%);
}

.ct-trending {
  padding: 20px 0;
  border-top: 1px solid var(--ct-line);
  border-bottom: 1px solid var(--ct-line);
  margin-bottom: 40px;
}

.ct-section-label {
  margin: 0 0 12px;
  color: var(--ct-subtle);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

.ct-trend-row,
.ct-pills {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.ct-trend-row::-webkit-scrollbar,
.ct-pills::-webkit-scrollbar {
  display: none;
}

.ct-trend {
  min-width: 220px;
  padding: 14px;
  border-radius: 14px;
  background: var(--ct-paper);
  box-shadow: var(--ct-shadow);
}

.ct-trend-num {
  font-size: 10px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--ct-subtle);
}

.ct-trend h3 {
  margin: 8px 0 8px;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.ct-trend p {
  margin: 0;
  color: var(--ct-subtle);
  font-size: 11px;
}

.ct-section {
  margin: 56px 0;
}

.ct-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.ct-section-head h2,
.ct-related h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.ct-section-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--ct-muted);
  white-space: nowrap;
}

.ct-section-link:hover {
  color: var(--ct-fg);
}

.ct-pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 0 16px;
  padding: 2px 0 8px;
}

.ct-pills::-webkit-scrollbar {
  display: none;
}

.ct-pill {
  white-space: nowrap;
  border-radius: 999px;
  background: var(--ct-paper);
  color: var(--ct-muted);
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 600;
  box-shadow: var(--ct-shadow);
}

.ct-pill.is-active {
  background: var(--ct-fg);
  color: var(--ct-paper);
  box-shadow: none;
}

.ct-startups {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--ct-line);
}

.ct-startup {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 12px 14px;
  align-items: center;
  min-width: 0;
  padding: 14px 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid var(--ct-line);
}

.ct-startup.has-rank {
  grid-template-columns: 22px 52px minmax(0, 1fr) auto;
}

.ct-startup:hover {
  box-shadow: none;
  transform: none;
}

.ct-startup-rank {
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--ct-subtle);
  letter-spacing: -0.02em;
}

.ct-startup-copy {
  min-width: 0;
}

.ct-startup-copy h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.ct-startup-copy p {
  margin: 4px 0 0;
  color: var(--ct-muted);
  font-size: 13px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ct-startup-copy .ct-tags {
  margin-top: 8px;
}

.ct-startup-go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 980px;
  background: var(--ct-soft);
  color: var(--ct-fg);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.ct-startup-go:hover {
  background: var(--ct-fg);
  color: var(--ct-paper);
}

.ct-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--ct-soft);
  color: var(--ct-fg);
  display: grid;
  place-items: center;
  overflow: hidden;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.ct-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ct-logo-lg {
  width: 68px;
  height: 68px;
  margin: 0;
  font-size: 24px;
}

.ct-host {
  margin-bottom: 12px;
  color: var(--ct-subtle);
  font-size: 11px;
}

.ct-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.ct-tag {
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--ct-soft);
  color: var(--ct-muted);
  font-size: 10px;
  font-weight: 600;
}

.ct-feature-grid,
.ct-results,
.ct-related-grid {
  display: grid;
  gap: 12px;
}

.ct-feature {
  overflow: hidden;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: opacity 0.2s var(--ct-ease);
}

.ct-feature:hover {
  box-shadow: none;
}

.ct-feature-media {
  aspect-ratio: 1.6;
  border-radius: var(--ct-radius-lg);
}

.ct-feature.is-feature .ct-feature-media {
  aspect-ratio: 1.72;
}

.ct-feature-copy {
  padding: 14px 0 8px;
}

.ct-feature-copy h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.ct-feature.is-feature .ct-feature-copy h3 {
  font-size: 22px;
}

.ct-feature-copy p {
  margin: 0;
  color: var(--ct-muted);
  font-size: 13px;
  line-height: 1.5;
}

.ct-card-meta {
  margin-top: 12px !important;
  color: var(--ct-subtle) !important;
  font-size: 12px !important;
}

.ct-also {
  padding: 8px 0 28px;
}

.ct-also-grid,
.ct-brief {
  display: grid;
  gap: 0 28px;
}

.ct-headline {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--ct-line);
}

.ct-headline.is-text {
  grid-template-columns: 1fr;
}

.ct-headline-media {
  display: block;
  aspect-ratio: 1.25;
  overflow: hidden;
  border-radius: 10px;
  background: var(--ct-soft);
}

.ct-headline-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ct-headline .ct-kicker {
  margin-bottom: 6px;
}

.ct-headline h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.ct-headline h3 a:hover {
  opacity: 0.75;
}

.ct-headline .ct-card-meta {
  margin-top: 8px !important;
}

.ct-news-grid {
  display: grid;
  gap: 8px 20px;
}

.ct-news-grid .ct-feature.is-feature {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--ct-line);
}

.ct-more-list {
  margin-top: 8px;
  border-top: 1px solid var(--ct-line);
}

.ct-channels {
  display: grid;
  gap: 40px;
}

.ct-channel {
  min-width: 0;
}

.ct-channel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ct-line);
}

.ct-channel-head h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.ct-channel-head a {
  font-size: 12px;
  font-weight: 600;
  color: var(--ct-muted);
  white-space: nowrap;
}

.ct-channel .ct-feature {
  margin-bottom: 4px;
}

.ct-newsletter {
  margin-top: 16px;
  padding: 32px 24px;
  border-radius: 28px;
  background: var(--ct-footer);
  color: var(--ct-paper);
}

.ct-newsletter h2 {
  margin: 12px 0 12px;
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 650;
}

.ct-newsletter p {
  margin: 0 0 24px;
  max-width: 32rem;
  color: var(--ct-footer-muted);
  font-size: 15px;
  line-height: 1.55;
}

.ct-form {
  display: grid;
  gap: 8px;
}

.ct-form input,
.ct-searchbox input {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: var(--ct-radius-sm);
  background: var(--ct-inset);
  color: var(--ct-paper);
  padding: 0 14px;
  outline: 0;
  box-shadow: 0 0 0 1px var(--ct-inset-line);
}

.ct-searchbox input {
  background: transparent;
  color: var(--ct-fg);
  box-shadow: none;
  min-height: 44px;
}

.ct-form button,
.ct-searchbox button {
  min-height: 48px;
  border: 0;
  border-radius: var(--ct-radius-sm);
  background: var(--ct-paper);
  color: var(--ct-fg);
  font-weight: 600;
}

.ct-searchbox button {
  background: var(--ct-fg);
  color: var(--ct-paper);
  padding: 0 16px;
}

.ct-footer {
  background: var(--ct-footer);
  color: var(--ct-paper);
  padding: 48px 0 20px;
}

.ct-footer-top {
  max-width: 28rem;
}

.ct-footer-top p {
  margin: 12px 0 0;
  color: var(--ct-footer-muted);
  font-size: 13px;
  line-height: 1.6;
}

.ct-footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.ct-footer-grid h3 {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ct-footer-grid a {
  display: block;
  margin: 0 0 8px;
  color: var(--ct-footer-muted);
  font-size: 13px;
}

.ct-footer-grid a:hover {
  color: var(--ct-paper);
}

.ct-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--ct-footer-line);
  color: var(--ct-footer-muted);
  font-size: 11px;
}

.ct-article-wrap {
  padding: 32px 0 0;
}

.ct-article {
  max-width: 780px;
  margin-inline: auto;
}

.ct-breadcrumb {
  margin: 0 0 16px;
  color: var(--ct-subtle);
  font-size: 11px;
}

.ct-breadcrumb span {
  padding: 0 6px;
}

.ct-article h1 {
  margin: 0 0 20px;
}

.ct-article .ct-deck {
  font-size: 17px;
}

.ct-article-image {
  aspect-ratio: 1.62;
  margin: 32px 0;
}

.ct-article-image-in {
  margin: 28px 0;
  border-radius: var(--ct-radius);
}

.ct-content {
  max-width: 720px;
  margin-inline: auto;
  color: var(--ct-copy);
  font-size: 17px;
  line-height: 1.76;
}

.ct-content p {
  margin: 0 0 24px;
}

.ct-content h2 {
  margin: 48px 0 16px;
  color: var(--ct-fg);
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.ct-content h3 {
  font-size: 21px;
  line-height: 1.2;
}

.ct-content img,
.ct-content .wp-block-image img {
  border-radius: 14px;
}

.ct-content blockquote {
  margin: 40px 0;
  padding: 0 0 0 20px;
  border-left: 2px solid var(--ct-fg);
  font-family: var(--ct-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: var(--ct-fg);
}

.ct-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ct-ad-wrap {
  margin: 32px 0;
  min-height: 90px;
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

.ct-ad-label {
  margin: 0 0 8px;
  color: var(--ct-subtle);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ct-ad-ins,
ins.adsbygoogle {
  display: block !important;
  width: 100%;
  max-width: 100%;
  min-height: 90px;
  overflow: visible !important;
  text-align: center;
  background: transparent;
}

.ct-ad-wrap iframe,
ins.adsbygoogle iframe {
  max-width: none;
}

.ct-ad-in-article,
.ct-ad-in-article-2 {
  min-height: 120px;
}

.ct-ad-in-feed,
.ct-feed-ad {
  min-height: 120px;
}

.ct-feed-ad {
  grid-column: 1 / -1;
  margin: 4px 0 12px;
}

.ct-ad-multiplex {
  min-height: 280px;
}

.ct-house-ad {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  min-height: 180px;
  padding: 20px 22px;
  border-radius: var(--ct-radius);
  background: var(--ct-soft);
  box-shadow: var(--ct-shadow);
  transition: box-shadow 0.2s var(--ct-ease);
}

.ct-house-ad:hover {
  box-shadow: var(--ct-shadow-hover);
}

.ct-house-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.ct-house-copy strong {
  font-family: var(--ct-display);
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.ct-house-copy em {
  font-style: normal;
  color: var(--ct-muted);
  font-size: 13px;
  line-height: 1.5;
}

.ct-house-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 40px;
  padding: 0 16px;
  border-radius: var(--ct-radius-sm);
  background: var(--ct-fg);
  color: var(--ct-paper);
  font-size: 13px;
  font-weight: 600;
}

.ct-consent {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 70;
  padding: 0 16px max(12px, env(safe-area-inset-bottom));
}

.ct-consent-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 48rem;
  margin: 0 auto;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--ct-footer);
  color: var(--ct-paper);
  box-shadow: 0 20px 50px rgb(0 0 0 / 0.28);
}

.ct-consent-card p {
  margin: 0;
  color: var(--ct-footer-muted);
  font-size: 13px;
  line-height: 1.5;
}

.ct-consent-card a {
  color: var(--ct-paper);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ct-consent-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.ct-consent-actions button {
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: var(--ct-radius-sm);
  background: transparent;
  color: var(--ct-paper);
  font-size: 13px;
  font-weight: 600;
}

.ct-consent-actions .is-accept {
  background: var(--ct-paper);
  color: var(--ct-fg);
}

.ct-anchor {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 40;
  border-top: 1px solid var(--ct-line);
  background: color-mix(in srgb, var(--ct-paper) 95%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -8px 30px rgb(0 0 0 / 0.08);
}

.ct-anchor-inner {
  position: relative;
  padding: 10px 16px;
}

.ct-anchor-close {
  position: absolute;
  right: 8px;
  top: 50%;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--ct-muted);
  font-size: 22px;
  line-height: 1;
}

.ct-anchor .ct-ad-wrap {
  margin: 0;
  min-height: 56px;
}

.ct-anchor-house {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding-right: 48px;
}

.ct-anchor-copy {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  font-weight: 500;
}

.ct-anchor-cta {
  color: var(--ct-accent);
  font-size: 13px;
  font-weight: 650;
}

body.ct-has-anchor {
  padding-bottom: 72px;
}

@media (min-width: 700px) {
  .ct-anchor {
    display: none;
  }

  body.ct-has-anchor {
    padding-bottom: 0;
  }

  .ct-house-ad {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .ct-consent-card {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 16px 20px;
  }
}

.ct-dir-hero {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 8px;
}

.ct-dir-hero .ct-deck {
  margin-top: 12px;
}

.ct-launch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 980px;
  background: var(--ct-accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
}

.ct-launch-btn:hover {
  color: #fff;
  background: var(--ct-accent-hover);
}

.ct-launch-btn.is-ghost {
  background: transparent;
  color: #f5f5f7;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.ct-launch-btn.is-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.ct-launch-band {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 36px 0 8px;
  padding: 28px 22px;
  background: #1d1d1f;
  color: #f5f5f7;
  border-radius: 22px;
}

.ct-launch-band .ct-kicker {
  color: rgba(245, 245, 247, 0.55);
}

.ct-launch-band h2 {
  margin: 6px 0 8px;
  font-size: clamp(1.5rem, 6vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 650;
  color: #f5f5f7;
}

.ct-launch-band p {
  margin: 0;
  color: rgba(245, 245, 247, 0.62);
  font-size: 15px;
  line-height: 1.45;
  max-width: 36em;
}

.ct-launch-band__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ct-launch-band .ct-launch-btn {
  background: #fff;
  color: #1d1d1f;
}

.ct-launch-band .ct-launch-btn:hover {
  color: #1d1d1f;
}

@media (min-width: 700px) {
  .ct-dir-hero {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
  }

  .ct-dir-hero .ct-launch-btn {
    width: auto;
    flex-shrink: 0;
    min-width: 200px;
  }

  .ct-launch-band {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 36px 40px;
    margin-top: 48px;
  }

  .ct-launch-band__actions {
    flex-direction: row;
    flex-shrink: 0;
  }

  .ct-launch-band .ct-launch-btn {
    width: auto;
    min-width: 180px;
  }
}

.ct-archive {
  padding-top: 40px;
}

.ct-archive h1,
.ct-getfeatured h1 {
  margin-bottom: 12px;
}

.ct-count {
  margin: 20px 0 0;
  color: var(--ct-muted);
  font-size: 13px;
}

.ct-searchbox {
  display: flex;
  gap: 6px;
  margin-top: 32px;
  padding: 6px;
  border-radius: var(--ct-radius);
  background: var(--ct-paper);
  box-shadow: var(--ct-shadow);
}

.ct-empty,
.ct-none {
  grid-column: 1 / -1;
  padding: 28px 8px;
  color: var(--ct-muted);
}

.ct-auth {
  min-height: calc(100svh - 48px);
  display: grid;
  align-items: center;
  padding: 24px 0;
}

.ct-auth-card {
  width: 100%;
  max-width: 470px;
  margin: auto;
  padding: 28px 24px;
  border-radius: 24px;
  background: var(--ct-paper);
  box-shadow: var(--ct-shadow-hover);
}

.ct-auth-card h1 {
  margin: 28px 0 10px;
  font-size: clamp(2.4rem, 8vw, 3.4rem);
}

.ct-auth-card > p {
  margin: 0 0 24px;
  color: var(--ct-muted);
  font-size: 14px;
}

.ct-field {
  margin-bottom: 16px;
}

.ct-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 650;
}

.ct-field input,
.ct-field select,
.ct-auth-card .input,
.ct-comments input[type="text"],
.ct-comments input[type="email"],
.ct-comments input[type="url"],
.ct-comments textarea {
  display: block;
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--ct-line);
  border-radius: 13px;
  background: var(--ct-paper);
  color: var(--ct-fg);
  padding: 0 14px;
  outline: 0;
}

.ct-comments textarea {
  min-height: 140px;
  padding: 14px;
}

.ct-field input:focus,
.ct-field select:focus {
  border-color: var(--ct-fg);
  box-shadow: 0 0 0 3px rgb(0 0 0 / 0.06);
}

.ct-auth-note {
  text-align: center;
  margin-top: 18px !important;
  font-size: 12px !important;
}

.ct-auth-note a {
  font-weight: 650;
  color: var(--ct-accent);
}

.chp-alert {
  margin: 0 0 14px;
  padding: 11px 12px;
  border-radius: 11px;
  background: #fff2f2;
  color: #a11;
  font-size: 12px;
}

.ct-price-grid {
  display: grid;
  gap: 12px;
  margin-top: 48px;
}

.ct-price {
  background: var(--ct-paper);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--ct-shadow);
}

.ct-price.is-featured {
  box-shadow: var(--ct-shadow-hover);
  outline: 1px solid var(--ct-accent);
}

.ct-price h2 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.ct-price strong {
  display: block;
  font-size: 31px;
  letter-spacing: -0.05em;
}

.ct-price p {
  color: var(--ct-muted);
  font-size: 13px;
  line-height: 1.5;
}

.ct-price ul {
  padding-left: 18px;
  color: var(--ct-muted);
  font-size: 12px;
  line-height: 1.6;
}

.ct-price > a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--ct-radius-sm);
  background: var(--ct-fg);
  color: var(--ct-paper);
  font-size: 12px;
  font-weight: 650;
  margin-top: 18px;
}

.ct-product-head {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
}

.ct-product-head h1 {
  font-size: clamp(2.2rem, 8vw, 3.8rem);
  margin: 0;
}

.ct-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.ct-upvote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: var(--ct-radius-sm);
  background: var(--ct-soft);
  color: var(--ct-fg);
  font-size: 12px;
  font-weight: 600;
}

.ct-related {
  margin-top: 64px;
}

.ct-related-grid {
  margin-top: 20px;
}

.ct-comments {
  margin-top: 56px;
  max-width: 720px;
}

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

.ct-comment-list .comment {
  padding: 16px 0;
  border-bottom: 1px solid var(--ct-line);
}

.ct-empty-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 0;
}

.ct-empty-page .ct-subscribe {
  display: inline-flex;
  margin-top: 20px;
}

.ct-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 60;
  background: var(--ct-fg);
}

body.admin-bar .ct-progress {
  top: 32px;
}

.nav-links,
.ct-pagination,
ul.page-numbers {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  background: none;
  box-shadow: none;
  min-height: 0;
  min-width: 0;
}

ul.page-numbers li {
  display: inline-flex;
  margin: 0;
  width: auto;
}

a.page-numbers,
span.page-numbers,
.ct-pagination a,
.ct-pagination span {
  min-height: 36px;
  min-width: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 980px;
  background: var(--ct-soft);
  box-shadow: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--ct-fg);
}

span.page-numbers.current,
.ct-pagination .current {
  background: var(--ct-fg);
  color: var(--ct-paper);
}

.alignwide {
  max-width: var(--ct-max);
}

.alignfull {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 699.98px) {
  .ct-navlinks,
  .ct-navlinks .ct-menu-list,
  .ct-header nav.ct-nav {
    display: none !important;
  }

  .ct-signin,
  .ct-subscribe:not(.ct-subscribe-block) {
    display: none !important;
  }

  .ct-search-trigger,
  .ct-menu {
    display: grid !important;
  }
}

@media (min-width: 700px) {
  :root {
    --ct-gutter: 1.75rem;
  }

  .ct-bar,
  .ct-nav {
    height: 56px;
  }

  .ct-navlinks,
  .ct-navlinks .ct-menu-list {
    display: flex !important;
  }

  .ct-search-trigger {
    display: grid;
  }

  .ct-subscribe,
  .ct-signin {
    display: inline-flex;
  }

  .ct-menu,
  .ct-nav-check {
    display: none !important;
  }

  .ct-mobile-nav,
  .ct-mobile-nav.is-open,
  .ct-header.is-nav-open .ct-mobile-nav,
  .ct-nav-check:checked ~ .ct-mobile-nav {
    display: none !important;
  }

  .ct-today {
    padding-top: 32px;
  }

  .ct-hero {
    padding: 40px 0 48px;
  }

  .ct-hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    grid-template-areas: "media copy";
    gap: 48px;
    align-items: stretch;
    min-height: 420px;
  }

  .ct-hero-media {
    grid-area: media;
    aspect-ratio: auto;
    min-height: 420px;
    height: 100%;
    border-radius: 22px;
  }

  .ct-hero-copy {
    grid-area: copy;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .ct-hero-copy h1 {
    font-size: clamp(2rem, 3.1vw, 3.05rem);
  }

  .ct-hero-copy h1.is-long {
    font-size: clamp(1.7rem, 2.4vw, 2.45rem);
  }

  .ct-trend-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
  }

  .ct-trend-row.is-dense {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ct-also-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ct-brief {
    grid-template-columns: 1fr 1fr;
  }

  .ct-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 28px;
  }

  .ct-news-grid .ct-feature.is-feature {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 28px;
    align-items: center;
    border-bottom: 1px solid var(--ct-line);
    padding-bottom: 28px;
    margin-bottom: 8px;
  }

  .ct-news-grid .ct-feature.is-feature .ct-feature-media {
    aspect-ratio: 16 / 10;
  }

  .ct-news-grid .ct-feature.is-feature .ct-feature-copy h3 {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
  }

  .ct-channels {
    grid-template-columns: 1fr 1fr;
    gap: 48px 56px;
  }

  .ct-trend {
    min-width: 0;
  }

  .ct-feature-grid,
  .ct-related-grid {
    grid-template-columns: 1.4fr 0.6fr;
  }

  .ct-results {
    grid-template-columns: 1fr 1fr;
  }

  .ct-footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ct-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .ct-form {
    grid-template-columns: 1fr auto;
  }

  .ct-form button {
    padding: 0 22px;
  }

  .ct-newsletter {
    padding: 48px 40px;
  }

  .ct-article-wrap {
    padding-top: 56px;
  }

  .ct-article-image {
    width: min(var(--ct-max), calc(100% - 2 * var(--ct-gutter)));
    margin-inline: auto;
    border-radius: var(--ct-radius);
    aspect-ratio: 1.65;
  }

  .ct-price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ct-auth {
    min-height: calc(100svh - 56px);
  }

  .ct-auth-card {
    padding: 40px;
  }
}

@media (min-width: 1040px) {
  .ct-price-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .ct-article h1 {
    font-size: 4.5rem;
  }
}

@media (max-width: 699px) {
  body.admin-bar .ct-header,
  body.admin-bar .ct-progress {
    top: 46px;
  }

  .ct-article-image:not(.ct-article-image-in) {
    margin-left: calc(-1 * var(--ct-gutter));
    margin-right: calc(-1 * var(--ct-gutter));
    border-radius: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
