/*
Theme Name: expertsnew
Description: Clone of the HE theme with identical layout and content. SCF-ready.
Version: 1.0.0
*/


/* === HE Section Settings === */

.bg-light{background:#f7f7f7;}
.bg-dark{background:#0f0f0f;}
.text-light{color:#ffffff;}
.text-dark{color:#111111;}
/* inherit text color inside section */
.text-light h1, .text-light h2, .text-light h3, .text-light h4, .text-light p, .text-light li, .text-light span, .text-light small, .text-light strong,
.text-dark h1, .text-dark h2, .text-dark h3, .text-dark h4, .text-dark p, .text-dark li, .text-dark span, .text-dark small, .text-dark strong{
  color: inherit;
}
/* accent variable for links/buttons */
[style*="--he-accent"] a{ color: var(--he-accent); }
[style*="--he-accent"] .btn-call,
[style*="--he-accent"] .btn-schedule{
  border-color: var(--he-accent);
}

/* === Grid utilities === */

.grid-2col{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px;}
.grid-3col{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;}
.grid-4col{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:20px;}
@media (max-width:1024px){
  .grid-3col,.grid-4col{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width:640px){
  .grid-2col,.grid-3col,.grid-4col{grid-template-columns:1fr;}
}
