/* ══════════════════════════════════════════════
   Petsify Blogs — Stylesheet v1.0
   Brand: burnt orange #C94B00 · cream #FBF5EE
   ══════════════════════════════════════════════ */

@import url('https://api.fontshare.com/v2/css?f[]=recoleta@400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
	--pb-orange: #C94B00;
	--pb-orange-dk: #A33B00;
	--pb-orange-lt: #FFF0E8;
	--pb-orange-mid: #E55A00;
	--pb-cream: #FBF5EE;
	--pb-cream-dk: #F2E8DC;
	--pb-dark: #2B2F3A;
	--pb-dark-lt: #3D4155;
	--pb-text: #1C1C1C;
	--pb-text-2: #444444;
	--pb-muted: #767676;
	--pb-border: #E5D8CF;
	--pb-white: #FFFFFF;
	--pb-radius: 12px;
	--pb-radius-sm: 8px;
	--pb-shadow: 0 2px 16px rgba(43, 47, 58, .08);
	--pb-shadow-hover: 0 8px 32px rgba(43, 47, 58, .16);
	--pb-transition: 0.22s cubic-bezier(.4, 0, .2, 1);
	--pb-font-serif: Georgia, 'Times New Roman', serif;
	--pb-font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

/* ── Page Shell ── */
.pb-page {
	background: var(--pb-cream);
	min-height: 60vh;
	font-family: var(--pb-font-body);
	color: var(--pb-text);
	--pb-font-serif: 'Recoleta', Georgia, 'Times New Roman', serif !important;
}

.pb-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 28px;
}

/* ────────────────────────────────────────────
   BADGE / PILL
──────────────────────────────────────────── */
.pb-badge {
	display: inline-block;
	align-self: flex-start;
	background: var(--pb-orange);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: 4px 13px;
	border-radius: 50px;
	text-decoration: none;
	line-height: 1.5;
}

.pb-badge:hover {
	background: var(--pb-orange-dk);
}

/* ────────────────────────────────────────────
   CAROUSEL
──────────────────────────────────────────── */
.pb-carousel-section {
	background: var(--pb-dark);
	position: relative;
}

.pb-carousel {
	position: relative;
	overflow: hidden;
	height: 540px;
	-webkit-user-select: none;
	user-select: none;
}

.pb-carousel-track {
	display: flex;
	height: 100%;
	will-change: transform;
	transition: transform .55s cubic-bezier(.4, 0, .2, 1);
}

.pb-carousel-slide {
	min-width: 100%;
	position: relative;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}

/* Background image */
.pb-carousel-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 7s ease;
}

.pb-carousel-slide:hover .pb-carousel-bg {
	transform: scale(1.04);
}

.pb-carousel-bg--placeholder {
	background: linear-gradient(140deg, var(--pb-dark) 0%, var(--pb-dark-lt) 100%);
}

/* Gradient overlay */
.pb-carousel-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to top, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .1) 55%, transparent 100%),
		linear-gradient(to right, rgba(0, 0, 0, .4) 0%, transparent 70%);
}

/* Slide content */
.pb-carousel-content {
	position: relative;
	z-index: 3;
	padding: 64px 80px;
	max-width: 760px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.pb-carousel-title {
	font-family: var(--pb-font-serif);
	font-size: clamp(26px, 3.6vw, 46px);
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	margin: 0;
	text-shadow: 0 2px 12px rgba(0, 0, 0, .3);
}

.pb-carousel-excerpt {
	color: rgba(255, 255, 255, .82);
	font-size: 16px;
	line-height: 1.65;
	margin: 0;
	max-width: 540px;
}

.pb-carousel-foot {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
	margin-top: 6px;
}

.pb-carousel-meta {
	color: rgba(255, 255, 255, .65);
	font-size: 13px;
}

.pb-carousel-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--pb-orange);
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	padding: 13px 30px;
	border-radius: 50px;
	text-decoration: none;
	transition: var(--pb-transition);
	white-space: nowrap;
}

.pb-carousel-btn:hover {
	background: var(--pb-orange-dk);
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(201, 75, 0, .45);
	color: #fff;
}

