.lmt__product-wrapper{
	background:var(--color-surface);
	border-top-left-radius:7px;
	border-top-right-radius:7px;
	border-bottom-left-radius:7px;
	border-bottom-right-radius:7px;
}

.lmt__product-title{
	padding:var(--spacing-2);
	margin-top:var(--spacing-3);
}

.lmt__product-table table td{
	border:none;
	padding:var(--spacing-3) var(--spacing-2);
}

.lmt__product-table table tr{
	background:#CBDCE9;
}

.lmt__product-table table tr:last-child{
	border-bottom-left-radius:7px;
	border-bottom-right-radius:7px;
}

.lmt__product-table  tr:nth-child(even) {
	background: var(--color-gray-100);
}

.lmt__product-img{
	height:auto;
	object-fit:cover;
	width:100%;
	max-height:280px
}

.lmt__product-img--large{
    max-height:none;
}

.lmt__product-card-wrapper .lmt__product-img{
	max-height:500px;

}

.lmt__product-card-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition);
}

.lmt__product-card-wrapper .lmt__product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lmt__product-card-wrapper .lmt__product-description {
    flex: 1;
    padding: 0 var(--spacing-4) var(--spacing-4);
    margin: 0;
    color: var(--color-text-light);
    line-height: var(--leading-normal);
}

.lmt__product-card-wrapper .lmt__product-title {
    padding: var(--spacing-4);
    margin: 0;
    font-size: var(--text-lg);
    color: var(--color-primary);
	font-weight:700;
}

#lmt__product-card-wrapper--blue{
	background:var(--color-primary);
	color:var(--color-text-inverse);
}

#lmt__product-card-wrapper--blue .lmt__product-title{
	color:var(--color-text-inverse);
}

#lmt__product-card-wrapper--blue .lmt__product-description{
	color:var(--color-text-inverse);
}

.lmt__product-wrapper--img-lg .lmt__product-img{
	min-height:23.5rem;
}


.ltb__table-wrapper-lg-img

.lmt__product-wrapper--img-lg .lmt__product-title{
	font-size:var(--text-lg);
	font-weight:700;
}


.ltb__table-wrapper-lg-img{
	width:80%;
	margin:var(--spacing-6) auto;
} 

.ltb__cta-btn-wrapper{
	width:80%;
}

.lmt__product-subtitle{
	padding:0 var(--spacing-4) var(--spacing-2);
	margin-bottom:var(--spacing-3);
	position:relative;
}

.lmt__product-subtitle::after{
	content:"";
	position:absolute;
left:var(--spacing-4);
	bottom:-5%;
	height:1px;
	width:70%;
	background:var(--color-text-inverse);
}

@media(max-width:1280px){
	.lmt__product-wrapper--img-lg .lmt__product-img{
		min-height:15.5rem;
		aspect-ration: 1 / 2;
	}


}

@media(max-width:1024px){


	.ltb__table-wrapper-lg-img{

		margin:var(--spacing-6) auto;
	} 
}

@media(max-width:768px){
	.lmt__product-wrapper--img-lg .lmt__product-img{
		min-height:20rem;
	}

	.ltb__table-wrapper-lg-img{
		width:100%;
		margin:var(--spacing-6) auto;
	} 

	.ltb__cta-btn-wrapper{
		margin:0 auto;
		width:100%;
	}
}


