/* 
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
*/

/* Add your custom styles here */

.elementor-widget-icon-box a:after {
     content: "";
     display: block !important;
     position: absolute;
     inset: 0;
     z-index: 1;
}

.elementor-icon-box-icon {
     z-index: 2;
}


.reviews-list {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     /* 4 columns on desktop */
     gap: 20px;
     /* Space between the cards */
}

/* 3 columns on tablets */
@media (max-width: 1024px) {
     .reviews-list {
          grid-template-columns: repeat(3, 1fr);
     }
}

/* 2 columns on mobile */
@media (max-width: 768px) {
     .reviews-list {
          grid-template-columns: repeat(2, 1fr);
     }
}

/* 1 column on small mobile screens */
@media (max-width: 480px) {
     .reviews-list {
          grid-template-columns: 1fr;
     }
}

.review-item {
     background-color: var(--e-global-color-secondary);
     border-radius: 10px;
     padding: 20px;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.reviewer-name {
     font-family: var(--e-global-typography-primary-font-family);
     font-size: var(--e-global-typography-primary-font-size);
     font-weight: var(--e-global-typography-primary-font-weight);
     line-height: var(--e-global-typography-primary-line-height);
     color: var(--e-global-color-text);
}

.review-rating {
     font-family: var(--e-global-typography-text-font-family);
     font-size: var(--e-global-typography-text-font-size);
     font-weight: var(--e-global-typography-text-font-weight);
     line-height: var(--e-global-typography-text-line-height);
     color: var(--e-global-color-primary);
}

.review-comment {
     font-family: var(--e-global-typography-text-font-family);
     font-size: var(--e-global-typography-text-font-size);
     font-weight: var(--e-global-typography-text-font-weight);
     line-height: var(--e-global-typography-text-line-height);
     color: var(--e-global-color-text);
}

.review-date {
     font-family: var(--e-global-typography-text-font-family);
     font-size: var(--e-global-typography-text-font-size);
     font-weight: var(--e-global-typography-text-font-weight);
     line-height: var(--e-global-typography-text-line-height);
     color: var(--e-global-color-text);
     opacity: 0.7;
}