:root {
	--tps-bg: #fefdfb;
	--tps-ink: #2d2d3a;
	--tps-muted: #4a5565;
	--tps-soft: #efe7db;
	--tps-accent: #ff8d7c;
	--tps-accent-soft: #ffcc9f;
	--tps-line: rgba(45, 45, 58, 0.1);
	--tps-shadow: 0 24px 60px rgba(45, 45, 58, 0.12);
}

body {
	background: var(--tps-bg);
	color: var(--tps-ink);
	font-family: "Nunito", "Host Grotesk", system-ui, sans-serif;
	letter-spacing: 0;
}

body,
button,
input,
select,
textarea,
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Nunito", "Host Grotesk", system-ui, sans-serif;
}

.nrdfy-site-main,
.tps-main {
	background: var(--tps-bg);
}

.tps-shell {
	margin: 0 auto;
	max-width: 1488px;
	padding: 0 16px;
	width: 100%;
}

.tps-site-header {
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(14px);
	position: sticky;
	top: 0;
	z-index: 50;
}

.tps-site-header__inner {
	align-items: center;
	display: grid;
	gap: 24px;
	grid-template-columns: auto 1fr auto auto;
	min-height: 84px;
}

.tps-logo {
	align-items: center;
	display: inline-flex;
	text-decoration: none;
}

.tps-logo__image {
	display: block;
	height: auto;
	width: 160px;
}

