/* 1.0 Hompage Posts - limit title to max 3 lines */
.ue_post_blocks_title {
	color: #000;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

/* 2.0 Blog Page - limit title to max 3 lines */
.uc_post_list_title {
	color: #000;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

/* 3.1 Single Post parapgraph text formatting & optional make paragraph text size bigger */
.elementor-widget-theme-post-content p,
.single-post .entry-content p {
	margin-bottom: 18px;
	font-size: 110%;
}

/* 3.2 Single Post title text formatting */
.elementor-widget-theme-post-content h2,
.elementor-widget-theme-post-content h3,

.single-post .entry-content ul {
  list-style-type: disc;
  list-style-position: outside; 
  margin-left: 2em;
}
.single-post .entry-content ol {
  list-style-type: decimal;  list-style-position: outside;
  margin-left: 2em;
}


/* 3.3 Single Post top spacing */
.ast-separate-container .ast-article-single {
	padding-top: 0;
}

/* 3.4 Single Post Hide "Previous / Next Post Section */
.single-post .post-navigation {
	display: none;
}

/* 3.5 Single Post fix spacing above comments */
.single-post .comments-area,
.single-post .comment-respond {
	margin-top: 0;
	padding-top: 0;
}

/* 3.6 Single Post fix spacing above comments */
.single-post .entry-meta * {
	color: #000;
}


/* WPForms fixes */
/* Initial field looks */
.wpforms-container input[type=date],
.wpforms-container input[type=datetime],
.wpforms-container input[type=datetime-local],
.wpforms-container input[type=email],
.wpforms-container input[type=month],
.wpforms-container input[type=number],
.wpforms-container input[type=password],
.wpforms-container input[type=range],
.wpforms-container input[type=search],
.wpforms-container input[type=tel],
.wpforms-container input[type=text],
.wpforms-container input[type=time],
.wpforms-container input[type=url],
.wpforms-container input[type=week],
.wpforms-container select,
.wpforms-container textarea {
    background: #fff;
    border-width: 0 0 1px 0;
    color: var(--ast-global-color-2);
    opacity: 0.5;
}
/* On focus */
.wpforms-container input:focus,
.wpforms-container select:focus,
.wpforms-container textarea:focus {
    outline: none;
    opacity: 1;
    border-color: var(--ast-global-color-0);
}
/* Don't allow resizing the Message box */
.wpforms-container textarea {
    resize: none;
}
/* Message box fixed height */
.wpforms-container .wpforms-field-textarea textarea.wpforms-field-medium {
    height: 136px;
}
/* Button size & font size */
.wpforms-container button {
    padding: 15px 34px;
    font-size: 15px;
}
/* WPForms done */
/* Footer 2 big columns on sides and 1 small one in the middle */
.ast-builder-grid-row-3-equal .ast-builder-grid-row {
    grid-template-columns: 3fr 1fr 3fr;
}

/* Explicitly set initial color for smooth transition */
.menu-link {
  position: relative;
  text-decoration: none;
  color: inherit; /* Set your default color here explicitly */
  transition: color 1.0s ease-in-out; /* animate text color */
}

.menu-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #EB7D6D;
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

/* Hover state with underline and text color animation */
.menu-link:hover {
  color: #EB7D6D; /* desired hover text color */
}

.menu-link:hover::after {
  width: 80%;
  left: 10%;
}

.square-heading::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #EB7D6D;
  margin-right: 8px;
}