/*
 * Dekajiri Heaven: Full Review Redesign v3
 * Experimental branch-only design system.
 *
 * Visual references studied from public GitHub projects include:
 * - asbhogal/Fyrre-Magazine (editorial hierarchy / magazine rhythm)
 * - Lazhari/react-movies-finder (media-first cards / rating placement, MIT)
 * - transitive-bullshit/next-movie (dense movie discovery patterns, MIT)
 * - codewithsadee/filmlane (cinematic dark presentation)
 * - magicuidesign/magicui (micro-interaction restraint, MIT)
 *
 * This file intentionally uses rx3-prefixed components so the redesign does not
 * depend on the legacy card/layout rules in main.css.
 */

:root {
	--rx3-bg: #0b0b0d;
	--rx3-bg-soft: #121216;
	--rx3-panel: #17171c;
	--rx3-panel-2: #202027;
	--rx3-paper: #f1eee8;
	--rx3-paper-2: #faf8f4;
	--rx3-text: #f7f4ee;
	--rx3-text-dim: rgba(247, 244, 238, .64);
	--rx3-ink: #151519;
	--rx3-ink-dim: #6f6b67;
	--rx3-line: rgba(255,255,255,.11);
	--rx3-line-dark: rgba(21,21,25,.14);
	--rx3-accent: #ed5b91;
	--rx3-accent-2: #ffb2c9;
	--rx3-rose-dark: #8f3453;
	--rx3-burgundy: #402832;
	--rx3-burgundy-soft: #59464d;
	--rx3-rose-gray: #75666b;
	--rx3-paper-rose: #fff7f9;
	--rx3-gold: #dfb56f;
	--rx3-green: #94d4a4;
	--rx3-radius: 22px;
	--rx3-radius-sm: 14px;
	--rx3-shadow: 0 34px 90px rgba(0,0,0,.34);
	--rx3-max: 1480px;
	--rx3-reading: 940px;
}

html {
	scroll-behavior: smooth;
	background: var(--rx3-bg);
}

body.review-v3 {
	margin: 0;
	background: var(--rx3-bg);
	color: var(--rx3-text);
	font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.review-v3 *,
body.review-v3 *::before,
body.review-v3 *::after {
	box-sizing: border-box;
}

body.review-v3 img {
	max-width: 100%;
}

body.review-v3 a {
	color: inherit;
}

body.review-v3 button,
body.review-v3 input,
body.review-v3 select,
body.review-v3 textarea {
	font: inherit;
}

body.review-v3::before {
	content: "";
	position: fixed;
	z-index: 99999;
	top: 0;
	left: 0;
	width: var(--rx3-progress, 0%);
	height: 3px;
	background: linear-gradient(90deg, var(--rx3-accent), #ff9470, var(--rx3-gold));
	box-shadow: 0 0 18px rgba(237,91,145,.55);
	pointer-events: none;
}

.review-v3 .screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.review-v3 .skip-link:focus {
	position: fixed !important;
	z-index: 100000;
	top: .75rem;
	left: .75rem;
	width: auto;
	height: auto;
	padding: .75rem 1rem;
	clip: auto;
	background: var(--rx3-paper);
	color: var(--rx3-ink);
}

/* --------------------------------------------------------------------------
 * Header
 * ----------------------------------------------------------------------- */
.review-v3 .site-header.rx3-site-header {
	position: fixed;
	z-index: 2000;
	top: 0;
	left: 0;
	right: 0;
	margin: 0;
	border: 0;
	background: linear-gradient(180deg, rgba(7,7,9,.88), rgba(7,7,9,.42) 68%, transparent);
	backdrop-filter: none;
	transition: background-color .28s ease, border-color .28s ease, backdrop-filter .28s ease;
}

.review-v3 .site-header.rx3-site-header.is-scrolled {
	border-bottom: 1px solid var(--rx3-line);
	background: rgba(9,9,11,.9);
	backdrop-filter: blur(18px) saturate(130%);
	box-shadow: 0 14px 34px rgba(0,0,0,.2);
}

.review-v3 .rx3-site-header__inner {
	display: grid;
	grid-template-columns: minmax(180px, .7fr) minmax(0, 1.6fr) auto;
	align-items: center;
	gap: clamp(1rem, 3vw, 3rem);
	width: min(calc(100% - 3rem), var(--rx3-max));
	min-height: 84px;
	margin-inline: auto;
}

.review-v3 .rx3-brand {
	display: flex;
	align-items: center;
	gap: .9rem;
	min-width: 0;
}

.review-v3 .rx3-brand .custom-logo-link {
	display: inline-flex;
}

.review-v3 .rx3-brand .custom-logo {
	display: block;
	width: auto;
	max-width: min(240px, 32vw);
	max-height: 44px;
}

.review-v3 .rx3-brand__fallback {
	margin: 0;
	font-family: Georgia, "Yu Mincho", serif;
	font-size: clamp(1.2rem, 2vw, 1.7rem);
	font-weight: 600;
	letter-spacing: -.04em;
}

.review-v3 .rx3-brand__fallback a {
	text-decoration: none;
}

.review-v3 .rx3-brand__edition {
	padding-left: .85rem;
	border-left: 1px solid var(--rx3-line);
	color: var(--rx3-text-dim);
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: .62rem;
	font-weight: 750;
	letter-spacing: .16em;
	line-height: 1.45;
	text-transform: uppercase;
	white-space: nowrap;
}

.review-v3 .primary-navigation.rx3-nav {
	position: static;
	padding: 0;
	background: transparent;
	box-shadow: none;
}

.review-v3 .rx3-nav .menu,
.review-v3 .rx3-nav > ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(.8rem, 2.2vw, 2.1rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.review-v3 .rx3-nav li {
	margin: 0;
}

.review-v3 .rx3-nav a {
	position: relative;
	display: inline-flex;
	padding-block: .55rem;
	color: rgba(255,255,255,.72);
	font-size: .72rem;
	font-weight: 750;
	letter-spacing: .08em;
	text-decoration: none;
	white-space: nowrap;
	transition: color .2s ease;
}

.review-v3 .rx3-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: .22rem;
	height: 1px;
	background: var(--rx3-accent);
	transition: right .22s ease;
}

.review-v3 .rx3-nav a:hover,
.review-v3 .rx3-nav a:focus-visible {
	color: #fff;
}

.review-v3 .rx3-nav a:hover::after,
.review-v3 .rx3-nav a:focus-visible::after {
	right: 0;
}

.review-v3 .rx3-header__aside {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: .75rem;
}

.review-v3 .rx3-header__index {
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	min-height: 40px;
	padding: .65rem .95rem;
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 999px;
	color: #fff;
	font-size: .67rem;
	font-weight: 800;
	letter-spacing: .08em;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.review-v3 .rx3-header__index:hover {
	border-color: rgba(237,91,145,.75);
	background: rgba(237,91,145,.12);
	transform: translateY(-1px);
}

.review-v3 .menu-toggle.rx3-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--rx3-line);
	border-radius: 50%;
	background: rgba(255,255,255,.04);
	color: #fff;
}

.review-v3 .rx3-menu-toggle .menu-toggle__label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
}

.review-v3 .rx3-menu-toggle .menu-toggle__icon {
	display: grid;
	gap: 4px;
	width: 18px;
}

.review-v3 .rx3-menu-toggle .menu-toggle__icon span {
	display: block;
	height: 1px;
	background: currentColor;
	transition: transform .2s ease, opacity .2s ease;
}

/* --------------------------------------------------------------------------
 * Homepage hero
 * ----------------------------------------------------------------------- */
.review-v3 .home-main.rx3-home {
	margin: 0;
	padding: 0;
	background: var(--rx3-bg);
}

.review-v3 .rx3-hero {
	position: relative;
	isolation: isolate;
	display: grid;
	align-items: end;
	min-height: max(720px, 100svh);
	overflow: hidden;
	background:
		radial-gradient(circle at 74% 28%, rgba(237,91,145,.18), transparent 36rem),
		linear-gradient(135deg, #111116, #050506 70%);
}

.review-v3 .rx3-hero__media {
	position: absolute;
	z-index: -3;
	inset: 0;
}

.review-v3 .rx3-hero__picture {
	display: block;
	width: 100%;
	height: 100%;
}

.review-v3 .rx3-hero__media img {
	display: block;
	width: 100%;
	height: 112%;
	object-fit: cover;
	object-position: center;
	filter: saturate(.9) contrast(1.02) brightness(.74);
	transform: translate3d(0, var(--rx3-hero-y, 0px), 0) scale(1.02);
	will-change: transform;
}

.review-v3 .rx3-hero::before {
	content: "";
	position: absolute;
	z-index: -2;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(5,5,7,.93) 0%, rgba(5,5,7,.64) 39%, rgba(5,5,7,.18) 70%, rgba(5,5,7,.52) 100%),
		linear-gradient(0deg, rgba(5,5,7,.96) 0%, transparent 52%);
}

.review-v3 .rx3-hero::after {
	content: "";
	position: absolute;
	z-index: -1;
	inset: 0;
	background: radial-gradient(circle at 30% 50%, transparent 20%, rgba(0,0,0,.18) 70%);
	pointer-events: none;
}

.review-v3 .rx3-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(230px, .65fr);
	gap: clamp(2rem, 6vw, 7rem);
	align-items: end;
	width: min(calc(100% - 3rem), var(--rx3-max));
	margin-inline: auto;
	padding: clamp(9rem, 19vh, 13rem) 0 clamp(3rem, 7vh, 5.5rem);
}

.review-v3 .rx3-hero__kicker {
	display: flex;
	align-items: center;
	gap: .8rem;
	margin: 0 0 1.5rem;
	color: var(--rx3-accent-2);
	font-size: .68rem;
	font-weight: 850;
	letter-spacing: .2em;
	text-transform: uppercase;
}

.review-v3 .rx3-hero__kicker::before {
	content: "";
	width: 44px;
	height: 1px;
	background: currentColor;
}

.review-v3 .rx3-hero__title {
	max-width: 9.5ch;
	margin: 0;
	font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-size: clamp(4rem, 8.8vw, 9.2rem);
	font-weight: 500;
	line-height: .88;
	letter-spacing: -.065em;
	text-wrap: balance;
}

.review-v3 .rx3-hero__deck {
	max-width: 680px;
	margin: 1.7rem 0 0;
	color: rgba(255,255,255,.72);
	font-size: clamp(.95rem, 1.4vw, 1.12rem);
	line-height: 1.9;
}

.review-v3 .rx3-hero__rail {
	display: grid;
	gap: 1.6rem;
	align-self: end;
	padding: 1.4rem 0 1rem clamp(1.2rem, 3vw, 2.2rem);
	border-left: 1px solid rgba(255,255,255,.2);
}

