/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
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: 1.0.1
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
*/

/*
    Add your custom styles here
*/
/* Read More button: lock size, only color changes on hover */
.search-actions .read-more {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;          /* prevent letter-spacing animations */
  line-height: 1;             /* lock height */
  padding: 9px 14px;
  border-radius: 6px;
  background: #d9b1cd;
  color: #fff;
  border: 1px solid #d9b1cd;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
  transform: none !important; /* kill any inherited transforms */
  scale: 1 !important;        /* guard against CSS 'scale' shorthand */
}

/* Hover/focus: color only, no size change */
.search-actions .read-more:hover,
.search-actions .read-more:focus,
.search-actions .read-more:active {
  background: #8b70a6;
  border-color: #8b70a6;
  color: #fff;
  transform: none !important; /* ensure no scale is applied */
  scale: 1 !important;
}

* === Mobile View Fix (SAFE VERSION) === */

/* Header should stay full width but never hide overflowing elements */
header,
.uabb-header,
.elementor-location-header {
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible !important; /* was hidden — allow dropdowns to show */
}

/* Keep horizontal overflow hidden only on the page itself */
body, html {
  overflow-x: hidden !important;
}