.swiper-slide {
  cursor: grab;
}

.swiper-slide:active {
  cursor: grabbing;
}

.gt-slider-wrapper .swiper-wrapper {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 0;
    align-items: stretch;
}

.gt-oxy-posts {
    position: relative;
}

.gt-swiper {
    position: relative;
    width: 100%;
    height:100%;
}

.oxy-gt-oxy-post-slider {
    height: 500px;
    width: 100%;
}

.gt-oxy-posts.gt-swiper.mySwiperr {
    height: 100%;
    width: 100%;
}

.gt-swiper > .gt-swiper-wrapper {
  /*all: unset;*/
  display: flex;
  flex-wrap: nowrap;
/*   overflow:hidden; */
  gap: 0;
  align-items: stretch;
}

.oxy-posts.swiper {
  
  width: 100%;
  overflow: hidden;
  position: relative;
}

.swiper-wrapper {
  display: flex;
  transition-property: transform;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 20px;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}

.swiper-button-next,
.swiper-button-prev {
/*     background-color: #808080a6;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: #fff;
    padding: 25px; */
	background-color: #222;
    color: #fff;
    display: inline-flex;
    font-size: 14px;
    padding: .75em;
    cursor: pointer;
    transition-duration: 400ms;
    transition-property: color, background-color;
}

.swiper-pagination-bullet {
    background: #000;
}

.oxy-post {
  /*width: 100%;*/
  height:100%
/*   height:100% !important; */
	  
}

.oxy-post-padding {
  position: relative;
/*   margin: 1em; */
  height:100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.oxy-post-image {
  position: relative;
  background-color: grey;
  background-image: repeating-linear-gradient(
    45deg,
    #eee,
    #eee 10px,
    #ddd 10px,
    #ddd 20px
  );
  width: 100%;
}

.oxy-post-image-fixed-ratio {
  padding-bottom: 100%;
  background-size: cover;
  background-position: center center;
  transition: transform 0.3s ease-in-out;
}

.oxy-post-image-date-overlay {
  position: absolute;
  top: 1em;
  right: 1em;
  font-size: 0.7em;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.7em 1em;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
}

.oxy-post-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2em;
  pointer-events: none;
  padding-top: 200px;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 300px);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.oxy-post-content-and-link-wrap {
  opacity: 0;
  max-height: 0px;
  overflow: hidden;
  transition: 1s ease-in-out opacity, 1s ease-in-out max-height;
}

.oxy-post-padding:hover .oxy-post-content-and-link-wrap {
  opacity: 1;
  max-height: 400px;
}

.oxy-post-padding:hover .oxy-post-image-fixed-ratio {
  transform: scale(1.1);
}

/* Read More Link Styling - Text Version with Main Color */
.oxy-read-more {
  pointer-events: auto;
  cursor: pointer;
  display: inline;
  margin-top: 10px;
  color: #476bb1;
  font-weight: bold;
  text-decoration: underline;
  background: none;
  padding: 0;
  border-radius: 0;
  transition: color 0.3s ease-in-out, text-decoration 0.2s ease-in-out;
}

.oxy-read-more:hover {
  color: #36508c; /* Slightly darker shade of #476bb1 */
  text-decoration: none;
}

.oxy-post-title {
  font-size: 1.5em;
  line-height: var(--oxy-small-line-height);
  margin-bottom: 0.5em;
  direction: ltr;
  text-align: left;
  color: white;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;

  /* Important fix: constrain width */
  max-width: 100%;
}

.oxy-post-content {
  margin-top: 1em;
  margin-bottom: 1em;
  direction:ltr;
  text-align:left;
  color:white;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.oxy-post-content p {
  margin: 0;
}

@media (max-width: 991px) {
  .oxy-post-content-and-link-wrap {
    opacity: 1 !important;
    max-height: none !important;
  }

  .oxy-post-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }
  
  .oxy-post-padding:hover .oxy-post-content-and-link-wrap {
    opacity: 1 !important;
    max-height: none !important;
  }

/*   .oxy-post-content {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  } */
}