.blog-index__post--card {
  --background-transition: .3s;
  border-radius: 20px;
  box-shadow: 0 0 11px 0 rgba(169,169,169,.27);
  margin: 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0px;
  /*height: 320px;*/
  background-color: white;
}

.blog-index__post-image-wrapper {
  border-radius: 20px 20px 0 0;
  height: 50vh;
  max-height: 180px;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-end;
}
}

.blog-index__post-button--card {
  display: none;
}

section.blog-index .maincontainer{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 0;
    gap:24px;
  
}

h2.blog-index__post-title{
  font-size: unset;
  margin: 0;
}

.blog-index__post-title a {
    color: #364c63;
    font-size: medium;
    line-height: normal;
    font-weight: 600;
}

.blog-index__post-date{
    color: #364c63;
    font-size: small;
    font-weight: 700;
    text-align: right;
    width: 100%;
    float: left;
}

.blog-index__post-content {
    padding: 15px;
}

a.blog-index__post-tag-link {
    color: white;
    background: #DA6D25;
    text-transform: uppercase;
    padding: 5px 20px 5px 20px;
    font-size: small;
    font-weight: 700;
    letter-spacing: 2px;
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
}

.container-first, .container-fourmore{
  display:flex;
  /*width: 50%;*/
  flex-wrap: wrap;
  flex:1;
}

.container-first, .container-fourmore, .container-other{
padding: 1%;
gap: 1%;
}

.container-fourmore{
    justify-content: flex-start;
    align-content: space-between;
    padding-left: 0%;
    gap: 24px;
}

.container-other{
  display:flex;
  width: 100%;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
}

.container-first .blog-index__post--card{
  width: 100%;
  /*height: 655px;*/
}

.container-first .blog-index__post-image-wrapper{
  max-height: 320px;
}

.container-fourmore .blog-index__post--card{
  /*width: 48%;*/
}

.container-other .blog-index__post--card{
  width: 24%;
}
.blog-related-posts__title-wrapper{
position: relative;
  flex:1;
}
.blog-related-posts__title-wrapper-link-listing{
 display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.read-more{
  font-size:14px;
  color:#e1a225
}
.container-first .blog-index__post--card:hover{
  box-shadow: 0 0 20px 0 rgb(61 61 61 / 84%);
  transform: scale(1.01);
  transition: .6s;
}

.container-fourmore .blog-index__post--card:hover{
  box-shadow: 0 0 20px 0 rgb(61 61 61 / 84%);
  transform: scale(1.05);
  transition: .6s;
}
.container-first .blog-index__post-title a {
    font-size: large;
}

/*INIZIO Taglist*/
.container-taglist{
  padding: 1%;
}

ul.taglist {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    }

ul.taglist li {
    float: left;
    margin-right: 10px; 
}
.actual-tag{
    background-color: #364c63!important;
}
/*Fine Taglist*/

/*INIZIO Css mobile*/
@media only screen and (max-width: 768px) {
  .container-first, .container-fourmore, .container-other{
  flex-direction: column;
  padding: 0;
  width: 100%;
  justify-content: center;
  align-content: center;
    flex:none;
  }
  .blog-related-posts__title-wrapper{
  width:100%;
  flex:1; 
  }
  .blog-index__post--card{
  width: 100%!important;
  margin: 10px 0;
  height: unset;
  }
  .container-taglist{
    text-align:center;
  }
  ul.taglist {
    margin-bottom: 20px;
    display: inline-block;
  }
  ul.taglist li a {
    font-size: 16px!important;
  }
  ul.taglist li {
  display: block;
  margin: 5px 0px;
  float: unset;
  }
  .blog-index__post-title a{
    font-size: large;
  }

}
/*FINE Css mobile*/


