.centered-card {
    border: none;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    margin: 0.5rem 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.image-container {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    margin: 0 auto;
    position: relative;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* Mobile-Specific Adjustments */
@media (max-width: 767px) {
    .centered-card {
        align-items: center;
        padding: 2rem 1rem;
    }

    .image-container {
        margin: 0 auto 1.5rem;
        width: 140px;
        height: 140px;
    }

    .content-wrapper {
        text-align: center;
        padding: 0 !important;
    }

    .profile-name {
        text-align: center;
    }

    .profile-profession {
        text-align: center;
        display: block;
    }
}

/* Desktop Styles */
@media (min-width: 768px) {
    .centered-card {
        flex-direction: row;
        align-items: flex-start;
        padding: 2rem;
        max-height: 500px;
    }

    .image-container {
        margin: 5px 2.5rem 0 0;
        position: sticky;
        /*top: 2rem;*/
        width: 100px;
        height: 100px;
    }

    .content-wrapper {
        padding-right: 1rem;
        max-height: 440px;
        overflow-y: auto;
    }
}

/* Content Styles */
.profile-name {
    font-size: 1.7rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 0.6rem;
}

.profile-profession {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e74c3c;
    margin-bottom: 1.2rem;
}

.profile-description {
    color: #636e72;
    font-size: 1rem;
    line-height: 1.7;
}
