﻿.blog-item {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}


    .blog-item.selected {
        border: 2px solid #007bff;
        box-shadow: 0 5px 15px rgba(0,123,255,0.3);
        background-color: #f0f8ff;
    }


    .blog-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }


.bg-breadcrumb {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease-in-out;
}


    .bg-breadcrumb::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0,0,0,0.5);
    }


    .bg-breadcrumb .container {
        position: relative;
        z-index: 2;
    }
