/* =========================================================
   NEWATOURS – UNSERE LEISTUNGEN
   ========================================================= */

.newatours-leistungen {
	width: 100%;
}


/* =========================================================
   COLUMNS
   ========================================================= */

.newatours-leistungen-columns {
	display: grid;

	grid-template-columns:
		minmax(0, 1fr)
		minmax(0, 1fr);

	column-gap: 44px;

	align-items: start;
}


.newatours-leistungen-column {
	min-width: 0;
	align-self: start;
}


.newatours-leistungen-column-right {
	border-left: 1px solid rgba(14, 42, 71, 0.12);
	padding-left: 28px;
}


/* =========================================================
   ITEM
   ========================================================= */

.newatours-leistung-item {
	position: relative;

	display: grid;
	grid-template-columns: 24px minmax(0, 1fr);
	gap: 12px;

	padding: 13px 0;

	border-bottom: 1px solid rgba(14, 42, 71, 0.12);
}


.newatours-leistung-item:first-child {
	padding-top: 0;
}


.newatours-leistung-item:last-child {
	border-bottom: 0;
}


/* =========================================================
   CHECK ICON
   ========================================================= */

.newatours-leistung-check {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 22px;
	height: 22px;

	margin-top: 1px;

	border-radius: 50%;

	background: #b08d57;

	color: #ffffff;

	font-family: Arial, sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
}


/* =========================================================
   TEXT
   ========================================================= */

.newatours-leistung-text {
	color: #0e2a47;

	font-size: 16px;
	line-height: 1.55;
}


.newatours-leistung-text strong,
.newatours-leistung-text b {
	font-weight: 600;
}


.newatours-leistung-text em,
.newatours-leistung-text i {
	font-style: italic;
}


/* =========================================================
   CUSTOM COLORS FROM BACKEND
   ========================================================= */

.newatours-leistung-text .newatours-text-navy {
	color: #0e2a47;
}


.newatours-leistung-text .newatours-text-gold {
	color: #b08d57;
}


/* =========================================================
   LINKS
   ========================================================= */

.newatours-leistung-text a {
	color: #0e2a47;
	font-weight: 600;
	text-decoration: none;

	transition:
		color 0.2s ease;
}


.newatours-leistung-text a:hover {
	color: #b08d57;
}


/* =========================================================
   PDF LINK
   ========================================================= */

.newatours-leistung-text a.newatours-link-pdf {
	display: inline-flex;
	align-items: center;

	gap: 4px;

	color: #0e2a47;
	font-weight: 600;
	text-decoration: none !important;

	transition: color 0.2s ease;
}


.newatours-leistung-text a.newatours-link-pdf::before {
	content: "\f1c1";

	display: inline-block;

	color: #0e2a47;

	font-family: "Font Awesome 5 Free";
	font-size: 16px;
	font-weight: 900;
	line-height: 1;

	transform: translateY(-1px);

	transition: color 0.2s ease;
}


.newatours-leistung-text a.newatours-link-pdf:hover,
.newatours-leistung-text a.newatours-link-pdf:focus {
	color: #b08d57;
	text-decoration: none !important;
}


.newatours-leistung-text a.newatours-link-pdf:hover::before,
.newatours-leistung-text a.newatours-link-pdf:focus::before {
	color: #b08d57;
}


/* =========================================================
   EMPTY STATE – ELEMENTOR EDITOR
   ========================================================= */

.newatours-leistungen-empty {
	padding: 20px;

	border: 1px dashed rgba(14, 42, 71, 0.25);

	color: #666;

	text-align: center;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

	.newatours-leistungen-columns {
		column-gap: 28px;
	}


	.newatours-leistungen-column-right {
		padding-left: 22px;
	}


	.newatours-leistung-text {
		font-size: 15px;
	}

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

	.newatours-leistungen-columns {
		display: block;
	}


	.newatours-leistungen-column-right {
		border-left: 0;
		padding-left: 0;
	}


	.newatours-leistung-item {
		grid-template-columns: 22px minmax(0, 1fr);
		gap: 10px;

		padding: 12px 0;
	}


	.newatours-leistung-check {
		width: 20px;
		height: 20px;

		font-size: 12px;
	}


	.newatours-leistung-text {
		font-size: 15px;
		line-height: 1.5;
	}

}