.componentKCid-w-3759-20260624203449-a-228-20260710171407{
margin-bottom:50px;	
	margin-top:25px;
}
.font-mont-bold{
	font-family:Mont-bold !important;
}
.urp-news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
}

.urp-card {
    display: flex;
    gap: 20px;
    background: #fff;
    align-items: flex-start;
    text-decoration: none; 
    color: inherit;        
    cursor: pointer; 
}

.urp-card-image {
    flex: 0 0 45%; 
    max-width: 240px;
	overflow: hidden;
	border-radius: 10px;
}

.urp-card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border: 2.5px solid #e2e8f0;    
    border-radius: 10px;
	transition: transform 0.3s ease;
}

.urp-card:hover .urp-card-image img {
    transform: scale(1.06);
}

.urp-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.urp-card-description {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    margin: 0 0 12px 0;
}

.urp-card-title {
    font-size: 16px;
    color: #111;
    margin: 0;
    transition: color 0.2s ease;
	border-top: 2px solid #00b16b;
    padding-top: 0.5rem;
}

.no-img {
    border-radius: 10px; 
}

.urp-card:hover .urp-card-title {
    color: #01B16B;
}

@media (max-width: 991px) {
    .urp-news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .urp-card {
        flex-direction: column;
    }
    .urp-card-image {
        flex: 0 0 65%;
        max-width: 100%;
    }
}