/* Die Tags für Detailseite */

/* entspricht .quarto-category.tag-farbe, nur mit größerem Font */

.quarto-category{
    font-size: .75em;   
}

abbr[data-tooltip] {
    position: relative;
    text-decoration: none;
    cursor: help;
    font-family: "IBM Plex Sans", sans-serif;
}

abbr[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;

    background: white;
    color: black;
    padding: 10px 14px;
    font-size: 14px;
    font-family: "IBM Plex Sans", sans-serif;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

    opacity: 0;
    pointer-events: none;
    transform: translateY(5px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 10;

    max-width: 600px;
    width: max-content;
    white-space: normal;
    word-break: break-word;
    text-transform: none;
    line-height: 1.4;
}

abbr[data-tooltip]:hover::after {
    opacity: 1;
    transform: translateY(0);
}


.infobox{
	background-color:#c6e4f9;
	padding: 1em;
	margin-top:1em; 
}
.infobox + p{
	text-align: center;
}
.img-fluid{
	max-width: 100%;
	height:auto;
}
.g-col-12.g-col-lg-8{
	margin:1rem;
}
/*h2{
	border-bottom:none;
	font-weight: 400 !important;
}*/
.beschreibung{
	margin-top:1.5rem;
}
.p-button{
    margin-bottom:2rem;
    margin-top: 2rem;
}
.p-border{
    margin-top:2rem;
    border-top: 1px solid #dee2e6;
    padding-top:1rem;
}

h2{
  border-bottom: 1px solid #dee2e6;
  padding-bottom: .5rem;
}
h2.ressource-author{
    border-bottom: none;
	font-weight: 400 !important;
}