.fl-reise-angebote-grid {
	width: 100%;
}

.reise-angebote-grid__count {
	color: #000;
	font-size: 1.5rem;
	font-weight: 400;
	margin-bottom: 2rem;
}

.reise-angebote-grid__divider {
	height: 1px;
	background-color: #e0e0e0;
	margin-bottom: 2rem;
}

.reise-angebote-grid__content {
	position: relative;
	width: 100%;
	padding-right: 4%;
	padding-left: 4%;
}

.reise-angebote-grid__items {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 430px));
	gap: 30px;
	margin-top: 30px;
	margin-bottom: 80px;
	align-items: stretch;
}

.reise-angebote-grid__item {
	display: flex;
}

.reise-angebote-grid__item .card-travel-wrapper {
	width: 100% !important;
	max-width: none !important;
	flex: none !important;
	padding: 0 !important;
	margin: 0 !important;
	height: 100% !important;
}

.reise-angebote-grid__empty {
	grid-column: 1 / -1;
	text-align: center;
	padding: 3rem 1rem;
}

/* Einheitliche Empty-State-Styles wie bei Merkliste und Travel Type Slider */
.reise-angebote-grid__empty .travel-state {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
	min-height: 260px;
	padding: 2rem;
	margin: 0 auto;
}

.reise-angebote-grid__empty .state-animation {
	margin-bottom: 1.5rem;
}

.reise-angebote-grid__empty .state-icon-circle {
	width: 60px;
	height: 60px;
	background: #213D77;
	border: 2px solid #213D77;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.reise-angebote-grid__empty .state-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: #000;
	margin: 0 0 0.5rem 0;
}

.reise-angebote-grid__empty .state-description {
	font-size: 1rem;
	color: #666;
	margin: 0;
	line-height: 1.5;
}

.reise-angebote-grid__load-more {
	display: flex;
	justify-content: flex-end;
	margin-top: 2rem;
}

.reise-angebote-grid__load-more-btn {
	display: flex;
	width: 197px;
	height: 51px;
	justify-content: center;
	align-items: center;
	gap: -10px;
	flex-shrink: 0;
	border-radius: 20px;
	background: #FFF;
	box-shadow: 0 2px 30px 0 rgba(155, 174, 213, 0.35);
	color: #213D77;
	font-family: "Aktiv Grotesk", sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	border: none;
	cursor: pointer;
	transition: box-shadow 0.3s ease;
	text-decoration: none;
}

.reise-angebote-grid__load-more-btn:hover {
	box-shadow: 0 4px 40px 0 rgba(155, 174, 213, 0.5);
}

.reise-angebote-grid__load-more-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	box-shadow: 0 2px 30px 0 rgba(155, 174, 213, 0.2);
}

.btn-loader { display: none; }

@keyframes l43 {
	20%{background-position:0%   0%, 50%  50%,100%  50%}
	40%{background-position:0% 100%, 50%   0%,100%  50%}
	60%{background-position:0%  50%, 50% 100%,100%   0%}
	80%{background-position:0%  50%, 50%  50%,100% 100%}
}



/* Responsive Anpassungen */
@media (max-width: 767px) {
	.reise-angebote-grid__count {
		font-size: 1.25rem;
	}
	
	.reise-angebote-grid__load-more-btn {
		font-size: 1rem;
	}
	
	.reise-angebote-grid__items {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.reise-angebote-grid__count {
		font-size: 1.375rem;
	}
	
	.reise-angebote-grid__load-more-btn {
		font-size: 1.0625rem;
	}
	
	.reise-angebote-grid__items {
		grid-template-columns: repeat(auto-fill, minmax(300px, 430px));
		gap: 20px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.reise-angebote-grid__content {
		padding-left: 2%;
		padding-right: 2%;
	}
	.reise-angebote-grid__items {
		grid-template-columns: repeat(auto-fill, minmax(300px, 430px));
	}
}

@media (min-width: 1200px) {
	.reise-angebote-grid__content {
		padding-left: 2%;
		padding-right: 2%;
	}
	.reise-angebote-grid__items {
		grid-template-columns: repeat(3, minmax(0, 430px));
		justify-content: center;
	}
} 