body{
	background-color:#fff;
}

 .blog-hero-image-container {
        position: relative;
        width: 100%;
        height: 450px; /* Ista visina kao prije */
        overflow: hidden;
    }
    .blog-hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Osigurava da slika prekrije cijeli prostor bez distorzije */
    }
    .hero-text-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
    }
    /* Osigurava da su slike responzivne unutar svog spremnika */
    .img-responsive {
        display: block;
        max-width: 100%;
        height: auto;
    }
    .blog-list-item {
        border-bottom: 1px solid #eee;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .blog-list-item .col-md-7, .blog-list-item .col-md-5 {
        display: flex;
        align-items: center;
    }

/* --- Image Hover Effect --- */

/* The main container that enables the hover effect */
.image-hover-wrapper {
    position: relative;
    overflow: hidden; /* This crops the image zoom effect neatly */
    display: block;
    border-radius: 4px; /* Optional: adds slightly rounded corners */
}

/* The image itself */
.image-hover-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.4s ease; /* Smooth zoom transition */
}

/* The dark overlay that appears on hover */
.image-hover-wrapper .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65); /* Dark semi-transparent background */
    
    /* Fade-in transition */
    opacity: 0;
    transition: opacity 0.4s ease;
    
    /* Center the content inside */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The content inside the overlay (icon and text) */
.image-hover-wrapper .overlay-content {
    text-align: center;
    color: #fff;
    transform: translateY(10px); /* Start slightly lower */
    transition: transform 0.4s ease;
}

/* The play icon (SVG) */
.image-hover-wrapper .overlay-icon svg {
    width: 60px;
    height: 60px;
    fill: #ffffff; /* White icon color */
    margin-bottom: 10px;
}

/* The "MORE INFO" text */
.image-hover-wrapper .overlay-text {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- The Hover Triggers --- */

/* When you hover the wrapper, fade in the overlay */
.image-hover-wrapper:hover .image-overlay {
    opacity: 1;
}

/* When you hover the wrapper, also move the overlay content up */
.image-hover-wrapper:hover .overlay-content {
    transform: translateY(0);
}

/* When you hover the wrapper, zoom in the image */
.image-hover-wrapper:hover img {
    transform: scale(1.05); /* Zoom effect */
}