/* ============================================================
   Sections – globale Abschnitte & Grids (Divi-Rows)
   ============================================================ */

.nickel-section {
	padding: 80px 0;
}

.nickel-section--sm {
	padding: 56px 0;
}

.nickel-section--lg {
	padding: 104px 0;
}

@media (max-width: 980px) {
	.nickel-section {
		padding: 64px 0;
	}

	.nickel-section--sm {
		padding: 48px 0;
	}

	.nickel-section--lg {
		padding: 72px 0;
	}

	.nickel-cta {
		padding: 64px 0;
	}

	.nickel-section__header {
		margin-bottom: 32px;
	}
}

.nickel-section--muted {
	background: var(--color-surface-muted);
}

.nickel-section--dark {
	background: var(--color-text);
	color: #fff;
}

.nickel-section--primary {
	background: var(--color-primary);
	color: #fff;
}

.nickel-section--dark h1,
.nickel-section--dark h2,
.nickel-section--dark h3,
.nickel-section--dark p,
.nickel-section--primary h1,
.nickel-section--primary h2,
.nickel-section--primary h3,
.nickel-section--primary p {
	color: #fff;
}

.nickel-section--dark p,
.nickel-section--primary p {
	color: rgba(255, 255, 255, 0.85);
}

/* Divi-Row als CSS-Grid */
.nickel-section--grid-2 .et_pb_row,
.nickel-section--grid-3 .et_pb_row {
	display: grid;
	gap: 24px;
	align-items: stretch;
}

.nickel-section--grid-2 .et_pb_row {
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

.nickel-section--grid-3 .et_pb_row {
	grid-template-columns: repeat(3, 1fr);
}

.nickel-section--grid-2 .et_pb_row > .et_pb_column,
.nickel-section--grid-3 .et_pb_row > .et_pb_column {
	float: none;
	width: auto;
	margin: 0;
	display: flex;
	flex-direction: column;
}

@media (max-width: 980px) {
	.nickel-section--grid-3 .et_pb_row {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.nickel-section--grid-2 .et_pb_row,
	.nickel-section--grid-3 .et_pb_row {
		grid-template-columns: 1fr;
	}
}

/* Abschnittstitel */
.nickel-section__header {
	margin-bottom: 48px;
}

.nickel-section__header--center {
	text-align: center;
}

.nickel-section__title {
	margin: 0 0 12px;
	font-family: var(--font-heading);
	font-size: var(--font-size-2xl) !important;
	font-weight: 400;
	line-height: var(--line-height-heading);
}

.nickel-section__lead {
	max-width: 640px;
	font-size: var(--font-size-md);
	line-height: 1.65;
	color: var(--color-text-soft);
}

.nickel-section__header--center .nickel-section__lead {
	margin: 0 auto;
}

/* CTA */
.nickel-cta {
	padding: 80px 0;
	text-align: center;
}

.nickel-cta .et_pb_heading h2,
.nickel-cta h2 {
	max-width: 720px;
	margin: 0 auto 16px;
	font-size: var(--font-size-2xl) !important;
}

.nickel-cta .et_pb_text p,
.nickel-cta p {
	max-width: 620px;
	margin: 0 auto 28px;
	color: var(--color-text-soft);
}

.nickel-cta .et_pb_button_module_wrapper,
.nickel-btn-row .et_pb_button_module_wrapper {
	display: inline-block;
	margin: 0 8px 8px;
}

.nickel-btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.nickel-btn-row--center {
	justify-content: center;
}

/* Seasonal / Media panel */
.nickel-seasonal {
	position: relative;
	padding: 72px 0;
	background-color: #1b1b1b;
	background-size: cover;
	background-position: center;
}

.nickel-seasonal__panel {
	padding: 40px 36px;
	background: #fff;
	max-width: 520px;
}

.nickel-seasonal__panel .nickel-kicker {
	margin-bottom: 12px;
}

.nickel-seasonal__panel h2 {
	margin: 0 0 14px;
	font-size: var(--font-size-2xl) !important;
}

.nickel-seasonal__panel p {
	margin: 0 0 20px;
	color: var(--color-text-soft);
}

.nickel-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 24px;
}

.nickel-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: var(--font-size-sm);
	font-weight: 600;
	color: var(--color-text);
}

/* Split layouts */
.nickel-split-row .et_pb_row {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 48px;
	align-items: center;
}

.nickel-split-row .et_pb_row > .et_pb_column {
	float: none;
	width: auto;
	margin: 0;
}

@media (max-width: 980px) {
	.nickel-split-row .et_pb_row {
		grid-template-columns: 1fr;
	}
}

/* Stats */
.nickel-stats-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 40px;
}

@media (max-width: 640px) {
	.nickel-stats-row {
		grid-template-columns: 1fr;
	}
}

/* Checklist */
.nickel-checklist {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
}

.nickel-checklist li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 10px;
	font-size: var(--font-size-sm);
}

.nickel-checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	background: var(--color-primary);
}

.nickel-section--primary .nickel-checklist li::before {
	background: #fff;
}

/* Hours table */
.kontakt-hours,
.nickel-hours {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 10px;
}

.kontakt-hours td,
.nickel-hours td {
	padding: 4px 0;
	font-size: var(--font-size-sm);
}

.kontakt-hours td:last-child,
.nickel-hours td:last-child {
	text-align: right;
	font-weight: 600;
	color: var(--color-text);
}