.review-v3 .rx3-hero__rail-label {
	margin: 0;
	color: var(--rx3-text-dim);
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: .63rem;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.review-v3 .rx3-hero__rail-copy {
	margin: 0;
	font-family: Georgia, "Yu Mincho", serif;
	font-size: clamp(1.35rem, 2.4vw, 2.1rem);
	line-height: 1.38;
}

.review-v3 .rx3-hero__scroll {
	display: inline-flex;
	align-items: center;
	gap: .75rem;
	justify-self: start;
	color: rgba(255,255,255,.76);
	font-size: .65rem;
	font-weight: 850;
	letter-spacing: .16em;
	text-decoration: none;
	text-transform: uppercase;
}

.review-v3 .rx3-hero__scroll::after {
	content: "";
	width: 54px;
	height: 1px;
	background: currentColor;
	transition: width .25s ease;
}

.review-v3 .rx3-hero__scroll:hover::after {
	width: 84px;
}

.review-v3 .rx3-hero__notice {
	position: absolute;
	right: 0;
	bottom: 1.2rem;
	max-width: min(520px, 40vw);
	margin: 0;
	color: rgba(255,255,255,.48);
	font-size: .62rem;
	line-height: 1.55;
	text-align: right;
}

/* --------------------------------------------------------------------------
 * Home latest reviews
 * ----------------------------------------------------------------------- */
.review-v3 .rx3-reviews {
	position: relative;
	padding: clamp(5rem, 10vw, 10rem) 0;
	background: var(--rx3-bg);
}

.review-v3 .rx3-reviews__inner {
	width: min(calc(100% - 3rem), var(--rx3-max));
	margin-inline: auto;
}

.review-v3 .rx3-section-head {
	display: grid;
	grid-template-columns: minmax(120px, .4fr) minmax(0, 1.6fr) auto;
	gap: clamp(1rem, 4vw, 4rem);
	align-items: end;
	margin-bottom: clamp(2.5rem, 5vw, 5rem);
	padding-bottom: 1.4rem;
	border-bottom: 1px solid var(--rx3-line);
}

.review-v3 .rx3-section-head__eyebrow {
	margin: 0;
	color: var(--rx3-accent);
	font-size: .66rem;
	font-weight: 850;
	letter-spacing: .2em;
	text-transform: uppercase;
}

.review-v3 .rx3-section-head__title {
	max-width: 10ch;
	margin: 0;
	font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-size: clamp(3rem, 6.4vw, 7.4rem);
	font-weight: 500;
	line-height: .9;
	letter-spacing: -.06em;
}

.review-v3 .rx3-section-head__meta {
	margin: 0 0 .25rem;
	color: var(--rx3-text-dim);
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: .62rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	white-space: nowrap;
}

.review-v3 .rx3-review-grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.8rem);
}

.review-v3 .rx3-review-card {
	position: relative;
	grid-column: span 4;
	display: grid;
	min-width: 0;
	margin: 0;
	border: 1px solid var(--rx3-line);
	border-radius: var(--rx3-radius);
	background: var(--rx3-panel);
	overflow: clip;
	box-shadow: none;
	transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .25s ease, box-shadow .35s ease;
}

.review-v3 .rx3-review-card:hover {
	transform: translateY(-7px);
	border-color: rgba(237,91,145,.38);
	box-shadow: 0 28px 70px rgba(0,0,0,.3);
}

.review-v3 .rx3-review-card.is-featured {
	grid-column: 1 / -1;
	grid-template-columns: minmax(0, 1.35fr) minmax(360px, .65fr);
	min-height: clamp(570px, 58vw, 800px);
	background: #060607;
}

.review-v3 .rx3-review-card__media {
	position: relative;
	display: block;
	min-height: 0;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background:
		radial-gradient(circle at 40% 30%, rgba(237,91,145,.2), transparent 30%),
		#26252b;
}

.review-v3 .rx3-review-card.is-featured .rx3-review-card__media {
	aspect-ratio: auto;
	height: 100%;
}

.review-v3 .rx3-review-card__image,
.review-v3 .rx3-review-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
	background: linear-gradient(145deg, #28262b, #17171b);
}

.review-v3 .rx3-review-card__image {
	transform: scale(1.001);
	transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .35s ease;
}

.review-v3 .rx3-review-card:hover .rx3-review-card__image {
	transform: scale(1.04);
	filter: saturate(1.04) contrast(1.02);
}

.review-v3 .rx3-review-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 58%, rgba(5,5,7,.44));
	pointer-events: none;
}

.review-v3 .rx3-review-card__badge {
	position: absolute;
	z-index: 2;
	top: 1rem;
	left: 1rem;
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	padding: .5rem .68rem;
	border: 1px solid rgba(255,255,255,.24);
	border-radius: 999px;
	background: rgba(10,10,12,.62);
	backdrop-filter: blur(12px);
	color: #fff;
	font-size: .66rem;
	font-weight: 850;
	letter-spacing: .06em;
}

.review-v3 .rx3-review-card__badge.is-god {
	border-color: rgba(223,181,111,.5);
	color: #f1cf95;
}

.review-v3 .rx3-review-card__body {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	min-width: 0;
	padding: clamp(1.3rem, 2.4vw, 2rem);
}

.review-v3 .rx3-review-card.is-featured .rx3-review-card__body {
	justify-content: flex-end;
	padding: clamp(2rem, 4vw, 4.2rem);
}

.review-v3 .rx3-review-card__date {
	margin: 0;
	color: var(--rx3-text-dim);
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: .64rem;
	letter-spacing: .1em;
}

.review-v3 .rx3-review-card__title {
	margin: 0;
	font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-size: clamp(1.45rem, 2.3vw, 2.4rem);
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -.035em;
	text-wrap: pretty;
}

.review-v3 .rx3-review-card.is-featured .rx3-review-card__title {
	max-width: 10ch;
	font-size: clamp(3rem, 5vw, 6rem);
	line-height: .95;
	letter-spacing: -.055em;
}

.review-v3 .rx3-review-card__title a {
	text-decoration: none;
}

.review-v3 .rx3-review-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: .45rem;
	align-items: center;
}

.review-v3 .rx3-chip {
	display: inline-flex;
	align-items: center;
	min-width: 0;
	max-width: 100%;
	min-height: 28px;
	padding: .35rem .62rem;
	border: 1px solid rgba(255,255,255,.15);
	border-radius: 999px;
	color: rgba(255,255,255,.68);
	font-size: .66rem;
	font-weight: 720;
	line-height: 1.25;
	text-decoration: none;
	overflow-wrap: anywhere;
	white-space: normal;
}

.review-v3 .rx3-chip.is-actress {
	border-color: rgba(237,91,145,.36);
	color: #ffabc8;
}

.review-v3 .rx3-chip.is-rating {
	border-color: rgba(223,181,111,.42);
	color: #edc889;
}

.review-v3 .rx3-review-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: .35rem;
	min-width: 0;
}

.review-v3 .rx3-review-card__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: .8rem;
	min-width: 0;
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid var(--rx3-line);
}

.review-v3 .rx3-review-card__link {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: .65rem;
	font-size: .67rem;
	font-weight: 850;
	letter-spacing: .12em;
	text-decoration: none;
	text-transform: uppercase;
}

.review-v3 .rx3-review-card__link::after {
	content: "↗";
	color: var(--rx3-accent);
	font-size: 1rem;
	transition: transform .2s ease;
}

.review-v3 .rx3-review-card__link:hover::after {
	transform: translate(2px,-2px);
}

/* Watch-later controls remain readable on both dark card variants. */
.review-v3 .rx3-review-card button {
	max-width: 100%;
}

.review-v3 .rx3-review-card .dkjmf-watch-later {
	flex: 0 0 auto;
	min-width: 44px;
	min-height: 44px;
	margin-left: auto;
	border-color: #dca8ba;
	background: #fff7f9;
	color: #8e3152;
	white-space: nowrap;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.review-v3 .rx3-review-card .dkjmf-watch-later:hover,
.review-v3 .rx3-review-card .dkjmf-watch-later:focus-visible,
.review-v3 .rx3-review-card .dkjmf-watch-later.is-active {
	border-color: #c74472;
	background: #b43a65;
	color: #fff9fb;
}

.review-v3 .rx3-review-card .dkjmf-watch-later:hover,
.review-v3 .rx3-review-card .dkjmf-watch-later:focus-visible {
	transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
 * Home extras / profile / series
 * ----------------------------------------------------------------------- */
.review-v3 .rx3-home-extras {
	padding: clamp(4rem, 8vw, 8rem) 0;
	border-top: 1px solid var(--rx3-line);
	background: #0f0f12;
}

.review-v3 .rx3-home-extras__inner {
	display: grid;
	gap: clamp(2rem, 4vw, 4rem);
	width: min(calc(100% - 3rem), var(--rx3-max));
	margin-inline: auto;
}

.review-v3 .profile-card {
	display: grid;
	grid-template-columns: auto minmax(0,1fr);
	gap: 1.4rem 2rem;
	align-items: center;
	margin: 0;
	padding: clamp(1.5rem, 3vw, 2.6rem);
	border: 1px solid var(--rx3-line);
	border-radius: var(--rx3-radius);
	background: var(--rx3-panel);
	box-shadow: none;
	color: var(--rx3-text);
}

.review-v3 .profile-card__image {
	grid-row: 1 / span 3;
	width: 86px;
	height: 86px;
	overflow: hidden;
	border-radius: 50%;
}

.review-v3 .profile-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.review-v3 .profile-card__name {
	margin: 0;
	font-family: Georgia, "Yu Mincho", serif;
	font-size: 1.6rem;
}

.review-v3 .profile-card__bio {
	margin: 0;
	color: var(--rx3-text-dim);
	line-height: 1.8;
}

.review-v3 .profile-card__social {
	display: flex;
	flex-wrap: wrap;
	gap: .55rem;
}

.review-v3 .profile-card__social a {
	padding: .45rem .7rem;
	border: 1px solid var(--rx3-line);
	border-radius: 999px;
	text-decoration: none;
	font-size: .68rem;
}

/* --------------------------------------------------------------------------
 * Single article shell
 * ----------------------------------------------------------------------- */
.review-v3 .content-layout.is-single-wide,
.review-v3 .single-main,
.review-v3 .single-main__inner {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	background: var(--rx3-bg);
}

.review-v3 .single-article.rx3-single {
	margin: 0;
	padding: 0;
	background: var(--rx3-bg);
	color: var(--rx3-text);
}

.review-v3 .rx3-single-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(390px, .85fr);
	min-height: max(720px, 94svh);
	border-bottom: 1px solid var(--rx3-line);
	background: #050506;
	overflow: hidden;
}

.review-v3 .rx3-single-hero__media {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 0;
	overflow: hidden;
	background:
		radial-gradient(circle at 50% 40%, rgba(237,91,145,.18), transparent 25rem),
		#1d1c21;
}

.review-v3 .rx3-single-hero__media img {
	display: block;
	width: 100%;
	height: auto;
	min-height: 0;
	max-height: none;
	object-fit: contain;
	object-position: center;
	background: #111114;
}

.review-v3 .rx3-single-hero__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: clamp(420px, 70svh, 760px);
	background: linear-gradient(140deg, #29262c, #111114);
}

.review-v3 .rx3-single-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, transparent 65%, rgba(5,5,6,.58)),
		linear-gradient(0deg, rgba(5,5,6,.35), transparent 32%);
	pointer-events: none;
}

.review-v3 .rx3-single-hero__copy {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 1.15rem;
	padding: clamp(8rem, 15vh, 11rem) clamp(2rem, 5vw, 5rem) clamp(3rem, 6vw, 5rem);
}

.review-v3 .rx3-single-hero__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: auto;
}

.review-v3 .rx3-single-hero__eyebrow {
	margin: 0;
	color: var(--rx3-accent-2);
	font-size: .66rem;
	font-weight: 850;
	letter-spacing: .2em;
	text-transform: uppercase;
}

.review-v3 .rx3-single-hero__title {
	max-width: 10.5ch;
	margin: 0;
	font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-size: clamp(3.2rem, 5.8vw, 6.6rem);
	font-weight: 500;
	line-height: .92;
	letter-spacing: -.06em;
	text-wrap: pretty;
}

