body::before {
  content: "✅ blog.css is loaded";
  background: lime;
  color: black;
  display: block;
  padding: 8px;
  text-align: center;
  font-size: 16px;
}

.bookzio-blog-container {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}

.blog-book-list {
  width: 20%;
}

.bookzio-single-post {
  display: flex;
  gap: 20px;
  padding-bottom: 40px;
  margin-bottom: 60px;
  border-bottom: 1px solid #eee;
  align-items: flex-start;
  width: 100%;
}

.bookzio-single-left {
  flex: 0 0 50%;
  max-width: 50%;
}

.bookzio-single-right {
  flex: 0 0 50%;
  max-width: 50%;
  min-width: 0;
}

.bookzio-book-cover {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.bookzio-book-title {
  font-family: 'Merriweather', serif !important;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.bookzio-book-author {
  font-weight: bold;
  margin-bottom: 10px;
}

.bookzio-book-review {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 95%;
}

@media screen and (max-width: 980px) {
  .blog-book-list,
  .bookzio-single-post {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .bookzio-single-post {
    flex-direction: column;
    align-items: center;
  }

  .bookzio-single-left,
  .bookzio-single-right {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }

  .bookzio-single-right {
    text-align: left;
  }
}
