.po-features-widget {
    display: block;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 25px;
    color: #1A1A1A;
    text-decoration: none;
    transition: box-shadow 0.3s ease;
}

.po-features-widget:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	border-color: #FFC935;
	background: #EBEBEB;
}

.po-features-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.po-features-titles {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.po-features-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.po-features-label {
    font-size: 14px;
    padding: 0px 8px;
    border-radius: 4px;
    background-color: #eee;
    color: #333;
    line-height: 24px;
    height: 24px;
    min-width: 75px;
    text-align: center;
}

.po-features-button {
    min-width: 125px;
    height: 42px;
    border-radius: 7px;
    padding: 10px;
    background: #A77B51;
    color: #ffffff;
    margin-left: auto;
    text-align: center;
}

.po-features-button:hover {
    background: #555555;
}

.po-features-image {
    margin-bottom: 25px;
    border-radius: 6px;
    overflow: hidden;
}

.po-features-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
	transition: transform 0.8s ease;
}

.po-features-widget:hover .po-features-image img {
    transform: scale(1.05);
}

.po-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.po-features-list li {
    /* padding: 12px 0; */
    /* border-bottom: 1px solid #f0f0f0; */
    font-size: 16px;
}

.po-features-list li:hover {
    color: #000;
}

.po-features-list li:first-child {
    padding-top: 0;
}

.po-features-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.po-features-list {
    counter-reset: feature-counter;
}

.po-features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* .po-features-list_ li::before { */
    /* counter-increment: feature-counter; */
    /* content: counter(feature-counter); */
    /* background-color: #3D2F26; */
    /* color: #FFFFFF; */
    /* font-size: 14px; */
    /* font-weight: 700; */
    /* line-height: 1; */
    /* border-radius: 50%; */
    /* width: 28px; */
    /* height: 28px; */
    /* flex-shrink: 0; */
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
/* } */


@media (max-width: 1000px) {

	.po-features-header {
		display: flex;
		margin-bottom: 20px;
		flex-direction: column;
		align-items: center;
	}
	.po-features-titles {
		justify-content: space-between;
		width: 100%;
	}
	.po-features-button {
		margin-left: inherit;
		margin-top: 15px;
	}
}

@media (max-width: 768px) {
    .po-features-widget {
        border-radius: 16px;
    }
}