/*
Theme Name: Radio K1
Theme URI: https://www.radiok1.com/
Author: Radio K1
Description: Custom WordPress theme for the Radio K1 WIX to WordPress migration.
Version: 0.1.0
Requires at least: 6.6
Tested up to: 6.8
Requires PHP: 8.1
Text Domain: radiok1
*/

:root {
  --rk1-bg: #ffffff;
  --rk1-surface: #ffffff;
  --rk1-ink: #222222;
  --rk1-brand: #d94b17;
  --rk1-brand-dark: #b53e13;
  --rk1-accent: #0f6cbd;
  --rk1-muted: #666666;
  --rk1-max: 1160px;
  --rk1-space: 1rem;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--rk1-ink);
  background: var(--rk1-bg);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--rk1-accent);
}

.container {
  width: min(100% - 2rem, var(--rk1-max));
  margin-inline: auto;
}
