.photo-grid-container-2024 {
    columns: 3;
    column-gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .photo-item-2024 {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    display: block;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
  }
  
  .photo-image-2024 {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  /* Featured image styles */
  .photo-featured-2024 {
    margin-bottom: 20px;
  }
  
  .photo-featured-2024 .photo-image-2024 {
    aspect-ratio: 16/9;
  }
  
  /* Medium size image */
  .photo-medium-2024 {
    margin-bottom: 20px;
  }
  
  .photo-medium-2024 .photo-image-2024 {
    aspect-ratio: 3/2;
  }
  
  /* Regular items */
  .photo-item-2024:not(.photo-featured-2024):not(.photo-medium-2024) .photo-image-2024 {
    aspect-ratio: 1/1;
  }
  
  /* Tooltip styles */
  .photo-tooltip-2024 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 12px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  
  /* Hover effects */
  .photo-item-2024:hover .photo-image-2024 {
    transform: scale(1.05);
  }
  
  .photo-item-2024:hover .photo-tooltip-2024 {
    transform: translateY(0);
  }
  
  /* Responsive breakpoints */
  @media screen and (max-width: 1024px) {
    .photo-grid-container-2024 {
      columns: 2;
      column-gap: 15px;
      padding: 15px;
    }
  }
  
  @media screen and (max-width: 600px) {
    .photo-grid-container-2024 {
      columns: 1;
      column-gap: 10px;
      padding: 10px;
    }
    
    .photo-item-2024 {
      margin-bottom: 10px;
    }
  }