﻿.newscardlist .item-link {
  background-color: white;
  display: block;
  height: 100%;
  position: relative;
  color: #25403c;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.08);
}
.newscardlist .item-link .row {
  height: 100%;
  flex-direction: column;
  flex-wrap: nowrap;
}
.newscardlist .item-link .item-thumbnail {
  flex: 0 0 auto;
}
.newscardlist .item-link .item-content {
  flex: 0 1 100%;
  padding-bottom: 60px;
}
.newscardlist .item-link .item-texts {
  padding: calc(40px / 2);
}
.newscardlist .item-link .img-container {
  position: relative;
  overflow: hidden;
  background-color: rgba(0, 184, 129, 0.2);
  transition: all 0.15s linear;
}
.newscardlist .item-link .img-container:after {
  content: "";
  display: block;
  padding-top: 65%;
}
.newscardlist .item-link .img-container:before {
  content: "";
  height: 60%;
  width: 60%;
  background-image: url(/custom/images/placeholder.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  position: absolute;
  opacity: 0.5;
  top: 50%;
  left: 50%;
  transition: all 0.15s linear;
  transform: translate(-50%, -50%);
}
.newscardlist .item-link .img-container img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.15s linear;
}
.newscardlist .item-link .item-more {
  display: inline-block;
  position: absolute;
  bottom: 40px/2;
  right: 40px;
  transition: all 0.15s linear;
}
.newscardlist .item-link:hover .img-container img,
.newscardlist .item-link:active .img-container img,
.newscardlist .item-link:focus .img-container img {
  transform: scale(1.05);
}
.newscardlist .item-link:hover .img-container:before,
.newscardlist .item-link:active .img-container:before,
.newscardlist .item-link:focus .img-container:before {
  transform: translate(-50%, -50%) scale(1.1);
}
.newscardlist .homenews-list-1 .item-link .row {
  flex-direction: row;
  flex-wrap: wrap;
}