.rankdaily-v29 #page,
.rankdaily-v29 #content,
.rankdaily-v29 .site-content,
.rankdaily-v29 .ast-container {
	width: 100%;
	max-width: none;
	min-height: 0;
	padding: 0;
	margin: 0;
	background: var(--rd-paper);
}

.rankdaily-v29 #page {
	display: flex;
	min-height: calc(100vh - 72px);
	flex-direction: column;
}

.rankdaily-v29 #content,
.rankdaily-v29 .site-content,
.rankdaily-v29 .ast-container {
	display: flex;
	flex: 1 0 auto;
	flex-direction: column;
}

.rd-global-header {
	position: sticky;
	z-index: 100;
	top: 0;
	width: 100%;
	border-bottom: 1px solid rgba(27, 36, 48, .12);
	background: rgba(244, 240, 231, .94);
	backdrop-filter: blur(16px);
}

.rd-global-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(calc(100% - 48px), var(--rd-page-width));
	height: 72px;
	margin: 0 auto;
}

.rd-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--rd-navy);
	font-family: var(--rd-font-display);
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -.025em;
}

.rd-brand > span {
	display: grid;
	width: 32px;
	height: 32px;
	place-items: center;
	border: 1px solid currentColor;
	border-radius: 50%;
	font-family: var(--rd-font-display);
	font-size: 14px;
	font-weight: 600;
}

.rd-global-nav {
	display: flex;
	align-items: stretch;
	gap: 28px;
	height: 100%;
}

.rd-global-nav a {
	position: relative;
	display: flex;
	align-items: center;
	color: #454640;
	font-size: 14px;
	font-weight: 700;
}

.rd-global-nav a::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 2px;
	background: var(--rd-blue);
	content: "";
	transform: scaleX(0);
	transition: transform .2s var(--rd-ease);
}

.rd-global-nav a:hover,
.rd-global-nav a[aria-current="page"] {
	color: var(--rd-navy);
}

.rd-global-nav a:hover::after,
.rd-global-nav a[aria-current="page"]::after {
	transform: scaleX(1);
}

.rd-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 11px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.rd-menu-toggle > span:not(.screen-reader-text) {
	display: block;
	height: 1.5px;
	margin: 5px 0;
	background: var(--rd-navy);
}

.rd-site {
	width: 100%;
	background: var(--rd-paper);
	color: var(--rd-ink);
}

.rd-page {
	width: min(calc(100% - 48px), var(--rd-page-width));
	padding: clamp(64px, 7vw, 100px) 0 clamp(88px, 9vw, 132px);
	margin: 0 auto;
}

.rd-section {
	width: min(calc(100% - 48px), var(--rd-page-width));
	padding: clamp(66px, 8vw, 112px) 0;
	margin: 0 auto;
}

.rd-eyebrow,
.rd-detail-kicker,
.rd-score-kicker,
.rd-game-task > span {
	margin-bottom: 14px;
	color: var(--rd-blue);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .16em;
	line-height: 1.2;
	text-transform: uppercase;
}

.rd-page-header {
	max-width: 820px;
	margin-bottom: clamp(56px, 7vw, 86px);
}

.rd-page-header h1 {
	max-width: 900px;
	margin-bottom: 20px;
	font-size: clamp(3rem, 6.2vw, 5.1rem);
}

.rd-page-header > p:last-child {
	max-width: 760px;
	margin-bottom: 0;
	color: var(--rd-muted);
	font-size: clamp(1.03rem, 1.7vw, 1.18rem);
	line-height: 1.65;
}

.rd-compact-header {
	width: min(100%, 860px);
	margin: 0 auto 34px;
	text-align: left;
}

.rd-compact-header h1 {
	margin-bottom: 4px;
	font-size: clamp(2.8rem, 5.2vw, 4rem);
}

.rd-compact-header > p:last-child {
	margin: 0;
	color: var(--rd-muted);
	font-size: 18px;
}

.rd-home-hero {
	display: grid;
	min-height: 495px;
	place-items: center;
	border-bottom: 1px solid var(--rd-line);
	background:
		radial-gradient(circle at 50% 10%, rgba(255, 255, 255, .8), transparent 38%),
		linear-gradient(180deg, rgba(255, 253, 248, .48), transparent 76%);
}

.rd-home-hero__copy {
	width: min(calc(100% - 48px), 920px);
	padding: 72px 0 62px;
	margin: 0 auto;
	text-align: center;
}

.rd-home-hero h1 {
	max-width: 900px;
	margin: 0 auto 22px;
	font-size: clamp(3.5rem, 7.2vw, 6rem);
	line-height: .96;
}

.rd-home-hero .rd-lead {
	margin-bottom: 26px;
	color: var(--rd-muted);
	font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.rd-hero-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	margin-bottom: 22px;
}

.rd-hero-note {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0;
	margin: 0;
	color: #737168;
	font-size: 12px;
	font-weight: 650;
}

