/*
 Theme Name:   Blocksy Child
 Template:     blocksy
 Version:      1.0.0
*/

/* === 📦 Layout Grid === */
.event-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

/* === 📋 Event Card === */
.event-card {
    width: 300px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: #111;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,64,112,0.2);
}

/* === 🖼️ Image Style === */
.event-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* === ℹ️ Info Box === */
.event-info {
    padding: 15px;
    background-color: #f9f9f9;
    flex-grow: 1;
}

/* === 🏷️ Title === */
.event-info h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #004070;
}

/* === 📅 Meta Info === */
.event-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* === 🔘 Button === */
.event-btn {
    display: inline-block;
    align-self: flex-start;
    background-color: #004070;
    color: #fff;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.event-btn:hover {
    background-color: #0066a2;
}

/* === 📌 Section Title === */
.section-title {
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 22px;
    color: #111;
}

/* === 📱 Responsive === */
@media (max-width: 768px) {
    .event-card {
        width: 100%;
    }
}

.jjf-tagline {
    position: absolute;
    top: 150px;
    left: 80px;
    z-index: 999;
    color: white;
    font-size: 26px;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}
