/*
Theme Name: Artek
Theme URI: http://localhost:8008
Author: Artek
Description: Custom WordPress theme for the Artek website.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
Text Domain: artek
*/

:root {
  --content-max-width: 1180px;
  --text-color: #1a1a1a;
  --muted-color: #666;
  --bg-color: #fff;
  --accent-color: #0057b8;
  --artek-header-max-width: 1760px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text-color);
  background: var(--bg-color);
  font: 16px/1.6 Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

a {
  color: var(--accent-color);
}

.site-footer,
.site-main {
  width: min(100% - 2rem, var(--content-max-width));
  margin: 0 auto;
}

.site-main {
  padding: 2rem 0;
}

.entry {
  margin-bottom: 2rem;
}

.entry-title {
  margin: 0 0 0.5rem;
}

.entry-meta {
  margin-bottom: 0.75rem;
  color: var(--muted-color);
  font-size: 0.925rem;
}

.site-footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid #e6e6e6;
  color: var(--muted-color);
  font-size: 0.925rem;
}
