* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}
body {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fde2e4, #bde0fe);
  text-align: center;
  color: #444;
}
.container {
  background: rgba(255, 255, 255, 0.8);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 90%;
}
h1 {
  font-size: 2rem;
  color: #ff7096;
}
p {
  font-size: 1.2rem;
  margin: 15px 0;
}

.socials > a {
  color: #e27d92;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 30px;
}

.socials img {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.socials a:hover img {
  transform: scale(1.1);
}

/* === Blog layout helpers === */
:root {
  --bg: #f4f6f8;
  --card-bg: rgba(255, 255, 255, 0.5);
  --max-w: 720px;
}

.container {
  max-width: var(--max-w);
  margin: 48px auto;
  padding: 24px;
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: saturate(120%) blur(6px);
}

.prose h1 {
  font-size: clamp(2.2rem, 3.2vw + 1rem, 3rem);
}
/* …and other typography styles … */

/* === Blog index grid & previews === */
.blog-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}

.blog-list h2 {
  font-size: 1rem;
  margin: 0 0 0.75rem 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  opacity: 0.7;
}
.blog-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.blog-list li {
  margin: 0 0 0.5rem 0;
}
.blog-list a {
  text-decoration: none;
}
.blog-list a:hover {
  opacity: 0.85;
}
.muted {
  opacity: 0.6;
}

.blog-previews {
  display: grid;
  gap: 16px;
}

.post-card {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
  backdrop-filter: saturate(120%) blur(6px);
}

.post-title {
  margin: 0 0 0.25rem 0;
  line-height: 1.2;
  font-size: clamp(1.25rem, 1vw + 1rem, 1.6rem);
}
.post-title a {
  text-decoration: none;
}

.post-meta {
  margin: 0 0 0.6rem 0;
  font-size: 0.9rem;
  opacity: 0.7;
}

.post-excerpt {
  margin: 0 0 0.75rem 0;
  line-height: 1.7;
}

.post-readmore {
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  font-weight: 600;
}

/* Responsive: stack on small screens */
@media (max-width: 820px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-list {
    order: 2;
  }
  .blog-previews {
    order: 1;
  }
}

.badge-draft {
  display: inline-block;
  padding: 2px 8px;
  font-size: 0.75rem;
  border-radius: 999px;
  background: #ffe7a3;
  border: 1px solid #f2c94c;
  color: #8a6a00;
  margin-left: 8px;
}
