/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 25 2025 | 22:31:43 */
/* Body links more distingishable from other text */
.grve-text a {
	font-weight: bold;
}

/* --------------------------------------------------------------- */

/* Darker image caption text */
p.wp-caption-text {
	color: #000;
}

/* --------------------------------------------------------------- */

/* Lighter pagination red color */
.page-numbers .page-numbers.current {
	color: #E44D3F;
}

/* --------------------------------------------------------------- */

/*
Under [Themes > Colors – Main Content > Link Color], the gold link color was darkened to #866f27 to ensure sufficient contrast against white backgrounds.
However, some sections of the main content have a dark or a red background, making the darkened gold text hard to read.
*** THIS fix is paired with JS. darkBGColor is injected using jQuery.
*/
.darkBGColor a:not(.grve-btn, .page-numbers) {
	color: #BA9936;
}
.darkBGColor a:not(.grve-btn, .page-numbers):hover {
	color: #D4BA6B;
}

.redBGColor a:not(.grve-btn) {
	color: #FFF;
	text-decoration: underline;
}
.redBGColor a:not(.grve-btn):hover {
	color: #D4BA6B;
}

/* --------------------------------------------------------------- */

/* Form asterisk red color */
.custom-asterisk span.gfield_required {
    color: #DF3020 !important;
}

/* --------------------------------------------------------------- */

/* Red links on white background */
.link-color-red a,
a.rd-white-area {
  color: #DF3020;
}
.link-color-red a:hover,
a.rd-white-area:hover{
    color: #D4BA6B;
}
.link-color-red a:focus,
a.rd-white-area:focus {
  color: #D4BA6B;
}

/* --------------------------------------------------------------- */

/* Darker gold title text on current tab continer */
.elegant-tabs-container .content-current[style*="background:#FFFFFF"] h4 {
	color: #866F27;
}
