.tabbed-content-container {
    background: #f0f0f0;
}

.tabbed-content {
    max-width:1200px;
    margin:auto;
    padding:3rem 1rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.gallery.durafold-1000 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}


.gallery a {
  display: block;
  overflow: hidden;
}

.gallery.premium-slider a{
  display: block;
  overflow: hidden;
  background: white;
  max-width: 250px; 
  margin: 0 auto;   
}

.gallery img {
  width:250px;
  margin:auto;
  height: 200px;
  display: block;
  transition: transform 0.3s ease;
}

.gallery a:hover img {
  transform: scale(1.05);
}

@media screen and (min-width:768px) {
  .gallery img {
    width:100%;
  }

  .gallery a {
    display: block;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background: white;
  }
}
