/* Style dla pojedynczego wpisu bloga */
.blog__feature-image{
  position: relative;
  min-height: 350px;
  background-size:cover!important;
  background-position: center center!important;
  margin-bottom: 25px;
}
@media (min-width: 768px){
  .blog__feature-image{
    min-height: 600px;
  }
}
.blog__feature-image::after{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 49, 97, 0.4);
}
h2.post-content-title {
    border-bottom: 1px solid #e7e7e7;
    box-shadow: inset 5px 0 0 #00b9f1;
    padding-left: 15px;
    padding-bottom: 4px;
    padding-top: 4px;
    margin-top: 35px;
    margin-bottom: 35px;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 700;
}
body.single-blog main h3{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}
body.single-blog main ol,
body.single-blog main ul{
  padding-left: 20px;
}
body.single-blog main li{
  list-style: none;
  margin-bottom: 7px;
}
body.single-blog main li:before {
    content: "\f058";
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    color: #712faa;
    padding-right: 5px;
    font-size: 15px;
}

/* Blog cards */
#template .section__blog-posts .card{
  border-bottom: 4px solid var(--theme-blue);
}
#template .section__blog-posts .item__image{
  height: auto;
  padding: 0;
  margin-top: 0;
  position: relative;
}
#template .section__blog-posts .item__image::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 12px 12px 0 0;
    background: rgba(0, 49, 97, 0.2);
}
#template .section__blog-posts .item__image a{
  width: 100%;
}
#template .section__blog-posts .item__image img{
  max-height: none;
  border-radius: 12px 12px 0 0;
}

#template .section__blog-posts .item .item__title a{
  overflow: visible;
  white-space: normal;
  text-overflow: unset;
}