body.srbl-ratgeber-active {
	--srbl-ink: #102027;
	--srbl-muted: #5f6c5d;
	--srbl-ocean: #0e7490;
	--srbl-ocean-dark: #155e75;
	--srbl-sunset: #ea580c;
	--srbl-leaf: #15803d;
	--srbl-sand: #f6f1e8;
	--srbl-paper: #fffaf3;
	background: var(--srbl-sand);
}

.srbl-page {
	background:
		linear-gradient(180deg, #f6f1e8 0%, #ffffff 44rem);
	color: #111827;
}

.srbl-shell {
	width: min(1160px, calc(100% - 40px));
	margin: 0 auto;
}

.srbl-blog-hero {
	padding: clamp(34px, 5vw, 62px) 0 clamp(18px, 3vw, 28px);
}

.srbl-blog-hero h1 {
	max-width: 850px;
	margin: 0;
	color: #101828;
	font-size: clamp(2rem, 4vw, 3.75rem);
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.04;
}

.srbl-blog-intro {
	max-width: 760px;
	margin: 16px 0 0;
	color: #536171;
	font-size: 1.08rem;
	line-height: 1.65;
}

.srbl-hero {
	padding: clamp(36px, 6vw, 72px) 0 clamp(26px, 4vw, 42px);
}

.srbl-eyebrow {
	margin: 0 0 10px;
	color: #0e7490;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.srbl-hero h1 {
	max-width: 780px;
	margin: 0;
	color: #101828;
	font-size: clamp(2.2rem, 4.7vw, 4.6rem);
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1;
}

.srbl-intro {
	max-width: 670px;
	margin: 18px 0 0;
	color: #536171;
	font-size: clamp(1rem, 1.4vw, 1.2rem);
	line-height: 1.65;
}

.srbl-featured {
	padding: clamp(30px, 5vw, 56px) 0 clamp(30px, 4vw, 48px);
}

.srbl-featured-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}

.srbl-featured-head h2 {
	margin: 0;
	color: #101828;
	font-size: clamp(1.45rem, 2.5vw, 2.25rem);
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.08;
}

.srbl-slider-controls {
	display: flex;
	flex: 0 0 auto;
	gap: 10px;
}

.srbl-slider-button {
	display: inline-grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 8px;
	background:
		linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	color: #111827;
	cursor: pointer;
	box-shadow:
		0 14px 30px rgba(15, 23, 42, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
	transition:
		background-color 160ms ease,
		border-color 160ms ease,
		color 160ms ease,
		box-shadow 160ms ease,
		transform 160ms ease;
}

.srbl-slider-button:hover,
.srbl-slider-button:focus {
	border-color: #0e7490;
	background: #0e7490;
	color: #ffffff;
	box-shadow: 0 16px 34px rgba(14, 116, 144, 0.24);
	transform: translateY(-1px);
}

.srbl-slider-button:disabled {
	opacity: 0.38;
	cursor: default;
	transform: none;
}

.srbl-slider-icon {
	display: block;
	width: 11px;
	height: 11px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
}

.srbl-slider-icon-prev {
	margin-left: 4px;
	transform: rotate(-135deg);
}

.srbl-slider-icon-next {
	margin-right: 4px;
	transform: rotate(45deg);
}

.srbl-slider {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 24px 68px rgba(15, 23, 42, 0.11);
}

.srbl-slider-track {
	display: flex;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.srbl-slider-track::-webkit-scrollbar {
	display: none;
}

.srbl-slide {
	display: grid;
	min-width: 100%;
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
	gap: 0;
	scroll-snap-align: start;
}

.srbl-slide-media {
	position: relative;
	display: block;
	min-height: 420px;
	overflow: hidden;
	background: #e7f1ef;
	text-decoration: none;
}

.srbl-slide-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 260ms ease;
}

.srbl-slide:hover .srbl-slide-image,
.srbl-slide:focus-within .srbl-slide-image {
	transform: scale(1.025);
}

.srbl-slide-content {
	display: flex;
	min-width: 0;
	flex-direction: column;
	justify-content: center;
	padding: clamp(26px, 4vw, 54px);
}

.srbl-slide-content time {
	display: block;
	margin-bottom: 12px;
	color: #ea580c;
	font-size: 0.84rem;
	font-weight: 850;
	letter-spacing: 0;
	text-transform: uppercase;
}

.srbl-slide-title {
	margin: 0;
	font-size: clamp(1.8rem, 3.2vw, 3.1rem);
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.04;
}

.srbl-slide-title a {
	color: #101828;
	text-decoration: none;
}

.srbl-slide-title a:hover,
.srbl-slide-title a:focus {
	color: #0e7490;
}

.srbl-slide-excerpt {
	max-width: 560px;
	margin: 18px 0 24px;
	color: #5f6c7b;
	font-size: 1.05rem;
	line-height: 1.65;
}

.srbl-slider-dots {
	position: absolute;
	right: 22px;
	bottom: 18px;
	display: flex;
	gap: 7px;
	padding: 7px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.86);
	backdrop-filter: blur(10px);
}

.srbl-slider-progress {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 4px;
	background: rgba(15, 23, 42, 0.08);
}

.srbl-slider-progress span {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #0e7490, #ea580c);
	transform: scaleX(0.2);
	transform-origin: left center;
	transition: transform 220ms ease;
}

.srbl-slider-dot {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.24);
	cursor: pointer;
	transition:
		background-color 160ms ease,
		transform 160ms ease,
		width 160ms ease;
}

.srbl-slider-dot[aria-current="true"] {
	width: 24px;
	background: #0e7490;
}

.srbl-category-featured {
	padding: clamp(30px, 5vw, 56px) 0 clamp(28px, 4vw, 44px);
}

.srbl-category-archive-head h1 {
	margin: 0;
	color: #101828;
	font-size: clamp(1.8rem, 3.6vw, 3.5rem);
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.04;
}

.srbl-category-intro {
	max-width: 68ch;
	margin: 18px 0 0;
	color: #344054;
	font-size: 1.02rem;
	line-height: 1.6;
}

.srbl-category-intro p {
	margin: 0 0 12px;
}

.srbl-category-intro p:last-child {
	margin-bottom: 0;
}

.srbl-category-intro a {
	color: #0e7490;
	text-underline-offset: 0.18em;
}

.srbl-banner-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.srbl-banner-card {
	display: grid;
	min-width: 0;
	overflow: hidden;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 22px 54px rgba(15, 23, 42, 0.08);
}

.srbl-banner-media {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 8.6;
	background: #e7f1ef;
	text-decoration: none;
}

.srbl-banner-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 240ms ease;
}

