#prikbord-heading {
    margin-bottom: 30px;
}

#prikbords-list {
    margin-bottom: 80px;
}

#prikbord-item {
    position: relative;
    margin-bottom: 30px;
}

#prikbord-item img {
    float: left;
    margin: 0 10px 0 0;
    max-width: 50%;
    height: auto;
}

#prikbord-item-content {
    position: relative;
    padding: 15px;
    /* height: calc(100% - 30px); */
    min-height: 100px;
    display: flex;
    align-items: flex-end;
}

#prikbord-item-content-inner {
    background-color: var(--white-color);
    padding: 15px;
    width: calc(100% - 30px);
}

#prikbord-item-permalink {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

#prikbords-paginator {
    margin-bottom: 120px;
}

#prikbord-item-content-metadata {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 12px;
    line-height: 16px;
    border-bottom: 2px solid #97AAC4;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#prikbord-item-content-title {
    padding-top: 10px;
    margin-bottom: 10px;
}

#prikbord-item-content-metadata .post-by {
    opacity: 40%;
}

#prikbord-list-item {
    margin-top: 10px;
    background-color: var(--white-color);
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#prikbord-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    line-height: 20px;
    color: #253142;
}

#prikbord-text * {
    display: inline;
}

#prikbord-text p:first-of-type {
    margin-top: 0;
}
#prikbord-text p:last-of-type {
    margin-bottom: 0;
}

#prikbord-item-label {
    padding: 10px;
    background-color: var(--accent-color);
    color: #fff;
    font-size: 12px;
    line-height: 16px;
    position: absolute;
    bottom: calc(100% - 15px);
    text-transform: uppercase;
    font-weight: bold;
}

#prikbord-item-content-metadata span:nth-of-type(3), #prikbord-item-content-metadata span:nth-of-type(5) {
    margin-right: 10px;
}



@media only screen and (max-width: 800px) {
    #prikbord-item img {
        float: none;
        display: block;
        max-width: 100%;
        margin: 0 auto 30px auto;
    }
}