/*============================================================================================
   Start Blog CSS
==============================================================================================*/
.blog-style-2 .blog-inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
.blog-style-2 .blog-card {
  margin-bottom: 2px;
  background: var(--white-color);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #eaebeb;
  border-radius: 15px;
  gap: 15px;
}



.blog-style-2 .blog-content {
  padding: 18px;
  padding-left: 25px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-left: 0;
}

.blog-style-2 .blog-img {
  overflow: hidden;
    width: 260px;
  min-width: 260px;
}
.blog-style-2 .blog-img img {
  width: 260px;
  min-width: 260px;
  height: auto;
  border-radius: 15px;
  transition: all 0.3s ease;
  object-fit: cover;
}
.blog-style-2 .blog-title {
	font-size: 18px;
	line-height: 120%;
	font-weight: 500;
	margin-bottom: 8px;
	color: var(--title-color);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.blog-style-2 .blog-title:hover{
  color: var(--primary-color);
}
.blog-style-2 .blog-text {
	line-height: 150%;
	font-weight: 400;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	height: 62px;
	min-height: 62px;
}
.blog-style-2 .blog-btn {
  margin-top: 10px;
  display: inline-block;
  line-height: 120%;
color: var(--title-color);
  font-weight: 600;
}
.blog-style-2 .blog-btn:hover {
color: var(--primary-color);
}

.blog-style-2 .swiper-wrapper{
 margin-bottom: 35px;
}

@media only screen and (max-width: 1399px) {
  .blog-style-2 .blog-img img {
    width: 235px;
    min-width: 235px;
  }
  .blog-style-2 .blog-img {
  overflow: hidden;
    width: 235px;
    min-width: 235px;
}
}

@media only screen and (max-width: 992px) {
  .blog-style-2 .blog-img img,
  .blog-style-2 .blog-img {
    width: 100%;
  }

  .blog-style-2 .blog-card{
    flex-direction: column;
  }

  .blog-style-2 .blog-content {
  padding: 13px;
  }
}

@media only screen and (max-width: 768px) {
.blog-style-2 .blog-content {
  padding: 15px;
}
.blog-style-2 .blog-card {
  padding: 20px;
}
}

@media only screen and (max-width: 576px) {
.blog-style-2 .blog-inner {
  grid-template-columns: repeat(1,1fr);
  gap: 15px;
}

.blog-style-2 .blog-card {
  padding: 18px;
}
}


/*============================================================================================
   End Blog CSS
==============================================================================================*/
