:root {
  --pink: #d98a97;
  --dark: #1a1a1a;
  --text: #2b2b2b;
  --muted: #6b6b6b;
  --bg: #ffffff;
  --border: #eee;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.site-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.brand {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
}

.brand span {
  color: var(--pink);
  font-weight: 400;
}

main {
  max-width: 860px;
  margin: 0 auto;
  padding: 32px 20px 64px;
}

.page-title {
  font-size: 32px;
  margin-bottom: 24px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.15s ease;
}

.card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 16px;
}

.card-body h2 {
  font-size: 18px;
  margin: 0 0 6px;
}

.card-body p {
  font-size: 14px;
  color: var(--muted);
  margin: 4px 0 0;
}

.breadcrumb {
  font-size: 13px;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--pink);
  text-decoration: none;
}

.post h1 {
  font-size: 30px;
  margin: 8px 0 4px;
}

.post-date {
  color: var(--muted);
  font-size: 14px;
}

.post-cover {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  margin: 16px 0;
}

.post-content {
  font-size: 17px;
}

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

.post-content h2 {
  font-size: 22px;
  margin-top: 32px;
}

.post-content a {
  color: var(--pink);
}

.site-footer {
  text-align: center;
  padding: 24px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid var(--border);
}

.site-footer a {
  color: var(--pink);
}