/* Arrows */
.pb-carousel-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, .12);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1.5px solid rgba(255, 255, 255, .22);
	color: #fff;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--pb-transition);
	z-index: 10;
	line-height: 1;
	padding-bottom: 5px;
}

.pb-carousel-nav:hover {
	background: var(--pb-orange);
	border-color: var(--pb-orange);
	transform: translateY(-50%) scale(1.08);
}

.pb-carousel-prev {
	left: 28px;
}

.pb-carousel-next {
	right: 28px;
}

/* Dots */
.pb-carousel-dots {
	position: absolute;
	bottom: 28px;
	right: 80px;
	display: flex;
	align-items: center;
	gap: 7px;
	z-index: 10;
}

.pb-carousel-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .35);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: var(--pb-transition);
	flex-shrink: 0;
}

.pb-carousel-dot.active {
	background: var(--pb-orange);
	width: 26px;
	border-radius: 4px;
}

.pb-carousel-dot:hover:not(.active) {
	background: rgba(255, 255, 255, .65);
}

/* ────────────────────────────────────────────
   INLINE SEARCH (in articles header)
──────────────────────────────────────────── */
.pb-inline-search {
	flex-shrink: 0;
}

.pb-inline-search-inner {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--pb-white);
	border: 1.5px solid var(--pb-border);
	border-radius: 50px;
	padding: 7px 7px 7px 16px;
	transition: var(--pb-transition);
	color: var(--pb-muted);
}

.pb-inline-search-inner:focus-within {
	border-color: var(--pb-orange);
	box-shadow: 0 0 0 3px rgba(201, 75, 0, .09);
	color: var(--pb-orange);
}

.pb-inline-search-input {
	border: none;
	background: none;
	font-size: 14px;
	color: var(--pb-text);
	outline: none;
	font-family: var(--pb-font-body);
	width: 190px;
	min-width: 0;
}

.pb-inline-search-input::placeholder {
	color: var(--pb-muted);
}

.pb-inline-search-btn {
	background: var(--pb-orange);
	color: #fff;
	border: none;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	flex-shrink: 0;
	transition: var(--pb-transition);
}

.pb-inline-search-btn:hover {
	background: var(--pb-orange-dk);
}

/* ────────────────────────────────────────────
   MAIN / LISTING AREA
──────────────────────────────────────────── */
.pb-main {
	padding: 0 0 96px;
}

/* Listing header */
.pb-listing-header {
	padding: 40px 0 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.pb-listing-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--pb-orange);
}

.pb-listing-title {
	font-family: var(--pb-font-serif);
	font-size: clamp(24px, 4vw, 38px);
	margin: 0;
	line-height: 1.2;
}

.pb-listing-title em {
	color: var(--pb-orange);
	font-style: normal;
}

.pb-result-count {
	font-size: 16px;
	color: var(--pb-muted);
	font-weight: 400;
	margin-left: 12px;
	font-family: var(--pb-font-body);
}

.pb-listing-desc {
	color: var(--pb-muted);
	font-size: 15px;
	max-width: 600px;
	margin: 0;
}

.pb-clear-btn {
	align-self: flex-start;
	color: var(--pb-muted);
	font-size: 14px;
	text-decoration: none;
	border: 1px solid var(--pb-border);
	padding: 7px 18px;
	border-radius: 50px;
	transition: var(--pb-transition);
	margin-top: 6px;
}

.pb-clear-btn:hover {
	border-color: var(--pb-orange);
	color: var(--pb-orange);
}

/* Category nav pills */
.pb-cat-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 28px 0 0;
}

.pb-cat-pill {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 7px 18px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	border: 1.5px solid var(--pb-border);
	background: var(--pb-white);
	color: var(--pb-text-2);
	transition: var(--pb-transition);
}

.pb-cat-pill sup {
	font-size: 10px;
	color: var(--pb-muted);
	font-weight: 400;
}

.pb-cat-pill:hover,
.pb-cat-pill.active {
	background: var(--pb-orange);
	border-color: var(--pb-orange);
	color: #fff;
}

.pb-cat-pill.active sup,
.pb-cat-pill:hover sup {
	color: rgba(255, 255, 255, .75);
}

