/* Like Button Styling */
.vt-title-like-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.vt-like-section {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  gap: 12px;
}

.vt-like-section.vt-like-top {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.vt-like-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #f7f9fb;
  border: 2px solid #ddd;
  border-radius: 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: #1f7d94;
  transition: all 0.3s ease;
  text-decoration: none;
}

.vt-like-btn:hover {
  background: #e8f1f5;
  border-color: #1f7d94;
  transform: scale(1.05);
}

.vt-like-btn.liked {
  background: #1f7d94;
  color: #fff;
  border-color: #1f7d94;
}

.vt-like-btn.liked:hover {
  background: #165a73;
  border-color: #165a73;
}

.vt-like-btn.animate {
  animation: likeAnimation 0.6s ease;
}

@keyframes likeAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.vt-like-icon {
  font-size: 16px;
}

.vt-like-count {
  font-weight: 700;
}

@media (max-width: 575px) {
  .vt-title-like-row {
    align-items: flex-start;
  }

  .vt-like-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .vt-like-btn {
    width: 100%;
    justify-content: center;
  }

  .vt-like-section.vt-like-top .vt-like-btn {
    width: auto;
  }
}
