
.blog-post {
  background: #f4f4f4;
  border: 1px solid #e0e0e0;
  margin-bottom: 30px;
  overflow: hidden;
}

.blog-post img {
  width: 100%;
  display: block;
}

.blog-post-content {
  padding: 20px;
}

.blog-post .more {
  display: inline-block;
  margin-top: 10px;
}

.styled-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.styled-list li.template-bullet {
  color: #ff6600;
  position: relative;
  padding-left: 28px; /* make room for the bullet */
  margin-bottom: 20px;

}

.styled-list li.template-bullet::before {
  color: #ff6600;
  position: relative;
  left: 0;
  top: 6px;
}

/* Optional improvements */
.styled-list li strong {
  display: block;
  font-weight: 600;
  color: #ff6600;
  margin-bottom: 4px;
}

.styled-list li p {
  margin: 0;
  font-size: 14px;
  color: #ff6600;
}
/* Blog Row Flex Layout */
.blog-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	margin-top: 30px; /* optional spacing from top */
}

/* Each blog post container */
.blog-post-container {
	width: 48%; /* Two side-by-side with space between */
	box-sizing: border-box;
}

/* Responsive images inside blog posts */
.blog-post img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

/* Optional mobile responsiveness */
@media (max-width: 768px) {
	.blog-post-container {
		width: 100%;
	}
}