.review-v3 .rx3-single-hero__summary {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	margin-top: .6rem;
}

.review-v3 .rx3-single-hero__summary a,
.review-v3 .rx3-single-hero__summary span {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: .38rem .62rem;
	border: 1px solid var(--rx3-line);
	border-radius: 999px;
	color: rgba(255,255,255,.7);
	font-size: .66rem;
	text-decoration: none;
}

.review-v3 .rx3-single-hero__summary .is-rating {
	border-color: rgba(223,181,111,.5);
	color: #efcd92;
}

.review-v3 .rx3-single-hero__summary .is-actress {
	border-color: rgba(237,91,145,.38);
	color: #ffabc8;
}

.review-v3 .rx3-single-hero__code {
	margin: .35rem 0 0;
	color: rgba(255,255,255,.42);
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: .66rem;
	letter-spacing: .08em;
}

.review-v3 .rx3-single-layout {
	display: grid;
	grid-template-columns: 180px minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 6rem);
	width: min(calc(100% - 3rem), var(--rx3-max));
	margin-inline: auto;
	padding: clamp(5rem, 9vw, 9rem) 0;
}

.review-v3 .rx3-chapter-nav {
	position: sticky;
	top: 112px;
	align-self: start;
	display: grid;
	gap: .25rem;
}

.review-v3 .rx3-chapter-nav__label {
	margin: 0 0 1rem;
	color: rgba(255,255,255,.38);
	font-size: .61rem;
	font-weight: 850;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.review-v3 .rx3-chapter-nav a {
	display: grid;
	grid-template-columns: 2rem minmax(0,1fr);
	gap: .45rem;
	padding: .55rem 0;
	border-bottom: 1px solid rgba(255,255,255,.07);
	color: rgba(255,255,255,.44);
	font-size: .65rem;
	line-height: 1.35;
	text-decoration: none;
	transition: color .2s ease, padding-left .2s ease;
}

.review-v3 .rx3-chapter-nav a span:first-child {
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	color: rgba(237,91,145,.7);
}

.review-v3 .rx3-chapter-nav a:hover,
.review-v3 .rx3-chapter-nav a.is-active {
	padding-left: .3rem;
	color: #fff;
}

.review-v3 .rx3-review-flow {
	display: grid;
	gap: clamp(1.5rem, 3vw, 2.5rem);
	min-width: 0;
}

.review-v3 .rx3-review-section {
	position: relative;
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
}

.review-v3 .rx3-review-section:empty {
	display: none;
}

.review-v3 .rx3-review-section__head {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: .8rem;
	padding-inline: .25rem;
}

.review-v3 .rx3-review-section__number {
	color: var(--rx3-accent);
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: .65rem;
	font-weight: 850;
	letter-spacing: .12em;
}

.review-v3 .rx3-review-section__label {
	margin: 0;
	color: rgba(255,255,255,.5);
	font-size: .63rem;
	font-weight: 850;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.review-v3 .rx3-review-section__content {
	min-width: 0;
	padding: clamp(1.25rem, 3vw, 2.6rem);
	border: 1px solid var(--rx3-line-dark);
	border-radius: var(--rx3-radius);
	background: var(--rx3-paper);
	color: var(--rx3-ink);
	box-shadow: 0 20px 52px rgba(0,0,0,.12);
	overflow: hidden;
}

.review-v3 .rx3-review-section.is-media .rx3-review-section__content {
	padding: clamp(1rem, 2vw, 1.5rem);
	background: #111114;
	color: var(--rx3-text);
	border-color: var(--rx3-line);
}

.review-v3 .rx3-review-section.is-rating .rx3-review-section__content {
	background:
		radial-gradient(circle at 96% 10%, rgba(223,181,111,.16), transparent 20rem),
		var(--rx3-paper);
}

.review-v3 .rx3-review-section.is-membership .rx3-review-section__content {
	background: #111114;
	color: var(--rx3-text);
	border-color: var(--rx3-line);
}

/* Editorial text inside media section. */
.review-v3 .single-article__content.entry-content {
	width: min(100%, 900px);
	margin: clamp(2rem, 4vw, 4rem) auto 0;
	padding: clamp(1.4rem, 3vw, 2.5rem);
	border-radius: 18px;
	background: var(--rx3-paper);
	color: var(--rx3-ink);
	font-size: 1rem;
	line-height: 1.95;
}

.review-v3 .single-article__content.entry-content h2,
.review-v3 .single-article__content.entry-content h3 {
	font-family: Georgia, "Yu Mincho", serif;
	letter-spacing: -.035em;
}

.review-v3 .single-article__content.entry-content h2 {
	font-size: clamp(1.7rem, 3vw, 2.6rem);
}

/* Video and gallery surfaces. */
.review-v3 .rx3-review-section.is-media iframe,
.review-v3 .rx3-review-section.is-media video,
.review-v3 .rx3-review-section.is-media .dkt-fanza-video,
.review-v3 .rx3-review-section.is-media .dkt-fanza-video iframe {
	max-width: 100%;
	border-radius: 16px;
	background: #000;
}

.review-v3 .rx3-review-section.is-media iframe,
.review-v3 .rx3-review-section.is-media .dkt-fanza-video iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
}

.review-v3 .rx3-review-section.is-media img {
	border-radius: 14px;
}

/* Keep plugin controls readable on the paper panels. */
.review-v3 .rx3-review-section__content a:not(.button):not([class*="cta"]),
.review-v3 .rx3-review-section__content button {
	max-width: 100%;
}

.review-v3 .rx3-review-section.is-membership a {
	color: inherit;
}

/* Situations / play / score: flatten legacy floating-card feeling. */
.review-v3 .rx3-review-section .play-bars,
.review-v3 .rx3-review-section .situation-bars,
.review-v3 .rx3-review-section .index-card,
.review-v3 .rx3-review-section .dekajiri-index,
.review-v3 .rx3-review-section .dc-highlights {
	margin-inline: 0;
	box-shadow: none;
}

/* --------------------------------------------------------------------------
 * Afterword / related / prev-next
 * ----------------------------------------------------------------------- */
.review-v3 .rx3-afterword {
	width: min(calc(100% - 3rem), var(--rx3-max));
	margin-inline: auto;
	padding: 0 0 clamp(6rem, 10vw, 10rem);
}

.review-v3 .rx3-terms {
	display: grid;
	grid-template-columns: 220px minmax(0,1fr);
	gap: 2rem;
	padding: 2rem 0;
	border-block: 1px solid var(--rx3-line);
}

.review-v3 .rx3-terms__title {
	margin: 0;
	color: var(--rx3-text-dim);
	font-size: .65rem;
	font-weight: 850;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.review-v3 .rx3-terms__list {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
}

.review-v3 .rx3-term {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	padding: .45rem .7rem;
	border: 1px solid var(--rx3-line);
	border-radius: 999px;
	color: rgba(255,255,255,.68);
	font-size: .68rem;
	text-decoration: none;
}

.review-v3 .rx3-term.is-actress {
	border-color: rgba(237,91,145,.28);
	color: #ffabc8;
}

/* Optional article-closing editorial reaction. */
.review-v3 .rx3-footer-reaction {
	display: grid;
	grid-template-columns: clamp(132px, 15vw, 176px) minmax(0, 1fr);
	gap: clamp(1.25rem, 3vw, 2.5rem);
	align-items: center;
	width: min(100%, 920px);
	min-width: 0;
	margin: clamp(3rem, 6vw, 5.5rem) auto;
}

.review-v3 .rx3-footer-reaction__character {
	position: relative;
	z-index: 1;
	width: 100%;
	margin: 0;
	padding: .45rem;
	border: 1px solid rgba(237, 91, 145, .32);
	border-radius: 28px;
	background:
		radial-gradient(circle at 50% 30%, rgba(237, 91, 145, .18), transparent 60%),
		#171419;
	box-shadow: 0 20px 46px rgba(0, 0, 0, .28);
}

.review-v3 .rx3-footer-reaction__image {
	display: block;
	width: 100%;
	height: clamp(132px, 15vw, 176px);
	border-radius: 21px;
	background: #211b20;
	object-fit: contain;
	object-position: center;
}

.review-v3 .rx3-footer-reaction__bubble {
	position: relative;
	min-width: 0;
	padding: clamp(1.25rem, 3vw, 2rem);
	border: 1px solid #e0b8c6;
	border-radius: 24px;
	background: linear-gradient(145deg, #fffdf9, #fff0f4);
	color: var(--rx3-burgundy);
	box-shadow: 0 20px 46px rgba(0, 0, 0, .2);
}

.review-v3 .rx3-footer-reaction__bubble::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -9px;
	width: 16px;
	height: 16px;
	border-bottom: 1px solid #e0b8c6;
	border-left: 1px solid #e0b8c6;
	background: #fff8f8;
	transform: translateY(-50%) rotate(45deg);
}

.review-v3 .rx3-footer-reaction.is-bubble-left {
	grid-template-columns: minmax(0, 1fr) clamp(132px, 15vw, 176px);
}

.review-v3 .rx3-footer-reaction.is-bubble-left .rx3-footer-reaction__character {
	order: 2;
}

.review-v3 .rx3-footer-reaction.is-bubble-left .rx3-footer-reaction__bubble {
	order: 1;
}

.review-v3 .rx3-footer-reaction.is-bubble-left .rx3-footer-reaction__bubble::before {
	right: -9px;
	left: auto;
	border: 0;
	border-top: 1px solid #e0b8c6;
	border-right: 1px solid #e0b8c6;
}

.review-v3 .rx3-footer-reaction__eyebrow {
	margin: 0 0 .35rem;
	color: var(--rx3-rose-dark);
	font-size: .66rem;
	font-weight: 850;
	letter-spacing: .18em;
}

.review-v3 .rx3-footer-reaction__title {
	margin: 0;
	color: var(--rx3-burgundy);
	font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	line-height: 1.3;
}

.review-v3 .rx3-footer-reaction__comment {
	margin: .75rem 0 0;
	color: var(--rx3-rose-gray);
	font-size: clamp(.9rem, 1.5vw, 1rem);
	line-height: 1.85;
	overflow-wrap: anywhere;
}

.review-v3 .rx3-related {
	padding: clamp(4rem, 7vw, 7rem) 0;
}

.review-v3 .rx3-related__head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 2rem;
}

.review-v3 .rx3-related__eyebrow {
	margin: 0 0 .5rem;
	color: var(--rx3-accent);
	font-size: .63rem;
	font-weight: 850;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.review-v3 .rx3-related__title {
	margin: 0;
	font-family: Georgia, "Yu Mincho", serif;
	font-size: clamp(2.3rem, 4vw, 4.6rem);
	font-weight: 500;
	letter-spacing: -.05em;
}

.review-v3 .rx3-related__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0,1fr));
	gap: 1.2rem;
}

.review-v3 .rx3-related-card {
	position: relative;
	min-width: 0;
	border: 1px solid var(--rx3-line);
	border-radius: 18px;
	background: var(--rx3-panel);
	overflow: hidden;
}

.review-v3 .rx3-related-card__media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #25242a;
}

.review-v3 .rx3-related-card__media img,
.review-v3 .rx3-related-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: #25242a;
	transition: transform .4s ease;
}

.review-v3 .rx3-related-card:hover .rx3-related-card__media img {
	transform: scale(1.035);
}

.review-v3 .rx3-related-card__body {
	padding: 1rem;
}

