.channel-560 .content h3 {
    display: none;
}

.profile-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 10px;
    text-indent: 0 !important;
}

.profile-container .profile-image {
    flex: 0 0 200px;
    margin-right: 20px;
}

.profile-container .profile-image img {
    width: 200px;
    height: auto;
}

.profile-container .profile-info {
    flex: 1;
    /* Take the remaining space */
}

.profile-container .profile-name {
    font-size: 1.5em;
    margin: 0em 0 2.5em;
}

.profile-container .profile-role {
    font-size: 1.25em;
    margin: 5px 0;
}

.profile-container .profile-desc {
    font-size: 1.05em;
    margin: 15px 0;
}

@media (max-width: 768px) {
    .profile-container {
        flex-direction: column;
    }

    .profile-container .has-img {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
    }

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

}