/* KarniTimes Main Core Styles */

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--kt-font-body);
	background-color: var(--kt-bg);
	color: var(--kt-text);
	font-size: 15px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

a {
	color: var(--kt-secondary);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--kt-primary);
}

.kt-container {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Badges */
.kt-badge {
	display: inline-block;
	background-color: var(--kt-primary);
	color: #ffffff;
	font-family: var(--kt-font-heading);
	font-size: 11px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 3px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.kt-badge-red { background-color: #C8102E; }
.kt-badge-dark { background-color: #111111; }
.kt-badge-gold { background-color: #D4AF37; color: #111; }

/* Grid Layout Systems */
.kt-row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}

.kt-col {
	padding: 0 10px;
}

.kt-col-12 { width: 100%; }
.kt-col-8  { width: 66.666%; }
.kt-col-4  { width: 33.333%; }
.kt-col-3  { width: 25%; }
.kt-col-6  { width: 50%; }

/* News Card Component */
.kt-news-card {
	background: #fff;
	border: 1px solid var(--kt-border);
	border-radius: 6px;
	overflow: hidden;
	margin-bottom: 20px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kt-news-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.kt-card-thumb {
	position: relative;
	width: 100%;
	aspect-ratio: 16/9;
	overflow: hidden;
	background: #eee;
}

.kt-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.kt-news-card:hover .kt-card-thumb img {
	transform: scale(1.05);
}

.kt-card-thumb .kt-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
}

.kt-card-content {
	padding: 15px;
}

.kt-card-title {
	font-family: var(--kt-font-heading);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 8px;
}

.kt-card-meta {
	font-size: 12px;
	color: var(--kt-text-light);
	display: flex;
	align-items: center;
	gap: 12px;
}

/* Numbered Badges (1, 2, 3, 4) */
.kt-num-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	background-color: var(--kt-primary);
	color: #fff;
	font-weight: 700;
	font-size: 12px;
	border-radius: 50%;
}

/* Section Title Header */
.kt-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 2px solid var(--kt-primary);
	margin-bottom: 18px;
	padding-bottom: 4px;
}

.kt-section-title {
	font-family: var(--kt-font-heading);
	font-size: 18px;
	font-weight: 800;
	color: #fff;
	background-color: var(--kt-primary);
	padding: 4px 14px;
	border-radius: 3px 3px 0 0;
	margin-bottom: -6px;
	display: inline-block;
}

.kt-view-all-link {
	font-size: 13px;
	font-weight: 600;
	color: var(--kt-primary);
}

.kt-view-all-link:hover {
	text-decoration: underline;
}

/* Ad Banner Styles */
.kt-ad-banner {
	background: #f1f1f1;
	border: 1px dashed #ccc;
	text-align: center;
	padding: 15px;
	margin: 20px 0;
}

.kt-ad-inner {
	font-size: 12px;
	color: #888;
	text-transform: uppercase;
}
