/* =======================================
* Chronologie Filter ( Plugin für Archive )
======================================== */

  select, input{
	background: #fff;
	border:0.5px solid #999;
	height: 1.6rem;
  }
  .chronologie-filter-wrapper { 
	margin-bottom: 20px; 
	border: 1px solid #ccc;
	border-radius: 10px;
	padding: 1em;
	background: #fff;
  }
  
.filter-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 15px;
	margin-bottom: 15px;
  }
  
  .filter-row > div {
	display: flex;
	flex-direction: column;
  }
  
  .filter-actions {
	margin-top: 20px;
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
  }
  
  fieldset {
	border: 1px solid #ccc;
	padding: 15px;
	margin-bottom: 20px;
  }
  
  legend {
	font-weight: 600;
	padding: 0 5px;
  }

  button,
  .reset-button {
	padding: 6px 12px;
	background: var(--secondary-color);
	border: 1px solid #999;
	border-radius: 5px;
	font-size: 14px;
	cursor: pointer;
  }
  
  button:focus,
  .reset-button:focus,
  select:focus,
  input:focus {
	outline: 3px solid #0073aa;
	outline-offset: 2px;
  }
  
  .visually-hidden {
	position: absolute;
	left: -9999px;
  }

 /** ==================================
   * Spoiler - Chronologie
	====================================*/
  
   .spoiler {
	  position: relative;
	}
	
	.check {
	  position: absolute;
	  left: -9999px;
	}
	
	 .spoiler label {
	  display: flex;
	  align-items: center;
	  cursor: pointer;
	  font-weight: bold;
	  /* background-color: #fff; */
	  padding: 0.5em;
	  border-radius: 4px;
	  user-select: none;
	  outline-offset: 2px;
	}
	
	 .spoiler label:focus {
	  outline: 2px solid #005fcc;
	}
	
	 .spoiler label.icon::before {
	  content: "";
	  display: inline-block;
	  margin-right: 0.5em;
	  border-style: solid;
	  border-width: 6px 4px 0 4px;
	  border-color: #333 transparent transparent transparent;
	  transition: transform 0.3s ease;
	  transform-origin: center;
	}
	
	 .spoiler  .spoiler-content {
	  max-height: 0;
	  overflow: hidden;
	  transition: max-height 0.3s ease;
	  padding-left: 1.5em;
	  margin-top: 0;
	  display: none;
	}
	
	 .spoiler input[type="checkbox"]:checked ~ label.icon::before {
	  transform: rotate(90deg);
	}
	
	 .spoiler input[type="checkbox"]:checked ~  .spoiler-content {
	  max-height: 1000px;
	  width: 100% !important;
	  margin-top: 0.5em;
	  display: block;
	}
	
	/*============================
	Chronologie Filter
	=============================*/
	.trigger{
		/* border:0.5px solid #ccc; */
	}
		  .cf-chronologie{
	  /* float: right; */
	  margin:0;
	}
	ul.cf-chronologie{
	   /* float: right; */
	   margin: 0;
	   font-size: 80%;
	   font-weight: 800;
	 }
	.cf-chronologie li{
	list-style: none;
	  /* display: inline; */
	  }
	  ul.cf-chronologie{
	  margin-block-start: 0;
	  margin-block-end: 0;
	  padding-inline-start: 0;
	  }
	.chrono-date{
	
	}
	.chrono-meta{
	vertical-align: top;
	/* float:right; */
	margin: 0 0 1em;
	}
	.datum{
	  text-align: right
	}
	  
	.su-spoiler.title-top-right .su-spoiler-title {
		  float: right;
		  /* Optional: Padding oder Margin anpassen */
		  padding-right: 10px;
	  }
	  ---
	  /* =======================================
	  * Chronologie Filter ( Plugin für Archive )
	  ======================================== */
	  
/** ==================================
	   * Spoiler - Chronologie
		====================================*/
	  
	  .spoiler {
		  position: relative;
		}
		
		.check {
		  position: absolute;
		  left: -9999px;
		}
		
		.spoiler label {
		  display: flex;
		  align-items: center;
		  cursor: pointer;
		  font-weight: bold;
		  padding: 0.5em;
		  border-radius: 4px;
		  user-select: none;
		  outline-offset: 2px;
		}
		
		.spoiler label:focus {
		  outline: 2px solid #005fcc;
		}
		
		.spoiler label.icon::before {
		  content: "";
		  display: inline-block;
		  margin-right: 0.5em;
		  border-style: solid;
		  border-width: 6px 4px 0 4px;
		  border-color: #333 transparent transparent transparent;
		  transition: transform 0.3s ease;
		  transform-origin: center;
		}
		
		.spoiler .spoiler-content {
		  max-height: 0;
		  overflow: hidden;
		  transition: max-height 0.3s ease;
		  padding-left: 1.5em;
		  margin-top: 0;
		  display: none;
		}
		
		.spoiler input[type="checkbox"]:checked ~ label.icon::before {
		  transform: rotate(90deg);
		}
		
		.spoiler input[type="checkbox"]:checked ~ .spoiler-content {
		  max-height: 1000px;
		  width: 100% !important;
		  margin-top: 0.5em;
		  display: block;
		}
	  
