/* Stil für die Nutzerbox */
.ab-block-profile {
    display: flex;
    flex-direction: row;
    background: #ffffff;
    padding: 20px;
    margin-bottom: 30px;
    align-items: center;
    max-width: 900px;
}

.ab-profile-avatar-wrap {
    flex: 0 0 180px;
    margin-right: 30px;
    text-align: center;
}

.ab-profile-image-square img {
    width: 160px;
    height: 160px;
}

.ab-profile-content-wrap {
    flex: 1;
}

.ab-profile-name {
    font-size: 1.5em;
    font-weight: 600;
    margin: 0 0 10px;
    color: #222;
}

.ab-profile-title {
    font-style: italic;
    color: #666;
    margin-bottom: 10px;
}

.ab-profile-text p {
    margin: 5px 0;
    color: #444;
    line-height: 1.5;
}

.ab-profile-text p strong {
    color: #111;
}

.ab-profile-text a {
    display: inline-block;
    margin-top: 10px;
    color: #0073aa;
    text-decoration: none;
}

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

/* Optional: Responsive Anpassung */
@media (max-width: 600px) {
    .ab-block-profile {
        flex-direction: column;
        align-items: flex-start;
    }

    .ab-profile-avatar-wrap {
        margin: 0 0 20px;
    }

    .ab-profile-image-square img {
        width: 120px;
        height: 120px;
    }
}