/* ────────────────────────────────────────────
   ARTICLES SECTION HEADER
──────────────────────────────────────────── */
.pb-articles-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 44px 0 0;
	border-top: 2px solid var(--pb-border);
	margin-top: 28px;
	flex-wrap: wrap;
}

.pb-articles-heading-group {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.pb-articles-heading {
	font-family: var(--pb-font-serif);
	font-size: 22px;
	font-weight: 700;
	color: var(--pb-text);
	margin: 0;
	display: flex;
	align-items: center;
	gap: 14px;
}

.pb-articles-heading em {
	font-style: normal;
	color: var(--pb-orange);
}

.pb-articles-heading::before {
	content: '';
	display: inline-block;
	width: 5px;
	height: 26px;
	background: var(--pb-orange);
	border-radius: 3px;
	flex-shrink: 0;
}

/* ────────────────────────────────────────────
   BLOG GRID
──────────────────────────────────────────── */
.pb-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 28px;
}

/* Card */
.pb-card {
	background: var(--pb-white);
	border-radius: var(--pb-radius);
	overflow: hidden;
	box-shadow: var(--pb-shadow);
	transition: transform var(--pb-transition), box-shadow var(--pb-transition);
	display: flex;
	flex-direction: column;
}

.pb-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--pb-shadow-hover);
}

/* Featured card: spans full row, horizontal layout */
.pb-card--featured {
	grid-column: 1 / -1;
	flex-direction: row;
}

.pb-card--featured .pb-card-image-wrap {
	flex: 0 0 56%;
	height: auto;
	min-height: 400px;
}

.pb-card--featured .pb-card-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 52px 56px;
	gap: 0;
	background: var(--pb-cream);
	border-left: 4px solid var(--pb-orange);
}

.pb-feat-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--pb-orange);
	margin-bottom: 16px;
}

.pb-feat-label::before {
	content: '';
	display: inline-block;
	width: 22px;
	height: 2px;
	background: var(--pb-orange);
	flex-shrink: 0;
}

.pb-card--featured .pb-card-title {
	font-size: clamp(22px, 2.2vw, 32px);
	margin-bottom: 14px;
	line-height: 1.22;
}

.pb-card--featured .pb-card-excerpt {
	font-size: 15px;
	line-height: 1.72;
	-webkit-line-clamp: 4;
	padding-bottom: 0;
	margin-bottom: 0;
}

/* Card image */
.pb-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.pb-card-image-wrap {
	position: relative;
	overflow: hidden;
	height: 230px;
	background: var(--pb-cream-dk);
}

.pb-card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .5s ease;
}

.pb-card:hover .pb-card-image {
	transform: scale(1.07);
}

.pb-card-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pb-card-cat {
	position: absolute;
	top: 14px;
	left: 14px;
	background: var(--pb-orange);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: 4px 11px;
	border-radius: 50px;
}

.pb-read-time {
	position: absolute;
	bottom: 12px;
	right: 12px;
	background: rgba(0, 0, 0, .52);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	color: rgba(255, 255, 255, .92);
	font-size: 11px;
	font-weight: 600;
	padding: 3px 10px;
	border-radius: 50px;
}

/* Card body */
.pb-card-body {
	padding: 22px 26px 26px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.pb-card-title {
	font-family: 'Recoleta', Georgia, 'Times New Roman', serif !important;
	font-size: 18px;
	font-weight: 700;
	color: var(--pb-text);
	line-height: 1.35;
	margin: 0 0 10px;
}

.pb-card-title a {
	color: inherit;
	text-decoration: none;
	transition: color var(--pb-transition);
	font-family: inherit !important;
}

.pb-card:hover .pb-card-title a {
	color: var(--pb-orange);
}

.pb-card-excerpt {
	color: var(--pb-muted);
	font-size: 14px;
	line-height: 1.7;
	margin: 0 0 auto;
	padding-bottom: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: 1;
}

/* Card footer: meta + CTA */
.pb-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	border-top: 1px solid var(--pb-border);
	padding-top: 16px;
	margin-top: 18px;
	flex-wrap: wrap;
}

.pb-card-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	color: var(--pb-muted);
	flex: 1;
	min-width: 0;
}

