/*
Theme Name: Feldnotiz
Theme URI: https://example.com
Author: Dein Name
Description: Minimalistisches Blog-Theme im Stil von Chosen (Compete Themes), erweitert um einen Fotofeed und einen twitterartigen Textfeed in einer fixen rechten Spalte.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: feldnotiz
*/

:root {
  --color-text: #1a1a1a;
  --color-text-secondary: #6b6b6b;
  --color-border: #e2e2e2;
  --color-accent: #C1440E;
  --color-bg: #ffffff;
  --color-hint-bg: #faf5f2;
  --font-body: 'InterOE', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--color-text); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--color-accent); }

img { max-width: 100%; display: block; }