.srbl-banner-card:hover .srbl-banner-image,
.srbl-banner-card:focus-within .srbl-banner-image {
	transform: scale(1.03);
}

.srbl-banner-content {
	padding: 20px;
}

.srbl-banner-content time {
	display: block;
	margin-bottom: 9px;
	color: #ea580c;
	font-size: 0.8rem;
	font-weight: 850;
	letter-spacing: 0;
	text-transform: uppercase;
}

.srbl-banner-title {
	margin: 0;
	font-size: clamp(1.35rem, 2vw, 2rem);
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.12;
}

.srbl-banner-title a {
	color: #101828;
	text-decoration: none;
}

.srbl-banner-title a:hover,
.srbl-banner-title a:focus {
	color: #0e7490;
}

.srbl-banner-excerpt {
	margin: 12px 0 0;
	color: #647184;
	font-size: 0.98rem;
	line-height: 1.58;
}

.srbl-single-page {
	padding-bottom: clamp(56px, 7vw, 92px);
}

.srbl-reading-progress {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 960;
	height: 4px;
	background: rgba(15, 23, 42, 0.08);
}

.admin-bar .srbl-reading-progress {
	top: 32px;
}

.srbl-reading-progress span {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #0e7490, #ea580c);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 90ms linear;
}

.srbl-article-hero {
	padding: clamp(30px, 5vw, 58px) 0 clamp(28px, 4vw, 46px);
}

.srbl-article-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
	gap: clamp(24px, 4vw, 52px);
	align-items: center;
}

.srbl-article-hero-grid.no-image {
	grid-template-columns: minmax(0, 980px);
}

.srbl-article-hero-grid.no-image .srbl-article-hero-copy {
	max-width: 980px;
}

.srbl-article-category {
	display: inline-flex;
	width: fit-content;
	max-width: 100%;
	margin-bottom: 14px;
	padding: 7px 11px;
	border: 1px solid rgba(14, 116, 144, 0.18);
	border-radius: 8px;
	background: #ffffff;
	color: #0e7490;
	font-size: 0.82rem;
	font-weight: 850;
	line-height: 1.15;
	text-decoration: none;
}

.srbl-article-category:hover,
.srbl-article-category:focus {
	border-color: #0e7490;
	color: #155e75;
}

.srbl-article-hero h1 {
	margin: 0;
	color: #101828;
	font-size: clamp(1.8rem, 3.35vw, 3.35rem);
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.03;
	overflow-wrap: anywhere;
}

.srbl-article-excerpt {
	max-width: 660px;
	margin: 18px 0 0;
	color: #536171;
	font-size: clamp(1.02rem, 1.4vw, 1.18rem);
	line-height: 1.65;
}

.srbl-article-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px 18px;
	margin-top: 22px;
	color: #667085;
	font-weight: 750;
}

.srbl-article-meta > span {
	display: inline-flex;
	min-height: 36px;
	align-items: center;
	padding: 0 11px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 8px;
	background: #ffffff;
}

.srbl-article-image-wrap {
	overflow: hidden;
	margin: 0;
	border-radius: 8px;
	background: #e7f1ef;
	box-shadow: 0 24px 65px rgba(15, 23, 42, 0.12);
}

.srbl-article-image {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	height: auto;
	object-fit: cover;
}

.srbl-article-layout {
	display: grid;
	grid-template-columns: minmax(0, 760px) minmax(280px, 340px);
	gap: clamp(26px, 4vw, 56px);
	align-items: start;
}

