/*
Theme Name: Touch Your Heart
Description: Child theme for Twenty Twenty-Four
Author: DVA
Template: twentytwentyfour
Version: 1.1.0
Text Domain: twentytwentyfour-child
*/
.events-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.event-item {
    flex: 1 1 calc(33.333% - 20px);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.event-item:hover {
    transform: translateY(-5px);
}

.event-image {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.event-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.event-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .event-item {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .event-item {
        flex: 1 1 100%;
    }
}