@charset "UTF-8";

/* Gewinnspiel / Newsletter – Content-Detail-Optik (wie FAQ/Blog) */
.file-gewinnspiel,
.file-newsletter {
	--gs-accent: #203a1d;
	--gs-accent-soft: #79ad4b;
	--gs-muted: #5c6b58;
	--gs-surface: #f8f6f1;
	--gs-border: rgba(32, 58, 29, 0.12);
	--gs-radius: 12px;
}

.file-gewinnspiel {
	background: linear-gradient(180deg, #fff 0%, var(--gs-surface) 28%, var(--gs-surface) 100%);
	padding-bottom: 3rem;
}

.gs-shell {
	max-width: 1100px;
	margin: 0 auto;
	padding: 2rem 1rem 0;
}

@media (min-width: 992px) {
	.gs-shell {
		padding-top: 2.5rem;
	}
}

.gs-intro {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 1.75rem;
}

.gs-layout {
	display: grid;
	gap: 1.75rem;
	align-items: start;
}

.gs-media {
	margin: 0;
}

.gs-media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--gs-radius);
	border: 1px solid var(--gs-border);
	box-shadow: 0 10px 28px rgba(32, 58, 29, 0.08);
}

.gs-copy {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

@media (min-width: 992px) {
	.gs-layout {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
		gap: 2.25rem;
		align-items: stretch;
	}

	.gs-media {
		display: flex;
		height: 100%;
		min-height: 0;
	}

	.gs-media img {
		flex: 1 1 auto;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}

	.gs-copy {
		height: 100%;
		min-height: 0;
	}

	.gs-copy > .gs-panel {
		flex: 1 1 auto;
		display: flex;
		flex-direction: column;
	}
}

.gs-lead {
	padding: 1.15rem 1.25rem;
	border: 1px solid var(--gs-border);
	border-left: 4px solid var(--gs-accent-soft);
	border-radius: var(--gs-radius);
	background: #fff;
}

.gs-lead__title {
	margin: 0 0 0.55rem;
	color: var(--gs-accent);
	font-size: clamp(1.35rem, 2.4vw, 1.75rem);
	font-weight: 700;
	line-height: 1.25;
}

.gs-lead__text {
	margin: 0;
	color: var(--gs-muted);
	font-size: clamp(1.02rem, 1.6vw, 1.12rem);
	line-height: 1.65;
	max-width: 48rem;
}

.gs-benefits {
	display: grid;
	gap: 0.65rem;
	margin: 0;
	padding: 0.85rem;
	list-style: none;
	border: 1px solid var(--gs-border);
	border-radius: var(--gs-radius);
	background: rgba(121, 173, 75, 0.06);
}

@media (min-width: 768px) {
	.gs-benefits {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0.75rem;
		padding: 1rem;
	}
}

.gs-benefits__item {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	min-height: 3rem;
	margin: 0;
	padding: 0.75rem 0.9rem;
	border: 1px solid var(--gs-border);
	border-radius: var(--gs-radius);
	background: #fff;
	box-shadow: 0 4px 14px rgba(32, 58, 29, 0.05);
}

.gs-benefits__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.15rem;
	height: 2.15rem;
	border-radius: 50%;
	background: rgba(121, 173, 75, 0.14);
	color: var(--gs-accent-soft);
}

.gs-benefits__icon i {
	font-size: 1.05rem;
	line-height: 1;
}

.gs-benefits__text {
	color: var(--gs-accent);
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.35;
}

.gs-panel {
	border: 1px solid var(--gs-border);
	border-radius: var(--gs-radius);
	background: #fff;
	padding: 1.35rem 1.25rem 1.45rem;
}

@media (min-width: 768px) {
	.gs-panel {
		padding: 1.6rem 1.5rem 1.7rem;
	}
}

.gs-panel__title {
	margin: 0 0 0.35rem;
	color: var(--gs-accent);
	font-size: clamp(1.15rem, 2vw, 1.35rem);
	font-weight: 700;
}

.gs-panel__hint {
	margin: 0 0 1.2rem;
	color: var(--gs-muted);
	font-size: 0.92rem;
}

.gs-panel .form-label {
	color: var(--gs-accent);
	font-weight: 600;
	font-size: 0.88rem;
}

.gs-panel .form-control,
.gs-panel .form-select {
	border-color: rgba(32, 58, 29, 0.18);
	border-radius: 8px;
}

.gs-panel .form-control:focus,
.gs-panel .form-select:focus {
	border-color: var(--gs-accent-soft);
	box-shadow: 0 0 0 0.2rem rgba(121, 173, 75, 0.2);
}

.gs-panel .form-check-label {
	color: var(--gs-muted);
	font-size: 0.92rem;
	line-height: 1.45;
}

.gs-panel .btn-secondary-custom {
	min-width: 10rem;
}

.gs-terms {
	margin-top: 1.5rem;
	border: 1px solid var(--gs-border);
	border-radius: var(--gs-radius);
	background: #fff;
	padding: 0.85rem 1rem;
}

.gs-terms summary {
	cursor: pointer;
	color: var(--gs-accent);
	font-weight: 600;
	list-style: none;
}

.gs-terms summary::-webkit-details-marker {
	display: none;
}

.gs-terms summary::after {
	content: "+";
	float: right;
	color: var(--gs-accent-soft);
	font-weight: 700;
}

.gs-terms[open] summary::after {
	content: "–";
}

.gs-terms__body {
	margin-top: 0.85rem;
	padding-top: 0.85rem;
	border-top: 1px solid var(--gs-border);
	color: var(--gs-muted);
	font-size: 0.88rem;
	line-height: 1.6;
}

.gs-confirm .alert-info {
	border-color: rgba(121, 173, 75, 0.35);
	background: rgba(121, 173, 75, 0.08);
	color: var(--gs-accent);
}
