/* =========================================================
   WP BHAKTI BLOGGER
   SINGLE POST / ARTICLE CSS
   Premium Light Glossy Bhakti UI
   Developer: HikeWebSolution
   Design: Love Jangir
========================================================= */


/* =========================================================
   SINGLE PAGE
========================================================= */

.single-main {
	padding: 28px 0 60px;

	background:
		linear-gradient(
			180deg,
			#fffdf9 0%,
			#fffaf2 55%,
			#ffffff 100%
		);
}


/* =========================================================
   BREADCRUMB
========================================================= */

.wbb-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;

	gap: 7px;

	margin-bottom: 18px;
	padding: 10px 13px;

	border: 1px solid var(--wbb-border, #eadfce);
	border-radius: 10px;

	background: rgba(255, 255, 255, .78);

	color: var(--wbb-muted, #756b60);

	font-size: 11px;
	line-height: 1.5;

	box-shadow:
		0 4px 15px rgba(80, 50, 15, .035);
}

.wbb-breadcrumb a {
	color: var(--wbb-primary, #8b4d16);

	font-weight: 700;

	text-decoration: none;

	transition: color .2s ease;
}

.wbb-breadcrumb a:hover {
	color: var(--wbb-primary-dark, #67350d);
}

.wbb-breadcrumb > span {
	color: #b7aa99;
}

.wbb-breadcrumb .breadcrumb-current {
	max-width: 420px;

	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;

	color: var(--wbb-muted, #756b60);
}


/* =========================================================
   MAIN GRID
========================================================= */

.single-layout {
	display: grid;

	grid-template-columns:
		minmax(0, 1fr)
		300px;

	gap: 26px;

	align-items: start;
}

.single-article {
	min-width: 0;

	padding: 0;

	overflow: hidden;
}


/* =========================================================
   ARTICLE HEADER
========================================================= */

.single-header {
	padding: 8px 0 19px;
}

.single-header .wbb-category {
	display: inline-flex;
	align-items: center;

	margin-bottom: 11px;
	padding: 6px 10px;

	border: 1px solid rgba(212, 154, 66, .25);
	border-radius: 999px;

	background:
		linear-gradient(
			135deg,
			#fff8e9,
			#fff2d8
		);

	color: var(--wbb-primary, #8b4d16);

	font-size: 10px;
	font-weight: 800;

	line-height: 1;

	text-decoration: none;

	box-shadow:
		0 3px 10px rgba(120, 70, 15, .045);

	transition:
		transform .2s ease,
		box-shadow .2s ease;
}

.single-header .wbb-category:hover {
	transform: translateY(-1px);

	box-shadow:
		0 6px 15px rgba(120, 70, 15, .09);
}


/* =========================================================
   POST TITLE
========================================================= */

.single-header h1 {
	max-width: 980px;

	margin: 0 0 13px;

	color: var(--wbb-text, #30271f);

	font-size: clamp(30px, 4vw, 46px);

	font-weight: 850;

	line-height: 1.14;

	letter-spacing: -.035em;

	text-wrap: balance;
}


/* =========================================================
   POST META
========================================================= */

.single-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;

	gap: 7px;

	color: var(--wbb-muted, #756b60);

	font-size: 11.5px;

	line-height: 1.5;
}

.single-meta span {
	display: inline-flex;
	align-items: center;
}

.single-meta a {
	color: var(--wbb-primary, #8b4d16);

	font-weight: 700;

	text-decoration: none;
}

.single-meta a:hover {
	text-decoration: underline;
}


/* =========================================================
   FEATURED IMAGE
========================================================= */

.single-featured-wrap {
	margin: 4px 0 0;
	padding: 0;
}

.single-featured {
	display: block;

	width: 100%;
	height: auto;

	aspect-ratio: 16 / 9;

	object-fit: cover;

	border: 1px solid var(--wbb-border, #eadfce);

	border-radius: 16px;

	background: #fff;

	box-shadow:
		0 10px 30px rgba(75, 45, 15, .08);

	transition:
		transform .3s ease,
		box-shadow .3s ease;
}

.single-featured:hover {
	box-shadow:
		0 14px 38px rgba(75, 45, 15, .12);
}

.single-featured-wrap figcaption {
	margin-top: 7px;

	color: var(--wbb-muted, #756b60);

	font-size: 10px;

	line-height: 1.5;

	text-align: center;
}


/* =========================================================
   ARTICLE INTRO
========================================================= */

.wbb-post-intro {
	position: relative;

	margin-top: 24px;
	margin-bottom: 24px;

	padding: 15px 17px 15px 18px;

	border: 1px solid rgba(212, 154, 66, .22);

	border-radius: 12px;

	background:
		linear-gradient(
			135deg,
			#fffaf0,
			#fff6e7
		);

	color: #5a4c3e;

	box-shadow:
		0 5px 18px rgba(80, 50, 15, .04);
}

.wbb-post-intro::before {
	content: "";

	position: absolute;

	left: 0;
	top: 12px;
	bottom: 12px;

	width: 3px;

	border-radius: 999px;

	background:
		linear-gradient(
			180deg,
			var(--wbb-accent, #d49a42),
			var(--wbb-primary, #8b4d16)
		);
}

.wbb-post-intro p {
	margin: 0;

	font-size: 15px;

	line-height: 1.75;

	font-weight: 500;
}


/* =========================================================
   ARTICLE CONTENT
========================================================= */

.entry-content {
	margin-top: 25px;

	color: #3d352d;

	font-size: 17px;

	line-height: 1.88;

	overflow-wrap: break-word;
}

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

.entry-content p {
	margin: 0 0 19px;
}

.entry-content p:last-child {
	margin-bottom: 0;
}


/* =========================================================
   CONTENT HEADINGS
========================================================= */

.entry-content h2 {
	position: relative;

	margin: 36px 0 15px;

	padding-left: 13px;

	color: var(--wbb-text, #30271f);

	font-size: 27px;

	font-weight: 800;

	line-height: 1.3;

	letter-spacing: -.02em;
}

.entry-content h2::before {
	content: "";

	position: absolute;

	left: 0;
	top: 4px;
	bottom: 4px;

	width: 4px;

	border-radius: 999px;

	background:
		linear-gradient(
			180deg,
			var(--wbb-accent, #d49a42),
			var(--wbb-primary, #8b4d16)
		);
}

.entry-content h3 {
	margin: 29px 0 12px;

	color: var(--wbb-text, #30271f);

	font-size: 22px;

	font-weight: 800;

	line-height: 1.35;
}

.entry-content h4 {
	margin: 24px 0 10px;

	font-size: 19px;

	font-weight: 800;
}


/* =========================================================
   CONTENT LINKS
========================================================= */

.entry-content a {
	color: var(--wbb-primary, #8b4d16);

	font-weight: 650;

	text-decoration: underline;

	text-decoration-thickness: 1px;

	text-underline-offset: 3px;

	transition: color .2s ease;
}

.entry-content a:hover {
	color: var(--wbb-primary-dark, #67350d);
}


/* =========================================================
   LISTS
========================================================= */

.entry-content ul,
.entry-content ol {
	margin: 0 0 21px;

	padding-left: 25px;
}

.entry-content li {
	margin-bottom: 8px;
}

.entry-content li::marker {
	color: var(--wbb-primary, #8b4d16);
}


/* =========================================================
   BLOCKQUOTE
========================================================= */

.entry-content blockquote {
	margin: 27px 0;

	padding: 17px 19px;

	border-left: 4px solid var(--wbb-accent, #d49a42);

	border-radius:
		0 12px 12px 0;

	background:
		linear-gradient(
			135deg,
			#fff9ed,
			#fff4df
		);

	color: #51483e;

	font-size: 16px;

	box-shadow:
		0 5px 18px rgba(80, 50, 15, .045);
}

.entry-content blockquote p:last-child {
	margin-bottom: 0;
}


/* =========================================================
   CONTENT IMAGES
========================================================= */

.entry-content img {
	display: block;

	max-width: 100%;
	height: auto;

	margin: 24px auto;

	border-radius: 11px;

	box-shadow:
		0 6px 20px rgba(60, 40, 15, .07);
}


/* =========================================================
   TABLE
========================================================= */

.entry-content table {
	width: 100%;

	margin: 25px 0;

	border-collapse: collapse;

	font-size: 14px;

	overflow: hidden;
}

.entry-content th,
.entry-content td {
	padding: 10px 11px;

	border: 1px solid var(--wbb-border, #eadfce);

	text-align: left;
}

.entry-content th {
	background: var(--wbb-surface-soft, #fff5e5);

	font-weight: 800;
}


/* =========================================================
   VIDEO / IFRAME
========================================================= */

.entry-content iframe {
	display: block;

	width: 100%;

	max-width: 100%;

	margin: 25px auto;

	border: 0;

	border-radius: 12px;
}


/* =========================================================
   POST PAGE LINKS
========================================================= */

.wbb-page-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;

	gap: 7px;

	margin-top: 28px;
	padding-top: 18px;

	border-top: 1px solid var(--wbb-border, #eadfce);

	color: var(--wbb-muted, #756b60);

	font-size: 11px;
	font-weight: 700;
}

.wbb-page-links > span:first-child {
	margin-right: 3px;
}

.wbb-page-links > span:not(:first-child),
.wbb-page-links > a {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-width: 30px;
	height: 30px;

	padding: 0 9px;

	border: 1px solid var(--wbb-border, #eadfce);

	border-radius: 8px;

	background: #fff;

	color: var(--wbb-text, #30271f);

	text-decoration: none;

	box-shadow:
		0 3px 10px rgba(70, 45, 15, .035);

	transition:
		background-color .2s ease,
		border-color .2s ease,
		color .2s ease,
		transform .2s ease;
}

.wbb-page-links a:hover {
	background: var(--wbb-primary, #8b4d16);

	border-color: var(--wbb-primary, #8b4d16);

	color: #fff;

	transform: translateY(-1px);
}

.wbb-page-links .post-page-numbers.current {
	background: var(--wbb-primary, #8b4d16);

	border-color: var(--wbb-primary, #8b4d16);

	color: #fff;
}


/* =========================================================
   POST TAGS
========================================================= */

.post-tags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;

	gap: 7px;

	margin-top: 30px;
	padding-top: 18px;

	border-top: 1px solid var(--wbb-border, #eadfce);
}

.tags-label {
	width: 100%;

	margin-bottom: 2px;

	color: var(--wbb-muted, #756b60);

	font-size: 11px;

	font-weight: 750;
}

.post-tags a {
	display: inline-flex;
	align-items: center;

	padding: 6px 10px;

	border: 1px solid var(--wbb-border, #eadfce);

	border-radius: 999px;

	background: #fff;

	color: var(--wbb-text, #30271f);

	font-size: 10.5px;

	font-weight: 650;

	text-decoration: none;

	transition:
		background-color .2s ease,
		border-color .2s ease,
		color .2s ease,
		transform .2s ease;
}

.post-tags a:hover {
	background: var(--wbb-primary, #8b4d16);

	border-color: var(--wbb-primary, #8b4d16);

	color: #fff;

	transform: translateY(-1px);
}


/* =========================================================
   RELATED POSTS
========================================================= */

.related-posts {
	margin-top: 30px;

	padding: 20px;

	border: 1px solid var(--wbb-border, #eadfce);

	border-radius: 15px;

	background:
		linear-gradient(
			145deg,
			#ffffff,
			#fffaf2
		);

	box-shadow:
		0 7px 25px rgba(70, 45, 15, .045);
}

.related-posts .secthead {
	display: flex;
	align-items: center;
	justify-content: space-between;

	margin-bottom: 15px;
}

.related-posts .secthead h2 {
	margin: 0;

	color: var(--wbb-text, #30271f);

	font-size: 20px;

	line-height: 1.3;

	letter-spacing: -.02em;
}


/* =========================================================
   RELATED GRID
========================================================= */

.related-grid {
	display: grid;

	grid-template-columns:
		repeat(2, minmax(0, 1fr));

	gap: 13px;
}

.related-card {
	display: flex;

	min-width: 0;

	overflow: hidden;

	border: 1px solid var(--wbb-border, #eadfce);

	border-radius: 11px;

	background: #fff;

	transition:
		transform .2s ease,
		box-shadow .2s ease,
		border-color .2s ease;
}

.related-card:hover {
	transform: translateY(-2px);

	border-color: var(--wbb-accent, #d49a42);

	box-shadow:
		0 9px 22px rgba(70, 45, 15, .08);
}

.related-image {
	flex: 0 0 112px;

	width: 112px;
	height: 82px;

	overflow: hidden;

	background: #f8f1e6;
}

.related-image img {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;

	transition: transform .3s ease;
}

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

.related-copy {
	min-width: 0;

	padding: 9px 10px;

	display: flex;

	flex-direction: column;

	justify-content: center;
}

.related-category {
	display: block;

	margin-bottom: 4px;

	color: var(--wbb-primary, #8b4d16);

	font-size: 9px;

	font-weight: 800;

	text-transform: uppercase;

	letter-spacing: .03em;
}

.related-copy h3 {
	margin: 0 0 5px;

	font-size: 13px;

	font-weight: 750;

	line-height: 1.35;
}

.related-copy h3 a {
	display: -webkit-box;

	-webkit-line-clamp: 2;

	-webkit-box-orient: vertical;

	overflow: hidden;

	color: var(--wbb-text, #30271f);

	text-decoration: none;
}

.related-copy h3 a:hover {
	color: var(--wbb-primary, #8b4d16);
}

.related-copy small {
	color: var(--wbb-muted, #756b60);

	font-size: 9px;
}


/* =========================================================
   AUTHOR BOX
========================================================= */

.wbb-author-box {
	display: flex;

	align-items: flex-start;

	gap: 15px;

	margin-top: 28px;

	padding: 18px;

	border: 1px solid var(--wbb-border, #eadfce);

	border-radius: 15px;

	background:
		linear-gradient(
			135deg,
			#fffdf9,
			#fff7e9
		);

	box-shadow:
		0 7px 24px rgba(70, 45, 15, .045);
}

.author-avatar {
	flex: 0 0 80px;

	width: 80px;
	height: 80px;
}

.author-avatar-img {
	display: block;

	width: 80px;
	height: 80px;

	object-fit: cover;

	border-radius: 50%;

	border: 3px solid #fff;

	box-shadow:
		0 4px 15px rgba(70, 45, 15, .12);
}

.author-info {
	min-width: 0;
}

.author-label {
	display: block;

	margin-bottom: 3px;

	color: var(--wbb-primary, #8b4d16);

	font-size: 9px;

	font-weight: 800;

	text-transform: uppercase;

	letter-spacing: .08em;
}

.author-info h2 {
	margin: 0 0 7px;

	font-size: 18px;

	line-height: 1.3;
}

.author-info h2 a {
	color: var(--wbb-text, #30271f);

	text-decoration: none;
}

.author-info h2 a:hover {
	color: var(--wbb-primary, #8b4d16);
}

.author-info p {
	margin: 0 0 8px;

	color: var(--wbb-muted, #756b60);

	font-size: 12px;

	line-height: 1.65;
}

.author-link {
	display: inline-flex;
	align-items: center;

	color: var(--wbb-primary, #8b4d16);

	font-size: 11px;

	font-weight: 800;

	text-decoration: none;
}

.author-link:hover {
	text-decoration: underline;
}


/* =========================================================
   PREVIOUS / NEXT POST
========================================================= */

.post-nav {
	display: grid;

	grid-template-columns:
		repeat(2, minmax(0, 1fr));

	gap: 12px;

	margin-top: 25px;
}

.post-nav:empty {
	display: none;
}

.post-nav-item {
	display: flex;

	flex-direction: row;

	align-items: center;

	gap: 12px;

	min-width: 0;

	padding: 12px;

	border: 1px solid var(--wbb-border, #eadfce);

	border-radius: 11px;

	background: #fff;

	color: var(--wbb-text, #30271f);

	text-decoration: none;

	transition:
		transform .2s ease,
		border-color .2s ease,
		box-shadow .2s ease;
}

.post-nav-item:hover {
	transform: translateY(-2px);

	border-color: var(--wbb-accent, #d49a42);

	box-shadow:
		0 7px 20px rgba(70, 45, 15, .07);
}


/* =========================================================
   POST NAV IMAGE
========================================================= */

.post-nav-image {
	flex: 0 0 78px;

	width: 78px;
	height: 58px;

	overflow: hidden;

	border-radius: 8px;

	background:
		linear-gradient(
			135deg,
			#fff7e7,
			#f7ead6
		);
}

.post-nav-image img {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;

	transition: transform .3s ease;
}

.post-nav-item:hover .post-nav-image img {
	transform: scale(1.045);
}

.post-nav-placeholder {
	display: flex;

	align-items: center;
	justify-content: center;

	width: 100%;
	height: 100%;

	color: var(--wbb-primary, #8b4d16);

	font-size: 24px;

	font-weight: 700;
}


/* =========================================================
   POST NAV CONTENT
========================================================= */

.post-nav-content {
	display: flex;

	flex-direction: column;

	justify-content: center;

	min-width: 0;

	flex: 1;
}

.post-nav-label {
	display: flex;

	align-items: center;

	gap: 4px;

	margin-bottom: 4px;

	color: var(--wbb-primary, #8b4d16);

	font-size: 9px;

	font-weight: 800;

	text-transform: uppercase;

	letter-spacing: .04em;
}

.post-nav-item strong {
	display: -webkit-box;

	-webkit-line-clamp: 2;

	-webkit-box-orient: vertical;

	overflow: hidden;

	font-size: 12px;

	line-height: 1.45;
}

.post-nav-item small {
	display: block;

	margin-top: 5px;

	color: var(--wbb-muted, #756b60);

	font-size: 9px;

	font-weight: 600;
}

.next-post {
	text-align: right;
}

.next-post .post-nav-content {
	align-items: flex-end;
}

.next-post .post-nav-label {
	justify-content: flex-end;
}


/* =========================================================
   COMMENTS
========================================================= */

.wbb-comments-section {
	margin-top: 30px;

	padding-top: 25px;

	border-top: 1px solid var(--wbb-border, #eadfce);
}

.wbb-comments-section .comments-title {
	margin: 0 0 17px;

	color: var(--wbb-text, #30271f);

	font-size: 21px;
}

.wbb-comments-section .comment-list {
	margin: 0;

	padding: 0;

	list-style: none;
}

.wbb-comments-section .comment {
	margin-bottom: 14px;

	padding: 14px;

	border: 1px solid var(--wbb-border, #eadfce);

	border-radius: 11px;

	background: #fff;
}

.wbb-comments-section .comment-content {
	font-size: 14px;

	line-height: 1.7;
}

.wbb-comments-section .comment-meta {
	margin-bottom: 7px;

	font-size: 10px;

	color: var(--wbb-muted, #756b60);
}

.wbb-comments-section textarea,
.wbb-comments-section input[type="text"],
.wbb-comments-section input[type="email"],
.wbb-comments-section input[type="url"] {
	width: 100%;

	box-sizing: border-box;

	padding: 10px 11px;

	border: 1px solid var(--wbb-border, #eadfce);

	border-radius: 9px;

	background: #fff;

	font-size: 13px;

	outline: none;

	transition:
		border-color .2s ease,
		box-shadow .2s ease;
}

.wbb-comments-section textarea:focus,
.wbb-comments-section input:focus {
	border-color: var(--wbb-accent, #d49a42);

	box-shadow:
		0 0 0 3px rgba(212, 154, 66, .12);
}


/* =========================================================
   SIDEBAR
========================================================= */

.single-sidebar {
	display: grid;

	align-content: start;

	gap: 16px;

	min-width: 0;
}

.single-sidebar .widget {
	padding: 16px;

	border: 1px solid var(--wbb-border, #eadfce);

	border-radius: 13px;

	background:
		linear-gradient(
			145deg,
			#ffffff,
			#fffaf2
		);

	box-shadow:
		0 6px 20px rgba(70, 45, 15, .04);
}

.single-sidebar h2 {
	margin: 0 0 12px;

	color: var(--wbb-text, #30271f);

	font-size: 15px;

	font-weight: 800;

	line-height: 1.3;
}


/* =========================================================
   SIDEBAR SEARCH
========================================================= */

.single-sidebar .search-form {
	display: flex;

	align-items: stretch;

	width: 100%;

	gap: 6px;
}

.single-sidebar .search-form label {
	flex: 1;

	min-width: 0;

	margin: 0;
}

.single-sidebar .search-field {
	display: block;

	width: 100%;

	box-sizing: border-box;

	height: 38px;

	padding: 0 10px;

	border: 1px solid var(--wbb-border, #eadfce);

	border-radius: 8px;

	background: #fff;

	color: var(--wbb-text, #30271f);

	font-size: 11px;

	outline: none;

	transition:
		border-color .2s ease,
		box-shadow .2s ease;
}

.single-sidebar .search-field::placeholder {
	color: #aaa095;
}

.single-sidebar .search-field:focus {
	border-color: var(--wbb-accent, #d49a42);

	box-shadow:
		0 0 0 3px rgba(212, 154, 66, .10);
}

.single-sidebar .search-submit {
	flex: 0 0 auto;

	height: 38px;

	padding: 0 12px;

	border: 1px solid var(--wbb-primary, #8b4d16);

	border-radius: 8px;

	background: var(--wbb-primary, #8b4d16);

	color: #fff;

	font-size: 10px;

	font-weight: 800;

	cursor: pointer;

	transition:
		background-color .2s ease,
		border-color .2s ease,
		transform .2s ease;
}

.single-sidebar .search-submit:hover {
	background: var(--wbb-primary-dark, #67350d);

	border-color: var(--wbb-primary-dark, #67350d);

	transform: translateY(-1px);
}


/* =========================================================
   SIDEBAR CATEGORIES
========================================================= */

.single-sidebar ul {
	list-style: none;

	margin: 0;

	padding: 0;
}

.single-sidebar li + li {
	border-top: 1px solid var(--wbb-border, #eadfce);
}

.single-sidebar li a {
	display: flex;

	align-items: center;

	justify-content: space-between;

	gap: 10px;

	padding: 9px 3px;

	color: var(--wbb-text, #30271f);

	font-size: 11.5px;

	font-weight: 650;

	text-decoration: none;

	transition:
		color .2s ease,
		padding-left .2s ease;
}

.single-sidebar li a:hover {
	padding-left: 7px;

	color: var(--wbb-primary, #8b4d16);
}


/* =========================================================
   POPULAR POSTS
========================================================= */

.popular-list {
	display: grid;

	gap: 10px;
}

.popular-item {
	display: flex;

	gap: 9px;

	min-width: 0;

	padding-bottom: 10px;

	border-bottom: 1px solid var(--wbb-border, #eadfce);

	color: var(--wbb-text, #30271f);

	text-decoration: none;
}

.popular-item:last-child {
	padding-bottom: 0;

	border-bottom: 0;
}

.popular-item img {
	flex: 0 0 70px;

	width: 70px;

	height: 48px;

	object-fit: cover;

	border-radius: 7px;
}

.popular-item > span {
	display: flex;

	flex-direction: column;

	min-width: 0;
}

.popular-item strong {
	display: -webkit-box;

	-webkit-line-clamp: 2;

	-webkit-box-orient: vertical;

	overflow: hidden;

	font-size: 11px;

	line-height: 1.4;
}

.popular-item small {
	margin-top: 3px;

	color: var(--wbb-muted, #756b60);

	font-size: 9px;
}

.popular-item:hover strong {
	color: var(--wbb-primary, #8b4d16);
}


/* =========================================================
   OTHER WEBSITE
========================================================= */

.wbb-other-site {
	position: relative;

	display: flex;

	align-items: flex-start;

	gap: 12px;

	overflow: hidden;

	padding: 16px;

	border: 1px solid rgba(212, 154, 66, .30);

	border-radius: 14px;

	background:
		linear-gradient(
			145deg,
			#fffdf8 0%,
			#fff5e2 100%
		);

	box-shadow:
		0 7px 24px rgba(70, 45, 15, .055);
}

.wbb-other-site::before {
	content: "";

	position: absolute;

	width: 90px;
	height: 90px;

	right: -35px;
	top: -35px;

	border-radius: 50%;

	background: rgba(212, 154, 66, .08);

	pointer-events: none;
}

.other-site-icon {
	position: relative;

	flex: 0 0 42px;

	width: 42px;
	height: 42px;

	display: flex;

	align-items: center;
	justify-content: center;

	border: 1px solid rgba(212, 154, 66, .30);

	border-radius: 12px;

	background:
		linear-gradient(
			135deg,
			#fff7e5,
			#ffeccc
		);

	color: var(--wbb-primary, #8b4d16);

	box-shadow:
		0 4px 12px rgba(100, 60, 15, .07);
}

.other-site-icon span {
	font-size: 21px;

	line-height: 1;
}

.other-site-content {
	position: relative;

	min-width: 0;

	flex: 1;
}

.other-site-label {
	display: block;

	margin-bottom: 3px;

	color: var(--wbb-primary, #8b4d16);

	font-size: 8.5px;

	font-weight: 800;

	text-transform: uppercase;

	letter-spacing: .08em;
}

.other-site-content h2 {
	margin: 0 0 6px;

	color: var(--wbb-text, #30271f);

	font-size: 17px;

	font-weight: 850;

	line-height: 1.25;
}

.other-site-content p {
	margin: 0 0 12px;

	color: var(--wbb-muted, #756b60);

	font-size: 10.5px;

	line-height: 1.6;
}

.other-site-button {
	display: inline-flex;

	align-items: center;

	justify-content: center;

	gap: 7px;

	padding: 8px 11px;

	border: 1px solid var(--wbb-primary, #8b4d16);

	border-radius: 8px;

	background:
		linear-gradient(
			135deg,
			#9b5a1c,
			#7e4210
		);

	color: #fff;

	font-size: 10px;

	font-weight: 800;

	line-height: 1;

	text-decoration: none;

	box-shadow:
		0 4px 12px rgba(100, 55, 10, .12);

	transition:
		transform .2s ease,
		box-shadow .2s ease,
		background .2s ease;
}

.other-site-button:hover {
	transform: translateY(-1px);

	background:
		linear-gradient(
			135deg,
			#8b4d16,
			#67350d
		);

	box-shadow:
		0 7px 17px rgba(100, 55, 10, .18);

	color: #fff;
}

.other-site-button span:last-child {
	font-size: 12px;

	line-height: 1;
}


/* =========================================================
   EMPTY STATES
========================================================= */

.wbb-empty {
	margin: 0;

	padding: 12px;

	border-radius: 8px;

	background: #fffaf2;

	color: var(--wbb-muted, #756b60);

	font-size: 11px;

	line-height: 1.6;

	text-align: center;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

	.single-layout {
		grid-template-columns:
			minmax(0, 1fr)
			270px;

		gap: 20px;
	}

	.single-header h1 {
		font-size: clamp(29px, 4.5vw, 40px);
	}

	.entry-content {
		font-size: 16.5px;
	}

	.wbb-post-intro p {
		font-size: 14.5px;
	}

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 900px) {

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

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

	.wbb-other-site {
		grid-column: 1 / -1;
	}

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

	.single-main {
		padding: 15px 0 40px;
	}

	.wbb-breadcrumb {
		margin-bottom: 13px;

		padding: 8px 10px;

		font-size: 9.5px;
	}

	.wbb-breadcrumb .breadcrumb-current {
		max-width: 190px;
	}


	/* =====================================================
	   HEADER
	===================================================== */

	.single-header {
		padding: 4px 0 15px;
	}

	.single-header .wbb-category {
		margin-bottom: 8px;

		padding: 5px 8px;

		font-size: 9px;
	}

	.single-header h1 {
		margin-bottom: 10px;

		font-size: 28px;

		line-height: 1.18;

		letter-spacing: -.025em;
	}

	.single-meta {
		gap: 5px;

		font-size: 10px;
	}


	/* =====================================================
	   IMAGE
	===================================================== */

	.single-featured {
		border-radius: 11px;
	}

	.single-featured-wrap figcaption {
		font-size: 9px;
	}


	/* =====================================================
	   INTRO
	===================================================== */

	.wbb-post-intro {
		margin-top: 19px;

		margin-bottom: 20px;

		padding: 12px 13px 12px 15px;

		border-radius: 10px;
	}

	.wbb-post-intro::before {
		top: 9px;

		bottom: 9px;
	}

	.wbb-post-intro p {
		font-size: 13.5px;

		line-height: 1.7;
	}


	/* =====================================================
	   CONTENT
	===================================================== */

	.entry-content {
		margin-top: 20px;

		font-size: 16px;

		line-height: 1.78;
	}

	.entry-content h2 {
		margin-top: 30px;

		font-size: 23px;
	}

	.entry-content h3 {
		margin-top: 25px;

		font-size: 20px;
	}

	.entry-content blockquote {
		padding: 14px;

		font-size: 15px;
	}

	.entry-content table {
		display: block;

		overflow-x: auto;

		-webkit-overflow-scrolling: touch;

		white-space: nowrap;
	}


	/* =====================================================
	   PAGE LINKS
	===================================================== */

	.wbb-page-links {
		margin-top: 23px;

		padding-top: 15px;

		gap: 5px;

		font-size: 10px;
	}

	.wbb-page-links > span:not(:first-child),
	.wbb-page-links > a {
		min-width: 28px;

		height: 28px;

		padding: 0 8px;

		border-radius: 7px;
	}


	/* =====================================================
	   RELATED
	===================================================== */

	.related-posts {
		margin-top: 24px;

		padding: 14px;

		border-radius: 12px;
	}

	.related-posts .secthead h2 {
		font-size: 18px;
	}

	.related-grid {
		grid-template-columns: 1fr;

		gap: 9px;
	}

	.related-image {
		flex-basis: 105px;

		width: 105px;

		height: 76px;
	}


	/* =====================================================
	   AUTHOR
	===================================================== */

	.wbb-author-box {
		gap: 12px;

		margin-top: 23px;

		padding: 14px;

		border-radius: 12px;
	}

	.author-avatar {
		flex-basis: 62px;

		width: 62px;

		height: 62px;
	}

	.author-avatar-img {
		width: 62px;

		height: 62px;
	}

	.author-info h2 {
		font-size: 16px;
	}

	.author-info p {
		font-size: 11px;
	}


	/* =====================================================
	   PREVIOUS / NEXT
	===================================================== */

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

		margin-top: 20px;
	}

	.post-nav-item {
		padding: 11px;

		gap: 10px;
	}

	.post-nav-image {
		flex-basis: 70px;

		width: 70px;

		height: 53px;
	}

	.post-nav-content {
		min-width: 0;
	}

	.post-nav-item strong {
		font-size: 11.5px;
	}

	.post-nav-label {
		font-size: 8.5px;
	}

	.next-post {
		text-align: left;
	}

	.next-post .post-nav-content {
		align-items: flex-start;
	}

	.next-post .post-nav-label {
		justify-content: flex-start;
	}


	/* =====================================================
	   SIDEBAR
	===================================================== */

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

	.wbb-other-site {
		grid-column: auto;
	}


	/* =====================================================
	   SEARCH
	===================================================== */

	.single-sidebar .search-field,
	.single-sidebar .search-submit {
		height: 36px;
	}


	/* =====================================================
	   COMMENTS
	===================================================== */

	.wbb-comments-section {
		margin-top: 25px;

		padding-top: 20px;
	}

	.wbb-comments-section .comments-title {
		font-size: 19px;
	}

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

	.single-header h1 {
		font-size: 25px;
	}

	.single-meta {
		font-size: 9.5px;
	}

	.entry-content {
		font-size: 15.5px;

		line-height: 1.76;
	}

	.related-posts .secthead h2 {
		font-size: 20px;
	}

	.related-image {
		flex-basis: 95px;

		width: 95px;

		height: 70px;
	}

	.related-copy h3 {
		font-size: 12px;
	}

	.wbb-author-box {
		padding: 12px;
	}

	.wbb-post-intro {
		padding: 11px 12px 11px 14px;
	}

	.wbb-post-intro p {
		font-size: 13px;
	}

	.post-nav-item {
		padding: 10px;
	}

	.post-nav-image {
		flex-basis: 62px;

		width: 62px;

		height: 48px;
	}

	.post-nav-item strong {
		font-size: 11px;
	}

	.wbb-other-site {
		padding: 13px;
	}

	.other-site-icon {
		flex-basis: 38px;

		width: 38px;

		height: 38px;
	}

	.other-site-icon span {
		font-size: 18px;
	}

	.other-site-content h2 {
		font-size: 15px;
	}

	.other-site-content p {
		font-size: 10px;
	}

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.wbb-breadcrumb a:focus-visible,
.single-header .wbb-category:focus-visible,
.entry-content a:focus-visible,
.post-tags a:focus-visible,
.related-card a:focus-visible,
.author-link:focus-visible,
.post-nav-item:focus-visible,
.popular-item:focus-visible,
.other-site-button:focus-visible,
.single-sidebar .search-field:focus-visible,
.single-sidebar .search-submit:focus-visible,
.wbb-page-links a:focus-visible {

	outline: 2px solid var(--wbb-accent, #d49a42);

	outline-offset: 3px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

	.single-featured,
	.single-header .wbb-category,
	.post-tags a,
	.related-card,
	.related-image img,
	.author-link,
	.post-nav-item,
	.post-nav-image img,
	.single-sidebar li a,
	.single-sidebar .search-submit,
	.other-site-button,
	.wbb-page-links a,
	.popular-item strong {

		transition: none;
	}

}