* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0d0d0d;
  color: #f5f5f5;
  line-height: 1.8;
}

.blog-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.75)),
    url("/img/como-elegir-un-buen-tatuador.jpg") center 70% /cover no-repeat;
  text-align: center;
}

.blog-hero .overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.blog-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 30px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: #d9d9d9;
}

.blog-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 700;
}

.blog-hero h1 span {
  display: block;
  color: #c8b28a;
}

.blog-subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #d0d0d0;
}

.blog-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 60px 20px 100px;
}

.blog-post {
  width: 100%;
  max-width: 860px;
}

.intro-card,
.highlight-box,
.cta-box {
  background: #151515;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.blog-post section {
  margin-bottom: 42px;
}

.blog-post h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: #ffffff;
}

.blog-post p {
  margin-bottom: 16px;
  color: #d7d7d7;
  font-size: 1.05rem;
}

.highlight-box h2 {
  margin-bottom: 20px;
}

.highlight-box ul {
  padding-left: 20px;
}

.highlight-box li {
  margin-bottom: 12px;
  color: #e8e8e8;
}

.cta-box {
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(135deg, #181818, #101010);
}

.cta-box h3 {
  font-size: 1.8rem;
  margin-bottom: 14px;
  color: #fff;
}

.cta-box p {
  max-width: 620px;
  margin: 0 auto 24px;
  color: #d0d0d0;
}

.cta-button {
  display: inline-block;
  padding: 14px 28px;
  background: #c8b28a;
  color: #111;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .blog-hero {
    min-height: 55vh;
    padding: 60px 20px;
  }

  .blog-subtitle {
    font-size: 1rem;
  }

  .blog-post h2 {
    font-size: 1.45rem;
  }

  .intro-card,
  .highlight-box,
  .cta-box {
    padding: 24px;
  }

  .blog-post p,
  .highlight-box li {
    font-size: 1rem;
  }
}