* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", sans-serif;
  background: #fff;
  color: #2d2d2d;
  line-height: 1.7;
}

.breadcrumb {
  max-width: 760px;
  margin: 30px auto 0;
  padding: 0 20px;
  font-size: 0.85rem;
  color: #999;
}
.breadcrumb a {
  color: #6c5ce7;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

.post {
  max-width: 760px;
  margin: 0 auto;
  padding: 30px 20px;
}

.post-header {
  margin-bottom: 24px;
}
.post-cat {
  display: inline-block;
  background: #f0edff;
  color: #6c5ce7;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.post-header h1 {
  font-size: 2.2rem;
  line-height: 1.25;
  color: #1a1a1a;
}
.post-meta {
  color: #999;
  font-size: 0.9rem;
  margin-top: 12px;
}

.post-cover {
  width: 100%;
  height: auto;
  border-radius: 14px;
  margin: 10px 0 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.post-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.post-content h2 {
  font-size: 1.5rem;
  margin: 34px 0 14px;
  color: #1a1a1a;
}
.post-content ul {
  margin: 0 0 20px 22px;
}
.post-content li {
  margin-bottom: 8px;
}

.post-content blockquote {
  border-left: 4px solid #6c5ce7;
  background: #faf9ff;
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #555;
}

.post-cta {
  display: inline-block;
  margin-top: 10px;
  background: #6c5ce7;
  color: #fff;
  padding: 14px 26px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s;
}
.post-cta:hover {
  background: #5847d6;
  transform: translateY(-2px);
}

.post-disclaimer {
  max-width: 760px;
  margin: 20px auto 60px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 10px;
  font-size: 0.82rem;
  color: #888;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .post-header h1 {
    font-size: 1.6rem;
  }
  .post-content h2 {
    font-size: 1.3rem;
  }
}
