/* Add these styles to the end of your css/main.css file */

/* Devlog Featured Post */
.devlog-featured {
	display: block;
	transition: transform 0.2s ease;
}

.devlog-featured:hover {
	transform: translateY(-4px);
}

.devlog-thumbnail {
	overflow: hidden;
	border-radius: 8px;
}

.devlog-thumbnail img {
	transition: transform 0.3s ease;
}

.devlog-featured:hover .devlog-thumbnail img {
	transform: scale(1.05);
}

.devlog-title {
	font-family: 'Orbitron', sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	color: #1d1d1f;
	line-height: 1.3;
}

.devlog-excerpt {
	color: #6e6e73;
	font-size: 1rem;
	line-height: 1.5;
	margin-bottom: 0.5rem;
}

/* Devlog Card (Smaller posts) */
.devlog-card {
	display: block;
	background-color: #ffffff;
	border-radius: 8px;
	padding: 1rem;
	transition: all 0.2s ease;
	border: 1px solid #d2d2d7;
}

.devlog-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.devlog-card-img {
	width: 100%;
	height: 120px;
	object-fit: cover;
	border-radius: 6px;
}

.devlog-card-title {
	font-family: 'Orbitron', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	color: #1d1d1f;
	margin-bottom: 0.5rem;
	line-height: 1.3;
}

.devlog-card-excerpt {
	color: #6e6e73;
	font-size: 0.875rem;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Devlog Full Page Styles */
.devlog-entry {
	background-color: #ffffff;
	border-radius: 8px;
	padding: 2rem;
	margin-bottom: 2rem;
	border: 1px solid #d2d2d7;
}

.devlog-entry-header {
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #d2d2d7;
}

.devlog-entry-title {
	font-family: 'Orbitron', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	color: #1d1d1f;
	margin-bottom: 1rem;
}

.devlog-entry-meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.devlog-content {
	color: #1d1d1f;
}

.devlog-content h5 {
	font-family: 'Orbitron', sans-serif;
	font-weight: 600;
	color: #1d1d1f;
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
}

.devlog-content ul {
	color: #1d1d1f;
	margin-bottom: 1rem;
}

.devlog-content p {
	color: #1d1d1f;
	line-height: 1.6;
}

.devlog-footer {
	margin-top: 2rem;
	padding-top: 1rem;
	border-top: 1px solid #d2d2d7;
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.devlog-title {
		font-size: 1.5rem;
	}
	
	.devlog-entry-title {
		font-size: 1.75rem;
	}
}

@media (max-width: 768px) {
	.devlog-card-img {
		height: 100px;
	}
	
	.devlog-title {
		font-size: 1.25rem;
	}
}
