/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;700&family=EB+Garamond:wght@400;700&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: sans-serif; /* default body font */
  background-color: #ffffff;
  color: #111;
}

.container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.logo {
  width: 100%;
  max-width: 450px;
  display: block;
  margin: 40px auto;
}

.issue {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  margin: 40px 0;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  transition: background 0.2s ease;
}

.issue:hover {
  background-color: #f9f9f9;
}

.issue img {
  width: 120px;
  height: auto;
  margin-right: 20px;
  border: 1px solid #ddd;
}

/* All issue headings (h2) use Lora */
.issue-text h2 {
  margin: 0;
  font-size: 1.5em;
  font-family: 'Lora', serif;
  font-weight: 700;
}

/* All issue subtitles (h3.subtitle) use EB Garamond */
.issue-text h3.subtitle {
  font-family: 'EB Garamond', serif;
  font-size: 1em;
  font-weight: 400;
  color: #000;
  margin: 0.2em 0;
}

.issue-text p {
  margin: 5px 0 0;
  font-size: 1em;
  color: #666;
}

.tags {
  margin-top: 0.3em;
}

.tags small {
  display: inline-block;
  background-color: #eee;
  color: #333;
  padding: 3px 8px;
  margin: 2px;
  border-radius: 5px;
  font-size: 0.8em;
}
