.posts_slider_module {

  position: relative;

}

.posts_slider_module .sc-top-curve {
  height: 150px;
  border-radius: 0 0 50px 50px;
}

.posts_slider_module .sc-top-curve.abs-top-curve {
  position: absolute;
  top: 0;
}
.posts_slider_module .sc-divider {
  position: absolute;
  top: 0;
  z-index: 0;
  border-radius: 0 0 50px 50px;
}

.posts_slider_module.overlap {
  margin-top: 0 !important;
  z-index: 10;
}
.posts_slider_module.curve-left::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 157px;
  top: -75px;
  left: 0;

  z-index: -1;
  border-radius: 100px 0 0 0;
  transform: rotate(3deg);
}  
.posts_slider_module.curve-right::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 157px;
  top: -75px;
  left: 0;

  z-index: -1;
  border-radius: 0 100px 0 0;
  transform: rotate(-3deg);
}

.posts_slider_module .navigate {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
  margin: 80px auto;
}
.posts_slider_module .navigate > a.sbtn{
    z-index: 3;
}
.posts_slider_module .navigate > a.sbtn.outline:hover {
  background-color: var(--buttons-btn-bg) !important;
  color: var(--outline-color-hover) !important;
}
.posts_slider_module .navigate > a.sbtn.gradient-green {
  border: none !important;
  color: #ffffff;
  background: linear-gradient(
    90deg,
    rgba(25, 29, 56, 1) 0%,
    rgba(6, 151, 130, 1) 48%
  );
}
.posts_slider_module .navigate > a.sbtn.gradient-green:hover {
  border: none !important;
  color: #ffffff !important;
  background: linear-gradient(
    90deg,
    rgba(6, 151, 130, 1) 0%,
    rgba(25, 29, 56, 1) 80%
  );
}
.posts_slider_module .navigate > a.sbtn.gradient-navy {
  border: none !important;
  color: #ffffff;
  background: linear-gradient(
    90deg,
    rgba(28, 45, 90, 1) 0%,
    rgba(43, 71, 148, 1) 100%
  );
}
.posts_slider_module .navigate > a.sbtn.gradient-navy:hover {
  border: none !important;
  color: #ffffff !important;
  background: linear-gradient(
    90deg,
    rgba(43, 71, 148, 1) 0%,
    rgba(28, 45, 90, 1) 100%
  );
}
.posts_slider_module .navigate > a.sbtn:hover {
  background-color: var(--buttons-btn-bg) !important;
  color: var(--buttons-hov-text) !important;
}

