.uws-pl-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.uws-pl-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
	border-bottom:1px solid rgba(0,0,0,0.1);
	min-height:108px;
}

@media (min-width:1201px){
.uws-pl-card{height:108px;}	
}

.uws-pl-image-wrap {
    width: 220px;
    flex-shrink: 0;
    overflow: hidden;
}

.uws-pl-image-wrap img,
.uws-pl-no-image {
    display: block;
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.uws-pl-no-image {
    background: #e8e8e8;
}

.uws-pl-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.uws-pl-title {
    margin: 0 0 8px;
}

.uws-pl-title a {
    text-decoration:none !important;
    color: inherit;
	font-size:0.8em !important;
}

.uws-pl-title a:hover {
    text-decoration: underline;
}

.uws-pl-excerpt {
    margin: 0 0 16px;
    line-height: 1.55;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.uws-pl-btn {
    display: inline-block;
    text-decoration: none !important;
    cursor: pointer;
    line-height: 1.2;
    white-space: nowrap;
    align-self: flex-start;
    background-color: #ffffff;
    color: #143E74 !important;
    padding: 10px 20px;
    transition: all 0.25s ease;
	font-weight:600;
}

.uws-pl-btn:hover {
    opacity: 0.85;
	color: #00933B !important;
}

@media (max-width: 640px) {
    .uws-pl-card {
        flex-direction: row;
    }
    .uws-pl-image-wrap {
        width: 100%;
    }
}