
 /*NO poner margin:; a este aquí, ya que el código se usa en múltiples páginas y puede cambiar*/
/*.wrapBdNB,.contentPadrePosts{
	display: grid;
	align-items: self-start;
	grid-template-columns: repeat(4, 1fr); 
	gap: 10px;
}*/
:root {
  --anchoPost: 250px;
}

/*===================================================================================================================
								MAQUETACIÓN INDIVIDUAL DE CADA POST
=====================================================================================================================*/
.unPost{
	width: var(--anchoPost);
}
/*------------- PARTE DE LA IMAGEN DEL POST -------------*/
.wpImgPost{
	width: var(--anchoPost);
	height: var(--anchoPost);
	cursor: pointer;
	position: relative;
	border-radius: 2px;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.1);
}
.DK .wpImgPost:hover:before
,.MB .wpImgPost:active:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.1);
}
.wpImgPost img{
	width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
/*----------- CONTADOR DE IMAGENES DEL POST -----------*/
.numImgsPost {
    position: absolute;
    right: 6px;
    bottom: 10px;
    font-family: fontBold;
    font-size: 14px;
    color: #fff;
    border-radius: 4px;
    padding: 5px 10px;
    background: #592A2A;
}
.titlePost {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/*--------- REPRODUCTOR (TRIANGULO) PARA CUANDO ES VIDEO EL PRIMER -----------*/
.playVideo{
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}
.playVideo svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}
/*====================== PARTE DE LOS BOTONES ======================*/
.btnCheckLs{
	margin-top: 8px;

}
.btnEditarLs{
	margin-top: 15px;;
}
.btnEliminarLs{
	margin-right: 0;
}

@media (max-width: 700px){
	.wrapBdNB{
		gap: 0;
	}
	.playVideo{
		width: 37px;
		height: 37px;
	}
	/*----- ELEMENTO DE PLAY QUE SE PONE CUANDO EL ARCHIVO ES UN VIDEO  -----*/
	.playVideo svg{
		width: 15px;
		height: 15px;
	}
	/*--- ELELMENTO QUE SE PONE CUANDO EL ARCHIVO TIENE MÚLTIPLES ELEMENTOS ---*/
	.numImgsPost{ 
	    font-size: 10px;
	}
	.wpImgPost{
		margin-bottom: 5px;
		margin-right: 3px;
	}

}
@media (max-width: 500px){
	.playVideo{
		width: 30px;
		height: 30px;
	}
	.playVideo svg{
		height: 12px;
		width: 12px;
	}
	.numImgsPost{
		bottom: 3px;
	}
}

@media (max-width: 500.99px) and (min-width: 0){	
	.btnEditarLs,.btnEliminarLs{
		display: block;
		width: 100%;
		box-sizing: border-box;
		text-align: center;
		margin-bottom: 5px;
	}
}

