@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');


:root {
  --white-color: #ffffff;
  --primary-color: #F6A313; /*MAIN CD COLOR*/
  --secondary-color: #F07C0E;/*MAIN CD COLOR*/
  --section-bg-color: #F9F0E1;
  --navbar-bg-color: #E7490C;/*MAIN CD COLOR*/
  --p-color: #1E1E1E;
  --dark-color: #1E1E1E;
  --highlight-icon-color: #D7260D;/*MAIN CD COLOR*/
  --green: #0DD78A; /*NOT FOR CD, ONLY USE IN CHARTS WHEN GREEN IS NEEDED*/
  --blue: #0D5AD7;/*NOT FOR CD, ONLY USE IN CHARTS WHEN BLUE IS NEEDED*/


  --gradient-dark:                radial-gradient(ellipse 100% 200% at 0% 108%, 
                                    #F6A313 10%,  #F07C0E 35%,  #E74A0C 50%, 
                                    rgba(215, 38, 13, 0.9) 65%,  rgba(215, 38, 13, 0.65) 80%,  rgba(215, 38, 13, 0.35) 90%,  rgba(215, 38, 13, 0.10) 95%,rgba(215, 38, 13, 0) 100%);
  --gradient-bright:                radial-gradient(ellipse 100% 75% at -8% 108%, 
                                    #F6A313 10%,  #F07C0E 25%,  #E74A0C 35%, 
                                    rgba(215, 38, 13, 0.9) 50%,  rgba(215, 38, 13, 0.65) 60%,  rgba(215, 38, 13, 0.35) 80%,  rgba(215, 38, 13, 0.10) 90%,rgba(215, 38, 13, 0) 100%);
  --bs-info-rgb:255,255,255;
  --img-shadow:                   drop-shadow(0 1rem 3rem rgba(0, 0, 0, 0.25));
  



  --body-font-family: 'DM Sans', sans-serif;
  --navbar-height: 80px;
  --page-intent: 60px;

}

.title-section h1 {
  font-size: 44px;
  font-size: 44px;
  margin-top: 2px;
  margin-bottom:40px;
  
}

.subtitle-section p {
  font-weight: bold;
  color:  var(-primary-color);
  margin-bottom: 8px;
  margin-top: 35px;
}


element.style {
    font-style: italic;
    color: orange;

}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 24px;
  border-bottom: none;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 16px;
  font-weight: 600;
}

p {
  font-size: 16px;
}

li {
  font-size: 16px;
}

/* Apply square bullets and red color globally to all unordered lists */
ul {
    list-style-type: square; /* Change bullet style to square */
}

/* Ensure bullet color is red by targeting the marker */
ul li::marker {
    color: var(--highlight-icon-color);
}


.subline p {
    color: lightgray;
    font-size: 14px;
    font-style: italic;
}

.subline-red p {
    color: var(--primary-color);
    font-size: 14px;
    font-style: italic;
}



.intro-note {
  font-style: italic;
  color: #6c757d;
  margin-top: 10px;
  margin-bottom: 20px;
}


.navbar-logo {
  height: calc(var(--navbar-height) - 8px);
  width: auto;
  padding: 4px 0 4px 0px;
  max-height: fit-content;
}

footer.footer .nav-footer, #quarto-header>nav {
    padding-left: var(--page-intent);
    padding-right: var(--page-intent);
}

.navbar {
   /*background: var(--white-color);*/
  height: var(--navbar-height) ;
  back
  position: sticky;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
 /* position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
}

.navbar a {
 /*color: var(--dark-color);*/
  /* text-decoration: none;
  padding: 10px 15px;*/
}

.navbar a:hover,
.navbar-dark .navbar-nav .nav-link.active {
   /*color: var(--dark-color);*/
}


.demo-ribbon {
  position: fixed;
  top: 100px;
  left: -48px;
  z-index: 9999;
  
  width: 180px;
  padding: 10px 0;
  
  background: var(--highlight-icon-color);;
  color: white;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.5px;
  
  transform: rotate(-45deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/********Team box********/

.project-team-box {
  margin-top: 24px;
  margin-bottom: 24px;
}

.project-team-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--p-color);
  margin-bottom: 18px;
}

