/************ founder section start  ****************/
.founder-sec {
  margin-top: 0;
}

.postListItem {
  display: grid;
  grid-template-areas:
    "sidebar main"
    "sidebar2 main";
  gap: 0 7%;
  background-color: #fff;
  padding: 35px 80px;
  box-shadow: 0px 0px 4px 0px #00000040;
  border-radius: 60px;
  grid-template-columns: min-content 1fr;
  align-items: center;
  grid-template-rows: auto 1fr;
}

.postListItem .postHead {
  grid-area: sidebar;
  align-self: start;
}

.postListItem .position-founder {
  grid-area: sidebar2;
  align-self: start;
}

.postListItem .postContent:not(.position-founder) {
  grid-area: main;
  font-size: var(--wp--preset--font-size--large);
  font-weight: 300;
}

.postThumbnail img {
  width: 202px;
  aspect-ratio: 1/1.065;
  border-radius: 40px;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.postListItem .postHead .postTitle {
  font-size: 28px;
  color: var(--wp--preset--color--custom-primary);
  margin-top: 27px;
  margin-bottom: 0;
}

.postListItem .postHead .postTitle a {
  color: inherit;
  text-decoration: none;
}

.postThumbnail {
  line-height: 1;
}

.postListItem .position-founder p {
  font-weight: 300;
  margin: 10px 0 0;
  color: var(--wp--preset--color--custom-secondary);
  font-size: 20px;
  position: relative;
  padding-bottom: 10px;
  --line-width: 45px;
}

.postListItem .position-founder p:before {
  content: "";
  height: 2px;
  display: inline-block;
  width: var(--line-width);
  position: absolute;
  bottom: 0;
  background-color: var(--wp--preset--color--custom-secondary);
}

.postListItem:not(:last-child) {
  margin-bottom: 54px;
}

.custom-query-loop {
  position: relative;
  z-index: 1;
}

.founder-head {
  position: relative;
  z-index: 1;
  padding-bottom: calc(var(---bottomspc) + var(---bottomspc) / 3);
  margin-bottom: calc(-1 * var(---bottomspc));
  ---bottomspc: 164px;
}

.load-more {
  background-color: var(--wp--preset--color--custom-secondary);
  padding: 14px 28px 10px;
  line-height: 1.3;
  transition: 0.2s;
  color: #fff !important;
  border-radius: 34px;
  margin: 40px auto 0;
  font-size: 18px;
  border: none;
  display: block;
  cursor: pointer;
  background-size: 29px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.load-more.loading-posts:not([disabled]) {
  background-image: url(/wp-content/uploads/loader.svg);
  background-color: #f58749;
  color: #0000 !important;
  pointer-events: none;
}
.load-more[disabled] {
  cursor: unset;
  pointer-events: none;
}

@media (max-width: 1550px) {
  .postListItem .postHead .postTitle {
    font-size: 24px;
    margin-top: 20px;
  }

  .postListItem .position-founder p {
    font-size: 16px;
    margin: 7px 0 0;
  }
}

@media (max-width: 1230px) {
  .postListItem {
    gap: 0 5%;
    padding: 30px 48px;
  }
}

@media (max-width: 991px) {
  .postListItem .postHead .postTitle {
    font-size: 22px;
  }

  .postThumbnail img {
    width: 156px;
  }
  .postListItem {
    padding: 28px 36px;
    border-radius: 45px;
  }
  .postListItem:not(:last-child) {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .postListItem {
    display: block;
    text-align: center;
  }
  .postListItem .position-founder p::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .postListItem .postHead .postTitle {
    font-size: 20px;
    margin-top: 10px;
  }
  .postListItem {
    padding: 25px;
  }
}
/************ founder section end  ****************/
