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

/* ##### Container Grid Layout ##### */
.coaches-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

/* Base Card Styling */
.coach-card-link {
    text-decoration: none !important;
    color: inherit !important;
    transition: transform 0.3s ease;
}

.coach-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.08);
}

.coach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    border-color: #d1d1d1;
}

/* Image Handling - Overriding inline styles */
.coach-image-featured img {
    width: 100% !important;
    height: 240px !important; /* Adjusted for better proportion */
    object-fit: cover !important;
    display: block;
    object-position: top;
    
}

/* Details Section */
.coach-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.coach-title {
    font-size: 14px;
    color: #ff4d6d; /* Elemento Pink/Red */
    margin-bottom: 5px;
    line-height: 1.3;
    min-height: 40px;
}

.coach-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

/* Rating Badge */
.coach-rating {
    margin-bottom: 15px;
}

.coach-rating div {
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* Pricing & Type */
.coach-rate {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.coach-rate-static {
    font-size: 11px;
    color: #888;
    margin-left: 4px;
}

.coach-rate-static-2 p {
    font-size: 12px;
    font-weight: bold;
    color: #ff4d6d;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* The Element Icons (Air/Fire/Earth) */
.category-logo-coaches {
    width: 120px !important;
    height: auto !important;
    margin: 10px auto 20px auto; /* Centering the icon */
    display: block;
    opacity: 0.9;
}

/* Divider & Level */
.coach-divider {
    height: 1px;
    background: #eee;
    width: 100%;
    margin-top: auto; /* Pushes to bottom */
    margin-bottom: 10px;
}

.coach-type {
    font-size: 13px;
    color: #ff4d6d;
    font-weight: 500;
    text-align: left;
}