/* Custom styling for blog tags */
.tag-link {
    display: inline-block;
    color: #3f86e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tag-link:hover {
    color: #145bc4;
    text-decoration: underline;
}

/* Add a little space around the bullet */
.post-tag .bull {
    margin: 0 4px;
    color: #999;
}

/* Tag filter styles */
.tags-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}

.tag-filter {
    display: inline-block;
    padding: 5px 12px;
    margin: 0 5px 10px;
    border-radius: 20px;
    background-color: #f5f5f5;
    color: #666;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-filter:hover {
    background-color: #e0e0e0;
    color: #333;
    text-decoration: none;
}

.tag-filter.active {
    background-color: #3f86e1;
    color: #fff;
}

.tag-filter.active:hover {
    background-color: #2a73d2;
    color: #fff;
}

.mb-50 {
    margin-bottom: 50px;
}

/* Articles liés avec effet de zoom et coins arrondis */
.bg-light-blue .blog-post {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
    background-color: #fff;
    transition: all 0.3s ease;
}

.bg-light-blue .blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.bg-light-blue .blog-post-img {
    margin-bottom: 0 !important;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.bg-light-blue .blog-post-img img {
    transition: transform 0.5s ease;
}

.bg-light-blue .blog-post:hover .blog-post-img img {
    transform: scale(1.1);
}

.bg-light-blue .blog-post-txt {
    padding: 25px;
} 