/* Blog Styles */
.blog-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

.blog-post {
  position: relative;
  margin-bottom: 50px;
  padding-left: 100px;
}

.blog-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 25px;
}

.blog-img {
  transition: all 0.4s ease;
}

.blog-img img {
  transition: transform 0.6s ease;
  display: block;
  border-radius: 8px;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.blog-post:hover .blog-img img {
  transform: scale(1.05);
}

.blog-meta {
  position: absolute;
  left: 0;
  top: 0;
}

.date {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-left: 30px;
}

.date:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: var(--thm);
  opacity: 0.2;
}

.date .month {
  color: var(--thm);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.date .day {
  color: #666;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.blog-content {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.tag-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--thm);
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}

.text {
  color: #666;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 20px;
}

.link-btn {
  margin-top: 20px;
}

.link-btn .ud-btn {
  font-size: 15px;
  padding: 8px 20px;
  border-radius: 4px;
}

@media (max-width: 991px) {
  .blog-post {
    padding-left: 0;
    margin-bottom: 30px;
  }

  .blog-meta {
    position: relative;
    margin-bottom: 15px;
  }

  .date {
    flex-direction: row;
    align-items: center;
    gap: 5px;
  }

  .date:before {
    height: 100%;
  }

  .date .month {
    margin-bottom: 0;
  }

  .date .day {
    font-size: 18px;
  }

  .blog-content {
    padding: 20px;
  }
} 