.blognews-header {
    text-align: center;
    margin-bottom: 1rem;
}

.blognews-container{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1rem;
}

.blognews-grid{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.blognews-card{
  grid-column: span 12;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 180px;
  width: 49%;
}

.blognews-card__image{
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.02);
  max-height: 280px;
}

.blognews-card__image:hover img {
    width: 110%;
    margin-left: -5%;
}

.blognews-card__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .3s ease-in-out;
}

.blognews-card__placeholder{
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,.03), rgba(0,0,0,.06));
}

.blognews-card__body{
  padding: 1rem;
}

.blognews-card__title{
  margin: 0 0 .5rem 0;
  font-size: 1.15rem;
}

.blognews-card__title a{
  color: inherit;
  text-decoration: none;
}

.blognews-card__date{
  font-size: .875rem;
  opacity: .7;
  margin-bottom: .5rem;
}

.blognews-card__excerpt{
  opacity: .92;
  line-height: 1.45;
}

.blognews-card__actions{
  margin-top: .75rem;
}

.blognews-post__title {
    text-align: center;
}

.blognews-post__date {
    margin-bottom: .5rem;
}

.blognews-post__image img{
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
}

.blognews-post__content{
  margin-top: 1rem;
  line-height: 1.7;
}

.blognews-breadcrumb{
  margin: 0 0 1rem 0;
  opacity: .85;
}

.blognews-breadcrumb__sep{
  padding: 0 .35rem;
  opacity: .6;
}

.blognews-share{
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,.08);
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
}

.blognews-share__label{
  font-weight: 600;
  margin-right: .25rem;
}

.blognews-share__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,.12);
  padding: .4rem .65rem;
  border-radius: 8px;
  text-decoration: none;
  background: #fff;
  cursor: pointer;
}

.blognews-share__copied{
  margin-left: .5rem;
  opacity: .8;
  font-size: .9rem;
}

/* Home block */
.blognews-home{
  margin: 1rem 0;
}

.blognews-home__head{
  margin-bottom: 1rem;
  text-align: center;
}

.blognews-home__head h2 {
    margin: 2.5rem 0;
    font-weight: 500;
    text-align: center;
}

.blognews-home__btn {
    display: block;
    text-align: center;
    margin: 2rem 0 1rem;
}

/* Responsive */
@media (max-width: 768px){
  .blognews-card{
    grid-template-columns: 1fr;
  }
  .blognews-card__image{
    height: 220px;
  }
}
