/* =============================================
   DEEKU Insights - Custom Overrides
   ============================================= */

/* --- #4: Wider content area --- */
@media screen and (min-width: 768px) {
	.primary {
		-webkit-flex: 1 0 69%;
		flex: 1 0 69%;
	}

	.sidebar {
		-webkit-flex: 1 0 26%;
		flex: 1 0 26%;
		margin: 0 0 0 2%;
	}
}

/* --- #8: Back to top button --- */
.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 40px;
	height: 40px;
	background: #218eed;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 20px;
	line-height: 38px;
	text-align: center;
	display: none;
	z-index: 999;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
	transition: background .25s ease-out;
	padding: 0;
}

.back-to-top:hover {
	background: #1a6fc0;
}

.back-to-top.visible {
	display: block;
}

/* --- #11: Tags in post summary cards --- */
.list__tags {
	margin-top: 10px;
	overflow: hidden;
}

.list__tags .tags {
	margin-bottom: 0;
}

/* --- #13: Social share buttons --- */
.social-share {
	margin: 20px 0;
	padding: 15px 0;
	border-top: 1px dotted #ebebeb;
	border-bottom: 1px dotted #ebebeb;
}

.social-share__title {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	color: #666;
	margin-bottom: 10px;
	letter-spacing: .04em;
}

.social-share__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 8px;
}

.social-share__item {
	margin: 0;
}

.social-share__link {
	display: inline-block;
	padding: 7px 14px;
	font-size: 12px;
	font-weight: 700;
	color: #fff !important;
	text-transform: uppercase;
	text-decoration: none !important;
	border-radius: 3px;
	transition: opacity .2s ease-out;
	letter-spacing: .03em;
	border: none;
	font-family: inherit;
	cursor: pointer;
	line-height: 1.4;
}

.social-share__link:hover {
	opacity: .82;
	color: #fff !important;
	text-decoration: none !important;
}

.social-share__link--linkedin { background: #0077b5; }
.social-share__link--twitter  { background: #1da1f2; }
.social-share__link--copy     { background: #2a2a2a; }
