*,
*::after,
*::before{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}




.Latest {
    font-family: "europa", sans-serif;
   
    padding: 90px;

}
h1 {
    text-align: center;
    color: #333;
    font-size: 30px;
}
.album-container {
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
}
.album {
    position: relative;
    width: 350px;
    text-align: center;
}
.album img {
    width: 360px;
    height: 240px;
    object-fit: cover; /* Ensures image fills the dimensions without distortion */
   
}
.album-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    justify-content: center;
}
.album-footerg {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}
.album-footer1 {
    justify-content: space-between;
    align-items: center;
    margin-top: 3px;
}
.album-title {
    margin: 20px 0px;
    color: #595959;
    font-size: 18px;
    font-weight: 550;
    font-style: italic;
}
.album-date {
    margin: 1px;
    color: #595959;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    width:100%;
}
.see-more-btn1 {
    color: #595959;
    text-decoration: none;
    padding: 1px 2px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.see-more-btn1:hover {
    background-color: #ffffff;
    color: #242424;
}
.see-more-btn {
    color: #999;
    text-decoration: none;
    padding: 2px 2px;
    border: none;
    border-radius: 5px;
    text-wrap: nowrap;
    cursor: pointer;
    transition: background-color 0.3s;
}
.see-more-btn:hover {
    background-color: #fdfdfd;
    color: #fff;
}

/* 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-btn {
        padding: 1px 1px;
        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-btn {
        padding: 1px 1px;
        font-size: 12px;
    }
}