/*
Theme Name: Deccan Digital News & Teleprompter
Theme URI: https://deccandigital.hayax.in
Author: Deccan Digital Engineering Team
Author URI: https://deccandigital.hayax.in
Description: Official Deccan Digital News Portal & Teleprompter Theme for deccandigital.hayax.in. Built with high-contrast typography, live news ticker, teleprompter mode, and custom news post types.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: news, magazine, teleprompter, dark-mode, grid-layout, two-columns, custom-header
Text Domain: deccan-digital
*/

/* Reset & Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #0b0f17;
  color: #f1f5f9;
  line-height: 1.6;
}

a {
  color: #f59e0b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.deccan-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.deccan-header {
  background-color: #0f172a;
  border-bottom: 1px solid #1e293b;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.deccan-brand {
  display: flex;
  items-center: center;
  gap: 0.75rem;
}

.deccan-logo-badge {
  background: #f59e0b;
  color: #020617;
  font-weight: 900;
  font-size: 1.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  letter-spacing: -0.05em;
}

.deccan-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.deccan-card {
  background-color: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.deccan-card:hover {
  transform: translateY(-2px);
  border-color: #f59e0b;
}

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

.deccan-card-body {
  padding: 1.25rem;
}

.deccan-badge {
  display: inline-block;
  background-color: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
}

.deccan-footer {
  background-color: #090d14;
  border-top: 1px solid #1e293b;
  padding: 2rem 0;
  text-align: center;
  margin-top: 4rem;
  font-size: 0.875rem;
  color: #94a3b8;
}
