/* Card Smart Link Template */
.content-craft-ai-smart-link {
  display: block;
  margin: 25px 0;
  padding: 18px 20px 18px 50px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  font-size: inherit;
  line-height: 1.5;
  transition: all 0.3s ease;
  position: relative;
  border-left: none;
  background-image: linear-gradient(
    45deg,
    rgba(24, 144, 255, 0.05) 0%,
    rgba(24, 144, 255, 0) 100%
  );
}

.content-craft-ai-smart-link:before {
  content: "📄";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

.content-craft-ai-smart-link.content-craft-ai-smart-link-external:before {
  content: "🔗";
}

.content-craft-ai-smart-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
  background-image: linear-gradient(
    45deg,
    rgba(24, 144, 255, 0.1) 0%,
    rgba(24, 144, 255, 0.02) 100%
  );
}

.content-craft-ai-smart-link a {
  color: #1890ff;
  text-decoration: none;
  font-weight: 600;
  background: linear-gradient(to right, #1890ff, #36cfc9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.content-craft-ai-smart-link a:hover {
  background: linear-gradient(to right, #36cfc9, #1890ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}
