

.Latest {
    font-family: Arial, sans-serif;
    padding: 90px;
}

h1 {
    text-align: center;
    color: #999;
    font-size: 30px;
}

.category-buttons {
    margin-bottom: 20px;
    text-align: center;
}

.category-btn {
    padding: 10px 20px;
    margin: 0 10px;
    border: none;
    background-color: #262525;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    color: #999;
}

.category-btn.active,
.category-btn:hover {
    color: white;
}

.album-container {
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
}

.album {
    position: relative;
    width: 350px;
    text-align: center;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.album.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.album.hidden-final {
    display: none;
}

.album img {
    width: 350px;
    height: 190px;
    object-fit: cover;
}

.album-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}

.album-footer1 {
    justify-content: space-between;
    align-items: center;
    margin-top: 3px;
}

.album-title {
    margin: 1px;
    color: #999;
    font-size: 18px;
}



.see-more-btn1 {
    color: #999;
    text-decoration: none;
    padding: 2px 140px; /* Updated per your request */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.see-more-btn1:hover {
    background-color: #696868;
    color: #fff;
}

.see-more-btn {
    color: #999;
    text-decoration: none;
    padding: 2px 2px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.see-more-btn:hover {
    background-color: #fdfdfd;
    color: #fff;
}

/* Load More Button Styling */
.load-more {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
}

.load-more-btn {
    background-color: #333; /* Adjust to match your theme */
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s ease;
    border-radius: 5px;
}

.load-more-btn:hover {
    background-color: #555; /* Adjust hover color to match your theme */
}

.load-more-btn .arrow {
    margin-left: 10px;
    font-size: 18px;
}

/* Media Query for Tablets (max-width: 768px) */
@media (max-width: 768px) {
    .Latest {
        padding: 15px;
    }

    h1 {
        font-size: 24px;
    }

    .album-container {
        gap: 40px;
    }

    .album {
        width: 300px;
    }

    .album img {
        width: 300px;
        height: 160px;
    }

    .album-title {
        font-size: 16px;
    }

    .album-date {
        font-size: 12px;
    }

    .see-more-btn1 {
        padding: 1px 11px;
        font-size: 14px;
    }
}

/* Media Query for Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    .Latest {
        padding: 10px;
    }

    h1 {
        font-size: 20px;
    }

    .album-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .album {
        width: 100%;
        max-width: 280px;
    }

    .album img {
        width: 100%;
        height: 150px;
    }

    .album-title {
        font-size: 14px;
    }

    .album-date {
        font-size: 12px;
    }

    .see-more-btn1 {
        padding: 1px 110px;
        font-size: 12px;
    }
}
