/* Blog Featured Widget Highlighted Title */
.blog-widget.blog-featured-widget-highlighted-title {
  position: relative;
  text-align: right;
  overflow: hidden;
  padding: 0;
}
.blog-widget.blog-featured-widget-highlighted-title .news-category-container {
  width: 100%;
  padding: 0 0 20px 0;
  text-align: right;
  background: none;
}
.blog-widget.blog-featured-widget-highlighted-title .news-row-container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  background: none;
}
.blog-widget.blog-featured-widget-highlighted-title .news-title-container {
  flex: 1 1 0;
  align-items: end;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.blog-widget.blog-featured-widget-highlighted-title .news-image {
  width: 50%;
  height: 360px;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
.blog-widget.blog-featured-widget-highlighted-title .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-widget.blog-featured-widget-highlighted-title .news-short-title-label {
  background: #00bcff;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 10px 5px 10px;
  display: inline-block;
}


.blog-widget.blog-featured-widget-highlighted-title .news-title.highlighted-title a{
  margin: 0 !important;
	color:#2A2D34 !important;
  width: 96%;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.3;
  background-image: linear-gradient(to bottom, #00bcff 0 0);
  background-repeat: no-repeat;
  background-size: 0% 3px; 
  background-position: right bottom; 
  transition: background-size 0.7s ease-in-out;
}
.blog-widget.blog-featured-widget-highlighted-title .news-title.highlighted-title a:hover {
  background-size: 100% 10px;
}

@media (max-width: 900px) {
  .blog-widget.blog-featured-widget-highlighted-title .news-row-container {
    flex-direction: column;
    gap: 20px;
  }
  .blog-widget.blog-featured-widget-highlighted-title .news-title-container {
    padding:  0;
  }
  .blog-widget.blog-featured-widget-highlighted-title .news-image {
    width: 100%;
    height: 180px;
    margin-bottom: 0;
  }

  .blog-widget.blog-featured-widget-highlighted-title .news-title.highlighted-title {
    font-size: 1.4rem;
    width: 100%;
    padding: 0;
  }
   .blog-widget.blog-featured-widget-highlighted-title .news-title.highlighted-title a{font-size: 2rem;line-height: 1;}
  .blog-widget.blog-featured-widget-highlighted-title .news-short-title {
    font-size: 1rem;
    padding: 16px 16px 0 16px;
  }
} 