/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 14 2026 | 20:44:58 */
#page-id-2417 {
    --primary: #4f46e5;
    --primary-light: #eeebff;
    --text-main: #1f2937;
    --bg-body: #f9fafb;
    --bg-card: #ffffff;
    --border: #e5e7eb;
    
   
    color: var(--text-main);
    padding: 2rem 1rem;
    line-height: 1.5;
}

#page-id-2417 .container {
    max-width: 1000px;
    margin: 0 auto;
}

#page-id-2417 header {
    text-align: center;
    margin-bottom: 2.5rem;
}

#page-id-2417 header h1 {
text-align: center !important;
}

#page-id-2417 header p {
    color: #6b7280;
    font-size: 1.1rem;
}

/* Flexbox Layout Setup replacing CSS Grid */
#page-id-2417 .schedule-grid {
    display: flex;
    flex-direction: column; /* Stack vertically on mobile devices */
    gap: 1.5rem;
    width: 100%;
    justify-content:center;
}

@media (min-width: 768px) {
    #page-id-2417 .schedule-grid {
        flex-direction: row; /* Align cards horizontally on tablet/desktop */
        flex-wrap: wrap;     /* Allow wrapping if more blocks are added */
    }
    
    /* Distribute room equally across all 3 cards minus gap width calculations */
    #page-id-2417 .block-card-link {
        flex: 1 1 calc(33.333% - 1rem); 
        max-width: calc(33.333% - 1rem);
    }
}

/* Card Link Base Flex Layout Structure */
#page-id-2417 .block-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                border-color 0.2s ease;
    width: 100%; /* Fallback for structural integrity on mobile views */
}

/* Hover & Focus States */
#page-id-2417 .block-card-link:hover,
#page-id-2417 .block-card-link:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px -3px rgba(79, 70, 229, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
    outline: none;
}

/* Image Wrapper Component */
#page-id-2417 .card-image-wrapper {
    width: 100%;
    height: 160px;
    background-color: #e5e7eb;
    overflow: hidden;
}

#page-id-2417 .card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#page-id-2417 .block-card-link:hover .card-image-wrapper img {
    transform: scale(1.05);
}

/* Content Layout Padding */
#page-id-2417 .card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
}

.card-content a{
    background:#000;
    padding:5px 7px;
    color:#FFF;
    border-radius:10px;
}

#page-id-2417 .block-badge {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

#page-id-2417 .block-dates {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-main);
}