.posts_slider_module .shortlist-intro {
  width: 60%;
    margin: 40px auto 75px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.posts_slider_module .latest-posts .post-item-wrapper {
  display: grid;
  gap: 50px;
}
.posts_slider_module .latest-posts.style-side .post-item-wrapper {
  grid-template-columns: 1fr 1fr;
}
.posts_slider_module .latest-posts.style-stacked .post-item-wrapper {
  grid-template-columns: 1fr;
  gap: 0;
}

/* .posts_slider_module .latest-posts .post-item-wrapper p.post-date,
.posts_slider_module .latest-posts .post-item-wrapper p.post-categories{
    color: #000; 
}
.posts_slider_module.black-section .latest-posts .post-item-wrapper p.post-date,
.posts_slider_module.black-section .latest-posts .post-item-wrapper p.post-categories{
  color: #fff;
} */
.posts_slider_module .latest-posts.style-side .post-item-wrapper p.post-date,
.posts_slider_module
  .latest-posts.style-side
  .post-item-wrapper
  p.post-categories {
  font-weight: 300;
}
.posts_slider_module .latest-posts.style-stacked .post-item-wrapper p.post-date,
.posts_slider_module
  .latest-posts.style-stacked
  .post-item-wrapper
  p.post-categories {
  font-weight: 300;
}
.posts_slider_module .latest-posts .post-item{
  text-decoration: none;
}

.posts_slider_module .latest-posts .post-item .post-img {
  aspect-ratio: 80 / 57;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
  color: white;
  transition: transform 250ms linear;
}
.posts_slider_module .latest-posts .post-item .post-img.default-image {
    background-size: 90%;
    background-repeat: no-repeat;
        border: 1px solid black;
    border-radius: 40px;
}

.posts_slider_module .latest-posts .post-item .post-img h2 {
  font-size: 40px;
  font-weight: bold;
  z-index: 1;
  text-align: center;
}
.posts_slider_module .post-info-container {
  margin-top: 20px;
}
.posts_slider_module .latest-posts .post-item .post-img:not(.default-image)::after {
  content: "";
  position: absolute;
    bottom: -2%;
  left: 5%;
  width: 43%;
  height: 44%;
  background-image: url(/wp-content/uploads/2026/02/datapac_white_gradient_watermark.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  opacity: 1;
}

.posts_slider_module .latest-posts.post-carousel .post-image-wrapper:hover .post-img::after{
  transform: translateY(100%);
  opacity: 0;
}

.posts_slider_module .latest-posts.post-carousel .post-image-wrapper:hover .post-img{
  transform: scale(1.1) rotate(-3deg);
}

.posts_slider_module .latest-posts .post-item .post-img.with-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.79) 0%,
    rgba(0, 0, 0, 0.29) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.posts_slider_module.black-section .latest-posts .post-item .post-img::after {
  filter: brightness(0) saturate(100%);
}
/* .latest-posts.style-stacked .post-item .post-img{
  height: 245px;
} */
.posts_slider_module .latest-posts.post-carousel .post-item > a {
  text-decoration: none !important;
}
.posts_slider_module .latest-posts.post-carousel {
  visibility: hidden;
}
.posts_slider_module .latest-posts.post-carousel.slick-initialized {
  visibility: visible;
}
.posts_slider_module .latest-posts.post-list {
  display: grid;
  grid-template-columns: repeat(var(--num-cols), 1fr);
  gap: 40px;
}

.posts_slider_module .slider-arrows {
  display: flex;
  width: 60%;
  justify-content: space-between;
  position: absolute;
}
.posts_slider_module .slider-arrows .arr {
  border: solid var(--decor-color);
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  width: 13px;
  height: 13px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.posts_slider_module.black-section .slider-arrows .arr {
  border: solid #fff;
  border-width: 0 3px 3px 0;
}
.posts_slider_module .slider-arrows .arr:hover {
  width: 16px;
  height: 16px;
}
.posts_slider_module .slider-arrows .arr-prev {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.posts_slider_module .slider-arrows .arr-next {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.posts_slider_module #team-modal-shortlist .carousel-arrows {
  display: flex;
  width: 85px;
  justify-content: space-between;
  position: absolute;
  width: 97%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 0px);
}
.posts_slider_module #team-modal-shortlist .carousel-arrows .arrow-prev {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.posts_slider_module #team-modal-shortlist .carousel-arrows .arrow {
  border: solid var(--gold);
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  width: 13px;
  height: 13px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  visibility: visible;
}
.posts_slider_module #team-modal-shortlist .carousel-arrows .arrow-next {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.posts_slider_module #team-modal-shortlist .carousel-arrows .arrow.first,
.posts_slider_module #team-modal-shortlist .carousel-arrows .arrow.last {
  visibility: hidden;
}

.posts_slider_module .latest-posts .post-item p{
  color: var(--cat-color);
  font-size: 16px;
  margin-bottom: 0;
}

.posts_slider_module .shortlist-subtitle {
    color: var(--text-color);
}
.posts_slider_module .post-more {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
}
.posts_slider_module.black-section .post-more {
  color: #fff;
}
.posts_slider_module .shortlist-subtitle {
  width: 100%;

  font-size: 23px !important;
  margin-bottom: 30px !important;
  line-height: 1.4;
  font-weight: 400;
  text-transform: none;
}
.posts_slider_module .latest-posts .post-title {
  font-size: 24px !important;
  font-weight: 600;
  color: var(--text-color);
  margin-top: 20px;
}
.posts_slider_module .latest-posts .post-title.team-style {
  margin-bottom: 0;
}

