/* Layout */
.blog-post__column-wrapper {
  display: flex;
  margin-top: 40px;
}
.blog-post__left-sidebar {
  flex-basis: 180px;
}
.blog-post__left-sidebar .btn__back-to-posts {
  display: block;
  text-decoration: none;
}
.blog-post__left-sidebar .btn__back-to-posts:before {
  content: '← '
}
.blog-post-section{
  flex-basis: 800px;
}


/* Header */
.blog-post__headline {
  line-height: 1.2;
  
}
.blog-post__header {
  padding: 100px 20px;
  background: #f1f1f1;
}
.featured-image {
  text-align: center;
  margin: 20px 0;
}
.featured-image img {
  max-width: 80%;
  height: auto;
  border-radius: 8px;
}


/* Date */

.blog-post__timestamp {
  display: block;
  margin-bottom: 0.7rem;
}

/* Author */

.blog-post__author {
  align-items: center;
  display: flex;
  margin: 10px 0 40px;
}

.blog-post__author-image {
  height: auto;
  margin-right: 0.7rem;
  width: 50px;
  border-radius: 50%;
}

.blog-post__author-name,
.blog-post__author-name:hover,
.blog-post__author-name:focus,
.blog-post__author-name:active {
  text-decoration: none;
}

/* Content */

.blog-post__body {
  margin-bottom: 30px;
}

.blog-post__body img {
  height: auto;
  max-width: 100%;
}


/* Mobile */
@media screen and (max-width: 767px) {
  .blog-post__column-wrapper {
    flex-direction: column;  
  }
  .blog-post__left-sidebar {
    flex-basis: inherit;
    margin-bottom: 60px;
  }
}

.blog-post h1 {
    font-size: 55px !important;
    line-height: 1.2;
    font-weight: bold;
}
/* Styles for recent posts */
.recent-posts {
    color: white !important;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
}
/* Style for Recent Posts */
.recent-posts {
    color: white; /* Ensures the text color is white */
}

.recent-posts a {
    color: white; /* Ensures links are also white */
    text-decoration: none; /* Removes underline from links */
}

.recent-posts a:hover {
    text-decoration: underline; /* Adds underline on hover for better UX */
}
}