   
.creator-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #26a69a;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 15px 10px;
}

.creator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.15);
    border-color: #004d40;
}

.card-image {
    width: 100%;
    background-color: #e0f2f1;
    line-height: 0;
}

.card-image img {
    width: 100%;
    height: auto;
    display: block;
}

.card-content {
    padding: 20px 15px 25px;
    text-align: center;
}

.member-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00695c;
    margin: 0 0 5px;
}

.member-position {
    font-size: 0.9rem;
    color: #607d8b;
    margin-bottom: 10px;
    font-weight: 500;
}

.member-dates {
    font-size: 0.75rem;
    color: #78909c;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.member-dates span {
    background: #e0f2f1;
    padding: 4px 10px;
    border-radius: 30px;
}