/* Blog List Container */
.blog-list__list-item {
  margin-bottom: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #ffffff;
}

/* Hover Effect */
.blog-list__list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Blog Link Styling */
.blog-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #333;
}

/* Thumbnail Container */
.blog-item__thumbnail {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #f4f4f4;
  position: relative;
}

/* Thumbnail Image */
.blog-item__thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Image Zoom Effect on Hover */
.blog-list__list-item:hover .blog-item__thumbnail-image {
  transform: scale(1.1);
}

/* Content Section */
.blog-item__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background-color: #fff;
}

/* Blog Title */
.blog-item__title {
  font-size: 20px;
  font-weight: bold;
  color: #0073aa;
  margin: 0 0 15px 0;
  transition: color 0.3s ease;
  line-height: 1.5;
}

/* Title Hover Effect */
.blog-list__list-item:hover .blog-item__title {
  color: #005177;
}

/* Read More Button */
.blog-item__button {
  text-align: right;
  margin-top: auto;
}

.blog-item__button-more {
  display: inline-block;
  padding: 8px 16px;
  background-color: #0073aa;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

/* Button Hover Effect */
.blog-item__button-more:hover {
  background-color: #005177;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (min-width: 768px) {
  .blog-item {
      flex-direction: row;
  }

  .blog-item__thumbnail {
      width: 40%;
      height: auto;
  }

  .blog-item__content {
      width: 60%;
  }
}

@media (max-width: 767px) {
  .blog-item__title {
      font-size: 18px;
  }

  .blog-item__button-more {
      font-size: 12px;
      padding: 6px 12px;
  }
}