.posts_slider_module.black-section .latest-posts.style-stacked .post-title {
  color: #fff;
}
.posts_slider_module .latest-posts .post-excerpt {
  color: var(--text-color) !important;
  font-size: 16px;
  margin-top: 20px;
  line-height: 1.5;
  font-weight: 400;
}
.posts_slider_module .latest-posts.style-stacked .post-excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}
.posts_slider_module .latest-posts.post-carousel .post-excerpt,
.posts_slider_module .latest-posts .post-excerpt.team-style {
  color: #002244;
}
.posts_slider_module .latest-posts.image-large .post-img {
  width: 100%;
  background-position: center;
  background-size: auto 110%;
  background-repeat: no-repeat;
  /* animation: zoomout 17s forwards;
    -ms-animation: zoomout 17s forwards;
    -webkit-animation: zoomout 17s forwards;
    -moz-animation: zoomout 17s forwards; */
  transition: all 0.5s ease-in-out;
  position: relative;
}
.posts_slider_module .latest-posts.image-small .post-img {
  width: 120px;
  height: 120px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  /* animation: zoomout 17s forwards;
  -ms-animation: zoomout 17s forwards;
  -webkit-animation: zoomout 17s forwards;
  -moz-animation: zoomout 17s forwards; */
  transition: all 0.5s ease-in-out;
  position: relative;
}
.posts_slider_module
  .latest-posts.image-small
  .read-more.team-member-shortlist {
  width: 120px;
}
.posts_slider_module .latest-posts.post-carousel .post-image-wrapper,
.posts_slider_module .post-image-wrapper.member-photo-container-shortlist {
  margin-bottom: 20px;
}
.posts_slider_module .latest-posts.image-large .post-img::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.posts_slider_module .post-shortlist {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
    max-width: 1800px;
}
.posts_slider_module h2.shortlist-title {
    color: var(--heading-color);
  margin: 0 0 30px 0;
  display: inline-block;
  position: relative;
}
.posts_slider_module h2.shortlist-title:after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    width: 900px;
    max-width: 90vw;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 55%, rgba(255, 255, 255, 0.3) 55%, rgba(255, 255, 255, 0) 100%);
}
.posts_slider_module.white-section h2.shortlist-title:after {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 55%, rgba(0, 0, 0, 0.3) 55%, rgba(0, 0, 0, 0) 100%);
}
.posts_slider_module.black-section h2.shortlist-title {
  color: #fff !important;
}
.posts_slider_module > a.btn {
  margin: 80px 12%;
  display: inline-block;
}
.posts_slider_module .latest-posts.post-carousel .post-item {
  padding-right: 40px;
  cursor: pointer;
}
.posts_slider_module .latest-posts.post-carousel.style-side .post-item {
  padding-right: 0px;
}
.posts_slider_module .post-item > a.read-more {
  /* font-family: 'lato'; */

  font-weight: 700;
  font-size: 13px;
  overflow: hidden;
}
.posts_slider_module .post-image-wrapper {
  overflow: hidden;
  border-radius: 25px 25px 30px 25px;
}
.posts_slider_module .post-item > a.read-more:hover .post-img {
  transform: scale(1.05);
}

@keyframes zoomout {
  0% {
    -ms-transform: scale3d(1.5, 1.5, 1.5) translate3d(-0px, 0px, 0px);
    -webkit-transform: scale3d(1.5, 1.5, 1.5) translate3d(0px, 0px, 0px);
    -o-transform: scale3d(1.5, 1.5, 1.5) translate3d(0px, 0px, 0px);
    -moz-transform: scale3d(1.5, 1.5, 1.5) translate3d(0px, 0px, 0px);
    transform: scale3d(1.5, 1.5, 1.5) translate3d(0px, 0px, 0px);
    animation-timing-function: linear;
  }

  100% {
    -ms-transform: scale3d(1.1, 1.1, 1.1) translate3d(0px, 0px, 0px);
    -webkit-transform: scale3d(1.1, 1.1, 1.1) translate3d(0px, 0px, 0px);
    -o-transform: scale3d(1.1, 1.1, 1.1) translate3d(0px, 0px, 0px);
    -moz-transform: scale3d(1.1, 1.1, 1.1) translate3d(0px, 0px, 0px);
    transform: scale3d(1.1, 1.1, 1.1) translate3d(0px, 0px, 0px);
  }
}

.posts_slider_module .team-modal-shortlist {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 47, 39, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 11;
  overflow-y: auto;
}
.posts_slider_module .member-photo-container-shortlist {
  position: relative;
}
.posts_slider_module .member-photo-container-shortlist::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  background-image: url("/wp-content/uploads/2026/02/datapac_white_gradient_watermark.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  transition: all 0.2s ease-in-out;
}

.posts_slider_module .team-member-shortlist:hover .member-photo-shortlist {
  opacity: 0.5;
}
.posts_slider_module
  .team-member-shortlist:hover
  .member-photo-container-shortlist::before {
  opacity: 1;
}

