/* ======================================== */
/* Page Infos – bio, CV, téléchargements     */
/* ======================================== */

.infos-content a {
  color: inherit;
  text-decoration: none;
  font-weight: normal;
  transition: color 0.2s;
}
.infos-content a:hover {
  color: #555;
}

/* Mise en page deux colonnes */
.infos-layout {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  align-items: flex-start;
  flex: 1;
  max-width: 100%;
}

.infos-left {
  flex: 0 0 40%;
  max-width: 40%;
}

.infos-right {
  flex: 1;
  min-width: 0;
}

/* Liens de téléchargement portfolio */
.portfolio-links {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
}
.portfolio-links li {
  margin-bottom: 10px;
}
.portfolio-links a {
  color: inherit;
  text-decoration: none;
  font-weight: normal;
  transition: color 0.2s;
}
.portfolio-links a:hover {
  color: #555;
}

/* CV */
.cv-section {
  margin-bottom: 2rem;
}
.cv-section h2 {
  font-size: 0.7rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}
.cv-entry {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.4rem;
  line-height: 1.4;
}
.cv-year {
  flex: 0 0 auto;
  min-width: 90px;
  color: #555;
}
.cv-detail {
  flex: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .infos-layout {
    flex-direction: column;
  }
  .infos-left,
  .infos-right {
    max-width: 100%;
    flex: 1;
  }
}