/*
 * Blueprint design system.
 * Keeps Kadence typography defaults intact and layers a reusable card language on top.
 */

:root {
	--bp-font-body: var(--global-body-font-family, inherit);
	--bp-font-heading: var(--global-heading-font-family, var(--global-body-font-family, inherit));
	--bp-font-size-body: var(--global-body-font-size, 1rem);
	--bp-line-height-body: var(--global-body-line-height, 1.7);
	--bp-color-accent: var(--tarot-accent, var(--global-palette1, #9a6a2f));
	--bp-color-text: var(--tarot-on-color, #221810);
	--bp-color-muted: #57493c;
	--bp-color-text-soft: #6a5a4d;
	--bp-color-surface: var(--tarot-bg, #fffaf3);
	--bp-color-surface-strong: #fffdf9;
	--bp-color-border: color-mix(in srgb, var(--bp-color-accent) 22%, #cdbca3);
	--bp-shadow-card: 0 0 10px rgba(44, 28, 16, 0.2);
	--bp-shadow-card-strong: 0 1.25rem 2.8rem rgba(44, 28, 16, 0.1);
	--bp-radius-card: 1.3rem;
	--bp-radius-soft: 1rem;
	--bp-content-width: min(1120px, calc(100vw - 1.5rem));
}

.blueprint-single,
.blueprint-archive {
	color: var(--bp-color-text);
	font-family: var(--bp-font-body);
	font-size: var(--bp-font-size-body);
	line-height: var(--bp-line-height-body);
}

.blueprint-single {
	background:
		radial-gradient(circle at top left, color-mix(in srgb, var(--bp-color-accent) 10%, transparent), transparent 35%),
		radial-gradient(circle at top right, color-mix(in srgb, var(--bp-color-accent) 7%, transparent), transparent 28%),
		linear-gradient(180deg, color-mix(in srgb, var(--global-palette9, #f7f1e8) 80%, white), #f8f3ea 36%, #fcfaf6 100%);
}

.blueprint-archive {
	background:
		radial-gradient(circle at top center, color-mix(in srgb, var(--bp-color-accent) 8%, transparent), transparent 30%),
		linear-gradient(180deg, color-mix(in srgb, var(--global-palette9, #f7f1e8) 72%, white), #fbf8f2 100%);
}

.blueprint-single h1,
.blueprint-single h2,
.blueprint-single h3,
.blueprint-single h4,
.blueprint-archive h1,
.blueprint-archive h2,
.blueprint-archive h3,
.blueprint-archive h4 {
	font-family: var(--bp-font-heading);
	letter-spacing: -0.02em;
}

.tarot-entry__hero,
.tarot-archive__hero {
	background: transparent;
	padding-inline: 1rem;
}

.tarot-entry__hero-inner,
.tarot-entry__body,
.tarot-entry__network-inner,
.tarot-archive__inner,
.tarot-archive__hero-inner {
	width: var(--bp-content-width);
}

.tarot-entry__hero-inner,
.tarot-archive__hero-inner,
.tarot-entry__related-card,
.tarot-entry__panel,
.tarot-entry__network-note,
.tarot-explore__group,
.tarot-card,
.tarot-archive__empty,
.tarot-entry__copy,
.tarot-entry__image,
.tarot-theme-path,
.tarot-entry__prompt {
	border: 1px solid var(--bp-color-border);
	border-radius: var(--bp-radius-card);
	box-shadow: var(--bp-shadow-card);
}

.tarot-entry__copy,
.tarot-entry__image,
.tarot-entry__panel,
.tarot-entry__network-note,
.tarot-entry__related-card,
.tarot-explore__group,
.tarot-card,
.tarot-archive__empty,
.tarot-theme-path {
	background:
		linear-gradient(160deg, rgba(255, 255, 255, 0.98), var(--bp-color-surface)),
		linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
}

.tarot-entry__hero-inner {
	grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
	gap: clamp(1rem, 2vw, 1.6rem);
	align-items: stretch;
}

.tarot-entry__copy,
.tarot-entry__image {
	padding: clamp(1.15rem, 2.5vw, 1.8rem);
	backdrop-filter: blur(3px);
}

.tarot-entry__copy {
	display: grid;
	align-content: start;
	gap: 0.9rem;
}

.tarot-entry__title {
	font-size: clamp(2.4rem, 5vw, 4.8rem);
	max-width: 12ch;
	text-wrap: balance;
	line-height: 0.9;
}

.tarot-entry__subtitle,
.tarot-entry__excerpt p,
.tarot-entry__meta-line,
.tarot-card__excerpt,
.tarot-archive__intro,
.tarot-entry__network-note,
.tarot-entry__related-copy p,
.tarot-explore__pill {
	color: var(--bp-color-muted);
}

.tarot-entry__title,
.tarot-entry__panel h2,
.tarot-card__title,
.tarot-entry__related-copy h4,
.tarot-archive__title,
.tarot-explore__title,
.tarot-entry__network-title {
	color: var(--bp-color-text);
}

.tarot-entry__terms,
.tarot-entry__network-eyebrow,
.tarot-theme-path__eyebrow,
.tarot-archive__eyebrow,
.tarot-explore__eyebrow,
.tarot-card__type,
.tarot-card__blog {
	color: var(--bp-color-accent);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.tarot-entry__terms,
.tarot-card__type,
.tarot-card__blog,
.tarot-entry__network-eyebrow,
.tarot-explore__eyebrow {
	font-size: 0.78rem;
}

.tarot-entry__keywords li,
.tarot-explore__pill,
.tarot-card__meta {
	border-radius: 999px;
	border: 1px solid color-mix(in srgb, var(--bp-color-accent) 18%, #d6c8b2);
	background: color-mix(in srgb, var(--bp-color-accent) 8%, white);
}

.tarot-entry__keywords li {
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
	color: var(--bp-color-text);
	font-weight: 600;
}

.tarot-entry__keywords li a {
	display: inline-flex;
	align-items: center;
	color: inherit;
	text-decoration: none;
}

.tarot-entry__image {
	display: grid;
	align-items: center;
	background:
		linear-gradient(180deg, color-mix(in srgb, var(--bp-color-surface) 70%, white), color-mix(in srgb, var(--bp-color-accent) 14%, var(--bp-color-surface)));
}

.tarot-entry__image img {
	max-width: 100%;
	margin: 0 auto;
	border-radius: calc(var(--bp-radius-card) - 0.15rem);
	box-shadow: var(--bp-shadow-card-strong);
}

.tarot-entry__lead-image-panel {
	grid-column: 1 / -1;
}

.tarot-entry__lead-image {
	margin: 0;
	padding: clamp(0.85rem, 2vw, 1.15rem);
	background:
		linear-gradient(160deg, rgba(255, 255, 255, 0.98), var(--bp-color-surface)),
		linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
	border: 1px solid var(--bp-color-border);
	border-radius: var(--bp-radius-card);
	box-shadow: var(--bp-shadow-card);
	position: relative;
}

.tarot-entry__lead-image::before,
.tarot-entry__related-group::before,
.tarot-entry__related-more::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
	pointer-events: none;
}

.tarot-entry__lead-image img {
	display: block;
	width: 100%;
	max-width: 100%;
	border-radius: calc(var(--bp-radius-card) - 0.35rem);
	aspect-ratio: 16 / 7;
	object-fit: cover;
	box-shadow: var(--bp-shadow-card-strong);
}

.tarot-entry__body {
	padding: clamp(1.25rem, 3vw, 2.5rem) 1rem 4rem;
	gap: 1rem;
}

.tarot-entry__hero-note {
	width: var(--bp-content-width);
	margin: 1rem auto 0;
	padding: clamp(1rem, 2.4vw, 1.4rem) clamp(1rem, 2.8vw, 1.8rem);
	background: color-mix(in srgb, var(--bp-color-surface) 86%, white);
	border-radius: calc(var(--bp-radius-card) - 0.2rem);
	position: relative;
	box-shadow: var(--bp-shadow-card);
}

.tarot-entry__hero-note p {
	margin: 0;
	font-size: clamp(1rem, 1.7vw, 1.18rem);
	line-height: 1.65;
	color: var(--bp-color-text);
}

.tarot-entry__wicca-system {
	padding: 1rem;
}

.tarot-entry__wicca-system-inner {
	width: var(--bp-content-width);
	margin: 0 auto;
	padding: 1rem;
	border: 1px solid var(--bp-color-border);
	border-radius: var(--bp-radius-card);
	box-shadow: var(--bp-shadow-card);
	background:
		linear-gradient(160deg, rgba(255, 255, 255, 0.98), var(--bp-color-surface)),
		linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
	position: relative;
}

.tarot-entry__wicca-system-inner::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
	pointer-events: none;
}

.tarot-entry__wicca-system-header {
	display: grid;
	gap: 0.45rem;
	margin-bottom: 0.9rem;
}

.tarot-entry__wicca-system-eyebrow {
	margin: 0;
	color: var(--bp-color-accent);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 0.78rem;
}

.tarot-entry__wicca-system-title,
.tarot-entry__wicca-system-copy h3 {
	margin: 0;
	color: var(--bp-color-text);
}

.tarot-entry__wicca-system-note {
	margin: 0;
	color: var(--bp-color-muted);
}

.tarot-entry__wicca-system-path {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-bottom: 1rem;
}

.tarot-entry__wicca-system-path span,
.tarot-entry__wicca-system-path a {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.55rem 0.85rem;
	border-radius: 999px;
	border: 1px solid color-mix(in srgb, var(--bp-color-accent) 18%, #d6c8b2);
	background: color-mix(in srgb, var(--bp-color-accent) 8%, white);
	color: var(--bp-color-text);
	font-weight: 600;
	text-decoration: none;
}

.tarot-entry__wicca-system-path a:hover,
.tarot-entry__wicca-system-path a:focus-visible {
	background: color-mix(in srgb, var(--bp-color-accent) 12%, white);
	border-color: color-mix(in srgb, var(--bp-color-accent) 40%, #d6c8b2);
}

.tarot-entry__wicca-system-grid {
	display: grid;
	gap: 1rem;
}

.tarot-entry__wicca-system-card {
	overflow: hidden;
	height: 100%;
	border: 1px solid var(--bp-color-border);
	border-radius: var(--bp-radius-card);
	box-shadow: var(--bp-shadow-card);
	background:
		linear-gradient(160deg, rgba(255, 255, 255, 0.98), var(--bp-color-surface)),
		linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
	position: relative;
}

.tarot-entry__wicca-system-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
	pointer-events: none;
}

.tarot-entry__wicca-system-card.is-current {
	border-color: color-mix(in srgb, var(--bp-color-accent) 48%, #d6c8b2);
	box-shadow: 0 0 0 1px color-mix(in srgb, var(--bp-color-accent) 24%, transparent), var(--bp-shadow-card);
}

.tarot-entry__wicca-system-link {
	display: grid;
	height: 100%;
	color: inherit;
	text-decoration: none;
	transition:
		transform 180ms ease,
		box-shadow 180ms ease,
		border-color 180ms ease,
		background-color 180ms ease;
}

.tarot-entry__wicca-system-link:hover,
.tarot-entry__wicca-system-link:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 0 10px rgba(44, 28, 16, 0.22);
}

.tarot-entry__wicca-system-image {
	background: color-mix(in srgb, var(--bp-color-accent) 10%, white);
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.tarot-entry__wicca-system-image img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.tarot-entry__wicca-system-copy {
	display: grid;
	gap: 0.45rem;
	align-content: start;
	grid-template-rows: auto auto 1fr;
	min-height: 12rem;
	padding: 1rem;
}

.tarot-entry__wicca-system-copy p,
.tarot-entry__wicca-system-type {
	margin: 0;
	color: var(--bp-color-muted);
}

.tarot-entry__wicca-system-type {
	color: var(--bp-color-accent);
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 0.78rem;
}

.tarot-entry__panel {
	padding: clamp(1.15rem, 2.5vw, 1.6rem);
}

.tarot-entry__panel h2 {
	font-size: clamp(1.15rem, 1.8vw, 1.45rem);
	color: var(--bp-color-accent);
}

.tarot-entry__excerpt,
.tarot-entry__content,
.tarot-entry__content p,
.tarot-entry__content li,
.tarot-entry__content ul,
.tarot-entry__content ol,
.tarot-entry__prompt,
.tarot-entry__prompt p,
.tarot-card__body,
.tarot-entry__related-copy,
.tarot-archive__empty,
.tarot-archive__intro {
	color: var(--bp-color-text);
}

.tarot-entry__content p,
.tarot-entry__content li,
.tarot-entry__prompt p {
	font-size: 1em;
	line-height: var(--bp-line-height-body);
}

.tarot-entry__content a {
	color: color-mix(in srgb, var(--bp-color-accent) 82%, #3d2a18);
	text-decoration-thickness: 1.5px;
	text-underline-offset: 0.16em;
}

.tarot-entry__prompt {
	padding: 1.15rem 1.2rem;
	background: color-mix(in srgb, var(--bp-color-accent) 10%, white);
	border-left: 0;
	position: relative;
}

.tarot-entry__prompt::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
	pointer-events: none;
}

.tarot-entry__panel--prompt {
	padding: 1.05rem;
}

.tarot-entry__panel--prompt h2 {
	margin-bottom: 0.7rem;
}

.tarot-entry__panel--prompt .tarot-entry__prompt {
	padding: 0.9rem 1rem;
	border-radius: 0.95rem;
}

.tarot-entry__network {
	background: transparent;
	padding: 0 1rem 4rem;
}

.tarot-entry__network-header {
	padding: 0;
}

.tarot-entry__network-note,
.tarot-archive__hero-inner,
.tarot-archive__empty {
	padding: clamp(1.2rem, 2.5vw, 1.7rem);
}

.tarot-entry__network-note {
	width: 100%;
	max-width: none;
}

.tarot-entry__related-header p,
.tarot-entry__network-note,
.tarot-archive__intro {
	max-width: none;
	text-wrap: pretty;
}

.tarot-entry__related-grid,
.tarot-grid,
.tarot-explore__grid {
	gap: 1.15rem;
}

.tarot-entry__related-groups {
	display: grid;
	gap: 1.2rem;
}

.tarot-entry__related-group,
.tarot-entry__related-more {
	position: relative;
	padding: 1rem;
	border: 1px solid var(--bp-color-border);
	border-radius: var(--bp-radius-card);
	background:
		linear-gradient(160deg, rgba(255, 255, 255, 0.98), var(--bp-color-surface)),
		linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
	box-shadow: var(--bp-shadow-card);
}

.tarot-entry__related-group-header {
	display: grid;
	gap: 0.35rem;
	margin-bottom: 0.9rem;
}

.tarot-entry__related-group-header h4,
.tarot-entry__related-copy h5 {
	margin: 0;
	color: var(--bp-color-text);
}

.tarot-entry__related-group-header p {
	margin: 0;
	color: var(--bp-color-muted);
}

.tarot-entry__related-more {
	margin-top: 1rem;
	padding-top: 0.75rem;
}

.tarot-entry__related-more summary {
	cursor: pointer;
	font-weight: 700;
	color: var(--bp-color-accent);
	list-style: none;
}

.tarot-entry__related-more summary::-webkit-details-marker {
	display: none;
}

.tarot-entry__related-grid--more {
	margin-top: 0.95rem;
}

.tarot-theme-paths {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	align-items: stretch;
}

.tarot-entry__related-card,
.tarot-card,
.tarot-explore__group,
.tarot-theme-path {
	overflow: hidden;
	height: 100%;
}

.tarot-entry__related-link,
.tarot-card__link {
	display: grid;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.tarot-entry__related-link:hover,
.tarot-entry__related-link:focus-visible,
.tarot-card__link:hover,
.tarot-card__link:focus-visible,
.tarot-explore__pill:hover,
.tarot-explore__pill:focus-visible {
	transform: translateY(-2px);
}

.tarot-entry__related-link,
.tarot-card__link,
.tarot-explore__pill {
	transition:
		transform 180ms ease,
		box-shadow 180ms ease,
		border-color 180ms ease,
		background-color 180ms ease;
}

.tarot-entry__related-link:hover,
.tarot-entry__related-link:focus-visible,
.tarot-card__link:hover,
.tarot-card__link:focus-visible {
	box-shadow: 0 0 10px rgba(44, 28, 16, 0.22);
}

.tarot-entry__related-copy,
.tarot-card__body,
.tarot-explore__group {
	padding: 1.1rem;
}

.tarot-entry__related-image,
.tarot-card__image {
	background: color-mix(in srgb, var(--bp-color-accent) 10%, white);
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.tarot-entry__related-image img,
.tarot-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.tarot-entry__related-copy {
	display: grid;
	gap: 0.45rem;
	align-content: start;
	grid-template-rows: auto auto 1fr;
	min-height: 12.5rem;
}

.tarot-entry__related-copy h4,
.tarot-card__title {
	font-size: clamp(1.2rem, 2vw, 1.55rem);
	line-height: 1.02;
}

.tarot-entry__related-copy h5 {
	font-size: clamp(1.05rem, 1.6vw, 1.3rem);
	line-height: 1.08;
}

.tarot-entry__related-copy p {
	margin: 0;
}

.tarot-entry__related-image {
	aspect-ratio: 4 / 3;
}

.tarot-entry__related-image img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.tarot-card__body {
	display: grid;
	gap: 0.45rem;
	align-content: start;
}

.tarot-card__subtitle,
.tarot-card__excerpt,
.tarot-card__meta {
	margin: 0;
}

.tarot-card {
	--tarot-card-accent: var(--bp-color-accent);
}

.tarot-card::before,
.tarot-entry__related-card::before,
.tarot-explore__group::before,
.tarot-entry__panel::before,
.tarot-entry__hero-note::before,
.tarot-entry__copy::before,
.tarot-entry__image::before,
.tarot-archive__hero-inner::before,
.tarot-archive__empty::before,
.tarot-theme-path::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
	pointer-events: none;
}

.tarot-card,
.tarot-entry__related-card,
.tarot-explore__group,
.tarot-entry__panel,
.tarot-entry__hero-note,
.tarot-entry__copy,
.tarot-entry__image,
.tarot-archive__hero-inner,
.tarot-archive__empty,
.tarot-theme-path {
	position: relative;
}

.tarot-card__title,
.tarot-entry__related-copy h4,
.tarot-archive__title,
.tarot-explore__title,
.tarot-entry__network-title {
	text-wrap: balance;
}

.tarot-entry__network-title,
.tarot-explore__title {
	max-width: none;
	width: 100%;
}

.tarot-explore__header,
.tarot-entry__network-header,
.tarot-entry__related-header {
	max-width: none;
	width: 100%;
}

.tarot-entry__related-header,
.tarot-explore__header {
	display: grid;
	gap: 0.45rem;
	margin-bottom: 0.2rem;
}

.tarot-explore__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	align-items: flex-start;
}

.tarot-explore__group--vertiefungen .tarot-explore__pills {
	display: grid;
	grid-template-columns: 1fr;
}

.tarot-explore__group--vertiefungen .tarot-explore__pill {
	width: 100%;
	justify-content: space-between;
}

.tarot-explore__pill {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.72rem 0.95rem;
	text-decoration: none;
	color: var(--bp-color-text);
	font-weight: 600;
}

.tarot-explore__pill small {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.8rem;
	padding: 0.2rem 0.45rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.7);
	color: var(--bp-color-accent);
	font-size: 0.78rem;
}

.tarot-explore__pill.is-current {
	background: color-mix(in srgb, var(--bp-color-accent) 18%, white);
	border-color: color-mix(in srgb, var(--bp-color-accent) 40%, #d6c8b2);
}

.tarot-archive__pagination {
	margin-top: 2rem;
}

@media (min-width: 900px) {
	.tarot-entry__related-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.tarot-entry__wicca-system-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.tarot-explore__grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		align-items: start;
	}

	.tarot-explore__group--themen {
		order: 4;
	}

	.tarot-explore__group--vertiefungen {
		order: 5;
		grid-column: 1 / -1;
	}

	.tarot-explore__group--vertiefungen .tarot-explore__pills {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.blueprint-single .entry-content,
.blueprint-archive .entry-content {
	font-size: inherit;
}

.blueprint-shortcode {
	margin: 1.25rem 0;
}

.blueprint-shortcode__title {
	margin: 0 0 0.9rem;
	color: var(--bp-color-text);
	font-size: clamp(1.15rem, 1.8vw, 1.45rem);
}

.blueprint-shortcode__grid {
	margin: 0;
}

.blueprint-shortcode .tarot-card__body {
	display: grid;
	gap: 0.45rem;
	align-content: start;
}

.blueprint-shortcode .tarot-card__type,
.blueprint-shortcode .tarot-card__title,
.blueprint-shortcode .tarot-card__subtitle,
.blueprint-shortcode .tarot-card__excerpt,
.blueprint-shortcode .tarot-card__meta {
	margin: 0;
}

@media (min-width: 900px) {
	.blueprint-shortcode__grid--columns-1 {
		grid-template-columns: minmax(0, 1fr);
	}

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

	.blueprint-shortcode__grid--columns-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.blueprint-shortcode__grid--columns-4 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 1024px) {
	.tarot-entry__hero-inner {
		grid-template-columns: 1fr;
	}

	.tarot-entry__title,
	.tarot-entry__network-title,
	.tarot-archive__title {
		max-width: none;
	}
}

@media (max-width: 768px) {
	.tarot-entry__hero,
	.tarot-entry__wicca-system,
	.tarot-entry__network,
	.tarot-archive__hero {
		padding-inline: 0.5rem;
	}

	.tarot-entry__body {
		padding-inline: 0;
	}

	.tarot-entry__copy,
	.tarot-entry__image,
	.tarot-entry__panel,
	.tarot-entry__wicca-system-inner,
	.tarot-entry__network-note,
	.tarot-entry__related-copy,
	.tarot-card__body,
	.tarot-explore__group,
	.tarot-archive__hero-inner,
	.tarot-archive__empty {
		padding: 1rem;
	}
}
