.blog-slider-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background-color: #f5f5f5;
}
.blog-slider-main {
  flex: 2;
  position: relative;
  overflow: hidden;
}
.blog-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.slide-item {
  min-width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.slide-content {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  color: white;
  max-width: 400px;
}
.slide-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}
.slide-excerpt {
  font-size: 16px;
  margin-bottom: 10px;
}
.slide-categories {
  margin-bottom: 10px;
}
.category-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 5px 10px;
  border-radius: 20px;
  margin-right: 5px;
  font-size: 12px;
}
.slide-button {
  padding: 10px 20px;
  background: white;
  border: none;
  cursor: pointer;
}
.slider-controls {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.slider-controls button {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: none;
  background: white;
  cursor: pointer;
}
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.slider-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  margin-right: 5px;
  opacity: 0.5;
  cursor: pointer;
}
.slider-dots span.active {
  opacity: 1;
}
.blog-slider-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}
.side-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 8px;
  overflow: hidden;
}
.side-image {
  height: 150px;
  background-size: cover;
  background-position: center;
}
.side-content {
  padding: 10px;
}
.side-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}
.side-excerpt {
  font-size: 14px;
  margin-bottom: 5px;
}
.side-categories {
  margin-bottom: 5px;
}
.side-button {
  padding: 5px 10px;
  background: #333;
  color: white;
  border: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .blog-slider-wrapper {
    flex-direction: column;
  }
  .blog-slider-main, .blog-slider-side {
    flex: 1 1 100%;
  }
}