/* ===== CARD ===== */
.news-item{
  border: 1px;
  border-radius: 18px;
  background: #f5f5f5;
  overflow: hidden;

  box-shadow: none;              
  transition: box-shadow .28s ease, transform .28s ease, border-color .28s ease;
}

.news-item:hover{
  box-shadow:
    0 1px 0 rgba(0,0,0,.03),
    0 18px 40px rgba(0,0,0,.10);
}


/* ===== IMAGE TOP ===== */
.news-item .image,
.news-item .image a{
  display:block !important;
  position:relative;
  aspect-ratio: 16/8;
  overflow:hidden;
  background:#f2f2f2;
}

.news-item .image img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
}

.news-item:hover .image::before{
  background: rgba(255,255,255,.92);
  border-color: rgba(0,0,0,.12);
  box-shadow: 0 14px 40px rgba(0,0,0,.14);
  transform: translateY(-1px);
}


.news-item .text{
  position: relative;
  z-index: 2;

  
  margin-top: -50px;
  padding: 22px 22px 20px;

  border-top-left-radius: 18px;
  border-top-right-radius: 18px;

  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-top: 0px;
  box-shadow: 0 -10px 35px rgba(0,0,0,.08); 
}

/* ===== TITLE: underline zleva ===== */
.news-item .title{
  position: relative;
  display:block;
  margin: 0 0 8px;
  padding-bottom: 2px;

  font-size: 16px !important;
  font-weight: 700;
  line-height: 1.18;
  color: rgba(0,0,0,.92);
  text-decoration:none;

  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.news-item .title::before{ content:none !important; }

.news-item .title::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  height:2px;
  width:54px;
  border-radius:2px;
  background:#00b3b5;

  transform-origin:left;
  transform: scaleX(.35);
  opacity:.75;
  transition: transform .35s ease, opacity .35s ease;
}

.news-item:hover .title::after{
  transform: scaleX(1);
  opacity:1;
}

/* ===== DESCRIPTION ===== */
.news-item .description p{
  margin:0;
  font-size:13px;
  line-height:1.6;
  color: rgba(0,0,0,.72);

  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.news-item time{
  font-weight: 600;
  font-size: 11px;
  color: rgba(0,0,0,.55);
}

/* ===== MOBILE ===== */
@media (max-width: 768px){
  .news-item .image,
  .news-item .image a{ aspect-ratio: 16/9; }

  .news-item{ border-radius: 18px; }

  .news-item .text{
    margin-top: -44px;              
    padding: 18px 16px 18px;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
  }

  .news-item .title{ font-size: 15px; }
}