.srbl-article-main,
.srbl-sidebar-section {
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

.srbl-article-main {
	min-width: 0;
	padding: clamp(22px, 4vw, 46px);
}

.srbl-article-content {
	color: #1f2937;
	font-size: 1.08rem;
	line-height: 1.78;
}

.srbl-article-content > :first-child {
	margin-top: 0;
}

.srbl-article-content > :last-child {
	margin-bottom: 0;
}

.srbl-article-content h2,
.srbl-article-content h3,
.srbl-article-content h4 {
	color: #101828;
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.18;
}

.srbl-article-content h2 {
	margin: 2.1em 0 0.65em;
	font-size: clamp(1.55rem, 2.4vw, 2.05rem);
}

.srbl-article-content h3 {
	margin: 1.7em 0 0.55em;
	font-size: clamp(1.25rem, 1.9vw, 1.55rem);
}

.srbl-article-content p,
.srbl-article-content ul,
.srbl-article-content ol,
.srbl-article-content table,
.srbl-article-content figure {
	margin-top: 0;
	margin-bottom: 1.25em;
}

.srbl-article-content a {
	color: #0e7490;
	font-weight: 750;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.16em;
}

.srbl-article-content img {
	height: auto;
	max-width: 100%;
	border-radius: 8px;
}

.srbl-article-content table {
	display: block;
	width: 100%;
	overflow-x: auto;
	border-collapse: collapse;
}

.srbl-article-content th,
.srbl-article-content td {
	padding: 12px;
	border: 1px solid rgba(15, 23, 42, 0.1);
}

.srbl-article-content th {
	background: #f6f1e8;
	color: #101828;
}

.srbl-single-page .codex-reading-time,
.srbl-ratgeber-active .byline,
.srbl-ratgeber-active .posted-by,
.srbl-ratgeber-active .author {
	display: none !important;
}

.srbl-sidebar {
	position: sticky;
	top: 24px;
	display: grid;
	gap: 16px;
	min-width: 0;
}

.srbl-sidebar-section {
	padding: 18px;
}

.srbl-sidebar-section h2 {
	margin: 0 0 14px;
	color: #101828;
	font-size: 1.12rem;
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.2;
}

.srbl-latest-list {
	display: grid;
	gap: 12px;
}

.srbl-latest-item {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 11px;
	align-items: center;
	color: #111827;
	text-decoration: none;
}

.srbl-latest-thumb {
	width: 72px;
	aspect-ratio: 1;
	border-radius: 8px;
	background: #e7f1ef;
	object-fit: cover;
}

.srbl-latest-thumb.is-placeholder {
	display: block;
	background: linear-gradient(135deg, rgba(14, 116, 144, 0.14), rgba(234, 88, 12, 0.13));
}

.srbl-latest-item strong {
	display: -webkit-box;
	overflow: hidden;
	color: #111827;
	font-size: 0.94rem;
	font-weight: 850;
	line-height: 1.25;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.srbl-latest-item time {
	display: block;
	margin-top: 5px;
	color: #667085;
	font-size: 0.82rem;
	font-weight: 750;
	line-height: 1.2;
}

.srbl-latest-item:hover strong,
.srbl-latest-item:focus strong {
	color: #0e7490;
}

.srbl-sidebar-categories {
	display: grid;
	gap: 8px;
}

.srbl-sidebar-category-group {
	display: grid;
	gap: 7px;
	min-width: 0;
}

.srbl-sidebar-category {
	display: grid;
	position: relative;
	min-height: 76px;
	grid-template-columns: 32px minmax(0, 1fr);
	gap: 4px 10px;
	align-content: start;
	padding: 12px 34px 12px 12px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 8px;
	background: #f8fafc;
	color: #111827;
	text-decoration: none;
}

.srbl-sidebar-category .srbl-category-icon {
	grid-row: 1 / span 2;
}

.srbl-sidebar-category-name {
	display: block;
	font-weight: 800;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.srbl-sidebar-category-description {
	display: -webkit-box;
	grid-column: 2;
	overflow: hidden;
	margin-top: 4px;
	color: #657283;
	font-size: 0.82rem;
	font-weight: 650;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.srbl-sidebar-category:hover,
.srbl-sidebar-category:focus,
.srbl-sidebar-category.is-active {
	border-color: rgba(14, 116, 144, 0.28);
	background: #ecfeff;
	color: #155e75;
}

.srbl-sidebar-subcategories {
	display: grid;
	gap: 6px;
	padding-left: 12px;
}

.srbl-sidebar-subcategory {
	display: block;
	min-height: 38px;
	padding: 8px 10px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 8px;
	background: #ffffff;
	color: #111827;
	text-decoration: none;
}

.srbl-sidebar-subcategory-name {
	display: block;
	font-weight: 780;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.srbl-sidebar-subcategory-description {
	display: -webkit-box;
	overflow: hidden;
	margin-top: 3px;
	color: #667085;
	font-size: 0.78rem;
	font-weight: 650;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.srbl-sidebar-subcategory:hover,
.srbl-sidebar-subcategory:focus,
.srbl-sidebar-subcategory.is-active {
	border-color: rgba(14, 116, 144, 0.28);
	background: #ecfeff;
	color: #155e75;
}

.srbl-related,
.srbl-recommendations {
	margin-top: clamp(28px, 5vw, 56px);
}

.srbl-related-head,
.srbl-recommendations-head {
	margin-bottom: 18px;
}

.srbl-recommendations-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 18px;
}

.srbl-related-head h2,
.srbl-recommendations-head h2 {
	margin: 0;
	color: #101828;
	font-size: clamp(1.45rem, 2.5vw, 2.15rem);
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.08;
}

.srbl-recommendation-tabs {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 6px;
	padding: 4px;
	width: fit-content;
	min-height: 0;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.srbl-recommendation-tabs button {
	display: inline-flex;
	min-height: 40px;
	align-items: center;
	justify-content: center;
	margin: 0 !important;
	padding: 0 14px;
	border: 0;
	border-radius: 7px;
	background: transparent;
	color: #516070;
	font: inherit;
	font-size: 0.9rem;
	font-weight: 850;
	line-height: 1;
	cursor: pointer;
}

.srbl-recommendation-tabs button:hover,
.srbl-recommendation-tabs button:focus,
.srbl-recommendation-tabs button.is-active {
	background: #0e7490;
	color: #ffffff;
}

.srbl-recommendation-panel {
	display: none;
}

.srbl-recommendation-panel.is-active {
	display: block;
}

.srbl-related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	align-items: stretch;
}

.srbl-related-card .srbl-card-title {
	font-size: clamp(1.12rem, 1.6vw, 1.38rem);
}

.srbl-hot-topics {
	padding-top: clamp(20px, 3vw, 30px);
	border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.srbl-hot-card {
	box-shadow: 0 22px 58px rgba(15, 23, 42, 0.09);
}

.srbl-article-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	margin-top: clamp(28px, 5vw, 56px);
	padding: clamp(22px, 4vw, 34px);
	border: 1px solid rgba(14, 116, 144, 0.16);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(14, 116, 144, 0.1), rgba(234, 88, 12, 0.1)),
		#ffffff;
	box-shadow: 0 22px 58px rgba(15, 23, 42, 0.08);
}

.srbl-article-cta h2 {
	margin: 0;
	color: #101828;
	font-size: clamp(1.35rem, 2.2vw, 2rem);
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.12;
}

.srbl-article-cta p:not(.srbl-section-kicker) {
	max-width: 620px;
	margin: 10px 0 0;
	color: #536171;
	font-size: 1rem;
	line-height: 1.55;
}

.srbl-cta-button {
	display: inline-flex;
	min-height: 48px;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	padding: 0 22px;
	border-radius: 8px;
	background: #0e7490;
	color: #ffffff;
	font-weight: 850;
	text-decoration: none;
	box-shadow: 0 16px 34px rgba(14, 116, 144, 0.28);
}

.srbl-cta-button:hover,
.srbl-cta-button:focus {
	background: #155e75;
	color: #ffffff;
}

.srbl-categories {
	padding: 0 0 clamp(28px, 4vw, 44px);
}

.srbl-single-categories {
	padding-top: clamp(28px, 4vw, 44px);
}

.srbl-category-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 18px;
}

.srbl-section-kicker {
	margin: 0 0 7px;
	color: #ea580c;
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0;
	text-transform: uppercase;
}

.srbl-category-head h2 {
	margin: 0;
	color: #101828;
	font-size: clamp(1.35rem, 2.4vw, 2.1rem);
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.08;
}

.srbl-breadcrumbs {
	margin: 0 0 16px;
	color: #667085;
	font-size: 0.86rem;
	font-weight: 750;
	line-height: 1.25;
}

.srbl-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.srbl-breadcrumbs li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.srbl-breadcrumbs li + li::before {
	color: rgba(15, 23, 42, 0.32);
	content: "/";
	font-weight: 850;
}

.srbl-breadcrumbs a {
	color: #0e7490;
	text-decoration: none;
}

.srbl-breadcrumbs a:hover,
.srbl-breadcrumbs a:focus {
	color: #155e75;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.srbl-breadcrumbs span {
	display: inline-block;
	max-width: min(58vw, 420px);
	overflow: hidden;
	color: #111827;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.srbl-all-posts {
	display: inline-flex;
	min-height: 54px;
	flex: 0 0 auto;
	align-items: center;
	gap: 10px;
	padding: 8px 15px;
	border: 1px solid rgba(14, 116, 144, 0.18);
	border-radius: 8px;
	background: #ffffff;
	color: #111827;
	text-decoration: none;
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.srbl-all-posts span {
	font-weight: 850;
	line-height: 1;
}

.srbl-all-posts strong {
	color: #0e7490;
	font-size: 0.86rem;
	font-weight: 850;
	white-space: nowrap;
}

.srbl-all-posts:hover,
.srbl-all-posts:focus {
	border-color: #0e7490;
	color: #0e7490;
}

.srbl-category-nav {
	display: grid;
	gap: 12px;
}

.srbl-category-parent-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
	gap: 14px;
	min-width: 0;
}

.srbl-subcategory-panel-row {
	display: grid;
	min-width: 0;
	padding-top: 4px;
}

.srbl-category-group {
	position: relative;
	display: grid;
	gap: 8px;
	min-width: 0;
	align-content: start;
}

.srbl-category-tile {
	position: relative;
	display: grid;
	width: 100%;
	min-height: 94px;
	min-width: 0;
	grid-template-columns: 32px minmax(0, 1fr);
	gap: 5px 10px;
	align-content: start;
	overflow: hidden;
	padding: 16px 52px 16px 16px;
	border: 1px solid rgba(120, 92, 55, 0.16);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 243, 0.92)),
		repeating-linear-gradient(0deg, rgba(120, 92, 55, 0.035) 0 1px, transparent 1px 7px);
	color: #111827;
	text-decoration: none;
	box-shadow:
		0 16px 36px rgba(15, 23, 42, 0.07),
		inset 0 0 0 1px rgba(255, 255, 255, 0.72);
	transition:
		border-color 160ms ease,
		box-shadow 160ms ease,
		transform 160ms ease;
}

.srbl-category-tile::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	background: linear-gradient(180deg, #0e7490, #ea580c);
	content: "";
}

.srbl-category-tile::after {
	position: absolute;
	top: 13px;
	right: 48px;
	bottom: 13px;
	border-left: 1px dashed rgba(14, 116, 144, 0.3);
	content: "";
}

.srbl-category-tile:hover,
.srbl-category-tile:focus,
.srbl-category-tile.is-active {
	border-color: rgba(14, 116, 144, 0.34);
	box-shadow:
		0 20px 44px rgba(15, 23, 42, 0.1),
		inset 0 0 0 1px rgba(255, 255, 255, 0.84);
	transform: translateY(-1px);
}

.srbl-category-tile.is-active {
	background:
		linear-gradient(135deg, rgba(236, 254, 255, 0.96), rgba(255, 250, 243, 0.94)),
		repeating-linear-gradient(0deg, rgba(14, 116, 144, 0.04) 0 1px, transparent 1px 7px);
}

.srbl-category-tile.is-active::before {
	width: 5px;
}

.srbl-category-icon {
	display: inline-grid;
	width: 32px;
	height: 32px;
	grid-row: 1 / span 2;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.38);
	border-radius: 8px;
	background: linear-gradient(135deg, #0e7490, #ea580c);
	color: #ffffff;
	font-size: 0.66rem;
	font-weight: 900;
	line-height: 1;
	box-shadow:
		0 10px 22px rgba(15, 23, 42, 0.12),
		inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.srbl-category-icon svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.srbl-category-icon--fuel,
.srbl-category-icon--buy {
	background: linear-gradient(135deg, #0f766e, #f97316);
}

.srbl-category-icon--electric {
	background: linear-gradient(135deg, #dc2626, #111827);
}

.srbl-category-icon--consumption {
	background: linear-gradient(135deg, #0e7490, #0369a1);
}

.srbl-category-icon--service {
	background: linear-gradient(135deg, #334155, #0d9488);
}

.srbl-category-icon--legal {
	background: linear-gradient(135deg, #1e293b, #0f766e);
}

.srbl-category-icon--insurance,
.srbl-category-icon--docs {
	background: linear-gradient(135deg, #7c2d12, #0e7490);
}

.srbl-category-icon--tire {
	background: linear-gradient(135deg, #0f172a, #ea580c);
}

.srbl-category-icon--care {
	background: linear-gradient(135deg, #15803d, #ca8a04);
}

.srbl-category-arrow {
	display: block;
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	color: #0e7490;
	transform: rotate(45deg);
	transform-origin: 50% 50%;
	transition: transform 160ms ease;
}

.srbl-category-toggle[aria-expanded="true"] .srbl-category-arrow,
.srbl-sidebar-category[aria-expanded="true"] .srbl-category-arrow {
	transform: rotate(-135deg);
}

.srbl-category-toggle {
	position: absolute;
	top: 30px;
	right: 7px;
	z-index: 2;
	display: inline-grid;
	width: 34px;
	height: 34px;
	place-items: center;
	padding: 0;
	border: 1px solid rgba(14, 116, 144, 0.22);
	border-radius: 999px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(236, 254, 255, 0.78));
	color: #0e7490;
	cursor: pointer;
	box-shadow:
		0 7px 16px rgba(14, 116, 144, 0.1),
		inset 0 0 0 1px rgba(255, 255, 255, 0.76);
	transition:
		background-color 160ms ease,
		border-color 160ms ease,
		transform 160ms ease;
}

.srbl-category-toggle:hover,
.srbl-category-toggle:focus {
	border-color: rgba(14, 116, 144, 0.32);
	background: #ecfeff;
	transform: scale(1.03);
}

.srbl-sidebar-category .srbl-category-arrow {
	position: absolute;
	top: 17px;
	right: 13px;
}

.srbl-subcategory-list {
	display: flex;
	gap: 10px;
	min-width: 0;
	overflow-x: auto;
	padding: 10px 2px 14px;
	scroll-padding-inline: 2px;
	scroll-snap-type: x proximity;
	scrollbar-color: rgba(14, 116, 144, 0.55) rgba(14, 116, 144, 0.12);
	scrollbar-width: auto;
	-webkit-overflow-scrolling: touch;
}

.srbl-subcategory-list--mobile {
	display: none;
}

.srbl-subcategory-list::-webkit-scrollbar {
	height: 14px;
}

.srbl-subcategory-list::-webkit-scrollbar-track {
	border-radius: 999px;
	background: rgba(14, 116, 144, 0.1);
}

.srbl-subcategory-list::-webkit-scrollbar-thumb {
	border: 3px solid rgba(236, 254, 255, 0.95);
	border-radius: 999px;
	background: rgba(14, 116, 144, 0.58);
}

.srbl-subcategory-list::-webkit-scrollbar-thumb:hover {
	background: rgba(14, 116, 144, 0.78);
}

.srbl-subcategory-tile {
	display: grid;
	flex: 0 0 min(24vw, 230px);
	min-height: 44px;
	align-content: center;
	padding: 10px 13px;
	border: 1px solid rgba(14, 116, 144, 0.18);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 254, 255, 0.82));
	color: #111827;
	text-decoration: none;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
	scroll-snap-align: start;
}

.srbl-subcategory-tile::before {
	display: block;
	width: 28px;
	height: 3px;
	margin-bottom: 7px;
	border-radius: 999px;
	background: linear-gradient(90deg, #0e7490, #ea580c);
	content: "";
}

.srbl-subcategory-name {
	display: block;
	font-weight: 800;
	line-height: 1.24;
	overflow-wrap: anywhere;
}

.srbl-subcategory-description {
	display: -webkit-box;
	overflow: hidden;
	margin-top: 3px;
	color: #667085;
	font-size: 0.78rem;
	font-weight: 650;
	line-height: 1.3;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.srbl-subcategory-tile:hover,
.srbl-subcategory-tile:focus,
.srbl-subcategory-tile.is-active {
	border-color: rgba(14, 116, 144, 0.28);
	background: #ecfeff;
	color: #155e75;
}

.srbl-category-name {
	display: block;
	overflow-wrap: anywhere;
	font-size: 1rem;
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.25;
}

.srbl-category-description {
	display: -webkit-box;
	overflow: hidden;
	color: #667085;
	font-size: 0.86rem;
	font-weight: 650;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.srbl-sticky-categories {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 900;
	overflow: hidden;
	padding: 16px 0 15px;
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
	backdrop-filter: blur(16px);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-100%);
	transition:
		opacity 180ms ease,
		transform 180ms ease;
}

.admin-bar .srbl-sticky-categories {
	top: 32px;
}

.srbl-sticky-categories.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.srbl-sticky-category-inner {
	display: flex;
	width: min(1160px, calc(100% - 40px));
	margin: 0 auto;
	gap: 12px;
	align-items: center;
}

.srbl-sticky-label {
	flex: 0 0 auto;
	color: #ea580c;
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.srbl-sticky-all {
	display: inline-flex;
	min-height: 48px;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	padding: 0 19px;
	border: 1px solid #0e7490;
	border-radius: 999px;
	background: #0e7490;
	color: #ffffff;
	font-size: 0.95rem;
	font-weight: 850;
	line-height: 1;
	text-decoration: none;
	box-shadow: 0 10px 22px rgba(14, 116, 144, 0.18);
	-webkit-user-drag: none;
	user-select: none;
}

.srbl-sticky-all:hover,
.srbl-sticky-all:focus,
.srbl-sticky-all.is-active {
	border-color: #0e7490;
	background: #0e7490;
	color: #ffffff;
}

.srbl-sticky-category-nav {
	display: flex;
	min-width: 0;
	flex: 1 1 auto;
	gap: 10px;
	overflow-x: auto;
	padding: 2px 0 4px;
	scroll-padding: 10px;
	scroll-snap-type: x proximity;
	-webkit-overflow-scrolling: touch;
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
	cursor: grab;
	touch-action: pan-x pan-y;
	user-select: none;
}

.srbl-sticky-category-nav.is-dragging {
	cursor: grabbing;
	scroll-snap-type: none;
}

.srbl-sticky-category-nav::-webkit-scrollbar {
	display: none;
}

.srbl-sticky-category-group {
	flex: 0 0 auto;
	scroll-snap-align: start;
}

.srbl-sticky-category-tile {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 0 18px 0 10px;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 999px;
	background: #ffffff;
	color: #111827;
	text-decoration: none;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
	-webkit-user-drag: none;
	user-select: none;
	transition:
		border-color 160ms ease,
		background-color 160ms ease,
		color 160ms ease,
		transform 160ms ease;
}

.srbl-sticky-category-tile:hover,
.srbl-sticky-category-tile:focus,
.srbl-sticky-category-tile.is-active {
	border-color: rgba(14, 116, 144, 0.28);
	background: #ecfeff;
	color: #155e75;
	transform: translateY(-1px);
}

.srbl-sticky-category-tile.is-active {
	border-color: #0e7490;
	box-shadow: 0 10px 22px rgba(14, 116, 144, 0.16);
}

.srbl-sticky-category-tile .srbl-category-icon {
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	border-radius: 999px;
	box-shadow: none;
}

.srbl-sticky-category-tile .srbl-category-icon svg {
	width: 16px;
	height: 16px;
	stroke-width: 2.2;
}

.srbl-sticky-category-name {
	display: block;
	max-width: 210px;
	overflow: hidden;
	font-size: 0.95rem;
	font-weight: 850;
	line-height: 1;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.srbl-listing {
	padding: 0 0 clamp(56px, 7vw, 92px);
}

.srbl-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
}

.srbl-card {
	position: relative;
	display: flex;
	min-width: 0;
	min-height: 100%;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgba(120, 92, 55, 0.18);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 250, 243, 0.88)),
		repeating-linear-gradient(0deg, rgba(120, 92, 55, 0.035) 0 1px, transparent 1px 7px),
		#fffaf3;
	box-shadow:
		0 18px 44px rgba(15, 23, 42, 0.08),
		inset 0 0 0 1px rgba(255, 255, 255, 0.64);
	isolation: isolate;
	transition:
		border-color 180ms ease,
		box-shadow 180ms ease,
		transform 180ms ease;
}

.srbl-card::before,
.srbl-card::after {
	position: absolute;
	pointer-events: none;
	content: "";
}

.srbl-card::before {
	inset: 0 auto 0 0;
	z-index: 0;
	width: 15px;
	background:
		radial-gradient(circle at 7px 10px, rgba(120, 92, 55, 0.32) 0 2px, transparent 2.5px) 0 0 / 15px 18px repeat-y,
		linear-gradient(90deg, rgba(120, 92, 55, 0.1), transparent);
	opacity: 0.65;
}

.srbl-card::after {
	right: 20px;
	bottom: 19px;
	z-index: 0;
	width: 74px;
	height: 48px;
	border: 1px dashed rgba(14, 116, 144, 0.32);
	border-radius: 6px;
	background:
		linear-gradient(135deg, rgba(14, 116, 144, 0.1), rgba(234, 88, 12, 0.08)),
		repeating-linear-gradient(90deg, transparent 0 9px, rgba(14, 116, 144, 0.1) 9px 10px);
	opacity: 0.5;
	transform: rotate(-4deg);
}

.srbl-card:hover,
.srbl-card:focus-within {
	border-color: rgba(14, 116, 144, 0.32);
	box-shadow:
		0 22px 52px rgba(15, 23, 42, 0.11),
		inset 0 0 0 1px rgba(255, 255, 255, 0.76);
	transform: translateY(-2px);
}

.srbl-card.is-new {
	animation: srbl-card-in 360ms ease both;
}

.srbl-card-media,
.srbl-card-body,
.srbl-card-meta {
	position: relative;
	z-index: 1;
}

.srbl-card-media {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	margin: 18px 18px 0;
	border: 6px solid #fffaf3;
	border-radius: 8px;
	background: #e7f1ef;
	box-shadow:
		0 12px 26px rgba(15, 23, 42, 0.12),
		0 0 0 1px rgba(120, 92, 55, 0.12);
	text-decoration: none;
}

.srbl-card-image,
.srbl-card-placeholder {
	display: block;
	width: 100%;
	height: 100%;
}

.srbl-card-image {
	object-fit: cover;
	transition: transform 220ms ease;
}

.srbl-card:hover .srbl-card-image,
.srbl-card:focus-within .srbl-card-image {
	transform: scale(1.035);
}

.srbl-card-placeholder {
	display: grid;
	position: relative;
	overflow: hidden;
	place-items: center;
	gap: 10px;
	align-content: center;
	padding: 22px;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
		linear-gradient(0deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px),
		linear-gradient(135deg, #0e7490, #ea580c);
	background-size: 34px 34px, 34px 34px, auto;
	color: #fffaf3;
	text-align: center;
}

.srbl-card-placeholder::before {
	position: absolute;
	inset: 12px;
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-style: dashed;
	border-radius: 8px;
	content: "";
}

.srbl-card-placeholder::after {
	position: absolute;
	right: 12%;
	bottom: 22%;
	width: 64%;
	height: 2px;
	background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0 12px, transparent 12px 20px);
	border: 0;
	border-radius: 0;
	content: "";
	transform: rotate(-17deg);
}

.srbl-placeholder-mark,
.srbl-placeholder-label {
	position: relative;
	z-index: 1;
}

.srbl-placeholder-mark {
	display: grid;
	min-width: 64px;
	min-height: 64px;
	place-items: center;
	padding: 0 10px;
	border: 1px solid rgba(255, 255, 255, 0.48);
	border-radius: 8px;
	background: rgba(255, 250, 243, 0.22);
	color: #ffffff;
	font-size: 0.96rem;
	font-weight: 900;
	line-height: 1;
	box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
	backdrop-filter: blur(10px);
}

.srbl-placeholder-label {
	display: -webkit-box;
	max-width: 92%;
	overflow: hidden;
	color: rgba(255, 255, 255, 0.95);
	font-size: 0.92rem;
	font-weight: 850;
	line-height: 1.25;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.srbl-placeholder--fuel,
.srbl-placeholder--buy {
	background: linear-gradient(135deg, #0f766e, #f97316);
}

.srbl-placeholder--electric {
	background: linear-gradient(135deg, #dc2626, #111827);
}

.srbl-placeholder--consumption {
	background: linear-gradient(135deg, #0e7490, #0369a1);
}

.srbl-placeholder--service {
	background: linear-gradient(135deg, #334155, #0d9488);
}

.srbl-placeholder--legal {
	background: linear-gradient(135deg, #1e293b, #0f766e);
}

.srbl-placeholder--insurance,
.srbl-placeholder--docs {
	background: linear-gradient(135deg, #7c2d12, #0e7490);
}

.srbl-placeholder--tire {
	background: linear-gradient(135deg, #0f172a, #ea580c);
}

.srbl-placeholder--care {
	background: linear-gradient(135deg, #15803d, #ca8a04);
}

.srbl-category-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	max-width: calc(100% - 24px);
	overflow: hidden;
	padding: 7px 11px;
	border: 1px dashed rgba(14, 116, 144, 0.46);
	border-radius: 6px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 253, 245, 0.9));
	color: #0e7490;
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1.1;
	text-overflow: ellipsis;
	white-space: nowrap;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.14);
	backdrop-filter: blur(10px);
	transform: rotate(1.5deg);
}

.srbl-reading-badge {
	position: absolute;
	bottom: 12px;
	left: 12px;
	display: inline-flex;
	max-width: calc(100% - 24px);
	min-height: 30px;
	align-items: center;
	padding: 0 10px;
	border: 1px solid rgba(255, 255, 255, 0.68);
	border-radius: 6px;
	background: rgba(15, 23, 42, 0.72);
	color: #ffffff;
	font-size: 0.74rem;
	font-weight: 850;
	line-height: 1;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
	backdrop-filter: blur(10px);
}

.srbl-card-body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 22px 20px 18px;
}

.srbl-card-topline {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px 9px;
	margin-bottom: 10px;
	color: #667085;
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.2;
	text-transform: uppercase;
}

.srbl-card-topline span {
	display: inline-flex;
	max-width: 100%;
	overflow: hidden;
	color: #ea580c;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.srbl-card-topline .srbl-card-author {
	color: #5f6c5d;
}

.srbl-card-topline .srbl-card-author::before {
	display: block;
	width: 4px;
	height: 4px;
	margin: auto 9px auto 0;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.24);
	content: "";
}

.srbl-card-topline time {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	white-space: nowrap;
}

.srbl-card-topline time::before {
	display: block;
	width: 4px;
	height: 4px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.28);
	content: "";
}

.srbl-card-title {
	margin: 0;
	font-size: clamp(1.2rem, 1.8vw, 1.55rem);
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.18;
}

.srbl-card-title a {
	color: #111827;
	text-decoration: none;
}

.srbl-card-title a:hover,
.srbl-card-title a:focus {
	color: #0e7490;
}

.srbl-card-excerpt {
	margin: 14px 0 20px;
	color: #657283;
	font-size: 1rem;
	line-height: 1.6;
}

.srbl-read-more {
	display: inline-flex;
	width: fit-content;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	margin-top: auto;
	gap: 10px;
	padding: 0 16px 0 18px;
	border: 1px solid rgba(14, 116, 144, 0.2);
	border-radius: 8px;
	background:
		linear-gradient(135deg, #0e7490, #155e75);
	color: #ffffff;
	font-weight: 800;
	box-shadow: 0 12px 24px rgba(14, 116, 144, 0.22);
	text-decoration: none;
	transition:
		border-color 160ms ease,
		box-shadow 160ms ease,
		transform 160ms ease;
}

.srbl-read-more::after {
	display: grid;
	width: 24px;
	height: 24px;
	place-items: center;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	color: #ffffff;
	content: "->";
	font-size: 0.88rem;
	line-height: 1;
	transition:
		background-color 160ms ease,
		transform 160ms ease;
}

.srbl-read-more:hover,
.srbl-read-more:focus {
	border-color: rgba(234, 88, 12, 0.5);
	background:
		linear-gradient(135deg, #155e75, #ea580c);
	color: #ffffff;
	box-shadow: 0 15px 28px rgba(234, 88, 12, 0.2);
	transform: translateY(-1px) rotate(-0.5deg);
}

.srbl-read-more:hover::after,
.srbl-read-more:focus::after {
	background: rgba(255, 255, 255, 0.25);
	transform: translateX(2px);
}

.srbl-card-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 0 20px 20px;
	color: #6b7280;
	font-size: 0.92rem;
}

.srbl-author {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 11px;
}

.srbl-article-meta .srbl-author {
	min-height: 46px;
	padding: 5px 12px 5px 6px;
	border: 1px solid rgba(14, 116, 144, 0.18);
	border-radius: 8px;
	background: rgba(255, 250, 243, 0.82);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.srbl-author-avatar {
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	border: 2px solid #ffffff;
	border-radius: 50%;
	object-fit: cover;
	background: #cffafe;
	box-shadow: 0 0 0 2px rgba(14, 116, 144, 0.18);
}

.srbl-author-avatar--custom {
	display: block;
}

.srbl-author-avatar--fallback {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #0e7490;
	font-size: 0.84rem;
	font-weight: 900;
	letter-spacing: 0;
}

.srbl-author-name,
.srbl-author time {
	display: block;
}

.srbl-author-name {
	overflow: hidden;
	color: #111827;
	font-weight: 800;
	line-height: 1.25;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.srbl-author time {
	margin-top: 2px;
	color: #6b7280;
	line-height: 1.3;
}

.srbl-comments {
	flex: 0 0 auto;
	color: #6b7280;
	font-weight: 700;
	text-decoration: none;
}

.srbl-comments:hover,
.srbl-comments:focus {
	color: #0e7490;
}

.srbl-card-date {
	color: #6b7280;
	font-weight: 800;
	line-height: 1.3;
}

.srbl-listing .navigation.pagination {
	margin: 34px 0 0;
}

.srbl-listing .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.srbl-listing .page-numbers {
	display: inline-flex;
	min-width: 40px;
	min-height: 40px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 8px;
	background: #ffffff;
	color: #111827;
	font-weight: 800;
	text-decoration: none;
}

.srbl-listing .page-numbers.current,
.srbl-listing .page-numbers:hover,
.srbl-listing .page-numbers:focus {
	border-color: #0e7490;
	background: #0e7490;
	color: #ffffff;
}

.srbl-load-more-wrap {
	display: flex;
	justify-content: center;
	margin-top: 34px;
}

.srbl-load-more {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 0 22px;
	border: 1px solid rgba(14, 116, 144, 0.2);
	border-radius: 8px;
	background: #0e7490;
	color: #ffffff;
	cursor: pointer;
	font: inherit;
	font-weight: 850;
	line-height: 1;
	text-decoration: none;
	box-shadow: 0 16px 34px rgba(14, 116, 144, 0.2);
	transition:
		background-color 160ms ease,
		border-color 160ms ease,
		box-shadow 160ms ease,
		transform 160ms ease;
}

.srbl-load-more:hover,
.srbl-load-more:focus {
	border-color: #155e75;
	background: #155e75;
	color: #ffffff;
	transform: translateY(-1px);
}

.srbl-load-more.is-loading,
.srbl-load-more:disabled {
	opacity: 0.64;
	cursor: wait;
	transform: none;
}

.srbl-load-more.is-loading::after {
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255, 255, 255, 0.46);
	border-top-color: #ffffff;
	border-radius: 999px;
	content: "";
	animation: srbl-spin 700ms linear infinite;
}

@keyframes srbl-spin {
	to {
		transform: rotate(360deg);
	}
}

@keyframes srbl-card-in {
	from {
		opacity: 0;
		transform: translateY(12px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.srbl-empty {
	max-width: 700px;
	padding: 28px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 8px;
	background: #ffffff;
}

.srbl-empty h2 {
	margin: 0 0 8px;
	color: #101828;
	font-size: 1.4rem;
}

.srbl-empty p {
	margin: 0;
	color: #657283;
	line-height: 1.6;
}

@media (max-width: 980px) {
	.srbl-article-hero-grid,
	.srbl-article-layout {
		grid-template-columns: 1fr;
	}

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

	.srbl-article-cta {
		align-items: stretch;
		flex-direction: column;
	}

	.srbl-cta-button {
		width: fit-content;
	}

	.srbl-sidebar {
		position: static;
	}

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

	.srbl-slide {
		grid-template-columns: 1fr;
	}

	.srbl-slide-media {
		aspect-ratio: 16 / 9;
		min-height: 0;
	}

	.srbl-slide-content {
		padding-bottom: 58px;
	}

	.srbl-slider-dots {
		right: 18px;
		bottom: 18px;
	}

	.srbl-category-nav {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.srbl-banner-grid {
		grid-template-columns: 1fr;
	}

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

@media (max-width: 640px) {
	.admin-bar .srbl-reading-progress {
		top: 46px;
	}

	.admin-bar .srbl-sticky-categories {
		top: 46px;
	}

	.srbl-shell {
		width: min(100% - 28px, 1160px);
	}

	.srbl-blog-hero {
		padding-top: 24px;
		padding-bottom: 18px;
	}

	.srbl-blog-hero h1 {
		font-size: 2rem;
		line-height: 1.08;
	}

	.srbl-blog-intro {
		margin-top: 12px;
		font-size: 0.98rem;
		line-height: 1.58;
	}

	.srbl-hero {
		padding-top: 30px;
	}

	.srbl-featured {
		padding-top: 24px;
		padding-bottom: 26px;
	}

	.srbl-category-featured {
		padding-top: 24px;
		padding-bottom: 24px;
	}

	.srbl-category-archive-head {
		align-items: stretch;
		flex-direction: column;
		gap: 14px;
	}

	.srbl-category-archive-head h1 {
		font-size: 2rem;
	}

	.srbl-breadcrumbs {
		margin-bottom: 12px;
		font-size: 0.8rem;
	}

	.srbl-breadcrumbs span {
		max-width: 68vw;
	}

	.srbl-article-hero {
		padding-top: 24px;
		padding-bottom: 24px;
	}

	.srbl-article-hero h1 {
		font-size: 2rem;
	}

	.srbl-article-image {
		aspect-ratio: 16 / 9;
	}

	.srbl-article-main {
		padding: 22px 17px;
	}

	.srbl-article-content {
		font-size: 1rem;
		line-height: 1.72;
	}

	.srbl-related,
	.srbl-recommendations,
	.srbl-article-cta {
		margin-top: 30px;
	}

	.srbl-related-head,
	.srbl-recommendations-head {
		margin-bottom: 14px;
	}

	.srbl-recommendations-head {
		align-items: stretch;
		flex-direction: column;
		gap: 12px;
	}

	.srbl-related-head h2,
	.srbl-recommendations-head h2 {
		font-size: 1.45rem;
	}

	.srbl-recommendation-tabs {
		width: 100%;
	}

	.srbl-recommendation-tabs button {
		flex: 1 1 0;
		min-width: 0;
		padding: 0 10px;
	}

	.srbl-related-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.srbl-article-cta {
		padding: 20px 17px;
	}

	.srbl-cta-button {
		width: 100%;
	}

	.srbl-latest-item {
		grid-template-columns: 66px minmax(0, 1fr);
	}

	.srbl-latest-thumb {
		width: 66px;
	}

	.srbl-banner-grid {
		gap: 14px;
	}

	.srbl-banner-media {
		aspect-ratio: 16 / 9;
	}

	.srbl-banner-content {
		padding: 17px;
	}

	.srbl-banner-title {
		font-size: 1.35rem;
	}

	.srbl-featured-head {
		align-items: center;
	}

	.srbl-slider-button {
		width: 40px;
		height: 40px;
	}

	.srbl-slider-icon {
		width: 9px;
		height: 9px;
	}

	.srbl-slide-content {
		padding: 22px 17px 18px;
	}

	.srbl-slide-title {
		font-size: 1.55rem;
		line-height: 1.1;
	}

	.srbl-slide-excerpt {
		margin: 13px 0 18px;
		font-size: 0.98rem;
	}

	.srbl-slider-dots {
		position: static;
		width: fit-content;
		justify-content: center;
		margin: 0 auto 18px;
	}

	.srbl-categories {
		padding-bottom: 24px;
	}

	.srbl-category-head {
		align-items: stretch;
		flex-direction: column;
		gap: 14px;
		margin-bottom: 14px;
	}

	.srbl-all-posts {
		min-height: 48px;
		justify-content: space-between;
	}

	.srbl-sticky-categories {
		padding: 13px 0 12px;
	}

	.srbl-sticky-category-inner {
		width: min(100% - 20px, 1160px);
		gap: 9px;
	}

	.srbl-sticky-label {
		display: none;
	}

	.srbl-sticky-all {
		min-height: 44px;
		padding: 0 16px;
		font-size: 0.9rem;
	}

	.srbl-sticky-category-nav {
		gap: 8px;
		padding-bottom: 3px;
		scroll-padding: 8px;
	}

	.srbl-sticky-category-tile {
		min-height: 44px;
		gap: 8px;
		padding: 0 15px 0 9px;
	}

	.srbl-sticky-category-tile .srbl-category-icon {
		width: 28px;
		height: 28px;
		flex-basis: 28px;
	}

	.srbl-sticky-category-tile .srbl-category-icon svg {
		width: 15px;
		height: 15px;
	}

	.srbl-sticky-category-name {
		max-width: 168px;
		font-size: 0.9rem;
	}

	.srbl-category-nav {
		display: grid;
		gap: 10px;
		overflow: visible;
		margin-right: 0;
		margin-left: 0;
		padding: 0 0 8px;
	}

	.srbl-category-parent-row {
		display: grid;
		width: 100%;
		max-width: 100%;
		grid-auto-columns: 100%;
		grid-auto-flow: column;
		grid-template-columns: none;
		gap: 9px;
		overflow-x: auto;
		padding: 1px 0 8px;
		scroll-padding: 0;
		scroll-snap-type: x proximity;
		-webkit-overflow-scrolling: touch;
	}

	.srbl-category-parent-row::-webkit-scrollbar {
		display: none;
	}

	.srbl-category-tile {
		min-height: 70px;
		grid-template-columns: 28px minmax(0, 1fr);
		gap: 5px;
		padding: 12px 50px 12px 12px;
	}

	.srbl-category-group {
		width: 100%;
		max-width: 100%;
		min-width: 0;
		scroll-snap-align: start;
	}

	.srbl-category-name,
	.srbl-category-description {
		padding-left: 0;
	}

	.srbl-category-icon {
		width: 28px;
		height: 28px;
	}

	.srbl-category-icon svg {
		width: 15px;
		height: 15px;
	}

	.srbl-category-name {
		font-size: 0.92rem;
		line-height: 1.2;
	}

	.srbl-category-description {
		font-size: 0.78rem;
		line-height: 1.28;
		-webkit-line-clamp: 1;
	}

	.srbl-category-arrow {
		width: 8px;
		height: 8px;
	}

	.srbl-category-toggle {
		top: 17px;
		right: 8px;
		width: 36px;
		height: 36px;
	}

	.srbl-subcategory-list {
		width: 100%;
		max-width: 100%;
		gap: 8px;
		padding-bottom: 10px;
	}

	.srbl-subcategory-list::-webkit-scrollbar {
		display: none;
	}

	.srbl-subcategory-tile {
		flex: 0 0 min(68vw, 230px);
		min-height: 54px;
		scroll-snap-align: start;
	}

	.srbl-subcategory-description {
		-webkit-line-clamp: 1;
	}

	.srbl-grid {
		grid-template-columns: 1fr;
		gap: 18px;
		align-items: start;
	}

	.srbl-card {
		min-height: 0;
	}

	.srbl-card-media {
		margin: 14px 14px 0;
	}

	.srbl-card-body {
		flex: 0 0 auto;
		padding: 19px 16px 16px;
	}

	.srbl-card-topline {
		margin-bottom: 9px;
		font-size: 0.72rem;
	}

	.srbl-card-title {
		font-size: 1.25rem;
		line-height: 1.16;
	}

	.srbl-card-excerpt {
		margin: 12px 0 17px;
		font-size: 0.96rem;
		line-height: 1.55;
	}

	.srbl-reading-badge {
		bottom: 10px;
		left: 10px;
		min-height: 28px;
		padding: 0 9px;
		font-size: 0.7rem;
	}

	.srbl-read-more {
		margin-top: 0;
	}

	.srbl-card-meta {
		align-items: flex-start;
		flex-direction: column;
		padding: 0 16px 18px;
	}
}

@media (max-width: 640px) {
	.srbl-category-nav {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
		overflow: visible !important;
		margin: 0 !important;
		padding: 0 0 8px !important;
	}

	.srbl-category-parent-row {
		display: grid !important;
		width: 100% !important;
		max-width: 100% !important;
		grid-auto-flow: row !important;
		grid-auto-columns: unset !important;
		grid-template-columns: 1fr !important;
		gap: 9px !important;
		overflow: visible !important;
		padding: 0 !important;
	}

	.srbl-category-group {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		flex: none !important;
	}

	.srbl-category-tile {
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
	}

	.srbl-subcategory-panel-row {
		display: none !important;
	}

	.srbl-subcategory-list--desktop {
		display: none !important;
	}

	.srbl-subcategory-list--mobile:not([hidden]) {
		display: flex !important;
		width: 100% !important;
		max-width: 100% !important;
		margin-top: 7px !important;
		padding: 2px 0 10px !important;
	}

	.srbl-subcategory-list--mobile .srbl-subcategory-tile {
		flex: 0 0 min(62vw, 210px) !important;
	}
}
