.custom-product-card {
	padding: 1.3rem;
	border: 1px solid #E6E9EC;
	border-radius: 8px;
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	background-color: white;
	width: 48%;
	margin-bottom: 0px;
}

.custom-product-card .product-image img {
	width: clamp(100px, 9vw, 160px);
	height: clamp(80px, 8vw, 130px);
	border-radius: 4px;
	object-fit: cover;
}

.custom-product-card .product-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 1;
	height: 100%;
}

.custom-product-card .product-title {
	font-size: clamp(14px, 1.2vw, 1.3rem)!important;
	font-weight: bold;
	margin: 0.75rem 0 0.5rem 0;
	padding-bottom: 0px;
}

.custom-product-card .product-excerpt {
	font-size: clamp(12px, 1vw, 1rem)!important;
	color: #133474;
	margin: 0 0 1rem 0;
	line-height: normal;
}

.custom-product-card .product-type {
	color: #133474;
	font-weight: 600;
	font-size: clamp(13px, 1.1vw, 1.1rem)!important;
}

.custom-product-card .product-button {
	display: inline-block;
	padding: 0.3rem 0.8rem;
	background-color: white;
	border: 1px solid #133474;
	border-radius: 6px;
	color: #133474;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
	font-weight: 600;
	font-size: clamp(9px, 0.8vw, 0.95rem)!important;
	line-height: normal;
}

.custom-product-card .product-button:hover {
	background-color: #133474;
	color: white;
}

.container:has(.custom-product-card) {
	padding-top: 0px!important;
}

.et_pb_row:has(.breadcrumb_last){
	max-width: 1080px;
}

@media (max-width: 1100px) {
    #left-area:has(.custom-product-card) {
        padding-right: 1rem!important;
    }
	
	.custom-product-card .product-title {
		margin: 0.25rem 0 0.5rem 0;
		font-size: clamp(14px, 2vw, 1.3rem)!important;
	}
	
	.custom-product-card .product-excerpt {
        font-size: clamp(12px, 2vw, 1rem)!important;
    }
	
	.custom-product-card .product-type {
		font-size: clamp(13px, 2vw, 1.1rem)!important;
	}
	
	.custom-product-card .product-button {
        font-size: clamp(0.6rem, 2vw, 0.95rem)!important;
    }
	
	.custom-product-card{
		width: 100%;
	}
	
	.container:has(.custom-product-card) {
        width: 90%;
    }
	
	.custom-product-card .product-image img {
		width: 100px;
		height: 80px;
		border-radius: 4px;
		object-fit: cover;
	}
}

@media (max-width: 980px) {
	#left-area:has(.custom-product-card) {
	    padding-right: 0px!important;
	}
	}