.mos-img img {display: none !important;}
/*blog-entry*/
.blog-entry { position: relative;
	-webkit-transition: box-shadow 0.3s, transform 0.3s;
	-moz-transition: box-shadow 0.3s, transform 0.3s;
	-ms-transition: box-shadow 0.3s, transform 0.3s;
	-o-transition: box-shadow 0.3s, transform 0.3s;
	transition: box-shadow 0.3s, transform 0.3s; }

.blog-entry:hover,
.blog-entry:focus,
.blog-entry:active {
	transform: translateY(-4px);
}
.blog-entry.border .entry-content { border: 1px solid #e5e5e5; }
.blog-entry:hover .entry-content, .blog-entry:focus .entry-content, .blog-entry:active .entry-content { border: 1px solid #e5e5e5;
	-webkit-box-shadow: 1px 4px 20px -2px rgba(0,0,0,0.2);
	box-shadow: 1px 4px 20px -2px rgba(0,0,0,0.2); }
.entry-content { margin: 10px; margin-top: -25px; background: #fff; position: relative; padding: 20px; }
.entry-content h3 { font-size: 32px; }
.blog-entry-image .entry-date { font-size: 11px; font-weight: 600; background: #e93e21; display: inline-block; text-align: center; position: absolute; padding: 15px; color: #fff; right: 10px; top: 10px;
	box-shadow:0 0 3px rgba(0,0,0,0.5);
	-moz-box-shadow:0 0 3px rgba(0,0,0,0.5);
	-webkit-box-shadow:0 0 3px rgba(0,0,0,0.5); }
.blog-entry-image .entry-date span { font-size: 13px; font-weight: normal; display: block; }
.blog-entry img{
	-webkit-transition: -webkit-transform 1s ease;
	-moz-transition: -moz-transform 1s ease;
	transition: transform 1s ease; }
.blog-entry:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
	-webkit-transform-origin: center center;
	-moz-transform-origin: center center;
	-o-transform-origin: center center;
	transform-origin: center center;
}	
.entry-description p { margin-bottom: 10px; }
.entry-description a:hover { color: #1e2327; }
.entry-description a i { transition: all 0.3s ease-out 0s; }
.entry-description a:hover i { margin-left: 5px; }
.entry-meta { margin-bottom: 5px; margin-top: 5px; }
.entry-meta a, .entry-meta p { color: #9d9d9d; margin-right: 10px; font-size: 13px; display: inline-block; }
.entry-meta a:hover { color: #e93e21; }
.entry-meta a i { color: #e93e21; padding-right: 3px; }
.entry-title a:hover, .entry-description a { color: #e93e21; }

/* Flechas de navegación del carrusel OWL Carousel */

/* Asegura que Owl no te cambie el flujo */
.owl-carousel .owl-nav { margin: 0; }

/* Flechas a los lados */
.owl-carousel .owl-prev,
.owl-carousel .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

/* Lado izquierdo y derecho */
.owl-carousel .owl-prev { left: 8px; }
.owl-carousel .owl-next { right: 8px; }

/* Estilo base de los botones (ajusta a tu tema) */
.owl-carousel .owl-nav button {
  width: 40px; height: 40px;
  border: 0; border-radius: 9999px;
  background: rgba(0,0,0,.4);
  color: #fff;
  display: grid; place-items: center;
}

/* Si tu CSS del tema oculta la nav cuando Owl la marca como disabled */
.owl-carousel .owl-nav.disabled { display: none; } /* o forzar display si quieres verla igualmente */

.owl-carousel .owl-nav button {
	background-repeat: no-repeat;
	background-position: center;
	transition: background-color .25s ease, box-shadow .2s ease, transform .15s ease;
}


.owl-carousel.nav-light .owl-nav button.owl-prev {

	background-image: url(../images/arrow-left-dark.png);
	background-size: cover;
	background-color: rgba(255,255,255, .3);
}

.owl-carousel.nav-light .owl-nav button.owl-next {
	background-image: url(../images/arrow-right-dark.png);
	background-color: rgba(255,255,255, .3);
	background-size: cover;
}

.owl-carousel .owl-nav button.owl-prev {
	background-image: url(../images/arrow-left-light.png);
	background-size: cover;
	background-color: rgba(10,10,10, .3);
}

.owl-carousel .owl-nav button.owl-next {
	background-image: url(../images/arrow-right-light.png);
	background-color: rgba(10,10,10, .3);
	background-size: cover;
}

.owl-theme .owl-nav button.owl-prev:hover {
	background-image: url(../images/arrow-left-light.png);
	background-color: rgba(10,10,10, .6) !important;
	background-size: cover;
}

.owl-theme .owl-nav button.owl-next:hover {
	background-image: url(../images/arrow-right-light.png);
	background-color: rgba(10,10,10, .6) !important;
	background-size: cover;
}

/* (Opcional) accesibilidad: respetar usuarios que reducen animaciones */
@media (prefers-reduced-motion: reduce){
  .owl-carousel .owl-nav button{ transition:none; }
}

.owl-carousel.nav-rounded .owl-nav button {
	border-radius: 50%;
}