body.team-modal-shortlist-open {
  overflow: hidden;
}
.posts_slider_module .team-modal-shortlist #modal-member-photo {
  width: 100%;
  background-position: center;
  background-size: auto 115%;
  background-repeat: no-repeat;
}
.posts_slider_module .team-modal-shortlist #modal-member-photo {
  position: absolute !important;
  height: 350px;
  width: 350px;
  top: -178px;
  left: 17%;
}
.posts_slider_module .team-modal-shortlist #modal-member-photo {
  position: relative;
}
.posts_slider_module .team-modal-shortlist #modal-member-photo::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.posts_slider_module .team-modal-shortlist .modal-bio-info {
  width: 100%;
  margin-left: auto;
}

.posts_slider_module .team-modal-shortlist .modal-content {
  background: var(--pale-grey);
  padding: 70px;
  border-radius: 30px;
  text-align: center;
  position: relative;
  /* max-width: 55%; */
  width: 1180px;
  padding-top: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -30%);
}

.posts_slider_module .team-modal-shortlist .modal-content img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 15px;
}

.posts_slider_module .team-modal-shortlist .modal-content h3 {
  font-size: 1.5em;
  margin: 0;
}

.posts_slider_module .team-modal-shortlist .modal-content p {
  font-size: 1em;
  color: #555;
}

.posts_slider_module .team-modal-shortlist .close-modal {
  position: absolute;
  top: -80px;
  right: 5px;
  font-size: 1.5em;
  cursor: pointer;
}
.posts_slider_module .team-modal-shortlist .close-modal img {
  width: 40px;
  margin-bottom: 0;
}
.posts_slider_module .team-modal-shortlist #modal-excerpt {
  /* font-family: var(--lato); */
  font-weight: 600;
  line-height: 1.5;
  font-size: 17px;
  text-align: left;
  /* column-count: 2;
    column-gap: 80px;       
    height: 10em;           
    overflow: hidden; */

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.posts_slider_module .team-modal-shortlist #modal-excerpt p {
  margin: 0;
  line-height: 1.5; /* Adjust line-height for readability */
}
.posts_slider_module .team-modal-shortlist h3#modal-name {
  color: var(--green);
  font-size: 35px;
  text-align: left;
}
.posts_slider_module .team-modal-shortlist p#modal-position {
  color: var(--gold);
  font-size: 25px;
  /* font-family: 'Lato'; */
  font-weight: 500;
  margin: 0 0 30px;
  line-height: 1;
  text-align: left;
}
.posts_slider_module .team-modal-shortlist .modal-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 55px;
}
.posts_slider_module .team-modal-shortlist .modal-photo-container {
  width: 50%;
}
.posts_slider_module .team-modal-shortlist .modal-links img {
  /* width: 50px; */
  height: 35px;
  margin-bottom: 0;
}
.posts_slider_module .team-modal-shortlist .modal-links {
  display: flex;
  align-items: center;
}
.posts_slider_module .team-modal-shortlist .modal-links a {
  text-decoration: none !important;
}
.posts_slider_module .team-modal-shortlist .modal-links a:first-child {
  margin-right: 30px;
  transform: translate(0px, 3px);
}
.posts_slider_module .team-modal-shortlist .modal-bottom {
  width: 100%;
  height: 100%;
}

/* TESTIMONIAL MODAL POPUP */
.posts_slider_module .test-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 47, 39, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 11;
  overflow-y: auto;
}
.posts_slider_module .test-modal .modal-bio-info {
  width: 100%;
  margin-left: auto;
}

.posts_slider_module .test-modal .modal-content {
  background: var(--pale-grey);
  padding: 70px;
  border-radius: 30px;
  text-align: center;
  position: relative;
  width: 1180px;
  padding-top: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.posts_slider_module .test-modal .modal-content img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 15px;
}

.posts_slider_module .test-modal .modal-content h2 {
  font-size: 1.5em;
  margin: 0;
}

.posts_slider_module .test-modal .modal-content p {
  font-size: 1em;
  color: #555;
  text-align: left;
}