.pb-card-author {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.pb-card-author>span {
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
}

.pb-card-author strong {
	font-size: 13px;
	font-weight: 600;
	color: var(--pb-text);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pb-card-date {
	display: block;
	font-size: 12px;
	color: var(--pb-muted);
}

.pb-card-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--pb-orange);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: gap var(--pb-transition), color var(--pb-transition);
	flex-shrink: 0;
}

.pb-card-cta:hover {
	color: var(--pb-orange-dk);
	gap: 10px;
}

.pb-avatar-wrapper {
	display: block;
}

.pb-avatar-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ────────────────────────────────────────────
   PAGINATION
──────────────────────────────────────────── */
.pb-pagination {
	margin-top: 64px;
	display: flex;
	justify-content: center;
}

.pb-pagination .page-numbers {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.pb-pagination .page-numbers li {}

.pb-pagination a.page-numbers,
.pb-pagination span.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	border-radius: 50%;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	color: var(--pb-text-2);
	border: 1.5px solid var(--pb-border);
	background: var(--pb-white);
	transition: var(--pb-transition);
	padding: 0 10px;
}

.pb-pagination a.page-numbers:hover,
.pb-pagination span.page-numbers.current {
	background: var(--pb-orange);
	border-color: var(--pb-orange);
	color: #fff;
}

.pb-pagination a.page-numbers.prev,
.pb-pagination a.page-numbers.next {
	border-radius: 50px;
	padding: 0 20px;
}

/* ────────────────────────────────────────────
   NO RESULTS
──────────────────────────────────────────── */
.pb-no-results {
	text-align: center;
	padding: 96px 0;
}

.pb-no-results-icon {
	margin-bottom: 28px;
}

.pb-no-results h2 {
	font-family: var(--pb-font-serif);
	font-size: 28px;
	margin-bottom: 12px;
}

.pb-no-results p {
	color: var(--pb-muted);
	font-size: 16px;
	max-width: 400px;
	margin: 0 auto 28px;
}

/* Generic button */
.pb-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--pb-orange);
	color: #fff;
	padding: 13px 32px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	transition: var(--pb-transition);
	border: none;
	cursor: pointer;
}

.pb-btn:hover {
	background: var(--pb-orange-dk);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(201, 75, 0, .35);
	color: #fff;
}

/* ────────────────────────────────────────────
   SINGLE — HERO
──────────────────────────────────────────── */
.pb-single-hero {
	position: relative;
	min-height: 440px;
	display: flex;
	align-items: flex-end;
	background: var(--pb-dark);
	overflow: hidden;
}

.pb-single-hero--has-image {
	min-height: 480px;
}

.pb-single-hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.pb-single-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .25) 65%, transparent 100%);
}

