/* SJD Obras — Frontend styles */

.sjd-obras-wrap {
	width: 100%;
}

/* Buscador y filtros */
.sjd-obras-wrap .mt-searchbox {
	display: flex;
	align-items: stretch;
	padding-bottom: 40px;
	gap: 6px;
}

.sjd-obras-wrap .mt-searchbox > * {
	min-width: calc(33% - 4px);
	padding: 10px !important;
	text-transform: uppercase;
	margin: 0;
	box-sizing: border-box;
}

.sjd-obras-wrap .et_pb_widget select {
	height: auto;
}

/* Grid de cards */
.sjd-obras-wrap .mt-canvas {
	margin: 5px;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 20px;
}

/* Card */
.sjd-obras-wrap .mt-card {
	background: #f7f4ea;
	color: #333;
	border-radius: 10px;
	cursor: pointer;
	width: calc(33.333% - 14px);
	position: relative;
	box-shadow: 0px 12px 18px -6px rgba(0, 0, 0, 0.3);
	transition: background 300ms ease 0ms;
}

.sjd-obras-wrap .mt-card:hover {
	background: white;
}

.sjd-obras-wrap .mt-card .content {
	padding: 20px;
}

.sjd-obras-wrap .mt-show {
	display: block;
}

/* Imagen destacada */
.sjd-obras-wrap .mt-card .imagen {
	position: relative;
	float: left;
	width: 100%;
	height: 200px;
	background: no-repeat center center;
	background-size: cover;
	border-radius: 10px;
}

/* Gradiente sobre imagen con el título */
.sjd-obras-wrap .mt-card .mt-titulo {
	position: absolute;
	width: 100%;
	border-radius: 10px;
	height: 200px;
	top: 0;
	background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(158,125,16,0.3) 35%, rgba(255,255,255,0) 100%);
}

.sjd-obras-wrap .mt-card h2.mt-nombre {
	font-size: 20px;
	color: white;
	margin-bottom: 10px;
	position: absolute;
	bottom: 0px;
	padding: 10px;
}

/* Logo circular */
.sjd-obras-wrap .mt-card .logo {
	position: absolute;
	top: -20px;
	left: -20px;
	width: 80px;
	height: 80px;
	padding: 10px;
	background: white;
	border-radius: 50%;
	box-shadow: 0px 12px 18px -6px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sjd-obras-wrap .mt-card .logo img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* Sección de tags (ciudad + sectores) */
.sjd-obras-wrap .mt-card .principal {
	position: relative;
	float: left;
	width: 100%;
}

.sjd-obras-wrap .mt-card h4 {
	color: #333;
	margin: 10px 0 5px;
}

.sjd-obras-wrap .mt-card h4 span:not(:empty) {
	display: inline-block;
	padding: 4px 6px;
	background: #ebb600;
	color: white;
	font-size: 13px;
	margin: 2px 2px 2px 0;
	border-radius: 10px;
}

.sjd-obras-wrap .mt-card h4 a {
	text-decoration: none;
}

.sjd-obras-wrap .mt-card h4 span.mt-ciudad {
	border: 2px solid #2a3600;
	padding: 2px 4px;
	background: transparent;
	color: #2a3600;
}

/* Sección de descripción y contacto */
.sjd-obras-wrap .mt-card .enlaces {
	position: relative;
	float: left;
	width: 100%;
	padding-bottom: 20px;
}

.sjd-obras-wrap .mt-card .mt-descripcion {
	color: #444;
	font-size: 14px;
	margin-bottom: 8px;
}

.sjd-obras-wrap .mt-card .direccion {
	color: #555;
	font-size: 13px;
}

.sjd-obras-wrap .mt-card .telefono a {
	color: black;
	font-size: 14px;
}

/* Iconos de redes sociales */
.sjd-obras-wrap .mt-card .social {
	position: absolute;
	bottom: 0;
	width: calc(100% - 40px);
}

.sjd-obras-wrap .mt-card .et-social-icons {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.sjd-obras-wrap .mt-card .et-social-icons li {
	margin-left: 8px;
	margin-bottom: 6px;
}

.sjd-obras-wrap .et_pb_bg_layout_light .et_pb_widget li a {
	color: black;
}

/* WhatsApp SVG */
.sjd-obras-wrap .wh-messenger-svg-whatsapp {
	fill: #ffb031;
	width: 31px;
	display: inline;
	margin-left: -2px;
	margin-bottom: -4px;
}

/* Responsive — tablet: 2 columnas */
@media only screen and (max-width: 900px) {
	.sjd-obras-wrap .mt-canvas {
		gap: 16px;
	}

	.sjd-obras-wrap .mt-card {
		width: calc(50% - 8px);
	}
}

/* Responsive — móvil: 1 columna */
@media only screen and (max-width: 600px) {
	.sjd-obras-wrap .mt-searchbox {
		flex-wrap: wrap;
	}

	.sjd-obras-wrap .mt-searchbox > * {
		min-width: calc(100% - 6px);
		margin: 3px 0;
	}

	.sjd-obras-wrap .mt-card {
		width: 100%;
	}
}
