.author-info {
  display: flex;
  align-items: center;
  gap: 10px; /* Adjust the space between the image and text */
  margin-bottom: 20px; /* Space below the author info */
}

.author-avatar {
  width: 50px; /* Adjust size as needed */
  height: 50px;
  border-radius: 50%; /* Makes the image a circle */
  border: 1px solid gold; /* Adds the gold border */
}

.author-info span {
  font-size: 16px;
  color: #aaa; /* A light gray color for the text */
}

.blog-post {
    padding: 50px 0;
}

.blog-post .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.post-title {
    font-size: 48px;
    color: gold;
    margin-bottom: 10px;
}

.post-date {
    font-size: 16px;
    color: #aaa;
    margin-bottom: 20px;
}

.post-divider {
    width: 100%;
    height: 2px;
    background-color: gold;
    border: none;
    margin-bottom: 30px;
}

.post-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
}

.post-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: white;
}

.back-link {
    display: inline-block;
    margin-top: 40px;
    color: gold;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #fff;
}

.pill-style {
  background-color: #3b3b3b;
  border-radius: 8px;
  border: 1px solid #5a5a5a;
  color: #ffffff;
  font-family: monospace;
  font-size: 14px;
  padding: 1px 2px;
  display: inline-block;
  margin: 0 1px;
}

.post-content ul, ol {
    padding-left: 60px;
    margin-top: 20px;
    margin-bottom: 20px;
}

ul ul {
    list-style-type: square;
}