  .WaGadgetRecentBlogPosts .itemAuthor
{ display: none; }
SPAN.postedByLink
{
  display: none
}

.executive-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 24px;
  /* Horizontal offset | Vertical offset | Blur radius | Spread | Color */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Optional: Make it interactive */
.executive-card:hover {
  transform: translateY(-5px); /* Lifts the card up slightly */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); /* Deepens the shadow */
}