.tprsp-single {
	--tprsp-pink: #ff4f9a;
	--tprsp-pink-dark: #e93b85;
	--tprsp-black: #0a0a0a;
	--tprsp-white: #ffffff;
	--tprsp-gray: #f8f8f8;
	--tprsp-ink: #171316;
	--tprsp-muted: #746b70;
	--tprsp-border: rgba(10, 10, 10, 0.12);
	--tprsp-display: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
	--tprsp-body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--tprsp-accent: "Playfair Display", Georgia, serif;
	--tprsp-shadow: 0 28px 90px rgba(80, 17, 48, 0.16);
	--tprsp-radius-lg: 34px;
	--tprsp-radius-md: 22px;
	--tprsp-ease: cubic-bezier(0.2, 0.72, 0.2, 1);
}

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

.tprsp-single {
	position: relative;
	overflow: clip;
	background: var(--tprsp-white);
	color: var(--tprsp-ink);
	font-family: var(--tprsp-body);
	font-size: 16px;
	line-height: 1.6;
}

.tprsp-single img {
	max-width: 100%;
	height: auto;
}

.tprsp-single a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.tprsp-single button,
.tprsp-single input,
.tprsp-single textarea {
	font: inherit;
}

.tprsp-single :focus-visible {
	outline: 3px solid var(--tprsp-pink);
	outline-offset: 4px;
}

.tprsp-single .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;
}

.tprsp-single .screen-reader-text:focus {
	z-index: 100000;
	top: 8px;
	left: 8px;
	width: auto;
	height: auto;
	padding: 12px 16px;
	clip: auto;
	background: var(--tprsp-white);
	color: var(--tprsp-black);
}

.tprsp-container {
	width: min(100% - 40px, 1320px);
	margin-inline: auto;
}

.tprsp-container--narrow {
	max-width: 1000px;
}

.tprsp-section {
	padding-block: clamp(64px, 7vw, 108px);
}

.tprsp-progress {
	position: fixed;
	z-index: 10000;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	pointer-events: none;
}

.tprsp-progress span {
	display: block;
	width: 0;
	height: 100%;
	background: linear-gradient(90deg, var(--tprsp-pink-dark), var(--tprsp-pink));
	box-shadow: 0 0 14px rgba(255, 79, 154, 0.65);
}

.tprsp-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.tprsp-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.tprsp-kicker,
.tprsp-category {
	display: inline-flex;
	align-items: center;
	color: var(--tprsp-pink-dark);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
}

.tprsp-hero {
	position: relative;
	isolation: isolate;
	padding: 26px 0 clamp(72px, 8vw, 126px);
	overflow: hidden;
	background:
		radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.95), transparent 30%),
		radial-gradient(circle at 85% 18%, rgba(255, 79, 154, 0.22), transparent 31%),
		linear-gradient(132deg, #fff 0%, #fff4f8 34%, #ffe3ef 68%, #fff9fc 100%);
}

.tprsp-hero::before {
	position: absolute;
	z-index: -1;
	right: -8%;
	bottom: -45%;
	width: 520px;
	aspect-ratio: 1;
	border: 1px solid rgba(255, 79, 154, 0.25);
	border-radius: 50%;
	content: "";
	box-shadow:
		0 0 0 45px rgba(255, 255, 255, 0.25),
		0 0 0 90px rgba(255, 79, 154, 0.05);
}

.tprsp-noise {
	position: absolute;
	z-index: -1;
	inset: 0;
	opacity: 0.16;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
	mix-blend-mode: multiply;
}

.tprsp-breadcrumbs {
	margin-bottom: clamp(38px, 5vw, 68px);
	font-size: 0.74rem;
	font-weight: 600;
}

.tprsp-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tprsp-breadcrumbs li {
	display: flex;
	align-items: center;
	color: var(--tprsp-muted);
}

.tprsp-breadcrumbs li:not(:last-child)::after {
	margin-left: 8px;
	color: var(--tprsp-pink);
	content: "/";
}

.tprsp-breadcrumbs a {
	text-decoration: none;
}

.tprsp-breadcrumbs a:hover {
	color: var(--tprsp-pink-dark);
}

.tprsp-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
	gap: clamp(48px, 7vw, 110px);
	align-items: center;
}

.tprsp-hero__copy {
	position: relative;
	z-index: 2;
}

