/*
 Theme Name: CelebGallery
 Description: Private Celebrity Gallery Theme
 Version: 1.0.0
 Author: Admin
 Status: private
*/

.profile-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
    margin-top: 30px;
}

.profile-grid img { 
    width: 100%; 
    height: 300px; 
    object-fit: cover; 
    border-radius: 10px; 
    display: block;
}

.load-more-container {
    text-align: center;
    margin: 40px 0;
}

.load-more-btn { 
    background: #000; 
    color: #fff; 
    padding: 15px 40px; 
    border: none; 
    border-radius: 5px; 
    cursor: pointer; 
    font-weight: bold;
}

@media (max-width: 768px) { 
    .profile-grid { grid-template-columns: repeat(2, 1fr); } 
}