/*
Theme Name: astra-child
Template: astra
*/

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.event-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.event-card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.event-card-content {
    padding: 20px;
}

.event-date {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}

.event-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.event-title a {
    text-decoration: none;
    color: #222;
}

.event-title a:hover {
    color: #0073aa;
}

.event-venue,
.event-category,
.event-price {
    font-size: 14px;
    margin-bottom: 6px;
}

.event-button {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 15px;
    background: #00438c;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
}

.event-button:hover {
    background: #005f8d;
}

/* Responsive */
@media (max-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}