.content-holder {
    justify-content: end;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
.content-card {
    width: 360px;
    height: fit-content;
    padding: 8px;
    margin: 0px 0.8rem 1rem 0;
    
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

    border-collapse:collapse;

    &:before{
        transition: all 0.4s;  
        position:absolute;
        content:"";
        width:100%;
        height:50%;
        left:50%;
        margin-left:-50%;
        top:25%;
        border-color:rgba(200,200,200,0);
        border-style:solid;
        border-width:0 1px;
    }
    
    &:after{
        transition: all 0.4s;  
        position:absolute;
        content:"";
        width:50%;
        height:100%;
        left:50%;
        margin-left:-25%;
        top:0;
        border-color:rgba(200,200,200,0);
        border-style:solid;
        border-width:1px 0;
    }
    
    &:hover{

        &:after{
        width: 378px;
        margin-left:-50%;
        border-color:rgba(100,100,100,1);
        }
        
        &:before{
        height:220px;
        top:0%;
        border-color:rgba(100,100,100,1);
        }
    }
}


/* .content-card:hover {
    transform: scale(102%);
} */
.card-image {
    height: 202px;
}
.card-image img {
    width: 100%;
}
.card-inner {
    width: 360px;
    height: 203px;
    position: absolute;
    top: 8px;
    left: 8px;
    display: block;
    transition-duration: 2s;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}
.card-inner-hide {
    display: none;
}

.card-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    width: 80%;
    left: 10%;
    height: 100%;
    font-size: 13px;
    font-weight: 200;
}
.card-description div {
    background-color: rgb(12, 6, 19);
    padding: 5px 8px;
}

.card-title {
    font-size: 14px !important;
    /* letter-spacing: 1px; */
}
.card-extra {
    width: 100%;
    position: absolute;
    /* height: 30px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center; */
}
.card-extra img {
    width: 18px;
    margin-right: 12px;
}
.card-extra p {
    font-size: 13px;
    opacity: 60%;
}
.card-open {
    width:26px;
    height:26px;
}
.card-open img {
    width:26px;
    height:26px;
}

.categories-holder {
    height: 244px;
    min-width: 220px;
    font-size: 15px;
    margin-bottom: 16px;
    display: block;
}
.category {
    /* border: 1px solid white; */
    padding: 14px 14px 0px 14px;
}

.content-divider {
    width: 100%;
    margin: 8px 28px 22px 0;
}
.content-divider-line {
    height: 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    width: 100%;
    margin-left: 12px;
}
.content-divider-date {
    cursor: default;
    font-size: 14px;
    font-weight: 300;
    transform: translateY(-4px);
}


@media only screen and (max-width: 1000px) {
    .categories-holder {
        display: none;
    }
    .content-holder {
        justify-content: center;
    }
    .card-extra {
        display: none;
    }
}


@media only screen and (max-width: 420px) {
    .content-card {
        width: 80%;
        height: auto;
        padding: 10px;
        margin: 0px 0px 24px 0px;
    }
    .content-holder {
        margin: 0 8px;
    }
    .card-extra {
        margin-top: 12px;
    }
    /* .card-description {
        display: none;
    } */
    .card-title {
        font-size: 14px !important;
        letter-spacing: 0px;
    }
}