.rd-hero-note span + span::before {
	margin: 0 10px;
	color: var(--rd-line-strong);
	content: "·";
}

.rd-section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 34px;
}

.rd-section-heading h2 {
	margin: 0;
	font-size: clamp(2.35rem, 4.8vw, 3.65rem);
}

.rd-section-heading > p,
.rd-section-heading > a {
	margin: 0 0 6px;
	color: var(--rd-muted);
	font-size: 14px;
}

.rd-section-heading > a {
	color: var(--rd-blue);
	font-weight: 700;
}

.rd-section--daily-preview {
	padding-bottom: clamp(72px, 9vw, 112px);
}

.rd-section--categories {
	padding-top: clamp(72px, 9vw, 112px);
	border-top: 1px solid var(--rd-line);
}

.rd-home-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	width: min(calc(100% - 48px), var(--rd-page-width));
	padding: 0 0 clamp(72px, 8vw, 106px);
	margin: 0 auto;
}

.rd-home-steps article {
	min-height: 205px;
	padding: 34px 34px 28px;
	border-top: 1px solid var(--rd-line);
	border-left: 1px solid var(--rd-line);
}

.rd-home-steps article:first-child {
	border-left: 0;
}

.rd-home-steps article > span,
.rd-step-index {
	display: block;
	margin-bottom: 26px;
	color: var(--rd-blue);
	font-family: var(--rd-font-display);
	font-size: 18px;
	font-weight: 700;
}

.rd-home-steps h3 {
	margin-bottom: 12px;
	font-size: 1.55rem;
}

.rd-home-steps p {
	margin: 0;
	color: var(--rd-muted);
	font-size: 15px;
}

.rd-daily-page {
	padding-top: 40px;
}

.rd-single-question {
	padding-top: 54px;
}

.rd-breadcrumb {
	display: flex;
	gap: 10px;
	width: min(100%, 860px);
	margin: 0 auto 22px;
	color: var(--rd-muted);
	font-size: 14px;
}

.rd-breadcrumb a:hover {
	color: var(--rd-blue);
}

.rd-challenge-context {
	display: grid;
	grid-template-columns: 190px minmax(0, 1fr);
	gap: 36px 58px;
	padding: 48px 0;
	margin: 70px 0;
	border-top: 1px solid var(--rd-line);
	border-bottom: 1px solid var(--rd-line);
}

.rd-challenge-context .rd-detail-kicker {
	grid-row: 1 / 3;
	padding-top: 6px;
}

.rd-challenge-context h2 {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3rem);
}

.rd-challenge-context > p:last-child {
	max-width: 760px;
	margin: 0;
	color: var(--rd-muted);
}

.rd-related {
	padding-top: 12px;
}

.rd-related .rd-section-heading {
	justify-content: center;
	text-align: center;
}

.rd-about .rd-page-header {
	max-width: 900px;
}

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

.rd-info-grid {
	margin-bottom: 58px;
}

.rd-info-grid article,
.rd-trust-grid article {
	padding-top: 30px;
	border-top: 1px solid var(--rd-line);
}

.rd-info-grid h2,
.rd-trust-grid h2 {
	margin-bottom: 12px;
	font-size: 1.7rem;
}

.rd-info-grid p,
.rd-trust-grid p {
	margin: 0;
	color: var(--rd-muted);
}

.rd-about-details {
	border-top: 1px solid var(--rd-line);
}

.rd-trust-grid {
	margin-top: 18px;
}

.rd-centered-action {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 58px;
}

.rd-privacy {
	width: min(calc(100% - 48px), 860px);
}

.rd-privacy .rd-page-header {
	margin-bottom: 64px;
}

.rd-privacy-grid {
	display: grid;
	gap: 0;
}

.rd-privacy-grid article {
	padding: 30px 0;
	border-top: 1px solid var(--rd-line);
}

.rd-privacy-grid h2 {
	margin-bottom: 12px;
	font-size: 1.65rem;
}

.rd-privacy-grid p {
	margin: 0;
	color: var(--rd-muted);
}

.rd-global-footer {
	flex: 0 0 auto;
	padding: 54px 0 28px;
	background: var(--rd-navy);
	color: rgba(255, 255, 255, .72);
}

.rd-global-footer__inner,
.rd-global-footer__legal {
	width: min(calc(100% - 48px), 1220px);
	margin: 0 auto;
}

.rd-global-footer__inner {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 42px;
	padding-bottom: 48px;
}

.rd-global-footer .rd-brand {
	color: #fff;
}

.rd-global-footer p {
	max-width: 410px;
	margin: 16px 0 0;
	font-size: 14px;
}

.rd-global-footer nav {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 26px;
	justify-content: flex-end;
	font-size: 14px;
	font-weight: 700;
}

.rd-global-footer nav a:hover {
	color: #fff;
}

.rd-global-footer__legal {
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, .13);
	font-size: 12px;
}
