.reviewCard {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.reviewCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.cardContent {
  flex: 1;
  margin-bottom: 20px;
}

.reviewTitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reviewDescription {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cardFooter {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}

.authorInfo {
  flex: 1;
}

.authorDetails {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.authorName {
  font-size: 0.9rem;
  font-weight: 600;
  color: #000;
  line-height: 1.2;
}

.authorRole {
  font-size: 0.8rem;
  color: #666;
  font-weight: 400;
}

.reviewDate {
  font-size: 0.75rem;
  color: #999;
  font-weight: 400;
}

.authorAvatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-left: 12px;
}

.avatarImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Video Card Styles */
.videoCard {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.videoCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.videoThumbnail {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f5f5f5;
}

.thumbnailImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.playButton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.playButton:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translate(-50%, -50%) scale(1.1);
}

.videoContent {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.videoTitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  line-height: 1.4;
  margin-bottom: 12px;
  flex: 1;
}

.videoAuthor {
  margin-top: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .reviewCard {
    padding: 20px;
  }
  
  .reviewTitle {
    font-size: 1rem;
  }
  
  .reviewDescription {
    font-size: 0.9rem;
  }
  
  .videoContent {
    padding: 16px 20px 20px;
  }
  
  .videoThumbnail {
    height: 160px;
  }
  
  .playButton {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 576px) {
  .reviewCard {
    padding: 16px;
  }
  
  .cardFooter {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .authorAvatar {
    margin-left: 0;
    align-self: flex-end;
  }
  
  .videoContent {
    padding: 12px 16px 16px;
  }
}