.tprsp-hero__copy::before {
	position: absolute;
	z-index: -1;
	top: -34px;
	left: -42px;
	width: 120px;
	height: 120px;
	border: 1px solid rgba(255, 79, 154, 0.16);
	border-radius: 50%;
	content: "";
}

.tprsp-post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-bottom: 22px;
	color: #61565c;
	font-size: 0.73rem;
	font-weight: 700;
	letter-spacing: 0.045em;
	text-transform: uppercase;
}

.tprsp-category {
	padding: 9px 13px 8px;
	border: 1px solid rgba(233, 59, 133, 0.25);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.76);
}

.tprsp-category:hover {
	border-color: var(--tprsp-pink);
	background: var(--tprsp-pink);
	color: var(--tprsp-white);
}

.tprsp-hero h1 {
	max-width: 760px;
	margin: 0;
	font-family: var(--tprsp-display);
	font-size: clamp(3.7rem, 6.15vw, 7.35rem);
	font-weight: 400;
	letter-spacing: -0.025em;
	line-height: 0.88;
	text-wrap: balance;
	text-transform: uppercase;
}

.tprsp-hero__excerpt {
	max-width: 660px;
	margin: 28px 0 32px;
	color: #51474c;
	font-family: var(--tprsp-accent);
	font-size: clamp(1.08rem, 1.5vw, 1.35rem);
	line-height: 1.55;
}

.tprsp-hero-author {
	display: flex;
	gap: 14px;
	align-items: center;
	width: fit-content;
	padding: 8px 15px 8px 8px;
	border: 1px solid rgba(10, 10, 10, 0.08);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.68);
	box-shadow: 0 12px 34px rgba(80, 17, 48, 0.08);
	backdrop-filter: blur(12px);
}

.tprsp-hero-author__avatar {
	flex: 0 0 50px;
	border-radius: 50%;
}

.tprsp-hero-author img {
	display: block;
	width: 50px;
	height: 50px;
	border: 2px solid var(--tprsp-white);
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 8px 24px rgba(80, 17, 48, 0.18);
}

.tprsp-hero-author div {
	display: grid;
	line-height: 1.25;
}

.tprsp-hero-author span,
.tprsp-hero-author small {
	color: var(--tprsp-muted);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.tprsp-hero-author a {
	display: block;
	max-width: min(360px, 55vw);
	overflow: hidden;
	font-size: 0.92rem;
	font-weight: 800;
	text-decoration: none;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.tprsp-hero-author small {
	margin-top: 4px;
	letter-spacing: 0;
	text-transform: none;
}

.tprsp-hero__media {
	position: relative;
	margin: 0;
	filter: drop-shadow(var(--tprsp-shadow));
	transform: perspective(1200px) rotateY(-1.2deg);
}

.tprsp-hero__media::before {
	position: absolute;
	z-index: -1;
	inset: -16px 22px 20px -18px;
	border: 1px solid rgba(233, 59, 133, 0.32);
	border-radius: 36px;
	content: "";
	transform: rotate(-2deg);
}

.tprsp-hero__image,
.tprsp-hero__placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 1.12 / 1;
	border-radius: clamp(24px, 3vw, 42px);
	background: linear-gradient(135deg, #f8a9c8, #e93b85);
	object-fit: cover;
	transition: transform 0.65s var(--tprsp-ease), box-shadow 0.65s ease;
}

.tprsp-hero__media:hover .tprsp-hero__image {
	transform: scale(1.018) rotate(0.25deg);
	box-shadow: 0 30px 90px rgba(80, 17, 48, 0.25);
}

.tprsp-hero__accent {
	position: absolute;
	right: -22px;
	bottom: 38px;
	padding: 13px 22px;
	border-radius: 999px;
	background: var(--tprsp-black);
	color: var(--tprsp-white);
	font-family: var(--tprsp-accent);
	font-size: 1rem;
	font-style: italic;
	transform: rotate(-4deg);
}

.tprsp-article-layout {
	position: relative;
	display: grid;
	grid-template-columns: 72px minmax(0, 800px) 72px;
	justify-content: center;
	gap: 42px;
	width: min(100% - 40px, 1150px);
	margin-inline: auto;
	padding-block: clamp(70px, 8vw, 118px);
}

.tprsp-share {
	position: sticky;
	top: 100px;
	display: flex;
	grid-column: 1;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	align-self: start;
}

.tprsp-share__label {
	margin-bottom: 4px;
	color: var(--tprsp-muted);
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
}

.tprsp-share a,
.tprsp-share button {
	position: relative;
	display: grid;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--tprsp-border);
	border-radius: 50%;
	background: var(--tprsp-white);
	color: var(--tprsp-black);
	cursor: pointer;
	place-items: center;
	text-decoration: none;
	transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.tprsp-share a:hover,
.tprsp-share button:hover,
.tprsp-share button.is-copied {
	border-color: var(--tprsp-pink);
	background: var(--tprsp-pink);
	color: var(--tprsp-white);
	transform: translateY(-2px);
}

.tprsp-share svg {
	width: 18px;
	height: 18px;
	fill: currentcolor;
}

.tprsp-share__status {
	position: absolute;
	top: 50%;
	left: calc(100% + 10px);
	width: max-content;
	max-width: 160px;
	padding: 6px 9px;
	border-radius: 5px;
	background: var(--tprsp-black);
	color: var(--tprsp-white);
	font-size: 0.68rem;
	line-height: 1.2;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-50%);
}

.tprsp-share__status:not(:empty) {
	opacity: 1;
}

.tprsp-article {
	position: relative;
	grid-column: 2;
	min-width: 0;
}

.tprsp-article::before {
	position: absolute;
	top: -42px;
	left: 0;
	width: 64px;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--tprsp-pink-dark), var(--tprsp-pink));
	content: "";
}

