/* ers profile card widget */
.profile-card {
    background: #f4f4f4;
    border-radius: 30px;
    overflow: hidden;
    max-width: 518px;
    min-height: 644px;
    font-family: sans-serif;
}

.profile-image {
    position: relative;
}

.profile-image img {
    width: 100%;
    display: block;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.profile-badge {
    position: absolute;
    bottom: -18px;
    left: 20px;
    background: #e64a19;
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

.profile-content {
    padding: 40px 20px 30px;
}

.profile-content h3 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #000;
}

.profile-content a {
    color: #e64a19;
    text-decoration: none;
    font-size: 18px;
}

.profile-content a:hover {
    text-decoration: underline;
}