.review-v3 .rx3-related-card__title {
	margin: 0;
	font-family: Georgia, "Yu Mincho", serif;
	font-size: 1.15rem;
	line-height: 1.45;
}

.review-v3 .rx3-related-card__title a {
	text-decoration: none;
}

.review-v3 .rx3-related-card .dkjmf-card-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .6rem;
	margin-top: .9rem;
	padding-top: .8rem;
	border-top: 1px solid var(--rx3-line);
	font-size: .68rem;
}

.review-v3 .rx3-post-navigation {
	padding-top: 2rem;
	border-top: 1px solid var(--rx3-line);
}

.review-v3 .rx3-post-navigation .nav-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0,1fr));
	gap: 1rem;
}

.review-v3 .rx3-post-navigation .nav-previous,
.review-v3 .rx3-post-navigation .nav-next {
	min-width: 0;
}

.review-v3 .rx3-post-navigation a {
	display: grid;
	grid-template-columns: 120px minmax(0,1fr);
	gap: 1rem;
	align-items: center;
	min-height: 120px;
	padding: .8rem;
	border: 1px solid var(--rx3-line);
	border-radius: 16px;
	background: var(--rx3-panel);
	text-decoration: none;
}

.review-v3 .single-post-navigation__media {
	display: block;
	width: 120px;
	height: 88px;
	overflow: hidden;
	border-radius: 10px;
	background: #25242a;
}

.review-v3 .single-post-navigation__image,
.review-v3 .single-post-navigation__placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: #25242a;
}

