.gtps-slider .slick-track {
    display: flex;
  
}

.gtps-slider {
    width: 100%;
	padding: 0;
	max-height: 350px;
	overflow: hidden;
}

.gtps-slide {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.gtps-bg img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.gtps-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

 .gtps-content {
    position: absolute;
    top: 35%;
    left: 20px;
    transform: translateY(-50%);
    color: #fff;
    max-width: 550px;
}

.gtps-title h2 {
    font-size: 22px;
    margin: 0;
    color: #fff;
}

.gtps-date {
    font-size: 14px;
    opacity: 0.8;
	position: relative;
	padding-bottom: 3px;
}
.gtps-date::after {
    background: #e96656;
    bottom: -4px;
    content: "";
    height: 2px;
    left: 0;
    margin: auto;
    position: absolute;
    width: 50px;
    z-index: 1;
}


.gtps-excerpt {
    font-size: 16px;
    margin: 15px 0;
}

.gtps-button {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
	font-size: 12px;
}

.gtps-button:hover {
    background: rgba(0,0,0,.5);
    
}

 
.slick-prev:before,
.slick-next:before {
    display: none;
}

.gtps-arrow {
    width: 30px;
    height: 50px;
    background: rgba(0,0,0,.7) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border: none;
    cursor: pointer;
}

.gtps-arrow svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

/* Rotar la flecha izquierda */
.gtps-prev svg {
    transform: rotate(180deg);
}

.gtps-prev {
    left: auto;
	right: 31px;
}

.gtps-next {
    right: 0px;
}

/* Centrado vertical */
.gtps-slider .gtps-arrow {
    position: absolute;
    top: 85%;
    transform: translateY(-50%);
}

.gtps-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
	
	.gtps-overlay {
    	width: 100%;
	}
	.gtps-content {
    	max-width: 90%;
		top: 30px;
		transform: none;
	}
	.gtps-button {
		display: none;
	}
	
	.gtps-prev {
		left: 0;
		right: auto;
	}

}