.etm-marquee-wrapper 
{
    overflow: hidden;
    width: 100%;
    position: relative;
}

.etm-marquee 
{
    display: flex;
	width: max-content;
    animation-name: etm-marquee;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 30s; /* overridden by Elementor */
	gap: 20px;
}

.etm-item 
{
    flex: 0 0 auto;
    width: 320px;
    margin-right: 30px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.etm-item .etm-author 
{
    font-family: 'Poppins';
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 10px;
}

.etm-author-image 
{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
}

@keyframes etm-marquee 
{
    0% 
	{
		transform: translateX(0); 
	}
    100% 
	{ 
		transform: translateX(-50%); 
	}
}

.etm-item 
{
/*     background: #076DBA !important; */
    padding: 12px;
/*     margin-left: 15px; */
/*     margin-right: 15px; */
    border-radius: 10px;
    text-align: left;
	margin: 0px !important;
}

p.etm-message 
{
    font-family: 'Poppins';
    font-size: 12px;
    line-height: 16px;
    color: #ffffff;
}

.etm-author-info-row 
{
    display: flex;
    gap: 10px;
    align-items: center;
}

.etm-author-image-wrapper 
{
    height: 44px;
    width: 44px;
}

.etm-author-image-wrapper img
{
    height: 100% !important;
    width: 100%;
	object-fit: cover;
	border-radius: 50px !important;
    margin: 0 !important;
}