.line_clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  box-orient: vertical;
  -moz-box-orient: vertical;
}

/* Thank You Page Styles */
.thank-you-banner .post-title-reference {
  margin: 15px 0;
  font-style: italic;
  color: #666;
  font-size: 16px;
}

.thank-you-banner .content-section {
  margin: 30px 0;
}

.thank-you-banner .download-section {
  margin-bottom: 20px;
}

.thank-you-banner .download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #007cba;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.thank-you-banner .download-btn:hover {
  background: #005a87;
  color: white;
  text-decoration: none;
}

.thank-you-banner .download-icon {
  font-size: 18px;
}

.thank-you-banner .video-section {
  margin: 20px 0;
}

.thank-you-banner .video-section iframe,
.thank-you-banner .video-section video {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .thank-you-banner .video-section iframe,
  .thank-you-banner .video-section video {
    width: 100%;
    height: 250px;
  }
  
  .thank-you-banner .post-title-reference {
    font-size: 14px;
  }
  
  .thank-you-banner .download-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
