@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;500;700;800&display=swap");
:root {
  --bg: #ffffff;
  --paper: #ffffff;
  --ink: #222222;
  --muted: #666666;
  --line: #d9d9d9;
  --accent: #137a7f;
  --accent-soft: #86cecb;
  --tag-bg: #f2f2f2;
  --tag-ink: #444444;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "M PLUS 1p", sans-serif;
  line-height: 1.7;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrapper {
  max-width: 1020px;
  margin: 0 auto;
  padding: 28px 16px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
}

.sidebar {
  position: sticky;
  top: 20px;
  height: fit-content;
}

.site-header {
  margin-bottom: 20px;
  padding: 18px 20px;
  background: #c3e5e7;
  border-radius: 14px;
  color: #222222;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.site-title {
  display: inline-block;
  color: #137a7f;
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.site-title:hover {
  text-decoration: underline;
}

.site-description {
  margin: 8px 0 0;
  font-size: 0.95rem;
  color: #444444;
}

.content {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
}

.site-footer {
  max-width: 1020px;
  margin: 30px auto 0;
  padding: 18px 16px;
  color: var(--muted);
  text-align: right;
  grid-column: 1/-1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ink);
  line-height: 1.35;
}

h1,
h2 {
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 8px;
}

a {
  color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

a:visited {
  color: #137a7f;
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 1.5rem 0;
}

.posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 1.4rem;
}

.post {
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 5px solid #86cecb;
  border-radius: 10px;
  padding: 14px 16px;
}

.post h1,
.post h2 {
  margin: 0 0 8px;
  border: 0;
  padding: 0;
}

.entry {
  color: #333333;
}

.read-more,
.read-more:visited,
.read-more:hover,
.read-more:active {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: #ffffff;
  background: var(--accent);
  font-weight: 700;
}

.read-more:hover {
  filter: brightness(0.96);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}

.tags .tag {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.85rem;
  background: var(--tag-bg);
  color: var(--tag-ink);
  border: 1px solid #d9d9d9;
}

blockquote {
  margin: 1rem 0;
  padding: 0.65rem 0.9rem;
  border-left: 4px solid #137a7f;
  background: #f5f5f5;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 760px) {
  .wrapper {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
  }
}
@media (min-width: 760px) {
  .wrapper {
    padding: 36px 20px;
  }
  .content {
    padding: 30px;
  }
  .posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/*# sourceMappingURL=style.css.map */