/**
 * Main CSS Stylesheet for Portal News Theme
 * Author: Devil-Gemini-Ultra
 */

/* -------------------------------------------------------------
 * 1. DESIGN SYSTEM & ROOT VARIABLES
 * ------------------------------------------------------------- */
:root {
	/* Colors */
	--color-primary: #0066cc; /* Overwritten by Customizer (Biru Ayobandung / Merah Detik) */
	--color-primary-hover: #0052a3;
	--color-primary-light: #e6f0fa;
	--color-dark: #1a1a1a;
	--color-text: #333333;
	--color-text-muted: #666666;
	--color-light-bg: #f8f9fa;
	--color-border: #e2e8f0;
	--color-white: #ffffff;
	--color-error: #cc0000;
	
	/* Typography */
	--font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--font-serif: 'Playfair Display', Georgia, serif;
	
	/* Layout Configurations */
	--container-width: 1200px;
	--border-radius: 8px;
	--transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	--shadow-light: 0 2px 4px rgba(0,0,0,0.05);
	--shadow-hover: 0 10px 20px rgba(0,0,0,0.1);
}

/* -------------------------------------------------------------
 * 2. RESET & BASE ELEMENTS
 * ------------------------------------------------------------- */
*, *::before, *::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--font-primary);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-text);
	background-color: var(--color-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: var(--color-dark);
	text-decoration: none;
	transition: var(--transition);
}

a:hover {
	color: var(--color-primary);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: var(--border-radius);
	transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 {
	color: var(--color-dark);
	font-weight: 700;
	line-height: 1.3;
	margin-top: 0;
	margin-bottom: 0.5rem;
}

ul, ol {
	padding-left: 1.5rem;
	margin-top: 0;
	margin-bottom: 1rem;
}

p {
	margin-top: 0;
	margin-bottom: 1rem;
}

button, input, textarea, select {
	font-family: inherit;
	font-size: inherit;
	border-radius: 4px;
	outline: none;
}

.container {
	width: 100%;
	max-width: var(--container-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.text-center {
	text-align: center;
}

/* Screen Reader Text */
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

/* Skip link */
.skip-link {
	position: absolute;
	top: -100px;
	left: 0;
	background: var(--color-primary);
	color: white;
	padding: 8px 16px;
	z-index: 99999;
}
.skip-link:focus {
	top: 0;
}

/* -------------------------------------------------------------
