body {
	font-family: Calibri, sans-serif;
	margin: 0;
	padding: 20px;
	background-color: #f9f9f9;
	color: #333;
}
.container {
	display: flex;
	max-width: 1000px;
	margin: 0 auto;
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}
.photo {
	width: 300px;
	height: 500px;
	object-fit: cover;
}
.content {
	padding: 30px;
	flex: 1;
}
h1 {
	color: #2c5aa0;
	border-bottom: 2px solid #4a90e2;
	padding-bottom: 10px;
	font-size: 40px;
}
.presentation {
	margin-bottom: 30px;
}
.tabs {
	display: flex;
	border-bottom: 2px solid #4a90e2;
	margin-bottom: 10px;
}
.tab-button {
	padding: 12px 24px;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 16px;
	color: #555;
	border-bottom: 3px solid transparent;
	transition: all 0.3s;
	font-weight: 500;
}
.tab-button:hover {
	color: #2c5aa0;
	background-color: #f0f8ff;
}
.tab-button.active {
	color: #2c5aa0;
	border-bottom-color: #4a90e2;
	font-weight: bold;
}
.tab-content {
	display: none;
	padding: 15px 0;
	color: #444;
}
.tab-content.active {
	display: block;
}
.tab-content h3 {
	color: #2c5aa0;
	margin-top: 0;
}
.tab-content ul {
	list-style-type: none;
	padding: 0;
}
.tab-content li {
	padding: 8px 0;
	border-bottom: 1px solid #eee;
}
.footer {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	margin-top: 30px;
	padding: 20px;
	width: 100%;
}

.logo {
	height: 60px;
	opacity: 0.8;
	transition: opacity 0.3s;
}

.logo:hover {
	opacity: 1;
}
.image-text-container {
	display: flex;
	align-items: center; /* Aligne verticalement au centre */
	margin: 0 auto 15px; 
	gap: 20px; /* Espacement entre l'image et le texte */
	margin-bottom: 20px; /* Espacement en bas */
}

/* Style pour l'image */
.publication-image {
	width: 400px; /* Largeur de l'image */
	height: auto; /* Hauteur automatique */
	border-radius: 4px; /* Coins arrondis */
	object-fit: cover; /* Ajuste l'image pour remplir la zone */
	display: block;
    margin: 0 auto;
}

/* Style pour le texte à côté de l'image */
.publication-text {
	flex: 1; /* Prend tout l'espace restant */
}

figcaption {
	text-align: center;
}
.tooltip {
      position: relative;
      display: inline-block;
      cursor: pointer;
}
.tooltip .tooltiptext {
      visibility: hidden;
      width: 120px;
      background-color: #555;
      color: #fff;
      text-align: center;
      border-radius: 6px;
      padding: 5px;
      position: absolute;
      z-index: 1;
      bottom: 125%;
      left: 50%;
      margin-left: -60px;
      opacity: 0;
      transition: opacity 0.3s;
}
.tooltip:hover .tooltiptext {
      visibility: visible;
      opacity: 1;
}

