  /* Custom Photo Gallery */
  .album-gallery {
    display: block;
  }
  
  .gallery-item {
    margin-bottom: 20px;
    width: 100%;
  }
  
  .gallery-item img {
    display: block;
    width: 100%;
    border-radius: 5px;
  }
  
  .single-album {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .album-title {
    font-size: 2em;
    margin-bottom: 10px;
  }
  
  .album-description {
    margin-bottom: 20px;
    font-size: 1.2em;
    color: #666;
  }
  
  .album-images-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Default: Four equal columns */
    gap: 16px; /* Space between images */
    margin-top: 20px;
  }
  
  .album-images-grid a {
    display: block;
    overflow: hidden;
    /* border: 1px solid #ddd; */
    /* border-radius: 5px; */
    transition: transform 0.2s ease-in-out;
  }
  
  .album-images-grid a:hover {
    transform: scale(1.05);
  }
  
  .album-images-grid img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 5px;
  }
  
  .no-images-message,
  .no-album-message {
    font-size: 1.2em;
    color: #999;
    text-align: center;
    margin-top: 20px;
  }
  
  /* General Styles */
  .lead-text .col-wrap.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 40px auto;
    max-width: 800px;
    padding: 0 20px; /* Add padding for smaller screens */
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    .album-images-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns for tablets */
    }
  
    .album-title {
        font-size: 2em; /* Slightly smaller title */
    }
  
    .album-description {
        font-size: 1.1em;
    }
  }
  
  @media (max-width: 768px) {
    .album-images-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for smaller screens */
    }
  
    .album-title {
        font-size: 1.8em;
    }
  
    .album-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
  }
  
  @media (max-width: 480px) {
    .album-images-grid {
        grid-template-columns: 1fr; /* Single column for very small screens */
    }
  
    .album-title {
        font-size: 1.5em;
    }
  
    .album-description {
        font-size: 0.9em;
        margin-bottom: 20px;
    }
  }