/* white you custom css code here. only css code will work */
.experience-right .vdo-btn {
	display: none!important;
}

/* About: stop the two images from overlapping */
.top-experience-area .experience-author{
  position: static;          /* cancels any relative canvas for abs children */
  padding-bottom: 0;         /* optional: remove extra gap */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.top-experience-area .experience-author .thumb-1,
.top-experience-area .experience-author .thumb-2{
  position: static !important;   /* key line: cancels absolute */
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  margin: 0 !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 18px;
  overflow: hidden;
}

/* make the images consistent */
.top-experience-area .experience-author .thumb-1 img,
.top-experience-area .experience-author .thumb-2 img{
  width: 100%;
  height: 480px;              /* matches your CMS recommended height */
  object-fit: cover;
  display: block;
}

/* mobile: stack them */
@media (max-width: 991px){
  .top-experience-area .experience-author{
    grid-template-columns: 1fr;
  }
  .top-experience-area .experience-author .thumb-1 img,
  .top-experience-area .experience-author .thumb-2 img{
    height: 360px;
  }
}