/*
CTC Separate Stylesheet
Updated: 2026-02-24 13:29:48
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.6.1771939788
*/

.archive-header {
	padding: 80px 20px;
	text-align: center;
	background: linear-gradient(135deg, #111, #333);
	color: #fff;
}

.archive-title {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 10px;
}

.archive-description {
	opacity: 0.85;
	max-width: 600px;
	margin: 0 auto;
}

.container {
	max-width: 1200px;
	margin: auto;
	padding: 60px 20px;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
}

.archive-card {
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.archive-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.card-image img {
	width: 100%;
	height: 240px;
	object-fit: cover;
}

.card-content {
	padding: 25px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.card-meta {
	font-size: 14px;
	color: #888;
	margin-bottom: 10px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.card-title {
	font-size: 22px;
	margin-bottom: 15px;
}

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

.card-title a:hover {
	color: #0073ff;
}

.card-excerpt {
	flex-grow: 1;
	color: #555;
}

.read-more {
	margin-top: 20px;
	display: inline-block;
	font-weight: 600;
	text-decoration: none;
	color: #0073ff;
}

.read-more:hover {
	text-decoration: underline;
}

.modern-pagination {
	margin-top: 60px;
	text-align: center;
}

.modern-pagination .page-numbers {
	display: inline-block;
	padding: 10px 15px;
	margin: 0 5px;
	border-radius: 8px;
	background: #f3f3f3;
	text-decoration: none;
	color: #111;
}

.modern-pagination .current {
	background: #111;
	color: #fff;
}

/* SINGLE HERO */
.single-hero {
	padding: 120px 20px 60px;
	text-align: center;
	background: #0f172a;
	color: #fff;
}

.single-hero h1 {
	font-size: 48px;
	font-weight: 700;
	max-width: 900px;
	margin: 20px auto 0;
	line-height: 1.2;
}

.single-hero .meta {
	font-size: 14px;
	opacity: .8;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

/* FEATURED IMAGE */
.featured-image img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	display: block;
}

/* CONTENT */
.single-container {
	max-width: 800px;
	margin: 80px auto;
	padding: 0 20px;
}

.single-article {
	font-size: 18px;
	line-height: 1.8;
	color: #333;
}

.single-article h2,
.single-article h3 {
	margin-top: 40px;
}

.single-article p {
	margin-bottom: 25px;
}

/* LINKS */
.single-article a {
	color: #e11d48;
	text-decoration: none;
	font-weight: 500;
}

.single-article a:hover {
	text-decoration: underline;
}

/* TAGS */
.post-footer {
	margin-top: 60px;
	border-top: 1px solid #eee;
	padding-top: 30px;
}

.tags a {
	background: #f3f3f3;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 14px;
	margin-right: 8px;
	text-decoration: none;
	color: #111;
}

.tags a:hover {
	background: #111;
	color: #fff;
}

/* NAVIGATION */
.post-navigation {
	display: flex;
	justify-content: space-between;
	margin-top: 80px;
	border-top: 1px solid #eee;
	padding-top: 40px;
}

.post-navigation a {
	text-decoration: none;
	font-weight: 600;
	color: #111;
}

.post-navigation a:hover {
	color: #e11d48;
}

/* RESPONSIVE */
@media (max-width: 768px) {

	.single-hero h1 {
		font-size: 32px;
	}

	.featured-image img {
		height: 300px;
	}

	.post-navigation {
		flex-direction: column;
	}
}