.credits-widget {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-top: 20px;
    border-radius: 14px;
    border: 1px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    background-color: #f8f8f8;
}

.credits-widget img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

.credits-widget .credits-widget-text {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .credits-widget {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .credits-widget img {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
