/* 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;
  }
}

.downloadgrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 500px;
	margin: 0 auto;
	justify-content: center;
}

@media (max-width: 700px) {
	.downloadgrid {
	  grid-template-columns: 1fr;
	}
}

