/* Lluis Guerra custom sidebar newsBox styling (theme: prueba) */


.derecha > .contentWidget,
.derecha .content > .contentWidget,
.derecha .newsBoxWrapper > .contentWidget {
	margin-right: 15px;
	margin-bottom: 15px;
}

/* Wrapper and outer box to mirror index.php */
#newsBox.corner {
	border-radius: 12px;
	overflow: hidden;
	background: #4E4E4E;
	padding: 3px;
	border: none;
	margin-right: 15px;
	margin-bottom: 15px;
}

/* Image band */
#newsBox .newsBoxImg {
	overflow: hidden;
	background: #5A5A5A;
	position: relative;
	height: 150px;                 /* fixed crop like index */
	border-radius: 12px 12px 0 0;
}
#newsBox .newsBoxImg img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center top;
	border-radius: 12px 12px 0 0;
}

/* Content band */
#newsBox .newsBoxContent {
	padding: 10px 12px;
	background: #434343;
	width: 100%;                    /* match index width */
	height: 100px;                  /* match index fixed height */
	overflow: hidden;
	color: #ddd;
}

/* Title style */
#newsBox .newsTitles {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;                /* like index */
	font-weight: bold;
	color: #CC4040;
}

/* Links */
#newsBox .newsBoxContent a { color:#900; text-decoration:none; }
#newsBox .newsBoxContent a:visited { color:#900; }
#newsBox .newsBoxContent a:hover { color:#c00; }

/* Rounded helpers (keep legacy classes working) */
#newsBox.corner .newsBoxImg { border-top-left-radius: 12px; border-top-right-radius: 12px; }
#newsBox.corner .newsBoxContent { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; }
.corner { border-radius: 12px; overflow: hidden; }
.trtlCorner { border-top-left-radius: 12px; border-top-right-radius: 12px; }
.blbrCorner { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; }