.posts_slider_module .test-modal .close-modal {
  position: absolute;
  top: -80px;
  right: 5px;
  font-size: 1.5em;
  cursor: pointer;
}
.posts_slider_module .test-modal .close-modal img {
  width: 40px;
  margin-bottom: 0;
}
.posts_slider_module .test-modal #modal-excerpt {
  /* font-family: var(--lato); */
  font-weight: 600;
  line-height: 1.5;
  font-size: 17px;
  text-align: left;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.posts_slider_module .test-modal #modal-excerpt p {
  margin: 0;
  line-height: 1.5;
}
.posts_slider_module .test-modal h2#modal-name {
  color: var(--green);
  font-size: 35px;
  text-align: left;
  margin-bottom: 20px;
}
.posts_slider_module .test-modal p#modal-position {
  color: var(--grey);
  font-size: 19px;
  /* font-family: 'Lato'; */
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
  text-align: left;
}
.posts_slider_module .test-modal .modal-top {
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 0;
}
.posts_slider_module .test-modal .modal-photo-container {
  width: 50%;
}
.posts_slider_module .test-modal .modal-links img {
  /* width: 50px; */
  height: 35px;
  margin-bottom: 0;
}
.posts_slider_module .test-modal .modal-links {
  display: flex;
  align-items: center;
}
.posts_slider_module .test-modal .modal-links a {
  text-decoration: none !important;
}
.posts_slider_module .test-modal .modal-links a:first-child {
  margin-right: 30px;
  transform: translate(0px, 3px);
}
body.test-modal-open {
  overflow: hidden;
}
.posts_slider_module .test-modal .modal-bottom {
  width: 100%;
  height: 100%;
}
.posts_slider_module .modal-bio-info h3#modal-name {
  margin: 0;
  color: var(--green);
  font-size: 35px;
  text-align: right;

  font-weight: 400 !important;
}
.posts_slider_module .modal-bio-info h4#modal-position {
  color: var(--gold);
  font-size: 25px;
  /* font-family: 'Lato'; */
  font-weight: 500 !important;
  margin: 0 0 30px;
  line-height: 1;
  text-align: right;
}
.posts_slider_module #test-modal-shortlist .carousel-arrows {
  display: flex;
  width: 85px;
  justify-content: space-between;
  position: absolute;
  width: 97%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 0px);
}
.posts_slider_module #test-modal-shortlist .carousel-arrows .arrow-prev {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.posts_slider_module #test-modal-shortlist .carousel-arrows .arrow {
  border: solid var(--gold);
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  width: 13px;
  height: 13px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  visibility: visible;
}
.posts_slider_module #test-modal-shortlist .carousel-arrows .arrow-next {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.posts_slider_module #test-modal-shortlist .carousel-arrows .arrow.first,
.posts_slider_module #test-modal-shortlist .carousel-arrows .arrow.last {
  /* display: none; */
  visibility: hidden;
}
.posts_slider_module #test-modal-shortlist .test-modal-logo img {
  width: 159px;
  margin: 0;
  position: absolute;
  left: 73px;
  top: -50px;
}
/* END OF TESTIMONIAL MODAL POPUP */

.posts_slider_module
  .latest-posts.style-side
  .post-item-wrapper
  p.post-categories {
  line-height: 1.4;
}
.posts_slider_module
  .latest-posts.style-stacked
  .post-item-wrapper
  > a.post-link {
  text-decoration: none;
}

