/* Body and Typography */


.container {
  max-width: 960px;
  margin: 7px auto;
  background: #ecdfcc;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.post-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 1px;
}

.post-date, .post-updated, .post-theme {
  color: #777;
  font-size: 14px;
  font-style: italic;
  background-color: #fff;
  padding: 5px 5px;
  border-radius: 5px;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}

.blog-post {
  margin-bottom: 0.2rem;
}

.post-content-wrapper {
  display: flow-root; /* Modern clearfix */
}

.post-image {
  float: left;
  max-width: 65%;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  shape-outside: margin-box; /* Allows text to wrap around the image including its margin */
}

.post-content {
  /* Remove overflow: hidden to allow text to wrap below the image */
  padding: 0.1em;
  line-height: 1.5;
}

hr {
  clear: both;
  margin-top: 1rem;
}

blockquote {
  font-style: italic;
  color: #555;
  border-left: 10px solid #ccc;
  margin: 10px 0;
  padding-left: 10px;
  background-color: #e6e6fa;
  border-radius: 5px;
}

iframe {
  float: left;
  margin-right: 15px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  max-width: 400px;
  height: auto;
}

/* Search Filter */
.search-filter {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

#search {
  width: 150px;
  padding: 3px;
  font-size: 16px; /* or any other size */
  font-weight: 500;
}

#filterTheme {
  width: 150px;
  padding: 3px;
  border-radius: 5px;
  font-size: 16px; /* or any other size */
  font-weight: 500;
}

.back-link {
  display: inline-block;
  margin-top: 15px;
  background: #333;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  padding: 6px 8px;
}

.back-link:hover {
  color: #ff33b1;
}

@media screen and (max-width: 768px) {
  .search-input {
    width: 100%; /* Make it responsive on smaller screens */
    max-width: 100%; /* Ensure it doesn't exceed container width */
    padding-top: 15px;
  }
  .post-image {
    float: none; /* Remove float */
    max-width: 100%; /* Make image 100% wide */
    margin: 0 auto 10px; /* Center the image */
    display: block; /* Ensure it behaves like a block element */
  }
  iframe {
    float: none;
    width: 400px;
    height: auto;
    padding-bottom: 10px;
    margin: 0 auto 10px; /* Center the image */
    display: block; /* Ensure it behaves like a block element */
  }
}
/* Media query for smaller screens */
@media (max-width: 375px) {
  .search-filter {
    flex-direction: column; /* Stack items vertically */
    align-items: stretch; /* Stretch items to full width */
  }
  .search-filter input[type=text],
  .search-filter select {
    width: 100%; /* Full width on small screens */
    margin-bottom: 10px; /* Space between stacked elements */
  }
}
@media screen and (max-width: 320px) {
  .search-filter {
    flex-direction: column; /* Stack items vertically */
    align-items: stretch; /* Stretch items to full width */
  }
  .search-filter input[type=text],
  .search-filter select {
    width: 100%; /* Full width on small screens */
    margin-bottom: 10px; /* Space between stacked elements */
  }
  .search-input {
    width: 100%; /* Make input field full width on small screens */
    padding-top: 15px;
  }
  .post-image {
    float: none; /* Remove float */
    max-width: 100%; /* Make image 100% wide */
    margin: 0 auto 10px; /* Center the image */
    display: block; /* Ensure it behaves like a block element */
  }
  iframe {
    float: none;
    width: 100%;
    height: auto;
  }
}/*# sourceMappingURL=blog.css.map */