/* Branta Claud - Proyectos (CPT proyecto, filtro por país) */
.bc-proyectos-widget {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 3rem 1.5rem;
	box-sizing: border-box;
}

.bc-proyectos-main-title {
	margin: 0 0 2rem;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 800;
	color: #0f172a;
}

/* Pestañas */
.bc-proyectos-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 2.5rem;
	border-bottom: 1px solid #e2e8f0;
	padding-bottom: 0;
}

.bc-proyectos-tab {
	appearance: none;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	border: 1px solid transparent;
	border-radius: 6px 6px 0 0;
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
	font-weight: 600;
	background: transparent;
	color: #64748b;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	margin-bottom: -1px;
	border-bottom: 3px solid transparent;
}

.bc-proyectos-tab-thumb,
.bc-proyectos-tab-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	flex-shrink: 0;
	border-radius: 8px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.15);
}

.bc-proyectos-tab:not(.bc-proyectos-tab-active) .bc-proyectos-tab-thumb,
.bc-proyectos-tab:not(.bc-proyectos-tab-active) .bc-proyectos-tab-icon {
	background: rgba(15, 23, 42, 0.06);
}

.bc-proyectos-tab-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bc-proyectos-tab-icon svg {
	width: 50%;
	height: 50%;
	fill: currentColor;
}

.bc-proyectos-tab-icon i {
	font-size: 45%;
}

.bc-proyectos-tab-label {
	white-space: nowrap;
}

.bc-proyectos-tab:hover {
	color: #0f172a;
}

.bc-proyectos-tab.bc-proyectos-tab-active {
	background: #0b5fff;
	color: #fff;
	border-color: #0b5fff;
	border-bottom-color: #0b5fff;
}

/* Encabezado por país */
.bc-proyectos-country-group {
	margin-bottom: 3rem;
}

.bc-proyectos-country-group:last-child {
	margin-bottom: 0;
}

.bc-proyectos-country-header {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.25rem;
}

.bc-proyectos-country-name {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: #0f172a;
	text-transform: uppercase;
}

.bc-proyectos-country-count {
	font-size: 0.9rem;
	font-weight: 500;
	color: #94a3b8;
}

/* Grid de tarjetas */
.bc-proyectos-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

@media (max-width: 1024px) {
	.bc-proyectos-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.bc-proyectos-grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}
}

/* Tarjeta */
.bc-proyectos-card {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
	border: 1px solid #f1f5f9;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
	display: flex;
	flex-direction: column;
}

.bc-proyectos-card:hover {
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
	transform: translateY(-2px);
}

.bc-proyectos-card-image-wrap {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	background: #f1f5f9;
	overflow: hidden;
}

.bc-proyectos-card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.bc-proyectos-card-image-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.bc-proyectos-card-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: #0b5fff;
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	padding: 0.35rem 0.6rem;
	border-radius: 4px;
	text-transform: uppercase;
}

.bc-proyectos-card-body {
	padding: 1.25rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.bc-proyectos-card-title {
	margin: 0 0 0.75rem;
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.3;
	color: #0f172a;
}

.bc-proyectos-card-title a {
	color: inherit;
	text-decoration: none;
}

.bc-proyectos-card-title a:hover {
	color: #0b5fff;
}

.bc-proyectos-card-meta {
	margin: 0 0 0.5rem;
	font-size: 0.875rem;
	line-height: 1.4;
}

.bc-proyectos-card-meta-label {
	display: block;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: #94a3b8;
	text-transform: uppercase;
	margin-bottom: 0.15rem;
}

.bc-proyectos-card-meta-value {
	color: #475569;
}

.bc-proyectos-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid #f1f5f9;
}

.bc-proyectos-card-location {
	font-size: 0.8rem;
	color: #94a3b8;
}

.bc-proyectos-card-link {
	font-size: 1rem;
	font-weight: 600;
	color: #0b5fff;
	text-decoration: none;
}

.bc-proyectos-card-link:hover {
	text-decoration: underline;
}
