/* 
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 */
/* Grid Container */
.google-sheet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}
/* Add to your theme's style.css or Elementor Custom CSS */
.featured-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: transform 0.2s ease;
}

.grid-item:hover .featured-image {
    transform: scale(1.05);
}

/* Existing CSS (keep the rest as before) */
.google-sheet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.grid-item {
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.grid-item h3 {
    margin: 0 0 1rem;
    font-size: 1.2rem;
}

.grid-item a {
    color: #007133;
    text-decoration: none;
}

.grid-item a:hover {
    text-decoration: underline;
}

.grid-item p {
    margin: 0.5rem 0;
    color: #000;
}

.grid-item p:last-child {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #000;
}
