/**
 * Blog Tecnopets — magazine fotográfico + artículo editorial.
 */

.site-main.tecnopets-page--blog {
	margin: 0;
	padding: 0;
	max-width: none;
}

body.blog.separate-containers .site-main,
body.archive.separate-containers .site-main.tecnopets-page--blog,
body.search.separate-containers .site-main.tecnopets-page--blog {
	margin: 0;
}

.tp-blog-masthead {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	width: 100%;
	margin-top: -1px;
	background-color: var(--tp-navy, #0b1f33);
	background-image: var(--tp-blog-hero-bg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 2.15rem 0 1.15rem;
	min-height: clamp(17.5rem, 32vw, 24rem);
}

.tp-blog-masthead__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.tp-blog-masthead__bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(11, 31, 51, 0.22);
}

.tp-blog-masthead__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(11, 31, 51, 0.84) 0%,
		rgba(11, 31, 51, 0.72) 34%,
		rgba(11, 31, 51, 0.42) 60%,
		rgba(11, 31, 51, 0.16) 82%,
		rgba(11, 31, 51, 0.08) 100%
	);
}

.tp-blog-masthead__inner {
	position: relative;
	z-index: 1;
}

body.tecnopets-ui .tp-blog-masthead,
body.tecnopets-ui .tp-blog-masthead .tp-blog-masthead__title,
body.tecnopets-ui .tp-blog-masthead h1,
body.tecnopets-ui .tp-blog-masthead .tp-blog-masthead__eyebrow,
body.tecnopets-ui .tp-blog-masthead .tp-blog-masthead__lead,
body.tecnopets-ui .tp-blog-masthead .tp-blog-breadcrumb,
body.tecnopets-ui .tp-blog-masthead .tp-blog-breadcrumb a,
body.tecnopets-ui .tp-blog-masthead .tp-blog-breadcrumb span {
	color: #fff;
}

