.ct-wrapper-e81fa7bf {
    display: flex;
    flex-direction: column;
    font-family: inherit;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.ct-wrapper-e81fa7bf .ct-img-container {
    width: 100%;
    margin-bottom: 20px;
}

.ct-wrapper-e81fa7bf .ct-img {
    max-width: 100%;
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.ct-wrapper-e81fa7bf .ct-content-wrap {
    display: flex;
    flex-direction: column;
}

.ct-wrapper-e81fa7bf .ct-name {
    margin: 0 0 5px 0;
    font-size: 1.5em;
    font-weight: 700;
}

.ct-wrapper-e81fa7bf .ct-position {
    margin: 0 0 5px 0;
    font-size: 1.1em;
    font-weight: 600;
    color: #444;
}

.ct-wrapper-e81fa7bf .ct-department {
    margin: 0 0 5px 0;
    font-size: 0.9em;
    font-weight: 500;
    color: #666;
}

.ct-wrapper-e81fa7bf .ct-extra {
    margin: 0 0 15px 0;
    font-size: 0.85em;
    color: #888;
    font-style: italic;
}

.ct-wrapper-e81fa7bf .ct-description-container {
    position: relative;
    max-height: 80px;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-bottom: 15px;
}

.ct-wrapper-e81fa7bf .ct-description-container.is-expanded {
    max-height: 2500px !important;
}

.ct-wrapper-e81fa7bf .ct-description p:last-child {
    margin-bottom: 0;
}

.ct-wrapper-e81fa7bf .ct-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--e-global-color-text, inherit) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Fallback background if var fails, usually overridden by card bg */
.ct-wrapper-e81fa7bf .ct-gradient-overlay {
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1) 90%);
}

.ct-wrapper-e81fa7bf .ct-description-container.is-expanded .ct-gradient-overlay {
    opacity: 0;
}

.ct-wrapper-e81fa7bf .ct-toggle-btn {
    align-self: flex-start;
    padding: 10px 24px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ct-wrapper-e81fa7bf .ct-toggle-btn:hover {
    background-color: #333;
}