@charset "utf-8";
/* CSS Document */

h1 {
	color: #E31E25;
}

.container-fluid4 {
	text-align: left;
	width: 80%; 
  	margin: 0 auto; 
  	padding: 20px;
	margin-top: 10px;  
  	min-height: 60vh;
  	padding-bottom: 10px;
}

.einsatzarchiv-button {
  background-color: #E31E25;
  color: #FDDB00;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  border-radius: 4px;
  display: block;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none; 
  outline: none; 
  box-shadow: none;
}

.einsatzarchiv-button:hover {
  background-color: #FDDB00;
  color: #E31E25;
  cursor: pointer;
}


.einsatz-thumbnail-wrapper {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  background-color: #f2f2f2;
}

.einsatz-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-link:hover .einsatz-thumbnail-wrapper {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.einsatz-thumbnail-wrapper {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex-grow: 1;
}
