/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

.highlighted {
    margin-left: 10px !important;
    margin-right: 10px !important;
}

.highlighted a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  background: linear-gradient(90deg, #D4AF37 0%, #CD7F32 100%); /* accent → bronze */
  color: #121212 !important; /* primary */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.20);
  transition: transform .18s ease, box-shadow .18s ease, opacity .12s ease;
  will-change: transform, box-shadow;
}

/* Hover / Focus states */
.highlighted a:hover,
.highlighted a:focus {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  outline: none;
  color: white !important;
}

/* Keyboard focus ring (accessible) */
.highlighted a:focus-visible {
  box-shadow: 0 0 0 4px rgba(212,175,55,0.15), 0 18px 40px rgba(0,0,0,0.25);
}

/* Active state */
.highlighted a:active {
  transform: translateY(0) scale(.995);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

/* Optional icon sizing if you include an inline icon */
.highlighted a .icon {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  line-height: 1;
}

.text-accent {
    color: rgb(212, 175, 55);
}

/* Responsive: full-width on small screens (optional) */
@media (max-width: 640px) {
  .highlighted a {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1rem;
  }
}

/* Global: target your widget wrapper class (you have .who-img) */
.who-img {
  position: relative;
  overflow: visible !important;
}

/* keep image on top */
.who-img img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

/* accents: anchored to corners + translated outward */
.who-img::before,
.who-img::after {
  content: "";
  position: absolute;
  width: 6rem; height: 6rem;
  box-sizing: border-box;
  pointer-events: none;
  z-index: 10;
}

/* top-left */
.who-img::before {
  top: 0;
  left: 0;
  transform: translate(-1rem, -1rem);
  border-top: 2px solid #D4AF37;
  border-left: 2px solid #D4AF37;
}

/* bottom-right */
.who-img::after {
  bottom: 0;
  right: 0;
  transform: translate(1rem, 1rem);
  border-bottom: 2px solid #D4AF37;
  border-right: 2px solid #D4AF37;
}

/* responsive sizes */
@media (max-width: 768px) {
  .who-img::before,
  .who-img::after { width: 4rem; height: 4rem; transform: translate(-0.75rem, -0.75rem) }
  .who-img::after { transform: translate(0.75rem, 0.75rem); }
}