.project-team-grid {
  display: grid;
 /* grid-template-columns: repeat(3, minmax(0, 1fr));*/
  gap: 18px;
}

.team-card {
  margin-left: 10px;
  border-radius: 15px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 18px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}

.team-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.team-photo {
  width: 135px;
  height: 135px;
  border-radius: 500px;
  object-fit: cover;
  flex-shrink: 0;
}

.team-main {
  min-width: 0;
  width: 100%;
}

.team-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.team-name {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--p-color);
  line-height: 1.2;
}

.team-title {
  margin: 4px 0 0 0;
  font-size: 0.92rem;
  color: #5c5c5c;
  line-height: 1.35;
}

.team-linkedin {
  color: var(--highlight-icon-color);
  font-size: 28px;
  text-decoration: none;
  flex-shrink: 0;
}

.team-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.team-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.team-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8a8a8a;
}

.team-value {
  font-size: 0.92rem;
  color: var(--p-color);
  line-height: 1.35;
}

.team-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.team-lang {
  display: inline-block;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
}

.lang-de { background: #FDE7D7; color: #B44A0A; }
.lang-en { background: #E8F1FD; color: #215CA8; }
.lang-fr { background: #EAF7EE; color: #2D7A46; }
.lang-es { background: #FCE8EE; color: #A63B63; }
.lang-it { background: #FFF2DD; color: #9A6500; }
.lang-default { background: #F6A31350; color: #F6A313; }

@media (max-width: 900px) {
  .project-team-grid {
    grid-template-columns: 1fr;
  }
}












.article-header {
  margin-bottom: 20px;
}

.article-header-image {
  width: 100%;
  height: 450px; /* Höhe des Bildes */
  object-fit: cover; /* Skaliert das Bild ohne Verzerrung */
  display: block;
  object-position: center;
}

#quarto-content>* {
  padding-top: 0;
}

@media (min-width: 992px) {
    body .page-columns {
    display: grid !important;
    gap: 0 !important;
    grid-template-columns: [screen-start] var(--page-intent)
    [screen-start-inset] 0
    [page-start page-start-inset] 00
    [body-start-outset] 0
    [body-start] 0
    [body-content-start] minmax(500px, calc(850px - 3em)) 
    [body-content-end] 1.5em 
    [body-end] 35px 
    [body-end-outset] minmax(75px, 1000px) 
    [page-end-inset] 35px 
    [page-end] 5fr 
    [screen-end-inset] 1.5em 
    [screen-end] !important;
}
}


/* .nav-footer defined at bottom of file */


.author-box {
display: block;
    width: 200px;
    margin-bottom: 20px;
    align-items: center;
    padding: 0;
    border-radius: 10px;
    background-color: transparent;
}


.author-image {
  width: 130px;
  height: 130px;
  margin-left:35px;
  margin-right:35px;
  border-radius: 50%;
  object-fit: cover;
}

.author-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.author-name {
  font-size: 18px;
  font-weight: bold;
  margin: auto;
  color: #E7490C;
}


.social-icons {
  display: flex; /* Use flexbox for layout */
  margin: auto;
  justify-content: center; /* Center the buttons horizontally */
  align-items: center; /* Center the buttons vertically (if needed) */
  gap: 5px; /* Add space between the buttons */
}

.social-icon {
  display: inline-block; /* Ensure buttons are inline-block */
  background: var(--white-color);
  font-size: 24px;
  color: var(--dark-color);
  text-decoration: none;
  border-radius: 50%; /* Optional: For round buttons */
  width: 40px; /* Set width for button */
  height: 40px; /* Set height for button */
  display: flex;
  justify-content: center;
  align-items: center;
}




.article-meta {
  font-weight: bold;
  margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.date-published {
 
}

.spaced {
  margin-right: 10px;
}

.divider {
}

.author {
}

.author-link {
  text-decoration: none;
  color: var(--dark-color);
}

.author-link:hover {

}

.toc-only {
  color: #FFF;
  font-size: 0;
  padding: 0;
  margin:0;
}

.highlight {
  background-color: #F6A313AA;
  padding: 0 4px;
}


.highlight-box {
  margin-top: 25px;
  margin-bottom: 25px;
  padding-top: 25px;
  padding-bottom: 25px;
  background: var(--dark-color);
  color: var(--white-color);
}



.highlight-title h3 {
 /* font-size: 22px;*/
  font-weight: 100;
  letter-spacing: 10px;
  text-transform: uppercase;
  color:var(--white-color);
}
.highlight-title h2 {
 /* font-size: 22px;*/
  font-weight: 100;
  letter-spacing: 10px;
  text-transform: uppercase;
  color:var(--white-color);
}

.highlight-box h3,
.highlight-box h4 {
  color: var(--white-color);
}

.responsive-video {
  display: block;
  position: relative;
  width: 90%; /* Ensure it fits the column width */
  padding-bottom: 177.78%; /* Aspect ratio for mobile format (9:16) */
  height: 0;
  overflow: hidden;
  border-radius: 5px;
  margin: 0 auto;
  max-height: 85vh; /* Ensure iframe adheres to max height */
}

.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  border: none;
  max-height: 85vh; /* Maximum height constraint */
}


.hanging-indent div.csl-entry {
    margin-left: 2em;
    text-indent: -2em;
    margin-bottom: 20px;
    font-size: 12px;
}
/* Styling for the container */
.title-list {
  list-style-type: none; /* Remove default bullets globally */
  padding: 0;
}

/* Main list items (li) */
.title-list > li {
  font-size: 1.25em; /* H4 equivalent */
  font-weight: bold;
  margin-bottom: 5px; /* Small gap after main title */
  list-style-type: square; /* Use square bullets */
  color: #E7490C; /* Square bullet color */
}

.title-list > li::marker {
  color: #E7490C; /* Square bullet color */
  content: "■ "; /* Use square symbol for a clean square look */
}

/* Sub-list items (sub-li, nested inside li) */
.title-list li > ul > li {
  font-size: 0.9em; /* H6 equivalent */
  color: gray; /* Subtitle styling */
  list-style-type: none; /* Remove bullet points */
  margin-left: 0; /* Align with the main list */
  padding-left: 0; /* Align left */
  margin-bottom: 20px;
}

.title-list li > ul {
  padding-left: 0; /* Align left */
}

/* Meta information */
.meta-info {
  font-size: 0.85em; /* Smaller font for meta details */
  color: darkgray;
  margin-top: 5px;
  display: block; /* Align meta-info consistently */
}



.quarto-sidebar-toggle {
    border-color: #dee2e6;
    background: white !important;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-style: solid;
    border-width: 0;
    overflow: hidden;
    border-top-width: 0px;
    padding-top: 0px !important;
}

/*---------------------------------------
  FOOTER
-----------------------------------------*/
.nav-footer {
  background: var(--gradient-dark) !important;
  padding-top: 120px !important;
  padding-bottom: 50px !important;
}


.nav-footer p {
  font-size: 16px;
  text-align: left;
  color: white;
}


.sda-footer {
  background: var(--gradient-dark);
  padding: 75px var(--page-intent);
}

.sda-footer-inner {
  width: 70%;
}

.sda-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.sda-footer-logo {
  height: 54px;
  width: auto;
}

.sda-footer-social {
  display: flex;
  gap: 12px;
}

.sda-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary-color) !important;
  font-size: 20px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.sda-social-btn:hover {
  background: var(--highlight-icon-color);
  color: #ffffff !important;
}

.sda-footer-hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.35);
  margin: 0 0 32px 0;
}

.sda-footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.sda-footer-link {
  color: rgba(255,255,255,0.85) !important;
  font-size: 14px;
  text-decoration: none;
}

.sda-footer-link:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

.sda-footer-address {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  line-height: 1.8;
  text-align: right;
  margin: 0;
}