/* TEST: MEDIA QUERIES ALSO PREFIXED */
@media only screen and (max-width: 1600px) {
  .posts_slider_module .team-modal-shortlist .modal-content {
    width: 1000px;
  }
}
@media only screen and (max-width: 1366px) {
  .posts_slider_module .team-modal-shortlist .modal-content {
    width: 850px;
  }
  .posts_slider_module .team-modal-shortlist #modal-member-photo {
    left: 10%;
  }

  .posts_slider_module .latest-posts.style-side .post-excerpt,
  .posts_slider_module
    .latest-posts.style-side
    .post-item-wrapper
    p.post-categories {
    font-size: 19px;
  }
}
@media all and (max-width: 1199px) {
  .posts_slider_module .team-modal-shortlist #modal-excerpt {
    font-size: 14px;
  }
  .posts_slider_module .latest-posts.post-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 1024px) {


  .posts_slider_module .team-modal-shortlist #modal-excerpt {
    display: block;
  }
  .posts_slider_module .team-modal-shortlist .modal-content {
    width: 640px;
  }
  .posts_slider_module .team-modal-shortlist #modal-member-photo {
    height: 250px;
    width: 250px;
    top: -86px;
  }
  .posts_slider_module .team-modal-shortlist h3#modal-name {
    font-size: 27px;
  }
  .posts_slider_module .team-modal-shortlist p#modal-position {
    font-size: 20px;
  }
  .posts_slider_module .team-modal-shortlist .modal-top {
    margin-bottom: 40px;
  }
}
@media all and (max-width: 900px) {
  .posts_slider_module .latest-posts.style-side .post-excerpt,
  .posts_slider_module
    .latest-posts.style-side
    .post-item-wrapper
    p.post-categories {
    font-size: 17px;
  }

  .posts_slider_module .latest-posts.post-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .posts_slider_module .shortlist-subtitle {
    width: 100%;
  }
  .posts_slider_module.overlap {
    margin-top: -20px !important;
  }
}
@media only screen and (max-width: 850px) {
  .posts_slider_module .team-modal-shortlist .modal-content {
    padding: 45px;
  }
  .posts_slider_module .team-modal-shortlist .modal-content {
    width: 560px;
  }
  .posts_slider_module .team-modal-shortlist .modal-top {
    gap: 0px;
  }
  .posts_slider_module .team-modal-shortlist #modal-member-photo {
    height: 200px;
    width: 200px;
    top: -60px;
  }
}
@media all and (max-width: 800px) {
  .posts_slider_module .latest-posts.style-side .post-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .posts_slider_module .latest-posts.style-side .post-item-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .posts_slider_module
    .latest-posts.style-side
    .post-item-wrapper
    > .post-link {
    text-align: center;
    padding: 0 20px;
  }

  .posts_slider_module .navigate {
    flex-direction: column-reverse;
  }
  .posts_slider_module .carousel-arrows {
    margin-bottom: 40px;
  }
  /* .slider-arrows {
      margin-bottom: 20px;
    } */
}
@media only screen and (max-width: 767px) {
  .posts_slider_module h2.shortlist-title {
    font-size: 45px;
  }
  /* .posts_slider_module .latest-posts.style-side .post-title,
  .posts_slider_module
    .latest-posts.style-side
    .post-item-wrapper
    p.post-categories {
    text-align: center;
  } */
  .posts_slider_module .team-modal-shortlist .modal-top {
    display: block;
    padding-top: 128px;
  }
  .posts_slider_module .team-modal-shortlist .modal-links {
    justify-content: center;
  }
  .posts_slider_module .team-modal-shortlist p#modal-position {
    text-align: center;
  }
  .posts_slider_module .team-modal-shortlist #modal-member-photo {
    left: 50%;
    transform: translate(-50%, 0px);
  }
  .posts_slider_module .team-modal-shortlist .modal-content {
    width: 450px;
    /* top: 110px; */
  }
  /* .posts_slider_module .team-modal-shortlist #modal-excerpt,
  .posts_slider_module .team-modal-shortlist h3#modal-name {
    text-align: center;
  }
  .posts_slider_module .latest-posts .post-excerpt {
    text-align: center;
  } */
}
@media only screen and (max-width: 640px) {
  /* .posts_slider_module
    .latest-posts.style-stacked
    .post-item-wrapper
    .post-link,
  .posts_slider_module
    .latest-posts.style-stacked
    .post-item-wrapper
    .post-more {
    text-align: center;
  } */
  .posts_slider_module .latest-posts.post-carousel.style-stacked .post-item {
    padding-right: 0;
  }
  .posts_slider_module .team-modal-shortlist .modal-content {
    width: 380px;
  }
  .posts_slider_module .team-modal-shortlist .modal-bottom {
    height: Calc(100% + 100px);
  }
}
@media all and (max-width: 540px) {
  .posts_slider_module .latest-posts.post-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .posts_slider_module .team-modal-shortlist .modal-content {
    width: 300px;
  }
  .posts_slider_module .latest-posts.style-side .post-item .post-img {
    height: 300px;
  }
  .posts_slider_module .post-shortlist {
    width: 80%;
    padding: 0;
  }
}
@media only screen and (max-width: 425px) {
  .posts_slider_module .navigate > a {
    padding: 7px 15px;
  }
  .posts_slider_module .team-modal-shortlist .modal-content {
    width: 225px;
  }
  .posts_slider_module .team-modal-shortlist .close-modal img {
    width: 27px;
  }
  .posts_slider_module .team-modal-shortlist .close-modal {
    top: -40px;
  }
}
@media only screen and (max-width: 375px) {
  .posts_slider_module .team-modal-shortlist .modal-content {
    width: 170px;
  }
  .posts_slider_module .team-modal-shortlist #modal-member-photo {
    height: 150px;
    width: 145px;
    top: -50px;
  }
  .posts_slider_module .team-modal-shortlist .modal-top {
    padding-top: 85px;
  }
}
