.prodfeat {
	border-radius:0px!important;	
	padding-top:60px;
	padding-left:20px!important;
}	

.prodfeat__img img {    
    width: 103%;      /* scale beyond container */
    max-width: 120%;
    height: auto;
    transform: scale(1.1);
	margin-top: -58px;	
}

@media (max-width: 767px) {
	.prodfeat__img img {    
		width: 110%;      /* scale beyond container */
		max-width: 120%;
		height: auto;
		transform: scale(1.1);
		margin-top: -28px;	
	}
}


.downloadgrid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	max-width: 500px;
	margin: 0 auto;
	justify-content: center;
}

@media (max-width: 700px) {
	.downloadgrid {
	  grid-template-columns: 1fr;
	}
}

/* Base item sizing — used on mobile/tablet and as fallback */
.pc-item{
    flex: 0 0 clamp(150px, 22%, 220px);
    min-width: 150px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Image sizing, capped so it never blows up */
.pc-item .pc-figure {
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
}

.pc-item .pc-img {
    width: 100%;
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.pc-item .pc-name {
    max-width: 200px;
    text-align: center;
    margin: 8px auto 0;
}


@media (min-width: 768px) {
  .pc-track.fit {
    justify-content: center;
    gap: 32px;
  }
}

/* Desktop only: center the 3 items instead of stretching them */
@media (min-width: 992px) {
  .pc-track.fit {
    justify-content: center;
    gap: 32px;
  }
}

