.blog-post {
  max-width: 900px;
  margin: 0 auto;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.8;
  color: black;
  background: linear-gradient(145deg, #f4f4f4, #f4f4f4);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.blog-post h1 {
  font-size: 2.5rem;
  background: linear-gradient(to right, #e60000, #ff3333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 30px;
}

.blog-post h2 {
  font-size: 1.6rem;
  color: #e60000;
  margin-top: 50px;
  margin-bottom: 15px;
  border-left: 5px solid #e60000;
  padding-left: 12px;
}

.blog-post p {
  margin-bottom: 22px;
  font-size: 1.05rem;
}

.blog-post ul {
  background: rgba(255, 255, 255, 0.08); /* Slightly brighter for contrast */
  padding: 25px 30px;
  border-radius: 16px;
  margin: 25px 0;
  list-style: none; /* remove default bullets */
  border-left: 5px solid #e60000; /* techy accent on the left */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post ul li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 20px;
  color: #0f1623;
  font-weight: 500;
}

.blog-post ul li::before {
  content: "•"; /* custom bullet */
  position: absolute;
  left: 0;
  color: #e60000; /* brand red bullet */
  font-size: 1.2rem;
  top: 0;
}

.blog-post ul li:last-child {
  margin-bottom: 0;
}

.blog-post ul:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-post a {
  color: #e60000;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-post a:hover {
  color: #e60000;
}

.blog-post strong {
  color: #e60000;
}

.blog-post .tagline {
  font-size: 1.4rem;
  font-style: italic;
  text-align: center;
  margin-top: 40px;
  color: #e60000;
  letter-spacing: 1px;
}

.blog-post .highlight-box {
  background: rgba(230, 0, 0, 0.1);
  border: 1px solid rgba(230, 0, 0, 0.3);
  padding: 25px;
  border-radius: 16px;
  margin: 40px 0;
}

.blog-post .tags {
  margin-top: 50px;
  font-size: 0.95rem;
  color: #bbb;
}
.blog-post .tags span {
  margin-right: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 12px;
  border-radius: 12px;
}