hr {
    width: 100%;
}

.blogListPost {
    width: 100%;
}

.blogListPostImage {
    max-width: 100%;
}

.blogListPostRow {
    max-width: 1920px;
    margin-bottom: 20px;
    margin-top: 10px;
    width: 100%;
}

.blogListPostImageColumn {
    min-width: 350px;
    max-height: 100%;
}

.blogListPostImage {
    max-height: 100%;
}

.blogListPostOverviewColumn {
    min-width: 350px;
    max-height: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.avatarImage {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.authorRow {
    font-family: 'Cinzel', 'sans-serif';
}

.list-unstyled {
    list-style: none; !important
    list-style-image: none; !important
}

.pagination a {
  color: black;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color .3s;
  border-radius: 50%;
}

.pagination a.active {
  background-color: #4CAF50;
  color: white;
}

.pagination a:hover:not(.active) {background-color: #ddd;}

.imagePreview {
    width: 350px;
    max-width: 350px;
}

.imageShadow {
   -moz-box-shadow:    inset 0 0 35px #000000;
   -webkit-box-shadow: inset 0 0 35px #000000;
   box-shadow:         inset 0 0 35px #000000;
   width: 100%;
}

#postMainImage {
    position: absolute;
    width: 100%;
    z-index: -1;
    top: -50px;
    min-width: 1080px;
}

.postText {
    text-overflow: ellipsis;
    font-size: 1.2em;
}

.postHeader {
    background-color: rgba(0,0,0,0.4);
    width: 100%;
    position: absolute;
    bottom: 0px;
    color: white;
}

.tags {
    list-style: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
}

.tags li {
float: left;
}

.tag {
    font-size: 0.8em;
    background: #eee;
    border-radius: 3px 0 0 3px;
    color: #999;
    display: inline-block;
    height: 26px;
    line-height: 26px;
    padding: 0 20px 0 23px;
    position: relative;
    margin: 0 10px 10px 0;
    text-decoration: none;
    -webkit-transition: color 0.2s;
}

.tag::before {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
    content: '';
    height: 6px;
    left: 10px;
    position: absolute;
    width: 6px;
    top: 10px;
}

.tag::after {
    background: #fff;
    border-bottom: 13px solid transparent;
    border-left: 10px solid #eee;
    border-top: 13px solid transparent;
    content: '';
    position: absolute;
    right: 0;
    top: 0;
}

.tag:hover {
    background-color: crimson;
    text-decoration: none;
    color: white;
}

.tag:hover::after {
   border-left-color: crimson;
}

.overviewRow h2 {
    font-family: 'Cinzel', 'sans-serif';
    color: black;
}

.overviewRow p {
    font-family: 'Barlow', 'sans-serif';
    color: black;
}