.blog-title {
  text-align: center;
  font-size: 2em;
  margin-bottom: 40px; 
}

.blog-title-link {
  text-decoration: none !important;
  color: inherit !important;
}

.blog-title-link:hover {
  color: #6b0606!important;
}

.center-content {
  text-align: center; /* Center-align text and inline elements */
  max-width: 800px; /* Set a max width for the container */
  margin: 0 auto; /* Center the container itself */
}

.blog-post .blog-image img {
  display: block; /* Make the image a block element */
  max-width: 100%; /* Ensure the image scales responsively */
  height: 300px; /* Maintain aspect ratio */
  margin: 0 auto; /* Center the image */
  width: 350px; /* Set a desired width for the image */
  max-width: 100%;
  border-radius: 8px;
  margin-right: 75px;
  margin-top: -20px;
}

.blog-image-context {
  font-size: 13px!important;
  color: #888;
}

.title-img{
  display: block; /* Make the image a block element */
  max-width: 100%; /* Ensure the image scales responsively */
  height: auto; /* Maintain aspect ratio */
  margin: 0 auto; /* Center the image */
  width: 300px; /* Set a desired width for the image */
  max-width: 100%;
  border-radius: 8px;
}

.blog-container {
  margin-top: 50px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  max-width: 1000px;
}

.blog-post {
  position: relative;
  background-color: #0e0e0e; /* Soft pink */
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  color: #f0f6fc;
}

.blog-post h3 {
  color: #920000;
  font-size: 1.5em;
  margin-bottom: 20px;
  margin-top: -5px;
  margin-left: 25px;
}

.blog-post p {
  font-size: 1em;
  line-height: 1.5;
}

.blog-post ul {
  margin-top: 2px;
}


.blog-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-left: 25px;
  margin-bottom: 15px;
}


.blog-date {
  font-size: 0.85em;
  color: #888;
  text-align: right;
  display: block;
  margin-bottom: 10px;
}




.text-container {
  flex: 1;
}

.blog-inline-link {
  color: #BBBBBB;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-inline-link:hover {
  color: #888888;
}

.blog-caption-link, .blog-caption-text {
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-caption-link-2 {
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-caption-link:hover, .blog-caption-text:hover {
  color: #444;
}

.blog-caption-link-2:hover {
  color: #444;
}



.comment-bubble {
  margin-right: 25px;
  margin-bottom: 10px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: #1c1c1c;
  color: #f0f6fc;
  font-size: 0.85em;
  padding: 4px 8px;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
  text-decoration: none !important;
}

.comment-bubble:hover {
  background-color: #6b0606;
  color: f0f6fc;
}

.movie-list-titles a {
  transition: color 0.3s ease;
}

.movie-list-titles a:hover {
    color: #444 !important;
}


