/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
.blog-post__summary {
  font-size: 24px;
  line-height: 1.6;
  margin: 12px 0 16px;
}


.blog-post__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 12px;
}


.blog-post__reading-time {
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-post__reading-time-icon {
  display: inline-flex;
}


.blog-post__reading-time::before {
  content: "⏱";
  margin-left: 10px;
}

.blog-post__author-name {
  font-weight: 700;
   margin-left: 5px;
}

.blog-post__meta-top {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}


.blog-post__featured-image {
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.blog-post h1 {
  padding-top: 30px;
}


.blog-post__featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50% !important; /* force center */
  display: block;
}

.blog-post__tags {
  margin: 20px 0 20px 0;
}

.blog-post__body {
  margin: 0 0 24px;
}

.blog-post__social-share {
  margin: 0 0 24px;
}

.blog-post__divider {
  border: 0;
  border-top: 2px solid #d9d9d9;
}

.blog-post__related-posts {
  text-align: left;
}

.blog-post__related-posts h2 {
  text-align: left; !important; /* force left */
}

.blog-comments button,
.blog-comments input[type="submit"] {
  display: inline-block;
  width: auto;
  padding: 10px 25px; /* 25px left/right */
}