@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@600&display=swap');

* {
  box-sizing: border-box;
}

body {
  background-color: #fff;
  color: #000;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 auto;
  padding: 1rem;
  max-width: 700px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Geologica', 'Helvetica Neue', 'Open Sans', Arial, sans-serif;
  margin: 0 0 0.5em;
  line-height: 1.3;
}

a {
  color: #3b5998;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h2 a, h3 a {
  color: #444;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

p > code {
  background-color: hsl(222, 100%, 93%);
  border-radius: 3px;
  padding: 0 5px;
  font-size: 0.85em;
}

pre code.language-c {
  display: block;
  background: #f5f2f0 url('/assets/img/c.svg') center/contain no-repeat;
  white-space: pre-wrap;
  font-size: 0.9em;
  padding: 1em;
  border-radius: 5px;
  overflow-x: auto;
}

.post-info,
.copyright {
  color: #777;
  font-size: 0.875rem;
  text-align: left;
}

header {
  margin-bottom: 2rem;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.profile-photo {
  width: 50px;
  height: 50px;
  border-radius: 15%;
  object-fit: cover;
  flex-shrink: 0;
}

.site-title-link {
  text-decoration: none;
  color: inherit;
}

.site-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  font-family: 'Geologica', 'Helvetica Neue', 'Open Sans', Arial, sans-serif;
}

.site-description {
  margin: 0.3em 0 0;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.4;
}

.right-float-photo {
  float: right;
  padding: 5px 0 5px 5px;
  margin: 0;
  width: 200px;
  height: auto;
}

.right-float-photo + p > em {
  float: right;
  clear: right;
  width: 200px;
  margin: 0;
  text-align: center;
  padding: 0 0 5px 5px;
  font-size: 0.85rem;
}

/* Медиа */
audio, iframe {
  width: 100%;
  max-width: 100%;
  display: block;
  border-radius: 10px;
}

iframe {
  margin-bottom: 5px;
}

audio {
  margin-top: 5px;
}

audio + small {
  margin: 3px 0 5px;
  display: block;
  text-align: right;
  font-size: 0.8rem;
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #777;
}

.footer a {
  color: #3b5998;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.home-link {
  justify-self: start;
}

.icon-links {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.icon-links img,
.home-link img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
  display: block;
}

.icon-links img:hover,
.home-link img:hover {
  transform: scale(1.2);
}


.post > p {
  margin: 0.5em 0;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 10px;
  border-top: 1px solid #ccc;
  font-size: 0.85rem;
  gap: 5px;
  flex-wrap: wrap;
}

.post-link {
  color: #3b5998;
  text-decoration: none;
  max-width: 48%;
  line-height: 1.4;
}

.post-link:hover {
  text-decoration: underline;
}

.post-link.prev {
  text-align: left;
}

.post-link.next {
  text-align: right;
  margin-left: auto;
}