/*
Theme Name: Sten Theme
Description: A minimalist WordPress theme inspired by a clean article list layout.
Author: ChatGPT
Version: 1.0
*/

body {
  background: #d3d3d3;
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  color: #111;
}

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

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 20px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

header .site-branding {
  font-weight: bold;
  font-size: 18px;
}

header .site-desc {
  font-size: 12px;
  margin-top: 5px;
}

nav.menu {
  font-size: 14px;
}

nav.menu a {
  margin-left: 20px;
}

.article-list {
  border-top: 1px solid #000;
}

.article-item {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #000;
}

.article-date {
  flex-shrink: 0;
  width: 80px;
}

.article-title {
  flex-grow: 1;
  padding-left: 20px;
}

img.lazy {
  display: block;
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .container {
    padding: 20px 10px;
  }
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  nav.menu a {
    margin: 10px 10px 0 0;
  }
}