.review-v3 .single-post-navigation__label {
	display: block;
	margin-bottom: .35rem;
	color: var(--rx3-accent);
	font-size: .62rem;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.review-v3 .single-post-navigation__title {
	display: block;
	font-family: Georgia, "Yu Mincho", serif;
	font-size: 1.05rem;
	line-height: 1.45;
}

/* --------------------------------------------------------------------------
 * Generic archive/list components so the rest of the site inherits the v3 tone
 * without rewriting data logic.
 * ----------------------------------------------------------------------- */
.review-v3 .content-layout:not(.is-single-wide),
.review-v3 .site-main:not(.single-main),
.review-v3 .archive-main,
.review-v3 .listing-main {
	background: var(--rx3-bg);
	color: var(--rx3-text);
}

/* Keep text legible on the light directory and rating-guide surfaces. */
.review-v3 .directory-hero {
	color: var(--rx3-ink);
}

.review-v3 .directory-hero .entry-title {
	color: var(--rx3-ink);
}

.review-v3 .directory-hero__eyebrow {
	color: #a44867;
}

.review-v3 .directory-hero__summary {
	color: #5f5a58;
}

.review-v3 .page-kind-rating-guide .entry-content > h1 {
	color: var(--rx3-text);
}

.review-v3 .page-kind-rating-guide .entry-content > p {
	color: var(--rx3-text-dim);
}

.review-v3 .page-kind-rating-guide .entry-content > h2 {
	color: var(--rx3-ink);
}

.review-v3 .page-kind-rating-guide .entry-content > h2 + p {
	color: var(--rx3-ink-dim);
}

.review-v3 .play-atlas__hero,
.review-v3 .play-archive__hero,
.review-v3 .play-atlas__nav,
.review-v3 .play-atlas__group,
.review-v3 .atlas-cross-nav a,
body.review-v3.home .nf-series-slider,
.review-v3 .actress-profile__body,
.review-v3 .error-404__header,
.review-v3 .error-404__search,
.review-v3 .body-atlas__section,
.review-v3 .tag-archive-hero,
.review-v3 .tag-related,
.review-v3 .tag-archive-empty {
	color: var(--rx3-ink);
}

.review-v3 .listing-card,
.review-v3 .actress-list__card,
.review-v3 .hip-grid__card,
.review-v3 .nf-series-slider__item,
.review-v3 .sidebar-widget {
	border: 1px solid var(--rx3-line);
	border-radius: 18px;
	background: var(--rx3-panel);
	color: var(--rx3-text);
	box-shadow: none;
}

.review-v3 .listing-card a,
.review-v3 .actress-list__card a,
.review-v3 .hip-grid__card a,
.review-v3 .nf-series-slider__item a {
	color: inherit;
}

.review-v3 .listing-card__image,
.review-v3 .actress-list__media img,
.review-v3 .hip-grid__image,
.review-v3 .nf-series-slider__image {
	transition: transform .4s ease;
}

.review-v3 .listing-card:hover .listing-card__image,
.review-v3 .actress-list__card:hover .actress-list__media img,
.review-v3 .hip-grid__card:hover .hip-grid__image,
.review-v3 .nf-series-slider__item:hover .nf-series-slider__image {
	transform: scale(1.025);
}

/* --------------------------------------------------------------------------
 * Managed ads & membership
 * ----------------------------------------------------------------------- */
.review-v3 .managed-ad {
	width: min(calc(100% - 3rem), var(--rx3-max));
	margin: 1rem auto;
}

.review-v3 .fanza-membership {
	border: 1px solid var(--rx3-line);
	border-radius: 18px;
	background: linear-gradient(135deg, #1e1218, #101014);
	color: #fff;
	box-shadow: none;
}

/* --------------------------------------------------------------------------
 * Footer
 * ----------------------------------------------------------------------- */
.review-v3 .site-footer.rx3-footer {
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--rx3-line);
	background: #060607;
	color: var(--rx3-text);
}

.review-v3 .rx3-footer__inner {
	display: grid;
	grid-template-columns: minmax(0,1.2fr) minmax(0,.8fr);
	gap: 3rem;
	width: min(calc(100% - 3rem), var(--rx3-max));
	margin-inline: auto;
	padding: clamp(4rem, 8vw, 8rem) 0 2rem;
}

.review-v3 .rx3-footer__eyebrow {
	margin: 0 0 .8rem;
	color: var(--rx3-accent);
	font-size: .64rem;
	font-weight: 850;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.review-v3 .rx3-footer__title {
	max-width: 10ch;
	margin: 0;
	font-family: Georgia, "Yu Mincho", serif;
	font-size: clamp(2.6rem, 5vw, 5.6rem);
	font-weight: 500;
	line-height: .94;
	letter-spacing: -.055em;
}

.review-v3 .rx3-footer__meta {
	display: grid;
	align-content: end;
	gap: 1rem;
}

.review-v3 .footer-legal-navigation {
	display: flex;
	flex-wrap: wrap;
	gap: .7rem 1.1rem;
}

.review-v3 .footer-legal-navigation a {
	color: var(--rx3-text-dim);
	font-size: .67rem;
	text-decoration: none;
}

.review-v3 .rx3-footer__copyright {
	margin: 0;
	color: rgba(255,255,255,.38);
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: .62rem;
	letter-spacing: .08em;
}

.review-v3 .rx3-footer__bottom {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 2rem;
	padding-top: 1.2rem;
	border-top: 1px solid var(--rx3-line);
	color: rgba(255,255,255,.32);
	font-size: .6rem;
	letter-spacing: .12em;
	text-transform: uppercase;
}

/* --------------------------------------------------------------------------
 * Motion layer
 * ----------------------------------------------------------------------- */
.review-v3 [data-rx3-reveal] {
	opacity: 1;
	transform: none;
}

html.rx3-motion-ready .review-v3 [data-rx3-reveal] {
	opacity: 1;
	transform: translate3d(0, 24px, 0);
	transition: transform .62s cubic-bezier(.2,.7,.2,1);
	transition-delay: var(--rx3-delay, 0ms);
}

html.rx3-motion-ready .review-v3 [data-rx3-reveal].is-visible {
	opacity: 1;
	transform: translate3d(0,0,0);
}

.review-v3 :focus-visible {
	outline: 3px solid rgba(237,91,145,.55);
	outline-offset: 3px;
}

/* --------------------------------------------------------------------------
 * Responsive
 * ----------------------------------------------------------------------- */
@media (max-width: 1100px) {
	.review-v3 .rx3-site-header__inner {
		grid-template-columns: 1fr auto auto;
	}

	.review-v3 .menu-toggle.rx3-menu-toggle {
		display: inline-flex;
		grid-column: 3;
	}

	.review-v3 .rx3-header__aside {
		grid-column: 2;
	}

	.review-v3 .primary-navigation.rx3-nav {
		position: fixed;
		top: 84px;
		left: 1rem;
		right: 1rem;
		display: none;
		padding: 1rem;
		border: 1px solid var(--rx3-line);
		border-radius: 16px;
		background: rgba(12,12,15,.97);
		backdrop-filter: blur(18px);
		box-shadow: 0 24px 70px rgba(0,0,0,.4);
	}

	.review-v3.menu-is-open .primary-navigation.rx3-nav {
		display: block;
	}

	.review-v3 .rx3-nav .menu,
	.review-v3 .rx3-nav > ul {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.review-v3 .rx3-nav a {
		display: flex;
		padding: .8rem .2rem;
		border-bottom: 1px solid rgba(255,255,255,.07);
	}

	.review-v3 .rx3-review-card {
		grid-column: span 6;
	}

	.review-v3 .rx3-review-card.is-featured {
		grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
	}

	.review-v3 .rx3-single-layout {
		grid-template-columns: 1fr;
	}

	.review-v3 .rx3-chapter-nav {
		position: static;
		display: flex;
		gap: .35rem;
		overflow-x: auto;
		padding-bottom: .5rem;
		scrollbar-width: none;
	}

	.review-v3 .rx3-chapter-nav::-webkit-scrollbar { display: none; }
	.review-v3 .rx3-chapter-nav__label { display: none; }

	.review-v3 .rx3-chapter-nav a {
		flex: 0 0 auto;
		display: inline-flex;
		gap: .35rem;
		padding: .55rem .7rem;
		border: 1px solid var(--rx3-line);
		border-radius: 999px;
	}
}

@media (max-width: 820px) {
	.review-v3 .rx3-site-header__inner,
	.review-v3 .rx3-hero__inner,
	.review-v3 .rx3-reviews__inner,
	.review-v3 .rx3-home-extras__inner,
	.review-v3 .rx3-single-layout,
	.review-v3 .rx3-afterword,
	.review-v3 .rx3-footer__inner {
		width: min(calc(100% - 2rem), var(--rx3-max));
	}

	.review-v3 .rx3-brand__edition,
	.review-v3 .rx3-header__index {
		display: none;
	}

	.review-v3 .rx3-hero {
		min-height: max(780px, 100svh);
	}

	.review-v3 .rx3-hero__inner {
		grid-template-columns: 1fr;
		gap: 2.2rem;
		padding-top: 9rem;
	}

	.review-v3 .rx3-hero__rail {
		max-width: 520px;
	}

	.review-v3 .rx3-hero__notice {
		position: static;
		max-width: none;
		margin-top: 1rem;
		text-align: left;
	}

	.review-v3 .rx3-section-head {
		grid-template-columns: 1fr;
		gap: .8rem;
	}

	.review-v3 .rx3-section-head__meta {
		display: none;
	}

	.review-v3 .rx3-review-card,
	.review-v3 .rx3-review-card.is-featured {
		grid-column: 1 / -1;
	}

	.review-v3 .rx3-review-card.is-featured {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.review-v3 .rx3-review-card.is-featured .rx3-review-card__media {
		aspect-ratio: 16 / 10;
	}

	.review-v3 .rx3-review-card.is-featured .rx3-review-card__body {
		min-height: 340px;
	}

	.review-v3 .rx3-single-hero {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.review-v3 .rx3-single-hero__media {
		min-height: 0;
	}

	.review-v3 .rx3-single-hero__media::after {
		background: linear-gradient(0deg, rgba(5,5,6,.72), transparent 52%);
	}

	.review-v3 .rx3-single-hero__copy {
		min-height: 520px;
		padding-top: 3rem;
	}

	.review-v3 .rx3-terms {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.review-v3 .rx3-related__grid {
		grid-template-columns: 1fr;
	}

	.review-v3 .rx3-post-navigation .nav-links {
		grid-template-columns: 1fr;
	}

	.review-v3 .rx3-footer__inner {
		grid-template-columns: 1fr;
	}

	.review-v3 .rx3-footer__bottom {
		grid-column: auto;
	}
}

@media (max-width: 520px) {
	.review-v3 .rx3-site-header__inner {
		min-height: 72px;
	}

	.review-v3 .primary-navigation.rx3-nav {
		top: 72px;
	}

	.review-v3 .rx3-brand .custom-logo {
		max-width: 180px;
		max-height: 36px;
	}

	.review-v3 .rx3-hero {
		min-height: max(720px, 100svh);
	}

	.review-v3 .rx3-hero__inner {
		padding: 7rem 0 2.4rem;
	}

	.review-v3 .rx3-hero__title {
		font-size: clamp(3.6rem, 18vw, 5.4rem);
	}

	.review-v3 .rx3-hero__rail {
		padding-left: 1rem;
	}

	.review-v3 .rx3-review-grid {
		display: block;
	}

	.review-v3 .rx3-review-card,
	.review-v3 .rx3-review-card.is-featured {
		margin-bottom: 1rem;
	}

	.review-v3 .rx3-review-card.is-featured .rx3-review-card__body {
		min-height: 0;
		padding: 1.4rem;
	}

	.review-v3 .rx3-review-card.is-featured .rx3-review-card__title {
		width: 100%;
		max-width: none;
		font-size: clamp(2rem, 8.5vw, 2.85rem);
		line-height: 1.08;
		letter-spacing: -.03em;
		text-wrap: pretty;
	}

	.review-v3 .rx3-review-card:not(.is-featured) {
		grid-template-columns: 42% 58%;
		display: grid;
	}

	.review-v3 .rx3-review-card:not(.is-featured) .rx3-review-card__media {
		aspect-ratio: auto;
		height: 100%;
	}

	.review-v3 .rx3-review-card:not(.is-featured) .rx3-review-card__body {
		padding: 1rem;
	}

	.review-v3 .rx3-review-card:not(.is-featured) .rx3-review-card__title {
		font-size: 1.12rem;
		overflow-wrap: anywhere;
	}

	.review-v3 .rx3-review-card:not(.is-featured) .rx3-review-card__actions {
		padding-top: .7rem;
	}

	.review-v3 .rx3-single-hero__media {
		min-height: 0;
	}

	.review-v3 .rx3-single-hero__copy {
		min-height: 0;
		padding: 2rem 1rem 2.6rem;
	}

	.review-v3 .rx3-single-hero__title {
		width: 100%;
		max-width: none;
		font-size: clamp(2.25rem, 9vw, 3.35rem);
		line-height: 1.08;
		letter-spacing: -.03em;
		text-wrap: pretty;
	}

	.review-v3 .rx3-single-layout,
	.review-v3 .rx3-afterword {
		width: calc(100% - 1rem);
	}

	.review-v3 .rx3-review-section__content {
		padding: 1rem;
		border-radius: 16px;
	}

	.review-v3 .rx3-review-section.is-media .rx3-review-section__content {
		padding: .6rem;
	}

	.review-v3 .rx3-post-navigation a {
		grid-template-columns: 86px minmax(0,1fr);
		min-height: 100px;
	}

	.review-v3 .single-post-navigation__media {
		width: 86px;
		height: 70px;
	}

	.review-v3 .rx3-footer__inner {
		width: calc(100% - 2rem);
	}
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }

	.review-v3 *,
	.review-v3 *::before,
	.review-v3 *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}

	.review-v3 [data-rx3-reveal] {
		opacity: 1 !important;
		transform: none !important;
	}

	.review-v3 .rx3-hero__media img {
		transform: scale(1.02) !important;
	}
}

/* --------------------------------------------------------------------------
 * Review v3 component alignment: light surfaces, discovery and article UI
 * ----------------------------------------------------------------------- */

/* The fixed header overlays the home hero only. Inner pages start below it. */
body.review-v3:not(.home) {
	padding-top: 84px;
}

body.admin-bar.review-v3:not(.home) {
	padding-top: 116px;
}

body.review-v3:not(.home) .rx3-brand__fallback a,
body.review-v3:not(.home) .menu-toggle.rx3-menu-toggle {
	color: #fff8fa;
}

body.review-v3:not(.home) .menu-toggle.rx3-menu-toggle {
	border-color: rgba(255, 255, 255, .25);
}

body.review-v3:not(.home) .primary-navigation.rx3-nav a {
	color: rgba(255, 248, 250, .82);
}

body.review-v3:not(.home) .primary-navigation.rx3-nav .current-menu-item > a,
body.review-v3:not(.home) .primary-navigation.rx3-nav .current_page_item > a,
body.review-v3:not(.home) .primary-navigation.rx3-nav .current-menu-ancestor > a {
	color: #ff91b8;
}

body.review-v3:not(.home) .rx3-brand__fallback a:hover,
body.review-v3:not(.home) .rx3-brand__fallback a:focus-visible,
body.review-v3:not(.home) .primary-navigation.rx3-nav a:hover,
body.review-v3:not(.home) .primary-navigation.rx3-nav a:focus-visible {
	color: #fff;
}

body.admin-bar.review-v3 .site-header.rx3-site-header {
	top: 32px;
}

body.admin-bar.review-v3 .primary-navigation.rx3-nav {
	top: 116px;
}

/* Rating-guide destinations. */
.review-v3 .guide-cta a {
	border-color: #ead4dc;
	background: linear-gradient(145deg, #fffdfb, var(--rx3-paper-rose));
	color: var(--rx3-burgundy);
	transition: transform .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.review-v3 .guide-cta small {
	color: #a44867;
}

.review-v3 .guide-cta strong {
	color: var(--rx3-burgundy);
}

.review-v3 .guide-cta span {
	color: var(--rx3-rose-gray);
	transition: transform .2s ease, color .2s ease;
}

.review-v3 .guide-cta a:hover,
.review-v3 .guide-cta a:focus-visible {
	border-color: #cf88a1;
	background: linear-gradient(145deg, #fffaf9, #ffedf3);
	box-shadow: 0 18px 38px rgba(91, 45, 62, .13);
}

.review-v3 .guide-cta a:hover span,
.review-v3 .guide-cta a:focus-visible span {
	color: var(--rx3-rose-dark);
	transform: translateX(3px);
}

/* Actress social links remain icon-only, but are visibly interactive. */
.review-v3 .actress-profile__social .actress-social-link,
.review-v3 .actress-list__card .actress-social-link,
.review-v3 .post-actress-profile-card .actress-social-link {
	border-color: #dfbcc9;
	background: #fff8fa;
	color: var(--rx3-rose-dark);
	opacity: 1;
	box-shadow: 0 6px 16px rgba(91, 54, 67, .08);
}

.review-v3 .actress-profile__social .actress-social-link:hover,
.review-v3 .actress-profile__social .actress-social-link:focus-visible,
.review-v3 .actress-list__card .actress-social-link:hover,
.review-v3 .actress-list__card .actress-social-link:focus-visible,
.review-v3 .post-actress-profile-card .actress-social-link:hover,
.review-v3 .post-actress-profile-card .actress-social-link:focus-visible {
	border-color: #a44867;
	background: #a44867;
	color: #fff;
}

.review-v3 .actress-picks__list a {
	color: var(--rx3-burgundy);
}

/* Hall-of-fame cards use the real shortcode class, not the legacy typo. */
.review-v3 [data-shortcode="hip_god_grid"] .hip-grid__item {
	border: 1px solid #e6cdd6;
	background: linear-gradient(155deg, #fffdfb, #fff5f8);
	color: var(--rx3-burgundy);
	box-shadow: 0 14px 36px rgba(76, 43, 54, .09);
}

.review-v3 [data-shortcode="hip_god_grid"] .hip-grid__item > a {
	color: var(--rx3-burgundy);
	text-decoration: none;
}

.review-v3 [data-shortcode="hip_god_grid"] .hip-grid__item h3 {
	color: var(--rx3-burgundy);
}

.review-v3 [data-shortcode="hip_god_grid"] .hip-grid__meta,
.review-v3 [data-shortcode="hip_god_grid"] .hip-grid__item p {
	color: var(--rx3-rose-gray);
}

.review-v3 [data-shortcode="hip_god_grid"] .hip-grid__rating {
	color: #a44867;
}

.review-v3 [data-shortcode="hip_god_grid"] .hip-grid__badge {
	border: 1px solid rgba(164, 72, 103, .24);
	background: rgba(255, 248, 250, .96);
	color: var(--rx3-rose-dark);
}

.review-v3 [data-shortcode="hip_god_grid"] .dkjmf-card-actions {
	border-top-color: #ecdce1;
	background: rgba(255, 250, 251, .76);
}

.review-v3 [data-shortcode="hip_god_grid"] .dkjmf-card-actions > a,
.review-v3 [data-shortcode="hip_god_grid"] .dkjmf-watch-later {
	color: var(--rx3-rose-dark);
}

/* FETISH LIBRARY segmented navigation. */
.review-v3 .body-atlas__nav {
	top: calc(84px + .75rem);
	color: var(--rx3-burgundy);
}

.review-v3 .body-atlas__nav p {
	color: #a44867;
}

.review-v3 .body-atlas__nav div {
	flex-wrap: wrap;
	overflow: visible;
}

.review-v3 .body-atlas__nav a {
	color: var(--rx3-burgundy-soft);
}

.review-v3 .body-atlas__nav a:hover,
.review-v3 .body-atlas__nav a:focus-visible,
.review-v3 .body-atlas:not(:has([id^="body-atlas-"]:target)) .body-atlas__nav a:first-child,
.review-v3 .body-atlas:has(#body-atlas-butt-type:target) .body-atlas__nav a[href="#body-atlas-butt-type"],
.review-v3 .body-atlas:has(#body-atlas-body-style:target) .body-atlas__nav a[href="#body-atlas-body-style"],
.review-v3 .body-atlas:has(#body-atlas-height:target) .body-atlas__nav a[href="#body-atlas-height"],
.review-v3 .body-atlas:has(#body-atlas-bust:target) .body-atlas__nav a[href="#body-atlas-bust"],
.review-v3 .body-atlas:has(#body-atlas-thighs:target) .body-atlas__nav a[href="#body-atlas-thighs"],
.review-v3 .body-atlas:has(#body-atlas-skin:target) .body-atlas__nav a[href="#body-atlas-skin"],
.review-v3 .body-atlas:has(#body-atlas-pubic-hair:target) .body-atlas__nav a[href="#body-atlas-pubic-hair"] {
	border-color: #d79bb0;
	background: #fff1f5;
	color: var(--rx3-rose-dark);
}

.review-v3 a.body-atlas-card__cta:not(.is-empty) {
	border: 1px solid #34262b;
	background: #2e2529;
	color: #fff8fa;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.review-v3 a.body-atlas-card__cta:not(.is-empty) > span {
	color: #f3afc6;
	transition: color .2s ease, transform .2s ease;
}

.review-v3 a.body-atlas-card__cta:not(.is-empty):hover,
.review-v3 a.body-atlas-card__cta:not(.is-empty):focus-visible {
	border-color: #bb3f6b;
	background: #a7365e;
	color: #fff;
}

.review-v3 a.body-atlas-card__cta:not(.is-empty):hover > span,
.review-v3 a.body-atlas-card__cta:not(.is-empty):focus-visible > span {
	color: #fff;
	transform: translateX(3px);
}

/* Reusable Review v3 discovery / cross-navigation card. */
.review-v3 .rx3-cross-nav {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	width: min(100%, 1180px);
	margin: clamp(2rem, 5vw, 4rem) auto;
}

.review-v3 .rx3-cross-nav--single {
	grid-template-columns: minmax(0, 1fr);
	max-width: 72rem;
}

.review-v3 .rx3-cross-nav--pair {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-v3 .rx3-cross-nav--quad {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* The Hall of Fame content column is narrower than the full-width atlas pages. */
.review-v3 .page-kind-god .rx3-cross-nav--quad {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-v3 .rx3-cross-card {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	grid-template-rows: auto auto 1fr;
	gap: .35rem 1rem;
	min-width: 0;
	min-height: 10rem;
	align-content: end;
	padding: 1.35rem 3.8rem 1.35rem 1.35rem;
	border: 1px solid #e4c8d2;
	border-radius: 18px;
	background: linear-gradient(145deg, #fffdfb, var(--rx3-paper-rose));
	color: var(--rx3-burgundy);
	text-decoration: none;
	box-shadow: 0 12px 30px rgba(76, 43, 54, .07);
	transition: transform .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.review-v3 .rx3-cross-card__eyebrow,
.review-v3 .rx3-cross-card__title,
.review-v3 .rx3-cross-card__description {
	grid-column: 1;
}

.review-v3 .rx3-cross-card__eyebrow {
	color: #a44867;
	font-size: .64rem;
	font-weight: 900;
	letter-spacing: .16em;
}

.review-v3 .rx3-cross-card__title {
	color: var(--rx3-burgundy);
	font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-size: clamp(1.05rem, 2vw, 1.28rem);
	line-height: 1.4;
}

.review-v3 .rx3-cross-card__description {
	color: var(--rx3-rose-gray);
	font-size: .82rem;
	line-height: 1.65;
}

.review-v3 .rx3-cross-card__arrow {
	grid-column: 2;
	grid-row: 1 / -1;
	align-self: center;
	color: var(--rx3-rose-dark);
	font-size: 1.35rem;
	transition: transform .2s ease;
}

.review-v3 .rx3-cross-card__current {
	position: absolute;
	top: .8rem;
	right: .8rem;
	padding: .28rem .5rem;
	border-radius: 999px;
	background: var(--rx3-rose-dark);
	color: #fff;
	font-size: .55rem;
	font-weight: 900;
	letter-spacing: .12em;
}

.review-v3 .rx3-cross-card.is-current {
	border-color: #c77b96;
	background: linear-gradient(145deg, #fff8fa, #ffeaf1);
	box-shadow: 0 16px 34px rgba(111, 48, 72, .13);
}

.review-v3 .rx3-cross-card:hover,
.review-v3 .rx3-cross-card:focus-visible {
	border-color: #c77b96;
	background: linear-gradient(145deg, #fffaf9, #ffedf3);
	box-shadow: 0 18px 38px rgba(91, 45, 62, .13);
	transform: translateY(-2px);
}

.review-v3 .rx3-cross-card:hover .rx3-cross-card__arrow,
.review-v3 .rx3-cross-card:focus-visible .rx3-cross-card__arrow {
	transform: translateX(4px);
}

.review-v3 .dkjaps-discovery.rx3-cross-nav {
	padding-inline: 0;
}

/* SITUATION INDEX. The taxonomy remains dynamic; Review v3 owns presentation. */
.review-v3 .situation-atlas {
	width: min(calc(100% - 2rem), 1240px);
	max-width: none;
	margin-inline: auto;
	color: var(--rx3-burgundy);
}

.review-v3 .situation-atlas__hero,
.review-v3 .situation-archive__hero {
	padding: clamp(2rem, 5vw, 4.5rem);
	border: 1px solid #e4c8d2;
	border-radius: 28px;
	background:
		radial-gradient(circle at 92% 12%, rgba(237, 91, 145, .13), transparent 24rem),
		linear-gradient(145deg, #fffdfb, #fbeef2);
	color: var(--rx3-burgundy);
	box-shadow: 0 18px 48px rgba(64, 29, 42, .08);
}

.review-v3 .situation-atlas__hero > p,
.review-v3 .situation-archive__hero > p {
	margin: 0;
	color: #a44867;
	font-size: .68rem;
	font-weight: 900;
	letter-spacing: .2em;
}

.review-v3 .situation-atlas__hero h1,
.review-v3 .situation-archive__hero h1 {
	margin: .45rem 0 .7rem;
	color: var(--rx3-burgundy);
	font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-size: clamp(2rem, 4vw, 3.6rem);
	font-weight: 500;
	line-height: 1.08;
}

.review-v3 .situation-atlas__hero > span,
.review-v3 .situation-archive__hero > div {
	display: block;
	max-width: 44rem;
	color: var(--rx3-rose-gray);
	line-height: 1.8;
}

.review-v3 .situation-atlas__group-nav {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: .7rem 1rem;
	align-items: center;
	margin: 1rem 0;
	padding: .85rem 1rem;
	border: 1px solid #e4c8d2;
	border-radius: 16px;
	background: rgba(255, 250, 251, .97);
	color: var(--rx3-burgundy);
}

.review-v3 .situation-atlas__group-nav > p {
	margin: 0;
	color: #a44867;
	font-size: .7rem;
	font-weight: 900;
	letter-spacing: .08em;
}

.review-v3 .situation-atlas__group-nav > div {
	display: flex;
	flex-wrap: wrap;
	gap: .4rem;
	min-width: 0;
}

.review-v3 .situation-atlas__group-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: .38rem .72rem;
	border: 1px solid #ead5dc;
	border-radius: 999px;
	background: #fff;
	color: var(--rx3-burgundy-soft);
	font-size: .76rem;
	font-weight: 800;
	text-decoration: none;
}

.review-v3 .situation-atlas__group-nav a:hover,
.review-v3 .situation-atlas__group-nav a:focus-visible {
	border-color: #c77b96;
	background: #fff0f5;
	color: var(--rx3-rose-dark);
}

.review-v3 .situation-atlas__filters {
	display: grid;
	grid-template-columns: minmax(220px, 1fr) minmax(190px, .7fr) auto auto;
	gap: .75rem;
	align-items: end;
	margin: 1rem 0 1.25rem;
	padding: 1rem;
	border: 1px solid #e4c8d2;
	border-radius: 18px;
	background: #fffafc;
	color: var(--rx3-burgundy);
}

.review-v3 .situation-atlas__filters label {
	display: grid;
	gap: .35rem;
	min-width: 0;
	color: var(--rx3-burgundy-soft);
	font-size: .76rem;
	font-weight: 800;
}

.review-v3 .situation-atlas__filters input,
.review-v3 .situation-atlas__filters select {
	width: 100%;
	min-width: 0;
	min-height: 46px;
	padding: .65rem .8rem;
	border: 1px solid #dcbfca;
	border-radius: 10px;
	background: #fff;
	color: var(--rx3-burgundy);
	font: inherit;
}

.review-v3 .situation-atlas__filters button {
	min-height: 46px;
	padding: .65rem 1.15rem;
	border: 1px solid var(--rx3-rose-dark);
	border-radius: 999px;
	background: var(--rx3-rose-dark);
	color: #fff;
	font-weight: 800;
	cursor: pointer;
}

.review-v3 .situation-atlas__filters > a {
	display: inline-flex;
	align-items: center;
	min-height: 46px;
	padding: .65rem .4rem;
	color: var(--rx3-rose-dark);
	font-size: .82rem;
	text-underline-offset: .18em;
}

.review-v3 .situation-atlas__groups {
	display: grid;
	gap: 1rem;
}

.review-v3 .situation-atlas__group {
	height: auto;
	min-height: 0;
	padding: clamp(1.15rem, 2.6vw, 1.8rem);
	border: 1px solid #e4c8d2;
	border-radius: 24px;
	background: linear-gradient(145deg, #fffdfb, #fff8fa);
	color: var(--rx3-burgundy);
	box-shadow: 0 12px 30px rgba(76, 43, 54, .06);
	scroll-margin-top: 7rem;
}

.review-v3 .situation-atlas__group > header {
	margin-bottom: 1rem;
	padding-left: .9rem;
	border-left: 4px solid #cc527e;
}

.review-v3 .situation-atlas__group > header p {
	margin: 0;
	color: #a44867;
	font-size: .64rem;
	font-weight: 900;
	letter-spacing: .18em;
}

.review-v3 .situation-atlas__group > header h2 {
	margin: .22rem 0 .3rem;
	color: var(--rx3-burgundy);
	font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-size: clamp(1.35rem, 2.4vw, 2rem);
	line-height: 1.15;
}

.review-v3 .situation-atlas__group > header span {
	display: block;
	max-width: 48rem;
	color: var(--rx3-rose-gray);
	font-size: .82rem;
	line-height: 1.7;
}

.review-v3 .situation-atlas__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: .8rem;
}

.review-v3 .situation-atlas__card {
	--situation-accent: var(--rx3-rose-dark);
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: .55rem .75rem;
	align-content: start;
	height: auto;
	min-width: 0;
	min-height: 0;
	padding: 1rem;
	border: 1px solid color-mix(in srgb, var(--situation-accent) 24%, #ead5dc);
	border-radius: 16px;
	background: color-mix(in srgb, var(--situation-accent) 5%, #fff);
	color: var(--rx3-burgundy);
}

.review-v3 .situation-atlas__card.is-featured {
	border-color: color-mix(in srgb, var(--situation-accent) 52%, #fff);
	box-shadow: 0 10px 24px rgba(88, 42, 58, .09);
}

.review-v3 .situation-atlas__icon {
	grid-column: 1;
	grid-row: 1 / span 2;
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid color-mix(in srgb, var(--situation-accent) 20%, #fff);
	border-radius: 50%;
	background: #fff;
}

.review-v3 .situation-atlas__icon .dkj-situation-icon {
	width: 23px;
	height: 23px;
	stroke: var(--situation-accent);
}

.review-v3 .situation-atlas__card h3 {
	grid-column: 2;
	margin: .12rem 0 0;
	color: var(--rx3-burgundy);
	font-size: 1rem;
	line-height: 1.4;
}

.review-v3 .situation-atlas__card > p {
	grid-column: 2;
	margin: 0;
	color: var(--rx3-rose-gray);
	font-size: .8rem;
	line-height: 1.65;
}

.review-v3 .situation-atlas__card-footer {
	grid-column: 1 / -1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: .5rem;
	margin-top: .2rem;
	padding-top: .65rem;
	border-top: 1px solid #eddde2;
}

.review-v3 .situation-atlas__count {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: .22rem .55rem;
	border-radius: 999px;
	background: color-mix(in srgb, var(--situation-accent) 10%, #fff);
	color: var(--situation-accent);
	font-size: .68rem;
	font-weight: 850;
}

.review-v3 .situation-atlas__link {
	color: var(--rx3-rose-dark);
	font-size: .78rem;
	font-weight: 800;
	text-underline-offset: .2em;
}

.review-v3 .situation-atlas__link span {
	display: inline-block;
	transition: transform .2s ease;
}

.review-v3 .situation-atlas__link:hover span,
.review-v3 .situation-atlas__link:focus-visible span {
	transform: translateX(3px);
}

.review-v3 .situation-atlas__empty {
	grid-column: 1 / -1;
	margin: 0;
	padding: .85rem 1rem;
	border: 1px dashed #e6ced7;
	border-radius: 12px;
	background: #fffafc;
	color: var(--rx3-rose-gray);
	font-size: .84rem;
}

.review-v3 .situation-atlas__top {
	display: block;
	margin-top: .85rem;
	color: var(--rx3-rose-dark);
	font-size: .75rem;
	text-align: right;
}

.review-v3 .situation-archive {
	width: min(calc(100% - 2rem), 1240px);
	margin-inline: auto;
}

.review-v3 .situation-archive .listing-card-list {
	margin-top: 1.25rem;
}

/* PLAY ENCYCLOPEDIA. */
.review-v3 .play-atlas-page {
	min-width: 0;
}

.review-v3 .play-atlas {
	width: min(100%, 1240px);
	padding: clamp(1rem, 3vw, 2rem);
}

.review-v3 .play-atlas__hero {
	border-color: #e4c8d2;
	background:
		radial-gradient(circle at 92% 12%, rgba(237, 91, 145, .13), transparent 24rem),
		linear-gradient(145deg, #fffdfb, #fbeef2);
	color: var(--rx3-burgundy);
}

.review-v3 .play-atlas__hero > p:first-child {
	color: #a44867;
}

.review-v3 .play-atlas__hero h1 {
	color: var(--rx3-burgundy);
	font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
	line-height: 1.08;
}

.review-v3 .play-atlas__hero > p:last-child {
	max-width: 42rem;
	color: var(--rx3-rose-gray);
	line-height: 1.8;
}

.review-v3 .play-atlas__nav {
	top: calc(84px + .75rem);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .45rem;
	padding: .55rem;
	border-color: rgba(255,255,255,.13);
	border-radius: 18px;
	background: rgba(28, 22, 25, .94);
	box-shadow: 0 14px 32px rgba(0,0,0,.2);
	backdrop-filter: blur(16px);
}

.review-v3 .play-atlas__nav a {
	min-width: 8.5rem;
	padding: .7rem 1rem;
	border: 1px solid transparent;
	background: rgba(255,255,255,.04);
	color: #f6eaf0;
	text-align: center;
}

.review-v3 .play-atlas__nav a:hover,
.review-v3 .play-atlas__nav a:focus-visible,
.review-v3 .play-atlas:not(:has(.play-atlas__group:target)) .play-atlas__nav a:first-child,
.review-v3 .play-atlas:has(#play-tease:target) .play-atlas__nav a[href="#play-tease"],
.review-v3 .play-atlas:has(#play-action:target) .play-atlas__nav a[href="#play-action"],
.review-v3 .play-atlas:has(#play-finish:target) .play-atlas__nav a[href="#play-finish"] {
	border-color: rgba(237,91,145,.52);
	background: #f8eaf0;
	color: var(--rx3-rose-dark);
}

.review-v3 .play-atlas__group {
	scroll-margin-top: calc(84px + 5.5rem);
	padding: clamp(1.2rem, 3vw, 2.2rem);
	border-color: #e4cfd6;
	background: linear-gradient(150deg, var(--rx3-paper-2), #fff7f9);
	color: var(--rx3-burgundy);
	box-shadow: 0 18px 44px rgba(76, 43, 54, .08);
}

.review-v3 .play-atlas__group > header p {
	color: var(--dkj-play-dark, var(--rx3-rose-dark));
}

.review-v3 .play-atlas__group > header h2 {
	color: var(--rx3-burgundy);
	font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.review-v3 .play-atlas__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: .8rem;
}

.review-v3 .play-atlas__card {
	display: flex;
	flex-direction: column;
	gap: .45rem;
	height: auto;
	min-height: 0;
	padding: .95rem;
	border-color: color-mix(in srgb, var(--dkj-play-color) 28%, #e6cfd7);
	background: linear-gradient(150deg, #fff, color-mix(in srgb, var(--dkj-play-soft) 36%, #fff));
	color: var(--rx3-burgundy);
	box-shadow: 0 9px 22px rgba(76, 43, 54, .06);
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.review-v3 .play-atlas__card:hover {
	border-color: color-mix(in srgb, var(--dkj-play-color) 58%, #d7b7c2);
	box-shadow: 0 14px 28px rgba(76, 43, 54, .1);
	transform: translateY(-2px);
}

.review-v3 .play-atlas__card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .7rem;
}

.review-v3 .play-atlas__icon {
	position: relative;
	display: inline-grid;
	width: 3rem;
	height: 3rem;
	flex: 0 0 3rem;
	place-items: center;
	border: 1px solid color-mix(in srgb, var(--dkj-play-color) 35%, #e4cfd6);
	border-radius: 50%;
	background: color-mix(in srgb, var(--dkj-play-soft) 65%, #fff);
}

.review-v3 .play-atlas__icon::before,
.review-v3 .play-atlas__icon::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	background: var(--dkj-play-color);
}

.review-v3 .play-atlas__icon::before {
	width: .88rem;
	height: .28rem;
	transform: rotate(-28deg);
}

.review-v3 .play-atlas__icon::after {
	width: .28rem;
	height: .88rem;
	transform: rotate(32deg);
}

.review-v3 .play-atlas__badge {
	color: var(--dkj-play-dark, var(--rx3-rose-dark));
}

.review-v3 .play-atlas__card h3 {
	margin: .1rem 0 0;
	color: var(--rx3-burgundy);
	font-size: 1.02rem;
	line-height: 1.45;
}

.review-v3 .play-atlas__description {
	margin: 0;
	color: var(--rx3-rose-gray);
	font-size: .8rem;
	line-height: 1.7;
}

.review-v3 .play-atlas__count {
	margin: 0;
	padding: .3rem .6rem;
	border-radius: 999px;
	background: color-mix(in srgb, var(--dkj-play-soft) 68%, #fff);
	color: var(--dkj-play-dark, var(--rx3-rose-dark));
	font-size: .7rem;
	font-weight: 850;
}

.review-v3 .play-atlas__footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: .55rem .8rem;
	min-width: 0;
	margin-top: auto;
	padding-top: .25rem;
}

.review-v3 .play-atlas__footer > a.play-atlas__link {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	color: var(--rx3-rose-dark);
	font-size: .8rem;
	font-weight: 800;
	text-underline-offset: .2em;
}

.review-v3 .play-atlas__top {
	color: var(--rx3-rose-dark);
}

/* Article hero: display the complete official image without cropping. */
.review-v3 .rx3-single-hero__image {
	width: 100%;
	height: auto;
	min-height: 0;
	max-height: none;
	object-fit: contain;
	object-position: center;
}

.review-v3 .rx3-review-card.is-featured .rx3-review-card__title,
.review-v3 .rx3-single-hero__title {
	width: 100%;
	max-width: none;
	text-wrap: pretty;
}

/* PC editorial media: preserve the complete featured artwork at its natural ratio. */
@media (min-width: 1101px) {
	.review-v3 .rx3-review-card.is-featured {
		grid-template-columns: minmax(0, 1.45fr) minmax(420px, .7fr);
		align-items: start;
		height: auto;
		min-height: 0;
	}

	.review-v3 .rx3-review-card.is-featured .rx3-review-card__media {
		align-self: start;
		height: auto;
		min-height: 0;
		aspect-ratio: auto;
		background: #060607;
	}

	.review-v3 .rx3-review-card.is-featured .rx3-review-card__image {
		display: block;
		width: 100%;
		height: auto;
		min-height: 0;
		object-fit: contain;
		object-position: center;
		transform: none;
	}

	.review-v3 .rx3-review-card.is-featured:hover .rx3-review-card__image {
		transform: none;
	}

	.review-v3 .rx3-review-card.is-featured .rx3-review-card__media::after {
		background: linear-gradient(180deg, transparent 82%, rgba(5, 5, 7, .2));
	}

	.review-v3 .rx3-review-card.is-featured .rx3-review-card__body {
		justify-content: flex-start;
		min-height: 0;
		padding: clamp(1.55rem, 2.2vw, 2.25rem);
	}

	.review-v3 .rx3-review-card.is-featured .rx3-review-card__title {
		width: 100%;
		max-width: none;
		font-size: clamp(2.05rem, 2.3vw, 2.45rem);
		line-height: 1.08;
		letter-spacing: -.035em;
		text-wrap: pretty;
	}

	.review-v3 .rx3-single-hero {
		grid-template-columns: minmax(0, 1.25fr) minmax(430px, .75fr);
		align-items: start;
		height: auto;
		min-height: 0;
	}

	.review-v3 .rx3-single-hero__media {
		align-self: start;
		height: auto;
		min-height: 0;
		background: #060607;
	}

	.review-v3 .rx3-single-hero__media img,
	.review-v3 .rx3-single-hero__image {
		display: block;
		width: 100%;
		height: auto;
		min-height: 0;
		max-height: none;
		object-fit: contain;
		object-position: center;
	}

	.review-v3 .rx3-single-hero__media::after {
		background:
			linear-gradient(90deg, transparent 82%, rgba(5, 5, 6, .18)),
			linear-gradient(0deg, rgba(5, 5, 6, .12), transparent 18%);
	}

	.review-v3 .rx3-single-hero__copy {
		justify-content: flex-start;
		gap: .8rem;
		min-height: 0;
		padding: clamp(1.55rem, 2.2vw, 2.25rem);
	}

	.review-v3 .rx3-single-hero__top {
		margin-bottom: 0;
	}

	.review-v3 .rx3-single-hero__title {
		width: 100%;
		max-width: none;
		font-size: clamp(2.15rem, 2.5vw, 2.6rem);
		line-height: 1.07;
		letter-spacing: -.035em;
		text-wrap: pretty;
	}
}

/* Article CTAs: the existing affiliate button is the only visible element. */
.review-v3 .rx3-review-cta {
	display: grid;
	min-width: 0;
	place-items: center;
	padding: clamp(1.4rem, 4vw, 3rem) 0;
	background: transparent;
	scroll-margin-top: 7rem;
}

.review-v3 .rx3-review-cta > .dkt-fanza-set--cta,
.review-v3 .rx3-review-cta .dkt-fanza-set,
.review-v3 .rx3-review-cta .dkt-fanza-cta {
	width: 100%;
	max-width: 100%;
	min-height: 0;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.review-v3 .rx3-review-cta .dkt-fanza-cta {
	display: flex;
	justify-content: center;
}

.review-v3 .rx3-review-cta .dkt-fanza-cta__button {
	max-width: 100%;
	color: #fff;
}

.review-v3 .rx3-review-section.is-product a.dkt-fanza-product__button {
	background: #2e2529;
	color: #fff8fa;
	transition: color .2s ease, background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.review-v3 .rx3-review-section.is-product a.dkt-fanza-product__button > span {
	color: #f3afc6;
	transition: color .2s ease, transform .2s ease;
}

.review-v3 .rx3-review-section.is-product a.dkt-fanza-product__button:hover,
.review-v3 .rx3-review-section.is-product a.dkt-fanza-product__button:focus-visible {
	background: #b43a65;
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 .75rem 1.5rem rgba(180, 58, 101, .24);
}

.review-v3 .rx3-review-section.is-product a.dkt-fanza-product__button:hover > span,
.review-v3 .rx3-review-section.is-product a.dkt-fanza-product__button:focus-visible > span {
	color: #fff;
	transform: translateX(3px);
}

/* PLAY ANALYSIS: target Review v3's actual DOM, not the legacy flow selector. */
.review-v3 .rx3-review-section.is-play .rx3-review-section__content {
	height: auto;
	min-height: 0;
	padding: clamp(.7rem, 2vw, 1rem);
	overflow: visible;
	background: linear-gradient(145deg, var(--rx3-paper-2), #fff5f8);
	color: var(--rx3-burgundy);
}

.review-v3 .rx3-review-section.is-play .play-bars--grouped {
	display: block;
	height: auto;
	min-height: 0;
	margin: 0;
	overflow: hidden;
	border: 1px solid #e4cfd6;
	border-radius: 18px;
	background: linear-gradient(145deg, #fff, #fff8fa);
	color: var(--rx3-burgundy);
	box-shadow: none;
}

.review-v3 .rx3-review-section.is-play .play-bars--grouped .play-bars__header {
	padding: clamp(1rem, 2.4vw, 1.45rem) clamp(1rem, 2.6vw, 1.5rem);
	border-bottom: 1px solid #eadce1;
	background: linear-gradient(115deg, #fff4f7, #fffdfb);
}

.review-v3 .rx3-review-section.is-play .play-bars__eyebrow {
	color: #a44867;
}

.review-v3 .rx3-review-section.is-play .play-bars--grouped .play-bars__title {
	margin: .35rem 0 0;
	padding-left: .8rem;
	border-left: 4px solid var(--rx3-accent);
	color: var(--rx3-burgundy);
	font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.review-v3 .rx3-review-section.is-play .play-bars--grouped .play-bars__body {
	display: grid;
	gap: .75rem;
	height: auto;
	min-height: 0;
	padding: clamp(.75rem, 2vw, 1rem);
}

.review-v3 .rx3-review-section.is-play .play-bars--grouped .play-bars__groups {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: start;
	gap: .75rem;
	height: auto;
	min-height: 0;
}

.review-v3 .rx3-review-section.is-play .play-bars--grouped .play-bars__group {
	min-width: 0;
	height: auto;
	min-height: 0;
	overflow: hidden;
	border: 1px solid color-mix(in srgb, var(--dkj-play-color) 28%, #e6d7dc);
	border-radius: 14px;
	background: color-mix(in srgb, var(--dkj-play-soft) 32%, #fff);
}

.review-v3 .rx3-review-section.is-play .play-bars--grouped .play-bars__group-title {
	margin: 0;
	padding: .62rem .72rem .55rem;
	border-bottom: 1px solid color-mix(in srgb, var(--dkj-play-color) 25%, #eadfe3);
	background: color-mix(in srgb, var(--dkj-play-soft) 52%, #fff);
	color: var(--dkj-play-dark);
	font-size: .68rem;
	font-weight: 900;
	letter-spacing: .15em;
}

.review-v3 .rx3-review-section.is-play .play-bars--grouped .play-bars__group-list {
	padding: .18rem .65rem .32rem;
}

.review-v3 .rx3-review-section.is-play .play-bars--grouped .play-bars__item {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	grid-template-areas:
		"label value"
		"meter meter";
	gap: .25rem .6rem;
	min-width: 0;
	height: auto;
	min-height: 0;
	padding: .52rem .08rem .56rem;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--rx3-burgundy);
	transition: none;
}

.review-v3 .rx3-review-section.is-play .play-bars--grouped .play-bars__item + .play-bars__item {
	border-top: 1px solid color-mix(in srgb, var(--dkj-play-color) 15%, #eee7e9);
}

.review-v3 .rx3-review-section.is-play .play-bars--grouped .play-bars__item:hover {
	background: transparent;
	transform: none;
}

.review-v3 .rx3-review-section.is-play .play-bars--grouped .play-bars__label-wrap {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	grid-area: label;
	gap: .28rem .42rem;
	min-width: 0;
}

.review-v3 .rx3-review-section.is-play .play-bars--grouped .play-bars__category {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 4.3rem;
	min-height: 1.35rem;
	padding: .12rem .38rem;
	border: 1px solid color-mix(in srgb, var(--dkj-play-color) 35%, #e5d6db);
	border-radius: 999px;
	background: color-mix(in srgb, var(--dkj-play-soft) 66%, #fff);
	color: var(--dkj-play-dark);
	font-size: .52rem;
	font-weight: 900;
	letter-spacing: .1em;
	line-height: 1;
	opacity: 1;
}

.review-v3 .rx3-review-section.is-play .play-bars--grouped .play-bars__label,
.review-v3 .rx3-review-section.is-play .play-bars--grouped a.play-bars__label {
	min-height: 0;
	color: var(--rx3-burgundy);
	font-size: .78rem;
	font-weight: 780;
	line-height: 1.4;
	opacity: 1;
}

.review-v3 .rx3-review-section.is-play .play-bars--grouped a.play-bars__label:hover,
.review-v3 .rx3-review-section.is-play .play-bars--grouped a.play-bars__label:focus-visible {
	color: var(--rx3-rose-dark);
}

.review-v3 .rx3-review-section.is-play .play-bars--grouped .play-bars__meter {
	grid-area: meter;
}

.review-v3 .rx3-review-section.is-play .play-bars--grouped .play-bars__track {
	display: block;
	height: .38rem;
	overflow: hidden;
	border-radius: 999px;
	background: #e8dfdf;
}

.review-v3 .rx3-review-section.is-play .play-bars--grouped .play-bars__fill {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: var(--dkj-play-color);
}

.review-v3 .rx3-review-section.is-play .play-bars--grouped .play-bars__value {
	grid-area: value;
	align-self: center;
	color: var(--dkj-play-dark);
	font-size: .76rem;
	font-variant-numeric: tabular-nums;
	font-weight: 850;
	opacity: 1;
}

.review-v3 .rx3-review-section.is-play .play-bars--grouped .hip-play-comment {
	height: auto;
	min-height: 0;
	margin-bottom: 0;
	padding: .72rem .82rem;
	border-color: #e4c5d0;
	background: #fff1f5;
	color: var(--rx3-rose-gray);
}

@media (max-width: 1100px) {
	.review-v3 .rx3-cross-nav--quad,
	.review-v3 .rx3-cross-nav--pair,
	.review-v3 .situation-atlas__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.review-v3 .situation-atlas__filters {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.review-v3 .play-atlas__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.review-v3 .rx3-review-section.is-play .play-bars--grouped .play-bars__groups {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.review-v3 .rx3-review-section.is-play .play-bars--grouped .play-bars__group.is-finish:last-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 782px) {
	body.admin-bar.review-v3:not(.home) {
		padding-top: 130px;
	}

	body.admin-bar.review-v3 .site-header.rx3-site-header {
		top: 46px;
	}

	body.admin-bar.review-v3 .primary-navigation.rx3-nav {
		top: 130px;
	}
}

@media (max-width: 700px) {
	.review-v3 .rx3-cross-nav,
	.review-v3 .page-kind-god .rx3-cross-nav--quad {
		grid-template-columns: minmax(0, 1fr);
		gap: .75rem;
	}

	.review-v3 .rx3-cross-card {
		min-height: 8.5rem;
	}

	.review-v3 .situation-atlas {
		width: min(calc(100% - 1rem), 1240px);
	}

	.review-v3 .situation-atlas__group-nav,
	.review-v3 .situation-atlas__filters {
		grid-template-columns: minmax(0, 1fr);
		align-items: stretch;
	}

	.review-v3 .situation-atlas__filters button,
	.review-v3 .situation-atlas__filters > a {
		width: 100%;
		justify-content: center;
	}

	.review-v3 .situation-atlas__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.review-v3 .situation-atlas__group {
		padding: 1rem;
		border-radius: 18px;
	}

	.review-v3 .situation-atlas__group-nav > div {
		flex-wrap: wrap;
		overflow: visible;
	}

	.review-v3 .body-atlas__nav {
		grid-template-columns: minmax(0, 1fr);
	}

	.review-v3 .body-atlas__nav div {
		flex-wrap: wrap;
	}

	.review-v3 .play-atlas__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.review-v3 .play-atlas__nav a {
		min-width: min(7rem, 31%);
		flex: 1 1 7rem;
	}

	.review-v3 .rx3-review-section.is-play .play-bars--grouped .play-bars__groups {
		grid-template-columns: minmax(0, 1fr);
		gap: .65rem;
	}

	.review-v3 .rx3-review-section.is-play .play-bars--grouped .play-bars__groups > .play-bars__group,
	.review-v3 .rx3-review-section.is-play .play-bars--grouped .play-bars__group.is-finish:last-child {
		grid-column: auto;
		grid-row: auto;
	}
}

@media (max-width: 600px) {
	.review-v3 .rx3-footer-reaction,
	.review-v3 .rx3-footer-reaction.is-bubble-left {
		grid-template-columns: minmax(0, 1fr);
		gap: 1rem;
		width: min(100%, 34rem);
	}

	.review-v3 .rx3-footer-reaction .rx3-footer-reaction__character,
	.review-v3 .rx3-footer-reaction.is-bubble-left .rx3-footer-reaction__character {
		order: 1;
		width: 128px;
		max-width: 42vw;
		justify-self: center;
	}

	.review-v3 .rx3-footer-reaction .rx3-footer-reaction__image {
		height: 128px;
		max-height: 42vw;
	}

	.review-v3 .rx3-footer-reaction .rx3-footer-reaction__bubble,
	.review-v3 .rx3-footer-reaction.is-bubble-left .rx3-footer-reaction__bubble {
		order: 2;
		padding: 1.1rem;
	}

	.review-v3 .rx3-footer-reaction .rx3-footer-reaction__bubble::before,
	.review-v3 .rx3-footer-reaction.is-bubble-left .rx3-footer-reaction__bubble::before {
		top: -9px;
		right: auto;
		left: 50%;
		border: 0;
		border-top: 1px solid #e0b8c6;
		border-left: 1px solid #e0b8c6;
		transform: translateX(-50%) rotate(45deg);
	}
}

@media (max-width: 520px) {
	body.review-v3:not(.home) {
		padding-top: 72px;
	}

	body.admin-bar.review-v3:not(.home) {
		padding-top: 118px;
	}

	.review-v3 .body-atlas__nav,
	.review-v3 .play-atlas__nav {
		top: calc(72px + .5rem);
	}

	body.admin-bar.review-v3 .primary-navigation.rx3-nav {
		top: 118px;
	}

	.review-v3 .play-atlas__group {
		scroll-margin-top: calc(72px + 8rem);
	}

	.review-v3 .rx3-single-hero__placeholder {
		min-height: 50svh;
	}

	.review-v3 .rx3-review-cta {
		padding-block: 1.25rem;
	}

	.review-v3 .rx3-review-cta .dkt-fanza-cta__button {
		width: min(100%, 32rem);
	}

	.review-v3 .play-atlas {
		padding-inline: .5rem;
	}

	.review-v3 .play-atlas__group {
		padding: 1rem;
	}

	.review-v3 .play-atlas__card {
		gap: .5rem;
		padding: .9rem;
	}

	.review-v3 .play-atlas__icon {
		width: 2.75rem;
		height: 2.75rem;
		flex-basis: 2.75rem;
	}

	.review-v3 .rx3-review-section.is-play .rx3-review-section__content {
		padding: .5rem;
	}
}
