/*──────────────────────────────────
  DotPixel Blog, Hero & Content Styles
──────────────────────────────────*/
.dp-hero {
  min-height: 60vh;
  background: center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dp-hero-content {
  text-align: center;
  color: #fff;
  padding: 2rem 1rem;
}
.dp-hero-content h1 {
  font-family: 'Ink Free', cursive;
  font-size: 3rem;
  margin-bottom: .5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,.5);
}
.dp-hero-content .dp-subtitle {
  font-family: 'Ink Free', cursive;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}
.dp-hero-content .dp-intro {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

/* Content‐block styling */
.dp-content-block {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: .5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}
.dp-content-block h2,
.dp-content-block h3 {
  font-family: 'Ink Free', cursive;
  margin-top: 1.5rem;
}

/* Blog/FAQ preview */
.dp-blog-preview {
  padding: 4rem 1rem;
  background: var(--clr-bg-alt);
}
.dp-blog-preview h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-family: 'Ink Free', cursive;
  font-size: 2rem;
}
.dp-blog-items {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.dp-blog-item {
  background: #fff;
  padding: 1rem;
  border-radius: .5rem;
  box-shadow: 0 2px 5px rgba(0,0,0,.1);
  text-align: center;
}
.dp-blog-item img {
  width: 100%;
  height: auto;
  border-radius: .5rem;
  margin-bottom: .5rem;
}
.dp-blog-item h3 {
  font-family: 'Ink Free', cursive;
  margin: .5rem 0;
}
.dp-blog-item p {
  font-size: .9rem;
  margin-bottom: 1rem;
}
.dp-blog-item .dp-btn {
  display: inline-block;
  text-decoration: none;
  padding: .5rem 1rem;
  border-radius: .3rem;
  font-family: 'Ink Free', cursive;
  background: #FF1493;
  color: #fff;
  transition: background .3s;
}
.dp-blog-item .dp-btn:hover {
  background: #d91f60;
}
