#ep_single_event_description {
    position: relative;
    transition: max-height 0.5s ease;
}

#ep_single_event_description.ep-collapsed {
    max-height: 500px;
    overflow: hidden;
}

.ep-read-more-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    z-index: 5;
}

.ep-read-more-btn {
    pointer-events: auto;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 20px;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 12px;
    z-index: 10;
}

.ep-read-more-btn:hover {
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
