@charset "UTF-8";
.site-header {
  border-top: 5px solid #424242;
  border-bottom: 1px solid #e8e8e8;
  position: relative;
  background: #fff;
}

.wrapper.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 0;
}

.site-title {
  font-size: 1.6rem;
  font-weight: 300;
  color: #424242;
  flex-shrink: 0;
  white-space: nowrap;
  margin-right: 1rem;
}

.site-author {
  font-weight: 500;
  color: #444;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  flex-grow: 1;
  text-align: center;
  min-width: 0;
}

/* Filet de séparation <hr> - valable partout */
.filet-gris {
  border: none;
  border-top: 1px solid #e8e8e8;
  margin: 2em 0;
}

.markdown-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  font-size: 1em;
  background: #fff;
}

.markdown-body th, .markdown-body td {
  border: 1px solid #eaeaea;
  padding: 0.7em 1em;
  text-align: left;
  vertical-align: top;
}

.markdown-body th {
  background: #f8f8f8;
  color: #333;
  font-weight: 600;
}

.markdown-body tr:nth-child(even) {
  background: #fafafa;
}

.markdown-body tr:hover {
  background: #f0f0f0;
}

.bio-photo {
  display: block;
  max-width: 220px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.site-nav {
  position: relative;
  line-height: normal;
  text-align: right;
}

.burger-icon {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1001;
}
.burger-icon svg {
  fill: #424242;
  transition: fill 0.2s;
}
.burger-icon:hover svg {
  fill: #111;
}

.trigger {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  padding: 0.5rem 0;
  z-index: 1500;
  text-align: right;
}
.trigger.open {
  display: block;
}

.cust-menu-link {
  display: block;
  padding: 0.5rem 1.2rem;
  margin: 0.1rem 0;
  color: #222;
  text-decoration: none;
  transition: background 0.2s;
  text-align: right;
  border-radius: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cust-menu-link:hover {
  background: #f8f8f8;
}

.cust-menu-link.active {
  color: #aaa !important;
  background: #f5f5f5 !important;
  pointer-events: none;
  font-style: italic;
}

#back-to-top {
  display: none;
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  background: #424242;
  color: #fff;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.5rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1200;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: opacity 0.3s;
  opacity: 0.8;
  line-height: 2.5rem;
}

#back-to-top:hover {
  opacity: 1;
  background: #222;
}

@media (max-width: 700px) {
  .wrapper.header-flex {
    flex-direction: column;
    gap: 0.5rem;
  }
  .site-author {
    text-align: left;
    width: 100%;
  }
  .site-nav {
    width: 100%;
    text-align: left;
  }
}
.star-triangle {
  text-align: center;
  margin: 1rem 0;
  font-size: 1.5rem;
  line-height: 0.8;
  color: #666; /* Optionnel : couleur des étoiles */
}

/*# sourceMappingURL=custom.css.map */