.tprsp-content {
	color: #272126;
	font-family: var(--tprsp-accent);
	font-size: clamp(1.08rem, 1.35vw, 1.22rem);
	line-height: 1.86;
}

.tprsp-content > * {
	max-width: 100%;
}

.tprsp-content > *:first-child {
	margin-top: 0;
}

.tprsp-content > p:first-of-type::first-letter {
	float: left;
	margin: 0.12em 0.12em 0 0;
	color: var(--tprsp-pink-dark);
	font-family: var(--tprsp-display);
	font-size: 5.5em;
	line-height: 0.72;
}

.tprsp-content p,
.tprsp-content ul,
.tprsp-content ol,
.tprsp-content table,
.tprsp-content blockquote,
.tprsp-content figure,
.tprsp-content .wp-block-embed {
	margin-top: 0;
	margin-bottom: 1.8em;
}

.tprsp-content h2,
.tprsp-content h3,
.tprsp-content h4,
.tprsp-content h5,
.tprsp-content h6 {
	margin: 1.7em 0 0.65em;
	color: var(--tprsp-black);
	font-family: var(--tprsp-display);
	font-weight: 400;
	letter-spacing: 0.01em;
	line-height: 1;
	text-transform: uppercase;
	text-wrap: balance;
}

.tprsp-content h2 {
	font-size: clamp(2.4rem, 5vw, 4.3rem);
}

.tprsp-content h3 {
	font-size: clamp(1.9rem, 3.5vw, 3rem);
}