.pb-single-hero-inner {
	position: relative;
	z-index: 2;
	padding: 60px 0;
	max-width: 860px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

/* Breadcrumb */
.pb-breadcrumb {
	font-size: 13px;
	color: rgba(255, 255, 255, .55);
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.pb-breadcrumb a {
	color: rgba(255, 255, 255, .55);
	text-decoration: none;
	transition: color var(--pb-transition);
}

.pb-breadcrumb a:hover {
	color: #fff;
}

.pb-single-badge {
	margin-top: 4px;
}

.pb-single-title {
	font-family: var(--pb-font-serif);
	font-size: clamp(26px, 4.5vw, 52px);
	color: #fff;
	line-height: 1.18;
	margin: 0;
	font-weight: 700;
	text-shadow: 0 2px 20px rgba(0, 0, 0, .45);
	letter-spacing: -.01em;
}

.pb-single-deck {
	color: rgba(255, 255, 255, .78);
	font-size: 17px;
	line-height: 1.65;
	margin: 0;
	max-width: 680px;
}

.pb-single-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 6px;
}

.pb-meta-avatar {
	border-radius: 50%;
}

.pb-meta-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.pb-meta-author {
	color: #fff;
	font-weight: 700;
	font-size: 14px;
}

.pb-meta-details {
	color: rgba(255, 255, 255, .6);
	font-size: 13px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.pb-meta-sep {
	opacity: .5;
}

/* ────────────────────────────────────────────
   SINGLE — LAYOUT
──────────────────────────────────────────── */
.pb-single-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 48px;
	padding: 48px 0 96px;
	align-items: start;
}

/* Post body */
.pb-post-body {
	background: var(--pb-white);
	border-radius: var(--pb-radius);
	padding: 48px 52px;
	box-shadow: var(--pb-shadow);
	font-size: 17px;
	line-height: 1.82;
	color: var(--pb-text-2);
}

.pb-post-body>*+* {
	margin-top: 1.4em;
}

.pb-post-body>*:first-child {
	margin-top: 0;
}

.pb-post-body h1 {
	font-family: var(--pb-font-serif);
	color: #0D0D0D;
	line-height: 1.2;
}

.pb-post-body h2,
.pb-post-body h3 {
	font-family: 'Poppins', sans-serif !important;
	color: var(--pb-text);
	line-height: 1.3;
}

.pb-post-body h4 {
	font-family: var(--pb-font-serif);
	color: var(--pb-text);
	line-height: 1.3;
}

.pb-post-body h2 {
	font-size: 26px;
	margin-top: 1.8em;
	font-weight: 700;
}

.pb-post-body h3 {
	font-size: 20px;
	margin-top: 1.6em;
	font-weight: 600;
}

.pb-post-body h4 {
	font-size: 18px;
	margin-top: 1.4em;
}

.pb-post-body a {
	color: var(--pb-orange);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.pb-post-body a:hover {
	color: var(--pb-orange-dk);
}

.pb-post-body img {
	max-width: 100%;
	height: auto;
	border-radius: var(--pb-radius-sm);
	display: block;
}

.pb-post-body ul,
.pb-post-body ol {
	padding-left: 1.5em;
}

.pb-post-body li+li {
	margin-top: .5em;
}

.pb-post-body blockquote {
	border-left: 4px solid var(--pb-orange);
	margin: 2em 0;
	padding: 18px 28px;
	background: var(--pb-orange-lt);
	border-radius: 0 var(--pb-radius-sm) var(--pb-radius-sm) 0;
	font-style: italic;
	font-size: 18px;
	color: var(--pb-text);
}

.pb-post-body blockquote p {
	margin: 0;
}

.pb-post-body hr {
	border: none;
	border-top: 2px solid var(--pb-border);
	margin: 3em 0;
}

.pb-post-body pre {
	background: var(--pb-dark);
	color: #e2e8f0;
	padding: 20px 24px;
	border-radius: var(--pb-radius-sm);
	overflow-x: auto;
	font-size: 14px;
	line-height: 1.6;
}

.pb-post-body code {
	background: var(--pb-cream-dk);
	color: var(--pb-orange-dk);
	padding: 2px 6px;
	border-radius: 4px;
	font-size: .9em;
}

.pb-post-body pre code {
	background: none;
	color: inherit;
	padding: 0;
}

.pb-post-body .wp-block-image figcaption {
	font-size: 13px;
	color: var(--pb-muted);
	text-align: center;
	margin-top: 8px;
}

/* Page links (multi-page posts) */
.pb-page-links {
	padding: 20px 0 0;
	font-size: 14px;
	color: var(--pb-muted);
}

.pb-page-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1.5px solid var(--pb-border);
	margin: 0 3px;
	font-weight: 600;
	transition: var(--pb-transition);
}

.pb-page-links a:hover {
	background: var(--pb-orange);
	border-color: var(--pb-orange);
	color: #fff;
}

/* Tags */
.pb-post-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-top: 36px;
}

.pb-tags-label {
	font-size: 13px;
	font-weight: 700;
	color: var(--pb-muted);
	text-transform: uppercase;
	letter-spacing: .06em;
}

.pb-tag {
	display: inline-block;
	background: var(--pb-orange-lt);
	color: var(--pb-orange);
	font-size: 13px;
	font-weight: 600;
	padding: 5px 14px;
	border-radius: 50px;
	text-decoration: none;
	border: 1.5px solid rgba(201, 75, 0, .18);
	transition: var(--pb-transition);
}

.pb-tag:hover {
	background: var(--pb-orange);
	color: #fff;
	border-color: var(--pb-orange);
}

