/* Start custom CSS for html, class: .elementor-element-5a2fa04 */<style>
/* --- PAGE LAYOUT & SPACING --- */
.ce-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* --- HERO HEADER --- */
.ce-hero {
    text-align: center;
    padding: 40px 0 20px 0;
}
.ce-hero h1 {
    color: #1a237e;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 800;
}
.ce-hero p {
    color: #555;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 20px auto;
    line-height: 1.6;
}

/* --- EMAIL SIGNUP BOX --- */
.ce-signup-box {
    background: #f0f2ff;
    border: 2px dashed #1a237e;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.ce-signup-text h4 { margin: 0; color: #1a237e; font-size: 1.2rem; }
.ce-signup-text p { margin: 5px 0 0 0; font-size: 14px; color: #444; }
.ce-signup-btn {
    background: #1a237e;
    color: white !important;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    transition: 0.3s;
}
.ce-signup-btn:hover { background: #0d145a; transform: scale(1.05); }

/* --- EVENT CARDS & HOVER EFFECTS --- */
.ce-event-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-bottom: 35px; /* Added more space between cards */
    overflow: hidden; 
    border: 1px solid #eee;
    transition: all 0.3s ease; /* Smooth transition for hover */
    position: relative;
    top: 0;
}

/* The "Lift" Hover Effect */
.ce-event-card:hover {
    top: -5px; /* Slides up slightly */
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.ce-card-top-bar {
    padding: 8px 15px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- INTERNAL STYLE --- */
.is-internal { border-top: 5px solid #1a237e; }
.is-internal .ce-card-top-bar { background-color: #1a237e; color: #ffffff; }
.is-internal h3 { color: #1a237e; }
.is-internal .ce-btn { background: #1a237e; color: #fff !important; }

/* --- PARTNER STYLE --- */
.is-partner { border-top: 5px solid #ced4da; }
.is-partner .ce-card-top-bar { background-color: #f1f3f5; color: #495057; }
.is-partner .ce-btn { background: #6c757d; color: #fff !important; }

/* --- CONTENT STRUCTURE --- */
.ce-card-content { padding: 25px; display: flex; gap: 20px; }
.ce-date-column { text-align: center; min-width: 75px; }
.ce-date-column .month { display: block; color: #d32f2f; font-weight: bold; font-size: 14px; }
.ce-date-column .day { display: block; font-size: 28px; font-weight: 900; line-height: 1; }
.ce-info-column { flex-grow: 1; }
.ce-info-column h3 { margin: 0 0 5px 0; font-size: 1.3rem; font-weight: 700; }
.ce-instructor { color: #666; font-style: italic; margin-bottom: 10px; font-size: 14px; }
.ce-meta { font-size: 14px; color: #444; margin: 4px 0; font-weight: 500; }
.ce-description { font-size: 14px; color: #555; line-height: 1.5; margin-top: 12px; border-top: 1px dashed #eee; padding-top: 10px; }
.ce-footer { padding: 15px 25px; background: #fafafa; border-top: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
.ce-btn { padding: 10px 18px; border-radius: 4px; text-decoration: none; font-weight: 700; font-size: 13px; }

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 600px) {
    .ce-signup-box { flex-direction: column; text-align: center; }
    .ce-card-content { flex-direction: column; gap: 10px; }
    .ce-footer { flex-direction: column; gap: 15px; text-align: center; }
}
</style>/* End custom CSS */