/* 
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 */
.gcal-lista {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gcal-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid #4285F4;
    background: #f9f9f9;
    transition: box-shadow 0.2s;
}

.gcal-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.gcal-data {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 48px;
    background: #4285F4;
    color: #fff;
    border-radius: 6px;
    padding: 8px 4px;
    line-height: 1;
}

.gcal-dia {
    font-size: 24px;
    font-weight: 700;
}

.gcal-mes {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
}

.gcal-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gcal-titulo {
    font-size: 16px;
    color: #222;
    font-weight: 700;
}

.gcal-local,
.gcal-hora {
    font-size: 13px;
    color: #666;
}

.gcal-desc {
    font-size: 13px;
    color: #888;
    margin: 0;
}