@charset 'UTF-8';

a.huge_linkbox {
	display:table-cell;
	vertical-align:middle;
	margin:10px;
	float:left;
	max-width:700px;
	height:100px;
	background: #093059;
	border-radius: 15px;
	padding-left:30px;
	padding-top:15px;  
	border: 2px solid #ff9600; 
	width: 50%;
}

a.huge_linkbox:hover {
	text-decoration: none;
	background: #497099;
	border: 2px solid #ff9600; 
}

div.huge_linkbox_caption {
	font-size:1.2em; 
	text-decoration:none;
	font-weight:400; 
	color: #fff;
}

p.huge_linkbox_subtitle {
	margin:0px;
	color: #ffffff;
	font-size:0.8em; 
}

a.listen_linkbox {
	display:table-cell;
	vertical-align:middle; 
	margin:10px;
    width:600px;
	height:120px;
	background: #093059;
	border-radius: 15px;
	padding: 30px;

	border: 2px solid #ff9600; 
    background-image: url(../../images/speaker_icon.svg), none;
    background-size: 100px; 
    background-repeat: no-repeat;
    background-position:470px;
}

a.listen_linkbox:hover {
	text-decoration: none;
	background: #497099;
	border: 2px solid #ff9600; 
    background-image: url(../../images/speaker_icon.svg), none;
    background-size: 100px; 
    background-repeat: no-repeat;
    background-position:470px;
}

.annotation {
	font-size: 80%;
	font-weight:600; 
	font-style:italic;
}

figure {
	margin-left:auto;
    margin-right:auto;
	display: table;
	background-color:#ffffff;
	margin-bottom:2em;
	margin-top:2em;
}


figcaption {
	display: table-caption; 
	text-align:left;
	caption-side: bottom;
	font-size: 80%;
	font-style:italic;
	font-weight:600; 
	line-height: 1.4em;
}

figure.float_right_one {
	float:right; 
	margin:10px;
	width:55%;
}

	figure.float_right_one img {
		width:100%;
	}

	figure.float_right_one canvas {
		width:100%;
	}

	figure.float_right_one iframe {
		width:100%;
	}

	figure.float_right_one video {
		width:100%;
	}


figure.single {
	width:80%;
}

	figure.single img {
		width:100%;
	}

	figure.single video {
		width:100%;
	}
	
	figure.single canvas {
		width:100%;
	}


figure.float_two {
	float:left; 
	width:45%;
    margin:10px;
}

	figure.float_two img {
		width:100%;
	}

	figure.float_two canvas {
		width:100%;
	}

	figure.float_two iframe {
		width:100%;
	}

	figure.float_two video {
		width:100%;
	}


figure.float_three {
	float:left; 
	width:32%;
	margin:5px;
}

	figure.float_three img {
		width:100%;
	}

	figure.float_three video {
		width:100%;
	}

	figure.float_three canvas {
		width:100%;
	}

.clear {
	clear: both;
}

.checked {
	color: orange;
}

.github-corner:hover 
	.octo-arm {
		animation:octocat-wave 560ms ease-in-out
	}
	
	@keyframes octocat-wave {
		0%,100% { transform:rotate(0)} 20%,60% { transform:rotate(-25deg) } 40%,80% { transform:rotate(10deg) }
	}

@media (max-width:500px) {
	.github-corner:hover 
		.octo-arm {
			animation:none
		}
	
	.github-corner 
		.octo-arm {
			animation:octocat-wave 560ms ease-in-out
		}
}

/*
  css for timelines
*/

.tl {
	margin: 0px;
	margin-bottom: 50px; /* Adds margin at the end of the entire timeline */
  }
  
  .tl-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 10px;
  }

  .tl-year {
	font-weight: bold;
	width: 150px; /* Fixed width for year column */
	margin-right: 40px; /* Space between year and events */
	text-align: right;
	font-size: 1.5em; /* Increase the size of the year numbers */
  }
  
  .tl-events {
	flex: 1; /* This makes the events take up the remaining space */
  }
  
  .tl-event {
	margin: 0px 0; /* Controls spacing between event descriptions */
  }
  
  
/*
 *
 *  Stile Für Artikellinkboxen auf Indexseiten. Noch nicht klar ob die hier bleiben.
 *  2025-01-05
 *
 */

  /* Article Container */
  .article-container {
	width: 100%;
	margin-top: 100px; /* Space between banner and articles */
  }
  
  /* Article grid */
  .article-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	width: 100%;
  }
  
  /* Article card */
  .article-card {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .article-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  }
  
  .card-image img {
	width: 100%;
	height: auto;
	display: block;
  }
  
  .card-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 10px;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	text-align: center;
  }
  
  .card-title {
	font-size: 1.2rem;
	font-weight: bold;
  }
  
  .card-subtitle {
	font-size: 0.9rem;
  }