.tp-blog-masthead__title {
	font-family: var(--tp-font-display, 'Nunito', sans-serif);
	font-size: clamp(1.85rem, 4.5vw, 3rem);
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1.1;
	color: #fff;
	margin: 0.65rem 0 0.5rem;
	max-width: 18ch;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.tp-blog-masthead__lead {
	margin: 0 0 1.15rem;
	font-size: 1.05rem;
	color: #fff;
	max-width: 40rem;
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.tp-blog-search {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	width: 100%;
	max-width: 36rem;
	margin-bottom: 1.15rem;
}

.tp-blog-search__input {
	flex: 1 1 220px;
	min-width: 0;
	padding: 0.75rem 1.1rem;
	border: 1px solid rgba(11, 31, 51, 0.14);
	border-radius: var(--tp-radius-pill, 999px);
	font-size: 0.9375rem;
	background: #fff;
	box-shadow: 0 4px 16px rgba(11, 31, 51, 0.06);
}

.tp-blog-search__input:focus {
	outline: 2px solid var(--tp-yellow, #ffd33d);
	outline-offset: 2px;
	border-color: var(--tp-navy, #0b1f33);
}

.tp-blog-search__btn {
	flex: 0 0 auto;
	border-radius: var(--tp-radius-pill, 999px);
	padding-left: 1.35rem;
	padding-right: 1.35rem;
}

.tp-blog-breadcrumb {
	font-size: 0.8125rem;
	color: var(--tp-text-muted, #4a5568);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem;
}

.tp-blog-breadcrumb a {
	color: var(--tp-navy, #0b1f33);
	text-decoration: none;
}

.tp-blog-breadcrumb a:hover {
	text-decoration: underline;
}

.tp-blog-masthead .tp-blog-breadcrumb {
	color: #fff;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.tp-blog-masthead .tp-blog-breadcrumb a {
	color: #fff;
}

.tp-blog-layout,
.tp-article-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	gap: 2rem;
	padding-bottom: 4rem;
	padding-top: 1.5rem;
	align-items: start;
}

.tp-blog-layout--magazine {
	grid-template-columns: minmax(0, 1fr);
}

.tp-blog-main {
	min-width: 0;
}

.tp-blog-featured {
	position: relative;
	display: block;
	border-radius: 24px;
	overflow: hidden;
	min-height: min(62vh, 560px);
	margin-bottom: 1.25rem;
	background: var(--tp-navy, #0b1f33);
}

.tp-blog-featured__link {
	display: block;
	position: relative;
	min-height: inherit;
	color: #fff;
	text-decoration: none;
}

.tp-blog-featured__link img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 350ms ease;
}

.tp-blog-featured:hover .tp-blog-featured__link img {
	transform: scale(1.04);
}

.tp-blog-featured__overlay {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: min(62vh, 560px);
	padding: 2.5rem 2.25rem;
	background: linear-gradient(180deg, transparent 28%, rgba(11, 31, 51, 0.82) 100%);
}

.tp-blog-featured__badge {
	display: inline-block;
	background: var(--tp-yellow, #ffd33d);
	color: var(--tp-navy, #0b1f33);
	font-size: 0.6875rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 0.3rem 0.75rem;
	border-radius: var(--tp-radius-pill, 999px);
	margin-bottom: 0.85rem;
	width: fit-content;
}

body.tecnopets-ui .tp-blog-featured__title {
	font-family: var(--tp-font-display, 'Nunito', sans-serif);
	font-size: clamp(1.6rem, 4vw, 2.6rem);
	font-weight: 900;
	line-height: 1.12;
	letter-spacing: -0.03em;
	margin: 0 0 0.75rem;
	max-width: 18ch;
	color: #fff;
}

body.tecnopets-ui .tp-blog-card__title {
	font-family: var(--tp-font-display, 'Nunito', sans-serif);
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.25;
	margin: 0 0 0.4rem;
	color: #fff;
}

.tp-blog-featured__excerpt {
	font-size: 1.05rem;
	line-height: 1.5;
	margin: 0 0 1rem;
	max-width: 38rem;
	color: rgba(248, 250, 252, 0.86);
}

.tp-blog-featured__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45rem 0.65rem;
	font-size: 0.875rem;
	color: rgba(248, 250, 252, 0.78);
}

.tp-blog-featured__cta {
	display: inline-flex;
	margin-left: 0.35rem;
	padding: 0.35rem 0.85rem;
	border-radius: var(--tp-radius-pill, 999px);
	background: var(--tp-yellow, #ffd33d);
	color: var(--tp-navy, #0b1f33);
	font-weight: 800;
	font-size: 0.75rem;
}

.tp-blog-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0 0 0.25rem;
}

.tp-blog-filter {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.45rem 1rem;
	border-radius: var(--tp-radius-pill, 999px);
	background: #fff;
	border: 1px solid rgba(11, 31, 51, 0.12);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--tp-navy, #0b1f33);
	text-decoration: none;
	transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.tp-blog-filter:hover,
.tp-blog-filter.is-active {
	background: var(--tp-navy, #0b1f33);
	color: #fff;
	border-color: var(--tp-navy, #0b1f33);
}

.tp-blog-filter:focus-visible {
	outline: 2px solid var(--tp-yellow, #ffd33d);
	outline-offset: 2px;
}

.tp-blog-filter__count {
	opacity: 0.7;
	font-weight: 500;
	font-size: 0.75rem;
}

.tp-blog-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
}

.tp-blog-grid--magazine,
.tp-blog-grid--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.tp-blog-grid--4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tp-blog-card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: var(--tp-navy, #0b1f33);
	min-height: 280px;
}

.tp-blog-card__link {
	display: block;
	position: relative;
	min-height: 280px;
	color: #fff;
	text-decoration: none;
}

.tp-blog-card__link img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 300ms ease;
}

.tp-blog-card:hover .tp-blog-card__link img,
.tp-blog-card:focus-within .tp-blog-card__link img {
	transform: scale(1.04);
}

.tp-blog-card__overlay {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 280px;
	padding: 1.15rem 1.2rem 1.25rem;
	background: linear-gradient(180deg, transparent 30%, rgba(11, 31, 51, 0.86) 100%);
}

.tp-blog-card__badge {
	position: static;
	align-self: flex-start;
	background: var(--tp-yellow, #ffd33d);
	color: var(--tp-navy, #0b1f33);
	font-size: 0.6875rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 0.25rem 0.65rem;
	border-radius: var(--tp-radius-pill, 999px);
	margin-bottom: 0.55rem;
}

.tp-blog-card__title {
	font-family: var(--tp-font-display, 'Nunito', sans-serif);
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.25;
	margin: 0 0 0.4rem;
	color: #fff;
}

.tp-blog-card__meta {
	font-size: 0.75rem;
	color: rgba(248, 250, 252, 0.78);
}

.tp-blog-card__excerpt,
.tp-blog-card__body {
	display: none;
}

.tp-blog-card__link:focus-visible {
	outline: 3px solid var(--tp-yellow, #ffd33d);
	outline-offset: 3px;
}

.tp-blog-featured__link:focus-visible {
	outline: 3px solid var(--tp-yellow, #ffd33d);
	outline-offset: 3px;
}

/* Sidebar */
.tp-blog-sidebar {
	position: sticky;
	top: 6rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.tp-blog-widget {
	background: #fff;
	border-radius: var(--tp-radius-xl, 22px);
	padding: 1.35rem;
	box-shadow: 0 4px 16px rgba(11, 31, 51, 0.06);
}

.tp-blog-widget h3 {
	font-family: var(--tp-font-display, 'Nunito', sans-serif);
	font-size: 1rem;
	font-weight: 800;
	margin: 0 0 0.5rem;
	color: var(--tp-navy, #0b1f33);
}

.tp-blog-widget p {
	font-size: 0.875rem;
	color: var(--tp-text-muted, #4a5568);
	line-height: 1.5;
	margin: 0 0 1rem;
}

.tp-blog-widget--cta {
	background: linear-gradient(145deg, var(--tp-navy, #0b1f33), #1a3a5c);
	color: #fff;
}

.tp-blog-widget--cta h3,
.tp-blog-widget--cta p {
	color: #fff;
}

.tp-blog-widget--cta p {
	opacity: 0.85;
}

.tp-blog-widget__icon {
	display: inline-flex;
	margin-bottom: 0.65rem;
	color: var(--tp-yellow, #ffd33d);
}

.tp-blog-widget__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tp-blog-widget__list li {
	border-bottom: 1px solid rgba(11, 31, 51, 0.08);
	padding: 0.5rem 0;
}

.tp-blog-widget__list li:last-child {
	border-bottom: none;
}

.tp-blog-widget__list a {
	font-size: 0.875rem;
	color: var(--tp-navy, #0b1f33);
	text-decoration: none;
	line-height: 1.4;
	display: block;
}

.tp-blog-widget__list a:hover {
	text-decoration: underline;
}

.tp-btn--block {
	display: block;
	width: 100%;
	text-align: center;
}

/* Paginación */
.tp-blog-pagination {
	margin-top: 2rem;
	display: flex;
	justify-content: center;
	gap: 0.35rem;
	flex-wrap: wrap;
}

.tp-blog-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.25rem;
	height: 2.25rem;
	padding: 0 0.65rem;
	border-radius: var(--tp-radius-pill, 999px);
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	color: var(--tp-navy, #0b1f33);
	background: #fff;
	border: 1px solid rgba(11, 31, 51, 0.12);
}

.tp-blog-pagination .page-numbers.current,
.tp-blog-pagination .page-numbers:hover {
	background: var(--tp-navy, #0b1f33);
	color: #fff;
	border-color: var(--tp-navy, #0b1f33);
}

/* Artículo individual */
.tp-article-hero {
	padding: 2rem 0 0;
	background: linear-gradient(180deg, var(--tp-pink-hero, #fff0f5) 0%, #fff 100%);
}

.tp-article-hero__badge {
	display: inline-block;
	background: var(--tp-yellow, #ffd33d);
	color: var(--tp-navy, #0b1f33);
	font-size: 0.6875rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 0.3rem 0.75rem;
	border-radius: var(--tp-radius-pill, 999px);
	margin-bottom: 0.75rem;
}

.tp-article-hero__title {
	font-family: var(--tp-font-display, 'Nunito', sans-serif);
	font-size: clamp(1.75rem, 4.5vw, 2.75rem);
	font-weight: 900;
	color: var(--tp-navy, #0b1f33);
	line-height: 1.15;
	margin: 0 0 1rem;
	max-width: 820px;
}

.tp-article-hero__meta {
	font-size: 0.875rem;
	color: var(--tp-text-muted, #4a5568);
	margin-bottom: 1.5rem;
}

.tp-article-hero__media {
	margin-bottom: 2rem;
}

.tp-article-hero__img {
	width: 100%;
	height: auto;
	max-height: 520px;
	object-fit: cover;
	border-radius: var(--tp-radius-xl, 22px);
	box-shadow: 0 8px 32px rgba(11, 31, 51, 0.12);
}

/* Contenido editorial */
.tp-article-content {
	font-size: 1.0625rem;
	line-height: 1.75;
	color: #2d3748;
}

.tp-article-content h2 {
	font-family: var(--tp-font-display, 'Nunito', sans-serif);
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--tp-navy, #0b1f33);
	margin: 2.25rem 0 0.75rem;
	padding-top: 0.5rem;
	scroll-margin-top: 5rem;
}

.tp-article-content h3 {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--tp-navy, #0b1f33);
	margin: 1.5rem 0 0.5rem;
}

.tp-article-content p {
	margin: 0 0 1.1rem;
}

.tp-article-content ul,
.tp-article-content ol {
	margin: 0 0 1.25rem 1.25rem;
	padding: 0;
}

.tp-article-content li {
	margin-bottom: 0.45rem;
}

.tp-article-content a {
	color: var(--tp-navy, #0b1f33);
	font-weight: 600;
}

.tp-article-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.25rem 0 1.5rem;
	font-size: 0.9375rem;
}

.tp-article-content th,
.tp-article-content td {
	border: 1px solid rgba(11, 31, 51, 0.12);
	padding: 0.65rem 0.85rem;
	text-align: left;
}

.tp-article-content th {
	background: var(--tp-blue-soft, #e6f0ff);
	font-weight: 700;
	color: var(--tp-navy, #0b1f33);
}

.tp-article-content blockquote {
	margin: 1.5rem 0;
	padding: 1rem 1.25rem;
	background: var(--tp-pink-hero, #fff0f5);
	border-left: 4px solid var(--tp-yellow, #ffd33d);
	border-radius: 0 var(--tp-radius-md, 12px) var(--tp-radius-md, 12px) 0;
	font-style: italic;
}

.tp-article-content .tp-tip-box {
	background: var(--tp-blue-soft, #e6f0ff);
	border-radius: var(--tp-radius-md, 12px);
	padding: 1rem 1.25rem;
	margin: 1.25rem 0;
	font-size: 0.9375rem;
}

.tp-article-content .tp-tip-box strong {
	color: var(--tp-navy, #0b1f33);
}

/* TOC */
.tp-article-toc {
	background: #fff;
	border: 1px solid rgba(11, 31, 51, 0.1);
	border-radius: var(--tp-radius-xl, 22px);
	padding: 1.25rem 1.5rem;
	margin-bottom: 2rem;
}

.tp-article-toc__title {
	font-weight: 800;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--tp-navy, #0b1f33);
	margin: 0 0 0.75rem;
}

.tp-article-toc ol {
	margin: 0;
	padding-left: 1.25rem;
}

.tp-article-toc li {
	margin-bottom: 0.35rem;
	font-size: 0.9375rem;
}

.tp-article-toc a {
	color: var(--tp-navy, #0b1f33);
	text-decoration: none;
}

.tp-article-toc a:hover {
	text-decoration: underline;
}

/* CTA artículo */
.tp-article-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
	background: linear-gradient(135deg, var(--tp-navy, #0b1f33), #1a3a5c);
	color: #fff;
	border-radius: var(--tp-radius-xl, 22px);
	padding: 1.75rem 2rem;
	margin: 2.5rem 0;
}

.tp-article-cta h2 {
	font-family: var(--tp-font-display, 'Nunito', sans-serif);
	font-size: 1.25rem;
	font-weight: 800;
	margin: 0 0 0.35rem;
	color: #fff;
}

.tp-article-cta p {
	margin: 0;
	font-size: 0.9375rem;
	opacity: 0.9;
}

.tp-article-tags {
	font-size: 0.8125rem;
	color: var(--tp-text-muted, #4a5568);
	margin: 1.5rem 0 0;
}

.tp-related-posts {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(11, 31, 51, 0.1);
}

/* Responsive */
@media (max-width: 1200px) {
	.tp-blog-grid--4 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 960px) {
	.tp-blog-layout,
	.tp-article-layout {
		grid-template-columns: 1fr;
	}

	.tp-blog-sidebar {
		position: static;
	}

	.tp-blog-grid--4,
	.tp-blog-grid--3,
	.tp-blog-grid--magazine {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tp-blog-search {
		max-width: none;
	}

	.tp-blog-featured,
	.tp-blog-featured__overlay,
	.tp-blog-featured__link {
		min-height: 420px;
	}
}

@media (min-width: 768px) and (max-width: 1199px) {
	.tp-blog-layout:not(.tp-blog-layout--magazine),
	.tp-article-layout {
		grid-template-columns: minmax(0, 1.7fr) minmax(220px, 0.7fr);
		gap: 1.75rem;
		align-items: start;
	}

	.tp-blog-layout--magazine {
		grid-template-columns: minmax(0, 1fr);
	}

	.tp-blog-sidebar {
		position: sticky;
		top: 6.5rem;
	}

	.tp-blog-grid--4,
	.tp-blog-grid--3,
	.tp-blog-grid--magazine,
	.tp-blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.25rem;
	}
}

@media (min-width: 1024px) and (max-width: 1199px) {
	.tp-blog-grid--4,
	.tp-blog-grid--3,
	.tp-blog-grid--magazine {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.tp-blog-masthead {
		min-height: 0;
		padding-bottom: 1.35rem;
		background-position: center 40%;
	}

	.tp-blog-masthead__bg::after {
		background: linear-gradient(
			180deg,
			rgba(11, 31, 51, 0.78) 0%,
			rgba(11, 31, 51, 0.68) 48%,
			rgba(11, 31, 51, 0.52) 100%
		);
	}

	.tp-blog-grid,
	.tp-blog-grid--4,
	.tp-blog-grid--3,
	.tp-blog-grid--magazine {
		grid-template-columns: 1fr;
	}

	.tp-blog-search {
		max-width: none;
	}

	.tp-blog-search__btn {
		width: 100%;
	}

	.tp-blog-featured,
	.tp-blog-featured__overlay,
	.tp-blog-featured__link {
		min-height: 380px;
	}

	.tp-blog-featured__overlay {
		padding: 1.5rem 1.25rem;
	}

	.tp-blog-card,
	.tp-blog-card__link,
	.tp-blog-card__overlay {
		min-height: 240px;
	}

	.tp-article-cta {
		flex-direction: column;
		text-align: center;
	}
}

.tp-blog-masthead__eyebrow {
	margin: 0.85rem 0 0;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #fff;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.tp-blog-masthead .tp-blog-search__input {
	background: #fff;
	color: var(--tp-navy, #0b1f33);
	border-color: rgba(255, 255, 255, 0.85);
}

.tp-blog-masthead .tp-blog-search__input::placeholder {
	color: rgba(11, 31, 51, 0.55);
}

.tp-blog-masthead .tp-blog-search__btn.tp-btn--navy {
	background: var(--tp-yellow, #ffd33d);
	color: var(--tp-navy, #0b1f33);
	border-color: var(--tp-yellow, #ffd33d);
}

body.tecnopets-ui .tp-blog-masthead .tp-blog-cluster {
	background: rgba(255, 255, 255, 0.94);
	color: var(--tp-navy, #0b1f33);
	border: 1px solid rgba(255, 255, 255, 0.98);
}

body.tecnopets-ui .tp-blog-masthead .tp-blog-cluster:hover,
body.tecnopets-ui .tp-blog-masthead .tp-blog-cluster.is-active {
	background: var(--tp-yellow, #ffd24a);
	color: var(--tp-navy, #0b1f33);
	border-color: var(--tp-yellow, #ffd24a);
}

body.tecnopets-ui .tp-blog-masthead .tp-blog-filter {
	background: rgba(255, 255, 255, 0.94);
	color: var(--tp-navy, #0b1f33);
	border-color: rgba(255, 255, 255, 0.98);
}

body.tecnopets-ui .tp-blog-masthead .tp-blog-filter:hover,
body.tecnopets-ui .tp-blog-masthead .tp-blog-filter.is-active {
	background: var(--tp-yellow, #ffd24a);
	color: var(--tp-navy, #0b1f33);
	border-color: var(--tp-yellow, #ffd24a);
}

.tp-blog-clusters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin: 0 0 1rem;
}

.tp-blog-cluster {
	display: inline-flex;
	align-items: center;
	padding: 0.55rem 1.05rem;
	border-radius: var(--tp-radius-pill, 999px);
	background: var(--tp-navy, #0b1f33);
	color: #fff;
	font-size: 0.875rem;
	font-weight: 700;
	text-decoration: none;
}

.tp-blog-cluster:hover,
.tp-blog-cluster.is-active {
	background: var(--tp-yellow, #ffd24a);
	color: var(--tp-navy, #0b1f33);
}

.tp-blog-cluster:focus-visible {
	outline: 2px solid var(--tp-yellow, #ffd24a);
	outline-offset: 2px;
}

.tp-blog-trust {
	background: var(--tp-navy, #0b1f33);
	color: #fff;
	margin-top: 1.25rem;
}

.tp-blog-trust__inner {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem 1.5rem;
	padding: 0.9rem 0;
	font-size: 0.8125rem;
	font-weight: 600;
}

.tp-blog-trust__inner p {
	margin: 0;
	opacity: 0.92;
}

.tp-blog-bento {
	display: grid;
	grid-template-columns: 1.35fr 1fr 1fr;
	grid-template-rows: minmax(240px, 1fr) minmax(240px, 1fr);
	gap: 1rem;
	margin-bottom: 2.5rem;
	min-height: min(68vh, 620px);
}

.tp-blog-bento .tp-blog-featured {
	grid-column: 1;
	grid-row: 1 / 3;
	margin: 0;
	min-height: 100%;
	height: 100%;
}

.tp-blog-bento .tp-blog-featured,
.tp-blog-bento .tp-blog-featured__overlay,
.tp-blog-bento .tp-blog-featured__link {
	min-height: 100%;
	height: 100%;
}

.tp-blog-bento .tp-blog-card,
.tp-blog-bento .tp-blog-card__link,
.tp-blog-bento .tp-blog-card__overlay {
	min-height: 100%;
	height: 100%;
}

.tp-blog-more-title {
	font-family: var(--tp-font-display, 'Nunito', sans-serif);
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--tp-navy, #0b1f33);
	margin: 0 0 1rem;
}

.tp-blog-hubs {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	margin: 0 0 2.75rem;
}

.tp-blog-hub__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}

.tp-blog-hub__head h2 {
	font-family: var(--tp-font-display, 'Nunito', sans-serif);
	font-size: clamp(1.35rem, 3vw, 1.85rem);
	font-weight: 800;
	margin: 0 0 0.25rem;
	color: var(--tp-navy, #0b1f33);
}

.tp-blog-hub__head p {
	margin: 0;
	color: var(--tp-text-muted, #4a5568);
}

.tp-blog-hub__actions {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.tp-blog-hub .tp-link-more {
	display: inline-flex;
	font-weight: 700;
	color: var(--tp-navy, #0b1f33);
	text-decoration: none;
}

.tp-blog-hub .tp-link-more:hover {
	text-decoration: underline;
}

.tp-btn--sm {
	padding: 0.45rem 0.95rem;
	font-size: 0.8125rem;
}

.tp-blog-grid--hub {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tp-blog-empty {
	background: #fff;
	border-radius: var(--tp-radius-xl, 22px);
	padding: 2.5rem 1.75rem;
	text-align: center;
	box-shadow: 0 8px 28px rgba(11, 31, 51, 0.08);
}

.tp-blog-empty h2 {
	font-family: var(--tp-font-display, 'Nunito', sans-serif);
	margin: 0 0 0.5rem;
	color: var(--tp-navy, #0b1f33);
}

.tp-blog-empty__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.tp-blog-newsletter {
	background: linear-gradient(180deg, #fff0f5 0%, #fff 100%);
	padding: 2.5rem 0 3.5rem;
}

.tp-blog-newsletter__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(240px, 0.7fr);
	gap: 1.5rem;
	align-items: center;
	background: #fff;
	border-radius: var(--tp-radius-xl, 22px);
	padding: 1.75rem 2rem;
	box-shadow: 0 8px 28px rgba(11, 31, 51, 0.08);
}

.tp-blog-newsletter h2 {
	font-family: var(--tp-font-display, 'Nunito', sans-serif);
	margin: 0 0 0.35rem;
	color: var(--tp-navy, #0b1f33);
}

.tp-blog-newsletter p {
	margin: 0;
	color: var(--tp-text-muted, #4a5568);
}

.tp-blog-widget__shop {
	display: block;
	margin-top: 0.75rem;
	text-align: center;
	color: #fff;
	font-size: 0.8125rem;
	opacity: 0.85;
}

.tp-read-progress {
	position: sticky;
	top: 0;
	z-index: 40;
	height: 4px;
	background: rgba(11, 31, 51, 0.08);
}

.tp-read-progress span {
	display: block;
	height: 100%;
	width: 0;
	background: var(--tp-yellow, #ffd24a);
}

.tp-article-content .tp-alert-box,
.tp-article-content .tp-urgent-box {
	border-radius: var(--tp-radius-md, 12px);
	padding: 1rem 1.25rem;
	margin: 1.25rem 0;
	font-size: 0.9375rem;
}

.tp-article-content .tp-alert-box {
	background: #fff6db;
	border-left: 4px solid var(--tp-yellow, #ffd24a);
}

.tp-article-content .tp-urgent-box {
	background: #ffe8e4;
	border-left: 4px solid #e35d4b;
}

.tp-article-kit {
	background: var(--tp-navy, #0b1f33);
	color: #fff;
	border-radius: var(--tp-radius-xl, 22px);
	padding: 1.75rem 1.5rem 1.5rem;
	margin: 2.25rem 0;
}

.tp-article-kit__eyebrow {
	margin: 0 0 0.35rem;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--tp-yellow, #ffd24a);
}

.tp-article-kit h2 {
	font-family: var(--tp-font-display, 'Nunito', sans-serif);
	margin: 0 0 0.4rem;
	color: #fff;
	font-size: 1.35rem;
}

.tp-article-kit__head p {
	margin: 0 0 1.15rem;
	opacity: 0.88;
}

.tp-article-kit__cats {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-top: 1rem;
}

.tp-article-kit .products {
	margin: 0;
}

.tp-article-kit .products li.product {
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
	color: var(--tp-navy, #0b1f33);
}

.tp-article-faq {
	margin: 2rem 0;
}

.tp-article-faq h2 {
	font-family: var(--tp-font-display, 'Nunito', sans-serif);
	color: var(--tp-navy, #0b1f33);
	margin: 0 0 1rem;
}

.tp-article-faq details {
	background: #fff;
	border: 1px solid rgba(11, 31, 51, 0.1);
	border-radius: 14px;
	padding: 0.85rem 1rem;
	margin-bottom: 0.65rem;
}

.tp-article-faq summary {
	font-weight: 700;
	cursor: pointer;
	color: var(--tp-navy, #0b1f33);
}

.tp-article-faq details p {
	margin: 0.65rem 0 0;
	color: var(--tp-text-muted, #4a5568);
}

.tp-article-disclaimer {
	background: #f4f7fb;
	border-radius: var(--tp-radius-xl, 22px);
	padding: 1.1rem 1.25rem;
	margin: 1.5rem 0 2rem;
	font-size: 0.875rem;
	color: #4a5568;
}

.tp-article-disclaimer p {
	margin: 0;
}

.tp-article-toc {
	position: sticky;
	top: 5.5rem;
	z-index: 2;
}

@media (max-width: 960px) {
	.tp-blog-trust__inner,
	.tp-blog-newsletter__inner,
	.tp-blog-bento,
	.tp-blog-grid--hub {
		grid-template-columns: 1fr;
	}

	.tp-blog-bento {
		grid-template-rows: none;
		min-height: 0;
	}

	.tp-blog-bento .tp-blog-featured {
		grid-column: auto;
		grid-row: auto;
		min-height: 380px;
	}

	.tp-blog-trust__inner {
		padding: 1rem 0;
	}
}

@media (min-width: 641px) and (max-width: 960px) {
	.tp-blog-bento {
		grid-template-columns: 1fr 1fr;
	}

	.tp-blog-bento .tp-blog-featured {
		grid-column: 1 / -1;
	}

	.tp-blog-grid--hub {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (prefers-reduced-motion: reduce) {
	.tp-blog-card__link img,
	.tp-blog-featured__link img {
		transition: none;
	}

	.tp-blog-card:hover .tp-blog-card__link img,
	.tp-blog-featured:hover .tp-blog-featured__link img {
		transform: none;
	}

	.tp-read-progress span {
		transition: none;
	}
}
