.site-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.site-title-container {
  display: flex;
  align-items: center;
  gap: 0.5em;
  flex-wrap: nowrap; /* Prevent wrapping */
}

.site-logo {
  flex-shrink: 0;
}

.site-title {
  margin: 0;
  white-space: nowrap; /* Keep title on one line */
  overflow: hidden; /* Hide overflow if title is too long */
  text-overflow: ellipsis; /* Add ellipsis for long titles */
}

.post-header {
  margin-bottom: 0.1em;
}

h1, h2, h3 {
  font-family: inherit;
  font-weight: 400;
  line-height: 1.3;
}

h1 {
  font-size: 2em;
  margin-top: 0;
  margin-bottom: 0.5em;
}

h2 {
  font-size: 1.6em;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

h3 {
  font-size: 1.3em;
  margin-top: 1.2em;
  margin-bottom: 0.4em;
}

.post-title {
  font-size: 1.6em;
  font-weight: 400;
  font-family: inherit;
  margin-bottom: 0.3em;
}

.post-title a {
  text-decoration: none;
  color: inherit;
}

.post-title a:hover {
  text-decoration: underline;
}

.post-author {
  margin: 0.2em 0;
  font-size: 0.9em;
  color: #666;
}

.post-meta {
  margin: 0.2em 0;
  font-size: 0.85em;
  color: #888;
}

.post {
  margin-bottom: 0.4em;
  margin-top: 0.8em;
  padding-bottom: 0em;
  border-bottom: 1px solid #eee;
}

.post:last-child {
  border-bottom: none;
}

.wrapper {
  max-width: -webkit-calc(980px - (30px * 2));
  max-width: calc(980px - (30px * 2));
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media screen and (max-width: 800px) {
  .wrapper {
    max-width: -webkit-calc(980px - (30px));
    max-width: calc(980px - (30px));
    padding-right: 15px;
    padding-left: 15px;
  }
}
