
.post-slide {
    background: #fff;
    margin: 20px 15px 20px;
    border-radius: 15px;
    box-shadow: 2px 2px 7px #888e92a8;
}
.post-slide .post-img{
    position: relative;
    overflow: hidden;
}
.post-slide .post-img img{
    width: 100%;
    height: auto;
    transform: scale(1,1);
    transition:transform 0.2s linear;
	border-top-right-radius: 13px;
    border-top-left-radius: 13px;
}
.post-slide:hover .post-img img{
    transform: scale(1.1,1.1);
}
.post-slide .over-layer{
    width:100%;
    height:100%;
    position: absolute;
    top:0;
    left:0;
    opacity:0;
    background: linear-gradient(-45deg, rgba(6,190,244,0.75) 0%, rgba(45,112,253,0.6) 100%);
    transition:all 0.50s linear;
}
.post-slide:hover .over-layer{
    opacity:1;
    text-decoration:none;
}
.post-slide .over-layer i{
    position: relative;
    top:45%;
    text-align:center;
    display: block;
    color:#fff;
    font-size:25px;
}
.post-slide .post-content{
    background:#fff;
    padding: 20px 20px;
    border-radius: 15px;
}
.post-slide .post-title a{
    font-size:22px;
    line-height:33px;
    text-align:center;
    font-weight:bold;
    color:#910303;
    display: inline-block;
    transition: all 0.3s ease 0s;
    font-family: "Dancing Script", cursive;
}
.post-slide .post-title a:hover{
    text-decoration: none;
    color:#3498db;
}
.post-slide .post-description{
    line-height:26px;
    color:#000;
    margin-bottom:25px;
	font-weight:300;
}
.post-slide .post-description span{
	font-weight:600;
	margin-right:10px;
}
.post-slide .post-description {
    border-bottom: 2px solid #000;
    padding-bottom: 14px !important;
}
.post-slide .post-date{
    color:#000;
    font-size: 14px;
}
.post-slide .post-date i {
    font-size: 17px;
    margin-right: 8px;
    color: #777777;
    float: right;
    margin-top: 5px;
}
.post-slide .read-more{
    padding: 7px 20px;
    float: right;
    font-size: 12px;
    background: #2196F3;
    color: #ffffff;
    box-shadow: 0px 10px 20px -10px #1376c5;
    border-radius: 25px;
    text-transform: uppercase;
}
.post-slide .read-more:hover{
    background: #3498db;
    text-decoration:none;
    color:#fff;
}
.owl-controls .owl-buttons{
    text-align:center;
    margin-top:20px;
}

.owl-controls .owl-buttons .owl-prev {
    background: #683722 !important;
    position: absolute;
    top: -18px;
    right: 80px;
    padding: 0 10px !important;
    border-radius: 0px !important;
    box-shadow: 3px 14px 25px -10px #92b4d0;
    transition: background 0.5s ease 0s;
    opacity: 1 !important;
}
.owl-controls .owl-buttons .owl-next {
    background: #683722 !important;
    position: absolute;
    top: -18px;
    right: 40px;
    padding: 0 10px !important;
    border-radius: 0px !important;
    box-shadow: -3px 14px 25px -10px #92b4d0;
    transition: background 0.5s ease 0s;
    opacity: 1 !important;
}
.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after{
    content:"\f104";
    font-family: FontAwesome;
    color: #fff;
    font-size:20px;
}
.owl-controls .owl-buttons .owl-next:after{
    content:"\f105";
}

.post-actions {
    top: 26px;
    position: absolute;
    right: 30px;
}

.post-actions-content {
  position: absolute;
  bottom: 130%;
  right: 0;
  padding: 8px;
  border-radius: 8px;
  background: rgba(172, 172, 172, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 2px 2px 10px 2px hsl(0, 0%, 0%, 0.25);
  transition: opacity 0.25s, scale 0.25s;
  transform-origin: bottom right;
}

.post-actions-content[data-visible="false"] {
  pointer-events: none;
  opacity: 0;
  scale: 0;
}

.post-actions-content[data-visible="true"] {
  pointer-events: unset;
  scale: 1;
  opacity: 1;
}

.post-actions-content li {
  padding: 0.5rem 0.65rem;
  border-radius: 0.25rem;
  list-style: none;
}

.post-actions-content li:is(:hover, :focus-within) {
  background-color: rgba(248, 132, 169, 0.7);
}

.post-actions-link {
  width: max-content;
  display: grid;
  grid-template-columns: 1rem 1fr;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.post-like {
  text-decoration: none;
  color: #fff;
  margin-right: 5px;
  font-size: 1.1rem;
  opacity: 1;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.35s ease;
}

.post-actions-controller {
    border: 0;
    background: none;
    color: #fff;
    cursor: pointer;
    opacity: 1;
    padding: 0;
}

.post-like:hover,
.post-actions-controller:hover {
  opacity: 1;
  color: rgb(255, 0, 0);
}

.post-like:focus {
  outline: none;
}

.post-like.active {
  color: rgb(255, 0, 0);
  opacity: 1;
  transform: scale(1.2);
}


@media only screen and (max-width:1280px) {
    .post-slide .post-content{
        padding: 0px 15px 25px 15px;
    }
}