/* Global sidebar widgets */
.sidebar-widget {
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 22px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
	box-shadow: var(--shadow);
	backdrop-filter: blur(14px);
}

.sidebar-widget h3 {
	margin: 0 0 16px;
	color: #fff;
	font-weight: 900;
}

.search-widget form {
	display: flex;
	gap: 8px;
}

.search-widget input {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.055);
	color: #fff;
	outline: 0;
}

.search-widget input:focus {
	border-color: rgba(198, 164, 59, 0.6);
}

.search-widget button {
	width: 48px;
	border: 0;
	border-radius: 14px;
	background: #C6A43B;
}

.latest-widget ul,
.cats-widget ul {
	display: grid;
	gap: 12px;
}

.latest-widget li,
.cats-widget li {
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.latest-widget a,
.cats-widget a {
	display: block;
	color: rgba(255, 255, 255, 0.75);
}

.latest-widget small {
	color: rgba(255, 255, 255, 0.42);
}

.cta-widget {
	background: radial-gradient(circle at 20% 0%, rgba(198, 164, 59, 0.22), transparent 44%), linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}

.cta-widget p {
	color: rgba(255, 255, 255, 0.65);
	line-height: 2.1;
}

.cta-widget a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	padding: 11px 16px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(145deg, #ffe56b, #C6A43B);
	color: #1d1604;
	font-weight: 900;
	cursor: pointer;
	transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.cta-widget a:hover,
.cta-widget a:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(198, 164, 59, 0.26);
	filter: brightness(1.05);
}
