
/* Wise Posts css start */
.wise_post {
  max-width: 350px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  background: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wise_post:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.wise_post__image img {
  width: 100%;
  display: block;
}
.wise_post__content {
  padding: 20px;
}
.wise_post__title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}
.wise_post__desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}
.wise_post a.wise_post__btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 25px;
  background: #0073e6;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.wise_post a.wise_post__btn:hover {
  background: #005bb5;
  color: white;
}
/* Layout */
.wise_posts.wise_posts_masonry .wise_post {
  display: inline-block;
  margin-bottom: 24px;
  width: 100%;
}
.wise_post.wise_post_two_column{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.wise_post.wise_post_two_column img {
	height: 100%;
}
.wise_posts.wise_posts_list .wise_post,
.wise_posts.wise_posts_slider .wise_post {
	max-width: 100%;
	width: 100%;
    margin-bottom: 20px;
}
/* Layout end */

/* Slider css */
.wise_posts_slider .slick-prev,
.wise_posts_slider .slick-next {
    z-index: 1;
}
.wise_posts_slider .slick-dots {
    margin: 0;
    position: relative;
    padding: 0;
}
.wise_posts_slider .slick-prev {
    left: 10px;
}

.wise_posts_slider .slick-next {
    right: 10px;
}

/* Ensure slider items have proper width */
.wise_posts_slider .slick-list {
    margin: 0 -10px;
}
.wise_posts_equal_height .slick-track {
	display: flex;
}
.wise_posts_equal_height .slick-track .slick-slide {
	height: inherit;
}
/* Slider css end */

/* Trimmed description */
.wise_post_desc_trimmed {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	/* -webkit-line-clamp: --dynamic-value; */ /* will be filled dynamically from elementor controls */
}

a.wise_post_author_link{
    text-decoration: none;
}
/* Wise Posts css end */