.chat-bubble-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 700px;
    margin: 0 auto;
}

.chat-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 24px 24px 32px;
    max-width: 460px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.chat-bubble.chat-left,
.chat-bubble.chat-right {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 30px;
}

.chat-bubble.chat-right {
    align-items: flex-start;
}


.chat-bubble.chat-right .chat-content,
.chat-bubble.chat-left .chat-content {
    position: relative;
}

.chat-bubble.chat-left .chat-content::before,
.chat-bubble.chat-right .chat-content::before {
    content: '';
    position: absolute;
    width: 32px;
    height: 14px;
    background: #fff;
    bottom: 0;
}

.chat-bubble.chat-left .chat-content::before {
    right: -22px;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    border-bottom-right-radius: 4px;

}

.chat-bubble.chat-right .chat-content::before {
    left: -22px;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    border-bottom-left-radius: 4px;
    top: 0;
}

.chat-bubble.chat-left {
    flex-direction: row;
}

.chat-bubble.chat-right {
    flex-direction: row-reverse;
}

.chat-content p {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #222;
}

.chat-meta {
    font-size: 13px;
    color: #999;
    margin-top: 20px;
}

.chat-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.chat-avatar-wrapper {
    overflow: hidden;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #eee;
    margin: 20px 0;
}

.haro-forms-wrap .wpcf7-form label {
    color: white !important;
}

@media screen and (max-width: 768px) {

    .chat-bubble.chat-left,
    .chat-bubble.chat-right {
        flex-direction: column;
    }

    .chat-bubble.chat-right .chat-content {
        margin-left: 20px;
    }

    .chat-bubble.chat-left .chat-content {
        margin-right: 20px;
    }
}