/* General Style for Advanced Heading */
.eafe-advanced-heading {
  font-weight: normal;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Icon/Image Positioning */
.eafe-advanced-heading img,
.eafe-advanced-heading i {
  margin: 0 10px;
}

/* If the icon is to the left */
.eafe-advanced-heading .eafe-icon-left {
  margin-right: 10px;
}

/* If the icon is to the right */
.eafe-advanced-heading .eafe-icon-right {
  margin-left: 10px;
}

/* Gradient Effect for Text (Fallback for Free Version) */
.eafe-advanced-heading {
  background: linear-gradient(
    to right,
    #ff7e5f,
    #feb47b
  ); /* Default gradient */
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  color: transparent; /* Ensure the text is transparent to show the gradient */
}

/* Fallback color for unsupported browsers */
.eafe-advanced-heading::after {
  content: attr(data-fallback-text);
  color: #ff7e5f; /* Default fallback color */
  visibility: hidden;
}

/* Typography Customization (can be adjusted further based on typography control) */
.eafe-advanced-heading {
  font-family: Arial, sans-serif;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
}

/* Icon and Image Styling */
.eafe-advanced-heading .elementor-icon {
  font-size: 24px; /* Icon size */
  color: #333; /* Default icon color */
}

.eafe-advanced-heading img {
  width: 30px; /* Default image size */
  height: auto;
}

/* Customizable styles */
.eafe-advanced-heading:hover {
  color: #ff7e5f; /* Hover effect for text */
  cursor: pointer;
}