.tprsp-content h4 {
	font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.tprsp-content a {
	color: var(--tprsp-pink-dark);
	font-weight: 600;
}

.tprsp-content a:hover {
	color: var(--tprsp-black);
}

.tprsp-content ul,
.tprsp-content ol {
	padding-left: 1.4em;
}

.tprsp-content li {
	margin-bottom: 0.65em;
	padding-left: 0.35em;
}

.tprsp-content li::marker {
	color: var(--tprsp-pink);
	font-family: var(--tprsp-body);
	font-weight: 800;
}

.tprsp-content blockquote {
	position: relative;
	margin-inline: 0;
	padding: clamp(30px, 5vw, 52px);
	border: 0;
	border-radius: 22px;
	background: linear-gradient(135deg, #fff1f6, #fff9fb);
	color: var(--tprsp-black);
	font-size: clamp(1.35rem, 2.3vw, 2rem);
	font-style: italic;
	line-height: 1.5;
	box-shadow: inset 5px 0 0 var(--tprsp-pink);
}

.tprsp-content blockquote::before {
	position: absolute;
	top: 5px;
	right: 22px;
	color: rgba(255, 79, 154, 0.17);
	content: "“";
	font-family: Georgia, serif;
	font-size: 7rem;
	font-style: normal;
	line-height: 1;
}

.tprsp-content blockquote cite {
	display: block;
	margin-top: 18px;
	color: var(--tprsp-pink-dark);
	font-family: var(--tprsp-body);
	font-size: 0.72rem;
	font-style: normal;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.tprsp-content figure {
	max-width: none;
}

.tprsp-content img {
	border-radius: 16px;
}

.tprsp-content figcaption,
.tprsp-content .wp-caption-text {
	margin-top: 10px;
	color: var(--tprsp-muted);
	font-family: var(--tprsp-body);
	font-size: 0.74rem;
	font-style: italic;
	text-align: center;
}

.tprsp-content .wp-block-gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	padding: 0;
}

.tprsp-content .wp-block-gallery figure,
.tprsp-content .wp-block-gallery img {
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
}

.tprsp-content table {
	display: block;
	width: 100%;
	overflow-x: auto;
	border: 1px solid var(--tprsp-border);
	border-collapse: collapse;
	font-family: var(--tprsp-body);
	font-size: 0.9rem;
	white-space: nowrap;
}

.tprsp-content th,
.tprsp-content td {
	padding: 14px 18px;
	border: 1px solid var(--tprsp-border);
	text-align: left;
}

.tprsp-content th {
	background: var(--tprsp-black);
	color: var(--tprsp-white);
	font-weight: 700;
}

.tprsp-content tr:nth-child(even) td {
	background: #fff7fa;
}

.tprsp-content iframe,
.tprsp-content video,
.tprsp-content .wp-block-embed__wrapper {
	max-width: 100%;
}

.tprsp-content .wp-block-embed__wrapper {
	position: relative;
	height: 0;
	padding-bottom: 56.25%;
	overflow: hidden;
	border-radius: 16px;
}

.tprsp-content .wp-block-embed__wrapper iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.tprsp-content .alignwide {
	width: min(1040px, calc(100vw - 40px));
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.tprsp-page-links,
.tprsp-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-top: 50px;
	padding-top: 25px;
	border-top: 1px solid var(--tprsp-border);
	font-size: 0.78rem;
	font-weight: 700;
}

.tprsp-tags span {
	margin-right: 4px;
	color: var(--tprsp-muted);
	font-size: 0.68rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.tprsp-tags a {
	padding: 8px 12px;
	border-radius: 999px;
	background: #fff2f7;
	color: var(--tprsp-pink-dark);
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.tprsp-tags a:hover {
	background: var(--tprsp-pink);
	color: var(--tprsp-white);
}

.tprsp-section-heading {
	display: flex;
	gap: 30px;
	align-items: end;
	margin-bottom: clamp(32px, 5vw, 56px);
}

.tprsp-section-heading h2 {
	margin: 7px 0 0;
	font-family: var(--tprsp-display);
	font-size: clamp(3rem, 5.5vw, 5.5rem);
	font-weight: 400;
	line-height: 0.9;
	text-transform: uppercase;
}

.tprsp-section-heading__line {
	flex: 1;
	height: 1px;
	margin-bottom: 9px;
	background: linear-gradient(90deg, var(--tprsp-pink), transparent);
}

.tprsp-related {
	position: relative;
	background:
		linear-gradient(180deg, #fff 0, #fff 32px, transparent 32px),
		linear-gradient(135deg, #f9f9f9, #fff2f7);
}

.tprsp-related__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(22px, 3vw, 38px);
}

.tprsp-related-card {
	min-width: 0;
	border: 1px solid rgba(10, 10, 10, 0.06);
	border-radius: var(--tprsp-radius-md);
	background: var(--tprsp-white);
	overflow: hidden;
	box-shadow: 0 16px 46px rgba(80, 17, 48, 0.07);
	transition: transform 0.35s var(--tprsp-ease), box-shadow 0.35s ease, border-color 0.35s ease;
}

.tprsp-related-card:hover {
	border-color: rgba(255, 79, 154, 0.24);
	transform: translateY(-7px);
	box-shadow: 0 24px 60px rgba(80, 17, 48, 0.14);
}

.tprsp-related-card__image {
	display: block;
	overflow: hidden;
	background: #f2d8e3;
}

.tprsp-related-card__image img,
.tprsp-related-card__image .tprsp-image-placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 1.38 / 1;
	object-fit: cover;
	transition: transform 0.55s ease;
}

.tprsp-related-card:hover .tprsp-related-card__image img {
	transform: scale(1.045);
}

.tprsp-image-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background:
		linear-gradient(45deg, rgba(255, 255, 255, 0.18) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.18) 75%),
		linear-gradient(135deg, #ff8cbb, #d92673);
	background-size: 28px 28px;
}

.tprsp-related-card__content {
	padding: 24px;
}

.tprsp-related-card h3 {
	margin: 9px 0 14px;
	font-size: clamp(1.05rem, 1.5vw, 1.25rem);
	line-height: 1.35;
	text-wrap: balance;
}

.tprsp-related-card h3 a {
	text-decoration: none;
}

.tprsp-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	color: var(--tprsp-muted);
	font-size: 0.66rem;
	font-weight: 700;
	text-transform: uppercase;
}

.tprsp-newsletter {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background:
		radial-gradient(circle at 14% 24%, rgba(255, 255, 255, 0.2), transparent 24%),
		linear-gradient(120deg, #ff579f 0%, #ef3e89 50%, #b71861 100%);
	color: var(--tprsp-white);
	text-align: center;
}

.tprsp-newsletter::before {
	position: absolute;
	z-index: -1;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
	background-size: 18px 18px;
	content: "";
	opacity: 0.26;
}

.tprsp-newsletter__orb {
	position: absolute;
	z-index: -1;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 50%;
}

.tprsp-newsletter__orb--one {
	top: -140px;
	left: -120px;
	width: 370px;
	height: 370px;
}

.tprsp-newsletter__orb--two {
	right: -100px;
	bottom: -180px;
	width: 440px;
	height: 440px;
	box-shadow: inset 0 0 0 60px rgba(255, 255, 255, 0.05);
}

.tprsp-newsletter .tprsp-kicker {
	color: var(--tprsp-white);
}

.tprsp-newsletter__content {
	max-width: 900px;
	margin-inline: auto;
	padding: clamp(22px, 4vw, 48px);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--tprsp-radius-lg);
	background: rgba(255, 255, 255, 0.07);
	box-shadow: 0 30px 80px rgba(101, 6, 50, 0.18);
	backdrop-filter: blur(12px);
}

.tprsp-newsletter h2 {
	margin: 12px 0 18px;
	font-family: var(--tprsp-display);
	font-size: clamp(3.5rem, 7vw, 7.4rem);
	font-weight: 400;
	line-height: 0.88;
	text-transform: uppercase;
	text-wrap: balance;
}

.tprsp-newsletter__content > p {
	max-width: 660px;
	margin: 0 auto 32px;
	font-family: var(--tprsp-accent);
	font-size: 1.05rem;
}

.tprsp-newsletter__form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
	max-width: 680px;
	margin-inline: auto;
}

.tprsp-newsletter__form input[type="email"] {
	min-width: 0;
	min-height: 58px;
	padding: 15px 20px;
	border: 2px solid transparent;
	border-radius: 12px;
	background: var(--tprsp-white);
	color: var(--tprsp-black);
}

.tprsp-newsletter__form button {
	display: inline-flex;
	min-height: 58px;
	gap: 12px;
	align-items: center;
	justify-content: center;
	padding: 14px 25px;
	border: 2px solid var(--tprsp-black);
	border-radius: 12px;
	background: var(--tprsp-black);
	color: var(--tprsp-white);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tprsp-newsletter__form button:hover {
	background: var(--tprsp-white);
	color: var(--tprsp-black);
	transform: translateY(-2px);
}

.tprsp-newsletter__form button:disabled,
.tprsp-submit:disabled {
	cursor: wait;
	opacity: 0.65;
}

.tprsp-newsletter__form button svg {
	width: 20px;
	height: 20px;
	fill: currentcolor;
	transition: transform 0.2s ease;
}

.tprsp-newsletter__form button:hover svg {
	transform: translateX(4px);
}

.tprsp-newsletter__consent {
	display: flex;
	grid-column: 1 / -1;
	gap: 9px;
	align-items: flex-start;
	justify-content: center;
	margin-top: 8px;
	font-size: 0.68rem;
	text-align: left;
}

.tprsp-newsletter__consent input {
	flex: 0 0 auto;
	margin-top: 3px;
	accent-color: var(--tprsp-black);
}

.tprsp-form-message {
	grid-column: 1 / -1;
	min-height: 1.5em;
	margin: 4px 0 0;
	font-size: 0.78rem;
	font-weight: 700;
}

.tprsp-post-nav {
	background:
		linear-gradient(180deg, var(--tprsp-white) 0%, #fff8fb 100%);
}

.tprsp-post-nav__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(18px, 2.2vw, 30px);
}

.tprsp-post-nav__card {
	position: relative;
	display: grid;
	grid-template-columns: 132px minmax(0, 1fr) 42px;
	gap: 20px;
	align-items: center;
	min-height: 156px;
	padding: 16px;
	overflow: hidden;
	border: 1px solid var(--tprsp-border);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.94);
	text-decoration: none;
	box-shadow: 0 12px 34px rgba(80, 17, 48, 0.055);
	transition: transform 0.3s var(--tprsp-ease), border-color 0.3s ease, box-shadow 0.3s ease;
}

.tprsp-post-nav__card:hover {
	border-color: rgba(255, 79, 154, 0.55);
	box-shadow: 0 22px 52px rgba(80, 17, 48, 0.12);
	transform: translateY(-5px);
}

.tprsp-post-nav__image {
	position: relative;
	display: block;
	width: 132px;
	height: 124px;
	overflow: hidden;
	border-radius: 13px;
	background: #161214;
	isolation: isolate;
}

.tprsp-post-nav__image img,
.tprsp-post-nav__image .tprsp-image-placeholder {
	position: absolute;
	inset: 0;
	display: block;
	width: 100% !important;
	max-width: none !important;
	height: 100% !important;
	min-height: 100%;
	margin: 0 !important;
	object-fit: cover;
	object-position: center;
	border: 0;
	border-radius: 0;
	transition: transform 0.55s var(--tprsp-ease);
}

.tprsp-post-nav__card:hover .tprsp-post-nav__image img {
	transform: scale(1.055);
}

.tprsp-post-nav__image::after {
	position: absolute;
	z-index: 1;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(10, 10, 10, 0.15));
	content: "";
	pointer-events: none;
}

