.ge-events-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.ge-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.ge-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ge-subtitle {
    font-size: 16px;
    line-height: 1.6;
}

.ge-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 45px;
}

.ge-filter-btn {
    border: none;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
}

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

@media (max-width: 991px) {
    .ge-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.ge-card {
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.ge-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(20, 53, 45, 0.08);
}

.ge-badge-wrap {
    margin-bottom: 16px;
}

.ge-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 100px;
}

/* Custom categories styling matching soft clinical palette */
.ge-badge-therapy {
    background-color: #E2EFE9;
    color: #14352D;
}

.ge-badge-educational {
    background-color: #E9EDF5;
    color: #2F4858;
}

.ge-badge-community {
    background-color: #FAF2E3;
    color: #7A5B13;
}

.ge-card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 12px 0;
}

.ge-card-desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ge-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    margin-bottom: 20px;
}

.ge-meta-icon {
    display: inline-flex;
    width: 14px;
    height: 14px;
    color: #566B64;
}

.ge-meta-text {
    font-size: 12px;
    color: #566B64;
    font-weight: 500;
}

.ge-action {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 15px;
}

.ge-card-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    color: #14352D;
    transition: color 0.2s ease;
}

.ge-card-link:hover {
    color: #1c4d41;
}
