.background-image {
    background-size: cover;
    background-position: center;
    height: 65vh;
    position: relative;
    z-index: 1;
}

.content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--primary-color-rgb), 0.75);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 2;
    padding: 10vw;
}

.news-content {
    position: relative;
    top: -10rem;
    /* Adjust this value to move content higher or lower */
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 3;
    border-radius: 10px;
    padding: 3rem;
    color: black;
}

.news-recommendation {
    margin-top: -7rem;
}

.recommendation-card {
    margin-bottom: 15px;
}

.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); */
    z-index: 100;
}

.floating-button:hover {
    background-color: #0056b3;
}

@media screen and (max-width: 575px) {
    .news-content {

        top: 0;
        border-radius: 0;
        padding: 1.5rem;

    }

    .news-recommendation {
        margin-top: 2rem;
    }

    .background-image {
        height: 45vw;

    }
}



/* VER 2 */

.image-banner {
    max-height: 35vh;
    object-fit: cover;
}