/*
Theme Name: Aktien Alerts
Theme URI: https://aktienalerts.com
Author: Aktien Alerts
Author URI: https://aktienalerts.com
Description: Custom WordPress theme for Aktien Alerts - German financial news and stock market coverage. Features gold (#e2a200) accent on black/white design, news ticker, responsive article grids, and category-based navigation.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aktien-alerts
Tags: news, financial, one-column, two-columns, right-sidebar, custom-menu, featured-images, translation-ready

Aktien Alerts WordPress Theme
Copyright 2026 Aktien Alerts Inc.
*/

/* ==========================================================================
   Global Styles
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  background-color: transparent;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --gold: #e2a200;
  --gold-dark: #c48e00;
  --black: #000;
  --white: #fff;
  --light-gray: #f8f8f8;
  --text-gray: #797979;
  --text-dark: #333;
  --footer-text: #c4c4c4;
  --border-color: #e5e5e5;
  --overlay-dark: rgba(0, 0, 0, 0.6);
  --transition-speed: 0.3s;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI',
    Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 15px;
}

h1 { font-size: 36px; }
h2 { font-size: 28px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

p {
  margin-bottom: 1.5em;
  line-height: 1.7;
}

strong, b { font-weight: 700; }
em, i { font-style: italic; }

blockquote {
  border-left: 4px solid var(--gold);
  padding: 15px 20px;
  margin: 20px 0;
  background: var(--light-gray);
  font-style: italic;
  color: var(--text-gray);
}

a {
  color: var(--text-dark);
  transition: color var(--transition-speed) ease;
}

a:hover,
a:focus {
  color: var(--gold);
}

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

.site-content,
.content-wrapper {
  display: flex;
  gap: 30px;
  padding: 40px 0;
}

.main-content {
  flex: 1;
  min-width: 0;
}

.sidebar {
  width: 300px;
  flex-shrink: 0;
}

.section {
  padding: 40px 0;
}

.section-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--gold);
  display: inline-block;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-gray { color: var(--text-gray); }
.bg-black { background-color: var(--black); }
.bg-gold { background-color: var(--gold); }
.bg-light { background-color: var(--light-gray); }
.bg-white { background-color: var(--white); }
.hidden { display: none !important; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

::selection {
  background-color: var(--gold);
  color: var(--white);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--text-gray); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
