.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.thumb {
    width: 250px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    padding: 10px;
    transition: transform 0.2s ease;
}

.thumb:hover {
    transform: scale(1.03);
}

.thumb img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.thumb p {
    font-size: 14px;
    margin-top: 10px;
    color: #333;
}

@media (max-width: 768px) {
  .thumb {
    width: 180px;
  }

  .gallery {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .thumb {
    width: calc(50vw - 24px);
    min-width: 130px;
  }
}