/* Author box */
.pb-author-box {
	display: flex;
	align-items: flex-start;
	gap: 22px;
	background: var(--pb-cream);
	border-radius: var(--pb-radius);
	padding: 28px 32px;
	margin-top: 36px;
	border: 1.5px solid var(--pb-border);
}

.pb-author-avatar {
	border-radius: 50%;
}

.pb-author-info {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.pb-author-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--pb-muted);
	font-weight: 700;
}

.pb-author-name {
	font-family: var(--pb-font-serif);
	font-size: 20px;
	color: var(--pb-text);
}

.pb-author-bio {
	color: var(--pb-muted);
	font-size: 14px;
	line-height: 1.65;
	margin: 0;
}

/* Post navigation */
.pb-post-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 36px;
}

.pb-post-nav-link {
	background: var(--pb-white);
	border-radius: var(--pb-radius);
	padding: 20px 24px;
	text-decoration: none;
	border: 1.5px solid var(--pb-border);
	transition: var(--pb-transition);
	display: flex;
	align-items: center;
	gap: 14px;
}

.pb-post-nav-link:hover {
	border-color: var(--pb-orange);
	box-shadow: var(--pb-shadow);
}

.pb-post-nav-next {
	justify-content: flex-end;
	text-align: right;
}

.pb-nav-arrow {
	font-size: 22px;
	color: var(--pb-orange);
	flex-shrink: 0;
	transition: transform var(--pb-transition);
}

.pb-post-nav-prev:hover .pb-nav-arrow {
	transform: translateX(-4px);
}

.pb-post-nav-next:hover .pb-nav-arrow {
	transform: translateX(4px);
}

.pb-nav-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.pb-nav-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--pb-orange);
	font-weight: 700;
}

.pb-nav-title {
	font-family: var(--pb-font-serif);
	font-size: 15px;
	font-weight: 600;
	color: var(--pb-text);
	line-height: 1.3;
}

/* ────────────────────────────────────────────
   SIDEBAR
──────────────────────────────────────────── */
.pb-sidebar {
	position: sticky;
	top: 100px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.pb-widget {
	background: var(--pb-white);
	border-radius: var(--pb-radius);
	padding: 24px 26px;
	box-shadow: var(--pb-shadow);
}

.pb-widget-title {
	font-family: var(--pb-font-serif);
	font-size: 17px;
	font-weight: 700;
	color: var(--pb-text);
	margin: 0 0 18px;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--pb-orange);
}

/* Sidebar search */
.pb-sidebar-search-inner {
	display: flex;
	align-items: stretch;
	border: 1.5px solid var(--pb-border);
	border-radius: var(--pb-radius-sm);
	overflow: hidden;
	transition: var(--pb-transition);
}

.pb-sidebar-search-inner:focus-within {
	border-color: var(--pb-orange);
	box-shadow: 0 0 0 2px rgba(201, 75, 0, .1);
}

.pb-sidebar-search-input {
	flex: 1;
	border: none;
	padding: 10px 14px;
	font-size: 14px;
	outline: none;
	background: none;
	font-family: var(--pb-font-body);
	min-width: 0;
}

.pb-sidebar-search-btn {
	background: var(--pb-orange);
	border: none;
	padding: 0 14px;
	cursor: pointer;
	color: #fff;
	display: flex;
	align-items: center;
	transition: var(--pb-transition);
}

.pb-sidebar-search-btn:hover {
	background: var(--pb-orange-dk);
}

/* Latest posts */
.pb-latest-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.pb-latest-item {
	border-bottom: 1px solid var(--pb-border);
	padding: 14px 0;
}

.pb-latest-item:first-child {
	padding-top: 0;
}

.pb-latest-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.pb-latest-link {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	text-decoration: none;
}

.pb-latest-thumb {
	width: 64px !important;
	height: 64px !important;
	object-fit: cover;
	border-radius: var(--pb-radius-sm);
	flex-shrink: 0;
}

.pb-latest-thumb--empty {
	background: var(--pb-cream-dk);
	border-radius: var(--pb-radius-sm);
}

.pb-latest-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex: 1;
}

.pb-latest-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--pb-text);
	line-height: 1.4;
	transition: color var(--pb-transition);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.pb-latest-link:hover .pb-latest-title {
	color: var(--pb-orange);
}

