/*
 * Widget Elementor: DNZ Tabs (2 columnas).
 * Solo se encola en páginas donde el widget está presente (ver get_style_depends()).
 */

.dnz-tabs {
	border: 0px solid rgba(255, 255, 255, 0.12);
}

.dnz-tabs__panel {
	display: none;
}

.dnz-tabs__panel.is-active {
	display: grid;
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.dnz-tabs__panel.is-active {
		grid-template-columns: 1fr 1fr;
	}
}

.dnz-tabs__col {
	padding: 40px;
}

.dnz-tabs__col--highlight {
	background-color: #98c836;
	color: #14181b;
	border: 1px solid #98c836;
}

.dnz-tabs__col--default {
	color: #fff;
	border: 1px solid #556F7C;
	border-left: 0;
}

@media (max-width: 767px) {
	.dnz-tabs__col--default {
		border: 1px solid #556F7C;
	}
}
.dnz-tabs__eyebrow {
	font-size: 18px;
	margin: 0 0 12px;
	font-weight: 300;
}

.dnz-tabs__title {
	align-items: center;
	display: flex;
	font-size: 28px;
	font-weight: 400;
	gap: 8px;
	margin: 0 0 30px;
}

.dnz-tabs__arrow {
	font-size: 1.5rem;
	line-height: 1;
}

.dnz-tabs__text {
	font-size: 18px;
	line-height: 1.4;
	margin: 0;
}
.dnz-tabs__col--highlight .dnz-tabs__text {
	font-size: 20px;
}

.dnz-tabs__nav {
	display: flex;
	gap: 30px;
	margin-top: 24px;
	width: 100%;
}

.dnz-tabs__nav-item {
	background: none;
	border: none;
	border-bottom: 2px solid #556F7C;
	border-radius: 0 !important;
	color: #556F7C !important;
	cursor: pointer;
	flex: 1 1 0;
	font-family: inherit;
	font-size: 0.95rem;
	min-width: 0;
	padding: 0 0 12px;
	text-align: left;
}

.dnz-tabs__nav-item:hover {
	color: #ffffff !important;
	border-bottom-color: #ffffff;
}

.dnz-tabs__nav-item.is-active {
	border-bottom-color: #98c836;
	color: #98c836 !important;
}
