.spc-widget {
	width: 100%;
	margin: 0;
	padding: 0;
}

.spc-featured-image {
	margin-bottom: 40px;
	width: 100%;
}

.spc-featured-image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.spc-related-section {
	margin-top: 60px;
	width: 100%;
}

.spc-related-title {
	font-size: 24px;
	font-weight: bold;
	margin: 0 0 30px 0;
	color: #000;
	text-transform: uppercase;
	font-family: "Cooper Hewitt", Sans-serif;
}

.spc-related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 30px;
	width: 100%;
}

.spc-related-item {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.spc-related-image {
	width: 100%;
	margin-bottom: 15px;
	overflow: hidden;
	background: #000;
	position: relative;
	padding-top: 60%;
}

.spc-related-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.spc-related-image:hover img {
	transform: scale(1.05);
}

.spc-related-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.spc-related-item-title {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 10px 0;
	color: #000;
	font-family: "Cooper Hewitt", Sans-serif;
	line-height: 1.3;
}

.spc-related-item-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
	display: block;
}

.spc-related-item-title a:hover {
	color: #666;
	text-decoration: underline;
}

.spc-related-excerpt {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	margin: 0;
	font-family: "Cooper Hewitt Book", Sans-serif;
}

/* Pagination styles if needed */
.spc-pagination {
	margin-top: 40px;
	text-align: center;
}

.spc-pagination a,
.spc-pagination span {
	display: inline-block;
	padding: 8px 12px;
	margin: 0 4px;
	text-decoration: none;
	color: #000;
	border: 1px solid #ddd;
	transition: all 0.3s ease;
}

.spc-pagination a:hover {
	background: #000;
	color: #fff;
	border-color: #000;
}

.spc-pagination .current {
	background: #000;
	color: #fff;
	border-color: #000;
}

@media (max-width: 1024px) {
	.spc-related-grid {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.spc-related-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.spc-related-title {
		font-size: 20px;
		margin-bottom: 20px;
	}
	
	.spc-featured-image {
		margin-bottom: 30px;
	}
	
	.spc-related-section {
		margin-top: 40px;
	}
}