.tprsp-post-nav__content {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.tprsp-post-nav__content small,
.tprsp-post-nav__content em {
	color: var(--tprsp-muted);
	font-size: 0.65rem;
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.tprsp-post-nav__content em {
	color: var(--tprsp-pink-dark);
}

.tprsp-post-nav__content strong {
	display: -webkit-box;
	overflow: hidden;
	font-family: var(--tprsp-accent);
	font-size: clamp(0.98rem, 1.25vw, 1.14rem);
	line-height: 1.32;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.tprsp-post-nav__arrow {
	display: grid;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--tprsp-black);
	color: var(--tprsp-white);
	place-items: center;
	transition: transform 0.25s ease, background 0.25s ease;
}

.tprsp-post-nav__arrow svg {
	width: 20px;
	height: 20px;
	fill: currentcolor;
}

.tprsp-post-nav__card--previous .tprsp-post-nav__arrow {
	transform: rotate(180deg);
}

.tprsp-post-nav__card--next:hover .tprsp-post-nav__arrow {
	background: var(--tprsp-pink);
	transform: translateX(4px);
}

.tprsp-post-nav__card--previous:hover .tprsp-post-nav__arrow {
	background: var(--tprsp-pink);
	transform: rotate(180deg) translateX(4px);
}

.tprsp-comments {
	background: #fff8fb;
}

.tprsp-comment-list,
.tprsp-comment-list .children {
	margin: 0;
	padding: 0;
	list-style: none;
}

.tprsp-comment-list .children {
	margin-left: 72px;
}

.tprsp-comment {
	margin-bottom: 25px;
}

.tprsp-comment__body {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	gap: 18px;
	padding: 25px;
	border: 1px solid rgba(10, 10, 10, 0.08);
	border-radius: 18px;
	background: var(--tprsp-white);
}

.tprsp-comment__avatar img {
	display: block;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	object-fit: cover;
}

.tprsp-comment__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 15px;
	align-items: center;
}

.tprsp-comment__meta strong {
	font-size: 0.9rem;
}

.tprsp-comment__meta a {
	color: var(--tprsp-muted);
	font-size: 0.67rem;
	text-decoration: none;
	text-transform: uppercase;
}

.tprsp-comment__text {
	margin-top: 10px;
	color: #4d4449;
	font-family: var(--tprsp-accent);
}

.tprsp-comment__text > :last-child {
	margin-bottom: 0;
}

.tprsp-comment__moderation {
	color: var(--tprsp-pink-dark);
	font-size: 0.76rem;
	font-weight: 700;
}

.tprsp-comment .comment-reply-link {
	display: inline-flex;
	margin-top: 10px;
	color: var(--tprsp-pink-dark);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.tprsp-comment-form-wrap {
	margin-top: clamp(40px, 6vw, 72px);
	padding: clamp(25px, 5vw, 48px);
	border-radius: 24px;
	background: var(--tprsp-white);
	box-shadow: 0 20px 65px rgba(80, 17, 48, 0.09);
}

.tprsp-single .comment-reply-title {
	margin: 0 0 8px;
	font-family: var(--tprsp-display);
	font-size: clamp(2.4rem, 5vw, 4rem);
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
}

.tprsp-comment-notes,
.tprsp-single .logged-in-as {
	color: var(--tprsp-muted);
	font-size: 0.78rem;
}

.tprsp-comment-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.tprsp-comment-form > * {
	margin: 0;
}

.tprsp-comment-form .comment-reply-title,
.tprsp-comment-form .tprsp-comment-notes,
.tprsp-comment-form .logged-in-as,
.tprsp-comment-form .comment-form-comment,
.tprsp-comment-form .comment-form-cookies-consent,
.tprsp-comment-form .form-submit,
.tprsp-comment-form .tprsp-form-message {
	grid-column: 1 / -1;
}

.tprsp-comment-form label {
	display: block;
	margin-bottom: 6px;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.tprsp-comment-form input:not([type="checkbox"]),
.tprsp-comment-form textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid var(--tprsp-border);
	border-radius: 8px;
	background: #fcfbfc;
	color: var(--tprsp-black);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tprsp-comment-form input:focus,
.tprsp-comment-form textarea:focus {
	border-color: var(--tprsp-pink);
	box-shadow: 0 0 0 4px rgba(255, 79, 154, 0.11);
	outline: 0;
}

.tprsp-comment-form .comment-form-cookies-consent {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	font-size: 0.72rem;
}

.tprsp-comment-form .comment-form-cookies-consent label {
	margin: 0;
	font-size: inherit;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
}

.tprsp-submit {
	min-height: 50px;
	padding: 13px 25px;
	border: 1px solid var(--tprsp-black);
	border-radius: 5px;
	background: var(--tprsp-black);
	color: var(--tprsp-white);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.tprsp-submit:hover {
	border-color: var(--tprsp-pink);
	background: var(--tprsp-pink);
	transform: translateY(-2px);
}

.tprsp-single .comments-navigation {
	margin-block: 28px;
}

.tprsp-single .comments-navigation .nav-links {
	display: flex;
	justify-content: space-between;
}

@media (max-width: 1100px) {
	.tprsp-hero__grid {
		grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
		gap: 42px;
	}

	.tprsp-article-layout {
		grid-template-columns: 60px minmax(0, 800px);
		gap: 30px;
	}

	.tprsp-related__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tprsp-post-nav__card {
		grid-template-columns: 108px minmax(0, 1fr) 38px;
		gap: 14px;
	}

	.tprsp-post-nav__image {
		width: 108px;
		height: 108px;
	}
}

@media (max-width: 820px) {
	.tprsp-hero {
		padding-top: 20px;
	}

	.tprsp-hero__grid {
		grid-template-columns: 1fr;
		gap: 46px;
	}

	.tprsp-hero__copy {
		max-width: 700px;
	}

	.tprsp-hero__media {
		width: min(100%, 680px);
		margin-inline: auto;
		transform: none;
	}

	.tprsp-article-layout {
		display: block;
		width: min(100% - 32px, 800px);
		padding-bottom: 110px;
	}

	.tprsp-share {
		position: fixed;
		z-index: 9998;
		top: auto;
		right: 12px;
		bottom: max(12px, env(safe-area-inset-bottom));
		left: 12px;
		flex-direction: row;
		justify-content: center;
		width: fit-content;
		max-width: calc(100% - 24px);
		margin-inline: auto;
		padding: 8px;
		border: 1px solid rgba(10, 10, 10, 0.08);
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.9);
		box-shadow: 0 14px 45px rgba(10, 10, 10, 0.16);
		backdrop-filter: blur(16px);
	}

	.tprsp-share__label {
		display: none;
	}

	.tprsp-share a,
	.tprsp-share button {
		width: 40px;
		height: 40px;
	}

	.tprsp-share__status {
		top: auto;
		right: 0;
		bottom: calc(100% + 12px);
		left: auto;
		transform: none;
	}

	.tprsp-post-nav__grid {
		grid-template-columns: 1fr;
		max-width: 760px;
		margin-inline: auto;
	}
}

@media (max-width: 600px) {
	.tprsp-container {
		width: min(100% - 30px, 1320px);
	}

	.tprsp-section {
		padding-block: 60px;
	}

	.tprsp-breadcrumbs {
		margin-bottom: 35px;
	}

	.tprsp-breadcrumbs li:last-child {
		display: none;
	}

	.tprsp-hero h1 {
		font-size: clamp(3.35rem, 17vw, 5.25rem);
	}

	.tprsp-hero__excerpt {
		margin-block: 22px 26px;
		font-size: 1rem;
		line-height: 1.65;
	}

	.tprsp-post-meta {
		gap: 7px;
		font-size: 0.65rem;
	}

	.tprsp-category {
		padding: 7px 10px 6px;
	}

	.tprsp-hero-author {
		max-width: 100%;
		padding-right: 12px;
	}

	.tprsp-hero-author a {
		max-width: calc(100vw - 130px);
		font-size: 0.82rem;
	}

	.tprsp-hero__accent {
		right: -4px;
		bottom: 20px;
		padding: 10px 17px;
		font-size: 0.86rem;
	}

	.tprsp-hero__media::before {
		inset: -9px 12px 12px -9px;
		border-radius: 25px;
	}

	.tprsp-content {
		font-size: 1.04rem;
		line-height: 1.78;
	}

	.tprsp-content .wp-block-gallery {
		grid-template-columns: 1fr;
	}

	.tprsp-content blockquote {
		padding: 28px 24px;
	}

	.tprsp-related__grid {
		grid-template-columns: 1fr;
	}

	.tprsp-section-heading {
		align-items: flex-start;
		margin-bottom: 30px;
	}

	.tprsp-section-heading__line {
		display: none;
	}

	.tprsp-section-heading h2 {
		font-size: clamp(2.8rem, 14vw, 4.2rem);
	}

	.tprsp-newsletter__content {
		padding: 25px 18px;
		border-radius: 24px;
	}

	.tprsp-newsletter h2 {
		font-size: clamp(3rem, 15vw, 4.6rem);
	}

	.tprsp-newsletter__form {
		grid-template-columns: 1fr;
	}

	.tprsp-newsletter__consent,
	.tprsp-form-message {
		grid-column: 1;
	}

	.tprsp-post-nav__card {
		grid-template-columns: 92px minmax(0, 1fr);
		gap: 14px;
		min-height: 120px;
		padding: 13px;
	}

	.tprsp-post-nav__image {
		width: 92px;
		height: 92px;
	}

	.tprsp-post-nav__arrow {
		display: none;
	}

	.tprsp-comment-list .children {
		margin-left: 22px;
	}

	.tprsp-comment__body {
		grid-template-columns: 44px minmax(0, 1fr);
		gap: 12px;
		padding: 18px;
	}

	.tprsp-comment__avatar img {
		width: 44px;
		height: 44px;
	}

	.tprsp-comment-form {
		grid-template-columns: 1fr;
	}

	.tprsp-comment-form > * {
		grid-column: 1 !important;
	}

	.tprsp-share {
		gap: 4px;
		padding: 6px;
	}

	.tprsp-share a,
	.tprsp-share button {
		width: 36px;
		height: 36px;
	}
}

@media (max-width: 390px) {
	.tprsp-container {
		width: min(100% - 24px, 1320px);
	}

	.tprsp-article-layout {
		width: min(100% - 24px, 800px);
	}

	.tprsp-hero h1 {
		font-size: clamp(3rem, 16.5vw, 4.4rem);
	}

	.tprsp-share a,
	.tprsp-share button {
		width: 33px;
		height: 33px;
	}

	.tprsp-share svg {
		width: 15px;
		height: 15px;
	}

	.tprsp-comment__body {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tprsp-single *,
	.tprsp-single *::before,
	.tprsp-single *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}

	.tprsp-reveal {
		opacity: 1;
		transform: none;
	}
}

@media print {
	.tprsp-progress,
	.tprsp-share,
	.tprsp-newsletter,
	.tprsp-related,
	.tprsp-post-nav,
	.tprsp-comments {
		display: none !important;
	}

	.tprsp-hero {
		padding: 30px 0;
		background: none;
	}

	.tprsp-hero__grid,
	.tprsp-article-layout {
		display: block;
	}

	.tprsp-hero__media {
		margin-top: 30px;
		filter: none;
	}

	.tprsp-article-layout {
		padding-block: 45px;
	}
}