.pb-latest-date {
	font-size: 12px;
	color: var(--pb-muted);
}

/* Categories */
.pb-cats-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.pb-cats-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	color: var(--pb-text-2);
	border-bottom: 1px solid var(--pb-border);
	transition: color var(--pb-transition);
}

.pb-cats-list li:last-child .pb-cats-link {
	border-bottom: none;
}

.pb-cats-link:hover {
	color: var(--pb-orange);
}

.pb-cats-count {
	background: var(--pb-cream-dk);
	color: var(--pb-muted);
	font-size: 12px;
	font-weight: 600;
	padding: 2px 8px;
	border-radius: 50px;
	min-width: 26px;
	text-align: center;
}

/* Back link widget */
.pb-widget-back {
	background: var(--pb-orange-lt);
	border: 1.5px solid rgba(201, 75, 0, .15);
}

.pb-back-link {
	display: flex;
	align-items: center;
	gap: 9px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	color: var(--pb-orange);
	transition: gap var(--pb-transition);
}

.pb-back-link:hover {
	gap: 12px;
	color: var(--pb-orange-dk);
}

/* ── WP widget overrides ── */
.pb-sidebar .widget {
	background: var(--pb-white);
	border-radius: var(--pb-radius);
	padding: 24px 26px;
	box-shadow: var(--pb-shadow);
	margin: 0;
}

.pb-sidebar .widget-title,
.pb-sidebar .widgettitle {
	font-family: var(--pb-font-serif);
	font-size: 17px;
	font-weight: 700;
	color: var(--pb-text);
	margin: 0 0 18px;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--pb-orange);
}

.pb-sidebar .widget a {
	color: var(--pb-text-2);
	text-decoration: none;
}

.pb-sidebar .widget a:hover {
	color: var(--pb-orange);
}

/* ────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────── */
@media (max-width: 1100px) {
	.pb-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.pb-card--featured {
		flex-direction: column;
		grid-column: auto;
	}

	.pb-card--featured .pb-card-image-wrap {
		flex: none;
		height: 280px;
		min-height: 0;
	}

	.pb-card--featured .pb-card-body {
		padding: 28px 32px 32px;
	}

	.pb-card--featured .pb-card-title {
		font-size: 24px;
	}

	.pb-single-layout {
		grid-template-columns: 1fr 290px;
		gap: 32px;
	}
}

@media (max-width: 900px) {
	.pb-single-layout {
		grid-template-columns: 1fr;
	}

	.pb-sidebar {
		position: static;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}

	.pb-widget-back {
		grid-column: 1 / -1;
	}

	.pb-post-body {
		padding: 36px 32px;
	}

	.pb-carousel {
		height: 440px;
	}

	.pb-carousel-content {
		padding: 48px 40px;
	}
}

@media (max-width: 720px) {
	.pb-grid {
		grid-template-columns: 1fr;
	}

	.pb-articles-header {
		padding: 32px 0 0;
		margin-top: 20px;
		gap: 14px;
	}

	.pb-articles-heading {
		font-size: 18px;
	}

	.pb-inline-search-input {
		width: 130px;
	}

	.pb-carousel {
		height: 380px;
	}

	.pb-carousel-content {
		padding: 36px 24px;
	}

	.pb-carousel-nav {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}

	.pb-carousel-prev {
		left: 14px;
	}

	.pb-carousel-next {
		right: 14px;
	}

	.pb-carousel-dots {
		right: 24px;
		bottom: 20px;
	}

	.pb-post-body {
		padding: 28px 20px;
	}

	.pb-post-nav {
		grid-template-columns: 1fr;
	}

	.pb-sidebar {
		grid-template-columns: 1fr;
	}

	.pb-single-hero-inner {
		padding: 40px 0;
	}

	.pb-container {
		padding: 0 18px;
	}

	.pb-search-submit {
		padding: 10px 16px;
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	.pb-carousel {
		height: 320px;
	}

	.pb-carousel-title {
		font-size: 22px;
	}

	.pb-carousel-excerpt {
		display: none;
	}

	.pb-single-title {
		font-size: 24px;
	}

	.pb-carousel-nav {
		display: none;
	}
}