.tps-menu {
	align-items: center;
	display: flex;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.tps-primary-nav,
.tps-header-actions {
	align-items: center;
	display: flex;
}

.tps-primary-nav {
	justify-content: center;
}

.tps-primary-nav .menu-item > a {
	border-radius: 999px;
	padding: 8px 12px;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.tps-primary-nav a,
.tps-button,
.tps-header-actions .menu-item > a {
	color: var(--tps-ink);
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
}

.tps-primary-nav .menu-item.current-menu-item > a,
.tps-primary-nav .menu-item.current-menu-ancestor > a {
	color: var(--tps-accent);
}

.tps-primary-nav .menu-item > a:hover,
.tps-primary-nav .menu-item > a:focus-visible,
.tps-mobile-menu .menu-item > a:hover,
.tps-mobile-menu .menu-item > a:focus-visible {
	background: rgba(45, 45, 58, 0.08);
}

.tps-header-actions {
	justify-content: end;
}

.tps-header-actions .tps-menu {
	gap: 12px;
}

.tps-button,
.tps-header-actions .menu-item > a {
	border-radius: 999px;
	display: inline-flex;
	padding: 11px 18px;
}

.tps-header-actions .menu-item > a {
	background: transparent;
}

.tps-button--soft > a,
.tps-header-actions .menu-item.tps-button--soft > a {
	background: var(--tps-accent-soft);
}

.tps-button--plain > a,
.tps-header-actions .menu-item.tps-button--plain > a {
	background: transparent;
}

.tps-menu-toggle {
	background: transparent;
	border: 0;
	display: none;
	height: 44px;
	padding: 10px;
	width: 44px;
}

.tps-menu-toggle span {
	background: var(--tps-ink);
	display: block;
	height: 2px;
	margin: 5px 0;
	width: 22px;
}

.tps-mobile-menu {
	border-top: 1px solid var(--tps-line);
	padding: 16px 24px 24px;
}

.tps-mobile-menu .tps-menu {
	align-items: stretch;
	flex-direction: column;
	gap: 4px;
}

.tps-mobile-menu .menu-item > a {
	color: var(--tps-ink);
	display: block;
	font-weight: 700;
	border-radius: 12px;
	padding: 12px 0;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.tps-mobile-menu .tps-menu--mobile-actions {
	margin-top: 14px;
	padding-top: 14px;
	position: relative;
}

.tps-mobile-menu .tps-menu--mobile-actions::before {
	background: var(--tps-line);
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.tps-mobile-menu .tps-menu--mobile-actions .menu-item > a {
	border-radius: 999px;
	display: inline-flex;
	padding: 11px 18px;
}

.tps-site-footer {
	background: linear-gradient(168deg, #e07a6c 0%, #e5b88f 100%);
	color: #fff;
	margin-top: 64px;
	padding: 48px 0 28px;
}

.tps-site-footer__grid {
	display: grid;
	gap: 32px;
	grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
}

.tps-logo--footer {
	display: inline-flex;
	margin-bottom: 18px;
	max-width: 240px;
}

.tps-logo__image--footer {
	width: 100px;
}

.tps-site-footer p,
.tps-site-footer a {
	color: rgba(255, 255, 255, 0.82);
	font-size: 14px;
	line-height: 1.55;
}

.tps-site-footer h2 {
	color: #fff;
	font-size: 18px;
	margin: 0 0 14px;
}

.tps-site-footer a {
	text-decoration: none;
}

.tps-menu--footer {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.tps-site-footer__credits {
	border-top: 1px solid rgba(255, 255, 255, 0.22);
	margin-top: 32px;
	padding-top: 24px;
	text-align: center;
}

.tps-petsia {
	background: linear-gradient(90deg, var(--tps-accent), var(--tps-accent-soft));
	border-radius: 999px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
	bottom: 32px;
	color: #fff;
	font-weight: 800;
	padding: 16px 24px;
	position: fixed;
	right: 32px;
	text-decoration: none;
	z-index: 40;
}

.tps-post-single {
	padding: 32px 0 0;
}

.tps-post-breadcrumb {
	margin-bottom: 28px;
}

.tps-post-breadcrumb ol {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.tps-post-breadcrumb li {
	color: #7e8698;
	font-size: 15px;
}

.tps-post-breadcrumb li:not(:last-child)::after {
	color: rgba(45, 45, 58, 0.35);
	content: "/";
	margin-left: 10px;
}

.tps-post-breadcrumb a {
	color: inherit;
	text-decoration: none;
}

.tps-post {
	padding-bottom: 24px;
}

.tps-post-hero {
	background: linear-gradient(135deg, rgba(255, 141, 124, 0.84), rgba(229, 184, 143, 0.88));
	border-radius: 36px;
	overflow: hidden;
	padding: 48px;
	position: relative;
}

.tps-post-hero.has-image {
	min-height: 540px;
}

.tps-post-hero__media {
	background-position: center;
	background-size: cover;
	inset: 0;
	position: absolute;
}

.tps-post-hero__content {
	align-self: end;
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: end;
	max-width: 860px;
	min-height: 444px;
	position: relative;
	z-index: 1;
}

.tps-post-hero__category {
	align-self: flex-start;
	background: var(--tps-accent);
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-size: 15px;
	font-weight: 700;
	padding: 10px 16px;
	text-decoration: none;
}

.tps-post-hero__title {
	color: #fff;
	font-size: clamp(28px, 5vw, 56px);
	line-height: 1.05;
	margin: 0;
}

.tps-post-hero__meta {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.tps-post-hero__meta span {
	font-size: 18px;
	font-weight: 600;
}

.tps-post-layout {
	display: grid;
	gap: 36px;
	grid-template-columns: minmax(0, 1fr) 320px;
	margin-top: 28px;
}

.tps-post-layout__main {
	min-width: 0;
}

.tps-post-layout__sidebar {
	min-width: 0;
}

.tps-post-pagination {
	align-items: center;
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	margin-bottom: 28px;
}

.tps-post-pagination--bottom {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0;
	margin-top: 28px;
}

.tps-post-pagination__prev,
.tps-post-pagination__next {
	display: flex;
}

.tps-post-pagination__next {
	justify-content: end;
}

.tps-post-pagination__status {
	color: #3f4657;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
}

.tps-post-pagination__button {
	align-items: center;
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 14px 30px rgba(45, 45, 58, 0.08);
	color: var(--tps-ink);
	display: inline-flex;
	flex-direction: column;
	gap: 4px;
	justify-content: center;
	min-height: 76px;
	min-width: 184px;
	padding: 10px 16px;
	position: relative;
	text-decoration: none;
}

.tps-post-pagination__button > span,
.tps-post-pagination__button > small {
	position: relative;
	z-index: 1;
}

.tps-post-pagination__button > span {
	font-size: 18px;
	font-weight: 700;
}

.tps-post-pagination__button > small {
	color: #646d7f;
	font-size: 14px;
	line-height: 1.35;
	max-width: 200px;
	text-align: inherit;
}

.tps-post-pagination__button.is-prev,
.tps-post-pagination__button.is-disabled.is-prev {
	align-items: flex-start;
	padding-left: 52px;
}

.tps-post-pagination__button.is-next,
.tps-post-pagination__button.is-disabled.is-next {
	align-items: flex-end;
	padding-right: 52px;
	text-align: right;
}

.tps-post-pagination__button.is-prev::before,
.tps-post-pagination__button.is-next::after {
	color: var(--tps-ink);
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.tps-post-pagination__button.is-prev::before {
	content: "‹";
	left: 24px;
}

.tps-post-pagination__button.is-next::after {
	content: "›";
	right: 24px;
}

.tps-post-pagination__button.is-disabled {
	background: #f0f1f4;
	box-shadow: none;
	color: #a0a6b3;
	pointer-events: none;
}

.tps-post-pagination__button.is-disabled::before,
.tps-post-pagination__button.is-disabled::after {
	color: #a0a6b3;
}

.tps-post-page-card {
	background: #fff;
	border-radius: 34px;
	box-shadow: var(--tps-shadow);
	padding: 32px;
}

.tps-post-page-card__inner {
	max-width: 840px;
}

.tps-post-page-card__eyebrow {
	color: var(--tps-accent);
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.08em;
	margin: 0 0 18px;
	text-transform: uppercase;
}

.tps-post-page-card__title {
	font-size: clamp(26px, 4vw, 42px);
	line-height: 1;
	margin: 0 0 22px;
}

.tps-post-content {
	color: #3f4657;
	font-size: 18px;
	line-height: 1.6;
}

.tps-post-content > :first-child {
	margin-top: 0;
}

.tps-post-content > :last-child {
	margin-bottom: 0;
}

.tps-post-content h2,
.tps-post-content h3,
.tps-post-content h4 {
	color: var(--tps-ink);
	line-height: 1.2;
	margin: 40px 0 16px;
}

.tps-post-content p,
.tps-post-content ul,
.tps-post-content ol,
.tps-post-content blockquote,
.tps-post-content figure {
	margin: 0 0 22px;
}

.tps-post-content ul,
.tps-post-content ol {
	padding-left: 26px;
}

.tps-post-content a {
	color: var(--tps-accent);
}

.tps-post-content img {
	border-radius: 24px;
	height: auto;
	max-width: 100%;
}

.tps-post-content blockquote {
	background: rgba(239, 231, 219, 0.72);
	border-left: 4px solid var(--tps-accent);
	border-radius: 24px;
	color: #4a5565;
	font-size: 18px;
	margin-top: 34px;
	padding: 28px 30px;
}

.tps-post-page-card--simple {
	margin: 0 auto;
}

.tps-post-page-card__inner--wide {
	max-width: 1000px;
}

.tps-post-page-card__tag {
	align-items: center;
	background: rgba(255, 141, 124, 0.12);
	border-radius: 999px;
	color: var(--tps-accent);
	display: inline-flex;
	font-size: 15px;
	font-weight: 800;
	margin-bottom: 18px;
	padding: 10px 16px;
	text-decoration: none;
}

.tps-post-page-card__title--simple {
	font-size: clamp(32px, 5vw, 56px);
	line-height: 1.05;
	margin-bottom: 16px;
}

.tps-post-page-card__meta {
	align-items: center;
	color: #667085;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 24px;
	margin: 0 0 28px;
}

.tps-post-page-card__meta span {
	font-size: 17px;
	font-weight: 700;
}

.tps-post-page-card__section-title {
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.15;
	margin: 0 0 22px;
}

.tps-post-simple__sources {
	margin-top: 28px;
}
.tps-post-summary {
	background: #fff;
	border-radius: 26px;
	box-shadow: 0 20px 40px rgba(45, 45, 58, 0.1);
	padding: 28px 24px;
	position: sticky;
	top: 112px;
}

.tps-post-summary h2 {
	font-size: 20px;
	margin: 0 0 18px;
}

.tps-post-summary__list {
	counter-reset: summary;
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}

.tps-post-summary__list::before {
	background: rgba(45, 45, 58, 0.12);
	content: "";
	left: 18px;
	position: absolute;
	top: 18px;
	bottom: 18px;
	width: 2px;
}

.tps-post-summary__list li {
	position: relative;
}

.tps-post-summary__list li + li {
	margin-top: 14px;
}

.tps-post-summary__link {
	align-items: flex-start;
	color: #566071;
	display: grid;
	gap: 14px;
	grid-template-columns: 36px minmax(0, 1fr);
	text-decoration: none;
}

.tps-post-summary__index {
	align-items: center;
	background: #fff;
	border: 2px solid rgba(45, 45, 58, 0.18);
	border-radius: 50%;
	display: inline-flex;
	font-size: 15px;
	font-weight: 800;
	height: 36px;
	justify-content: center;
	position: relative;
	z-index: 1;
	width: 36px;
}

.tps-post-summary__title {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.20;
}

.tps-post-summary__list .is-current .tps-post-summary__index,
.tps-post-summary__link[aria-current="page"] .tps-post-summary__index {
	background: var(--tps-accent);
	border-color: var(--tps-accent);
	color: #fff;
}

.tps-post-summary__list .is-current .tps-post-summary__title,
.tps-post-summary__link[aria-current="page"] .tps-post-summary__title {
	color: var(--tps-accent);
}

.tps-allergy-page {
	min-height: 980px;
	padding: 48px 24px 0;
}

.tps-allergy {
	margin: 0 auto;
	max-width: 896px;
}

.tps-allergy__intro {
	margin-bottom: 48px;
	text-align: center;
}

.tps-allergy__icon {
	background: linear-gradient(135deg, #ffd4a3, #ff8d7c);
	border-radius: 50%;
	color: #fff;
	display: grid;
	font-size: 32px;
	font-weight: 800;
	height: 80px;
	margin: 0 auto 16px;
	place-items: center;
	width: 80px;
}

.tps-allergy h1 {
	font-size: 36px;
	line-height: 1.2;
	margin: 0 0 8px;
}

.tps-allergy__intro p {
	color: #8b8b96;
	margin: 0;
}

.tps-allergy__panel {
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 10px 20px rgba(45, 45, 58, 0.14);
	margin-bottom: 24px;
	padding: 32px;
}

.tps-allergy__panel h2 {
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 20px;
}

.tps-choice-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tps-choice-grid button {
	background: #fff;
	border: 2px solid rgba(45, 45, 58, 0.1);
	border-radius: 16px;
	color: var(--tps-ink);
	cursor: pointer;
	font: inherit;
	font-weight: 700;
	min-height: 132px;
}

.tps-choice-grid button.is-selected {
	background: var(--tps-soft);
	border-color: var(--tps-accent);
}

.tps-symptoms {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tps-symptoms label {
	align-items: center;
	background: #f9f8f6;
	border-radius: 20px;
	color: var(--tps-ink);
	display: flex;
	gap: 12px;
	min-height: 56px;
	padding: 0 16px;
}

.tps-symptoms input {
	height: 20px;
	width: 20px;
}

.tps-allergy__submit {
	background: #e5e7eb;
	border: 0;
	border-radius: 16px;
	box-shadow: 0 8px 16px rgba(45, 45, 58, 0.12);
	color: #99a1af;
	font: inherit;
	font-weight: 700;
	min-height: 56px;
	width: 100%;
}

.tps-category-archive {
	padding: 36px 0 62px;
}

.tps-category-archive__header {
	margin-bottom: 28px;
}

.tps-category-archive__eyebrow {
	color: var(--tps-accent);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
	margin: 0;
	text-transform: uppercase;
}

.tps-category-archive__title {
	font-size: clamp(30px, 4vw, 52px);
	line-height: 1.08;
	margin: 10px 0 0;
}

.tps-category-archive__description {
	color: #7e8799;
	font-size: clamp(15px, 1.4vw, 19px);
	line-height: 1.5;
	margin: 12px 0 0;
	max-width: 860px;
}

.tps-category-archive__empty {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 14px 30px rgba(45, 45, 58, 0.1);
	font-size: 18px;
	margin-top: 18px;
	padding: 20px 24px;
}

.tps-tag-bar {
	align-items: center;
	background: #fff;
	border-radius: 999px;
	box-shadow: 0 14px 30px rgba(45, 45, 58, 0.1);
	display: flex;
	gap: 10px;
	margin-bottom: 30px;
	overflow-x: auto;
	padding: 10px;
	white-space: nowrap;
}

.tps-tag-bar__item {
	background: rgba(239, 231, 219, 0.74);
	border-radius: 999px;
	color: var(--tps-ink);
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	padding: 10px 14px;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.tps-tag-bar__item:hover,
.tps-tag-bar__item:focus-visible {
	background: rgba(255, 141, 124, 0.2);
	color: var(--tps-accent);
}

.tps-post-grid-section--archive {
	padding-top: 0;
}

.tps-category-archive .pagination {
	margin-top: 34px;
}

.tps-category-archive .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.tps-category-archive .page-numbers {
	background: #fff;
	border-radius: 999px;
	box-shadow: 0 10px 22px rgba(45, 45, 58, 0.1);
	color: var(--tps-ink);
	display: inline-flex;
	font-size: 15px;
	font-weight: 700;
	min-width: 40px;
	padding: 10px 14px;
	text-decoration: none;
}

.tps-category-archive .page-numbers.current,
.tps-category-archive .page-numbers:hover,
.tps-category-archive .page-numbers:focus-visible {
	background: var(--tps-accent-soft);
}

.tps-post-grid-section {
	padding: 48px 0 16px;
}

.tps-post-grid-section__header {
	align-items: flex-start;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin-bottom: 32px;
}

.tps-post-grid-section__copy {
	max-width: 760px;
}

.tps-post-grid-section__title {
	font-size: clamp(24px, 2.8vw, 43px);
	line-height: 1.02;
	margin: 0;
}

.tps-post-grid-section__subtitle {
	color: #8a91a3;
	font-size: clamp(13px, 1.4vw, 18px);
	line-height: 1.4;
	margin: 16px 0 0;
}

.tps-post-grid-section__archive {
	align-items: center;
	color: var(--tps-accent);
	display: inline-flex;
	font-size: 18px;
	font-weight: 700;
	gap: 14px;
	padding-top: 12px;
	text-decoration: none;
	white-space: nowrap;
}

.tps-post-grid-section__archive span {
	font-size: 1.2em;
	line-height: 1;
}

.tps-post-grid {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tps-post-grid__card {
	background: #fff;
	border-radius: 34px;
	box-shadow: 0 18px 40px rgba(45, 45, 58, 0.1);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	min-width: 0;
}

.tps-post-grid__media {
	aspect-ratio: 1 / 0.92;
	background: linear-gradient(135deg, rgba(255, 141, 124, 0.22), rgba(229, 184, 143, 0.45));
	background-position: center;
	background-size: cover;
	display: block;
	padding: 28px;
	position: relative;
	text-decoration: none;
}

.tps-post-grid__media.is-empty::after {
	background: linear-gradient(135deg, rgba(255, 141, 124, 0.5), rgba(229, 184, 143, 0.8));
	content: "";
	inset: 0;
	position: absolute;
}

.tps-post-grid__badge {
	background: rgba(255, 255, 255, 0.92);
	border-radius: 999px;
	color: var(--tps-ink);
	display: inline-flex;
	font-size: 18px;
	font-weight: 700;
	padding: 6px 16px;
	position: relative;
	z-index: 1;
}

.tps-post-grid__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 14px;
	padding: 22px;
}

.tps-post-grid__post-title {
	font-size: clamp(16px, 2vw, 24px);
	line-height: 1.15;
	margin: 0;
}

.tps-post-grid__post-title a {
	color: var(--tps-ink);
	display: block;
	text-decoration: none;
}

.tps-post-grid__excerpt {
	color: #80889a;
	display: -webkit-box;
	font-size: 17px;
	line-height: 1.25;
	margin: 0;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.tps-post-grid__meta {
	align-items: center;
	color: #8e95a5;
	display: inline-flex;
	font-size: 17px;
	font-weight: 700;
	gap: 10px;
	margin-top: auto;
}

.tps-post-grid__meta svg {
	height: 22px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	fill: none;
	width: 22px;
}

@media (max-width: 1000px) {
	.tps-post-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 747px) {
	.tps-post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.tps-post-grid-section {
		padding-top: 40px;
	}

	.tps-category-archive {
		padding-top: 24px;
	}

	.tps-tag-bar {
		margin-bottom: 22px;
	}

	.tps-post-grid-section__header {
		align-items: flex-start;
		flex-direction: column;
		margin-bottom: 24px;
	}

	.tps-post-grid-section__archive {
		font-size: 18px;
		padding-top: 0;
	}
}

@media (max-width: 640px) {
	.tps-post-grid {
		grid-template-columns: 1fr;
	}

	.tps-post-grid__card,
	.tps-post-grid__media {
		border-radius: 28px;
	}

	.tps-post-grid__body {
		padding: 24px 22px;
	}
}

@media (max-width: 1200px) {
	.tps-post-layout {
		grid-template-columns: 1fr 280px;
	}
}

@media (max-width: 1100px) {
	.tps-site-header__inner {
		grid-template-columns: auto 1fr auto;
	}

	.tps-primary-nav,
	.tps-header-actions {
		display: none;
	}

	.tps-menu-toggle {
		display: block;
		justify-self: end;
	}

	.tps-post-layout {
		grid-template-columns: 1fr;
	}


.tps-post-summary {
		position: static;
	}
}

@media (max-width: 900px) {
	.tps-post-hero {
		padding: 36px 28px;
	}

	.tps-post-hero.has-image {
		min-height: 460px;
	}

	.tps-post-hero__content {
		min-height: 360px;
	}

	.tps-post-pagination {
		grid-template-columns: 1fr;
	}

	.tps-post-pagination__status,
	.tps-post-pagination__next,
	.tps-post-pagination__prev {
		justify-content: center;
	}

	.tps-post-page-card {
		padding: 32px;
	}

	.tps-post-content {
		font-size: 19px;
	}
}

@media (max-width: 720px) {
	.tps-site-footer__grid,
	.tps-choice-grid,
	.tps-symptoms {
		grid-template-columns: 1fr;
	}

	.tps-category-archive__title {
		font-size: clamp(26px, 7vw, 38px);
	}

	.tps-tag-bar {
		border-radius: 24px;
	}

	.tps-post-single {
		padding-top: 24px;
	}

	.tps-post-breadcrumb li {
		font-size: 14px;
	}

	.tps-post-hero {
		border-radius: 28px;
		padding: 28px 22px;
	}

	.tps-post-hero.has-image {
		min-height: 400px;
	}

	.tps-post-hero__content {
		gap: 16px;
		min-height: 310px;
	}

	.tps-post-hero__meta {
		gap: 12px 18px;
	}

	.tps-post-hero__meta span {
		font-size: 15px;
	}

	.tps-post-pagination__button {
		min-width: 100%;
	}

	.tps-post-pagination--bottom {
		display: grid;
		gap: 4px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tps-post-pagination--bottom .tps-post-pagination__prev,
	.tps-post-pagination--bottom .tps-post-pagination__next {
		justify-content: stretch;
	}

	.tps-post-pagination--bottom .tps-post-pagination__button {
		min-width: 0;
	}

	.tps-post-page-card {
		border-radius: 26px;
		padding: 32px 20px;
	}


.tps-post-summary {
		padding: 24px 18px;
	}

	.tps-post-summary__title {
		font-size: 16px;
	}

	.tps-petsia {
		bottom: 18px;
		right: 18px;
	}
}
