
.blog_content{
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    padding: 2rem;
    max-width: 100vw;
    margin: 0 auto;
    flex-wrap: wrap;
}

.blog_content a {
    text-decoration: none;
}

.blog_article{
    position: relative;
    border: 3px solid var(--text-color);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items:flex-start;
    justify-content: flex-end;
    gap: 0.8rem;
    padding: 2rem;
    max-width: fit-content;
    max-height: fit-content;
    width: 21rem;
    height: fit-content;
    min-height: 15vw;
    overflow: hidden;
    background-size: contain !important; 
    background-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1; 
}

.blog_article > *:not(.overlay) {
    position: relative;
    z-index: 2; /* Ensure content is above the filter */
}

.blog_article:hover{
    transform: scale(1.05);
    transition: transform 0.3s;
    border-color: var(--accent-color);
    cursor: pointer;
}

.title_article {
    font-size: 1rem;
    font-weight: bold;
    color: var(--softer-color);
}

.ctx_article {
    font-size: 0.8rem;
    color: var(--softer-color);
}

.technos_article {
    font-size: 0.7rem;
    color: var(--softer-color);
    font-style: italic;
    margin: 0;
    padding: 1rem;
}

.technos_stack{
    display: flex;
    flex-direction: row;
    gap: 0.2rem;

}

.label_techno{
    padding: 0.2rem;
    margin: 0;
    font-size: 0.5rem;
    white-space: nowrap;
    color: var(--text-color);
    font-weight: bold;
    background-color: var(--light-accent-color);
    color: var(--accent-color);
    border-radius: 0.4rem;
}

.sec_prj {
    position: relative;
    max-height: fit-content;
    overflow: hidden;
}

.ctn_infos_prj{
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center;
    gap: 1rem;
    height: 100vh;
}

.go_back_btn {
    position: fixed;
    top: 15%;
    left: 95%;
    transform: translateX(-100%);
    z-index: 1000;
    background-color: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

.title_prj {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-color);
}

.ctx_prj {
    font-size: 1.2rem;
    color: var(--text-color);
}

.technos_prj {
    font-size: 1rem;
    color: var(--text-color);
    font-style: italic;
}

.prj_ctn {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    gap: 1rem;
}

.content_prj {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: left;
    gap: 1rem;
    flex: 1;
    max-width: 50%;
}

.content_prj h4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.content_prj p {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.content_prj ul {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.content_prj li {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.imgs_prj_wheel {
    position: absolute;
    top: 0;
    left: 25%;
    transform: translateX(20%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50vh;
    height: 200vw; 
    width: 200vw; 
    max-width: 1000px;
    max-height: 1000px; 
}



.imgs_prj_wheel .img_prj {
    position: absolute;
    top: 0;
    left: 0;
    width: 20%;
    max-width: 200px;
    aspect-ratio: 1/1;
    cursor: pointer;
    box-shadow: 0 1vh 2vh rgba(0, 0, 0, 0.1);
}

.imgs_prj_wheel .img_prj img {
    width: 100%;
    pointer-events: none;
    z-index: 255;
    cursor: pointer;
    border-radius: 0.3em;
}