/* ===========================
   VARIABLES & RESET
   =========================== */

:root {
  --color-primary: rgb(25, 25, 112);
  --color-accent: rgb(96, 165, 250);
  --color-background: rgb(247, 248, 250);
  --color-white: #ffffff;
  --color-text: rgb(31, 41, 55);
  --color-text-light: rgb(107, 114, 128);
  --color-border: rgb(229, 231, 235);

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);

  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
*/
body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ===========================
   ANIMATIONS
   =========================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* ===========================
   UTILITIES
   =========================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */

.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.sticky-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.logo:hover {
  color: var(--color-accent);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-light);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--color-accent);
}

.nav-links .btn-contact {
  padding: 0.5rem 1.25rem;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-full);
  color: var(--color-accent);
}

.nav-links .btn-contact:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
}

@media (max-width: 768px) {
  /* On annule le masquage global et le style "tiroir" */
  .nav-links {
    display: flex; /* On affiche le conteneur */
    position: static;
    background: transparent;
    flex-direction: row; /* On garde l'alignement horizontal */
    padding: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    width: auto;
  }
  /* 2. On raccourcit le Logo (Nom) */
  .logo {
    font-size: 0; /* On cache le texte "CÉLINE DEMONGEOT" */
    display: flex;
    align-items: center;
  }

  .logo::after {
    content: "C. DEMONGEOT"; /* On affiche une version courte */
    font-size: 1.1rem; /* Taille de police lisible */
    font-weight: 800;
    color: var(--color-primary);
  }
  /* On cache spécifiquement les liens textes */
  .nav-links a:not(.btn-contact) {
    display: none;
  }

  /* On ajuste le bouton contact pour le mobile */
  .nav-links .btn-contact {
    display: flex;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }

  /* On supprime le bouton burger s'il traîne encore dans le CSS */
  .mobile-menu-btn {
    display: none !important;
  }
}

/* ===========================
   HERO SECTION
   =========================== */

.hero-section {
  padding: 5rem 0;
  animation: fadeIn 0.8s ease-out;
}

.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-text-light);
  border-left: 4px solid var(--color-accent);
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 1.125rem;
  color: var(--color-text-light);
  max-width: 42rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  background-color: rgb(30, 58, 138);
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background-color: rgb(243, 244, 246);
}

/* LinkedIn Button Style */
.btn-linkedin {
  background-color: #0077b5;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #0077b5;
}

.btn-linkedin:hover {
  background-color: #005582;
  border-color: #005582;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
  color: #ffffff;
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.profile-photo {
  width: 12rem;
  height: 12rem;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 4px solid var(--color-accent);
  box-shadow: var(--shadow-xl);
  margin: 0 auto;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ISTQB Card Styles */
.istqb-card {
  background-color: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.istqb-title-with-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.istqb-small-logo {
  height: 47px;
  width: auto;
}

.card-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.card-title i {
  color: rgb(234, 179, 8);
}

.certification-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.certification-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--color-text);
}

.certification-list i {
  color: rgb(34, 197, 94);
  width: 1rem;
  height: 1rem;
}

/* ===========================
   ABOUT SECTION
   =========================== */

.about-section {
  background-color: var(--color-white);
  padding: 5rem 0;
  border-top: 1px solid var(--color-border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.lead-text {
  font-size: 1.25rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.body-text {
  font-size: 1.125rem;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-card {
  background-color: rgb(239, 246, 255);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
  margin-top: 2rem;
}

.card-subtitle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.card-subtitle i {
  color: var(--color-accent);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--color-text);
}

.contact-info p {
  font-size: 0.95rem;
}

.contact-info strong {
  font-weight: 600;
}

.section-subtitle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.section-subtitle i {
  color: var(--color-accent);
}

.education-section,
.interests-section {
  margin-bottom: 3rem;
}

.education-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.education-item {
  padding: 1rem;
  background-color: rgb(249, 250, 251);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.education-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.education-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.education-meta {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.interests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.interest-card {
  padding: 1rem;
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
}

.interest-card:hover {
  background-color: rgb(249, 250, 251);
}

.interest-card i {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 0.5rem;
  color: var(--color-accent);
}

.interest-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.interest-desc {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

/* ===========================
   EXPERIENCE SECTION (Timeline & Accordion)
   =========================== */

.experience-section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.section-title-large {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
}

.timeline {
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
}

/* Accordion: Override default timeline-item to remove grid and behave as block */
.timeline-item {
  display: block !important;
  grid-template-columns: none !important;
  gap: 0 !important;
  margin-bottom: 2rem;
  position: relative;
  animation: fadeInUp 0.6s ease-out backwards;
}

/* Accordion: Hide elements from the old timeline design */
.timeline-marker {
  display: none;
}

.timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}
.timeline-item:nth-child(2) {
  animation-delay: 0.2s;
}
.timeline-item:nth-child(3) {
  animation-delay: 0.3s;
}
.timeline-item:nth-child(4) {
  animation-delay: 0.4s;
}
.timeline-item:nth-child(5) {
  animation-delay: 0.5s;
}

/* Accordion: Override timeline-content to support behavior */
.timeline-content {
  background-color: var(--color-white);
  padding: 0 !important; /* Reset padding for accordion */
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  overflow: hidden;
  cursor: default;
  display: block !important;
}

.timeline-content:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}

/* Accordion: Header - Always visible area */
.timeline-header {
  padding: 1.5rem;
  cursor: pointer;
  user-select: none;
  position: relative;
  transition: background-color 0.3s ease;
}

.timeline-header:hover {
  background-color: #f9fafb;
}

/* Rotating Arrow Indicator */
.timeline-header::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--color-accent);
  transition: transform 0.3s ease;
}

.timeline-item.expanded .timeline-header::after {
  transform: translateY(-50%) rotate(180deg);
}

.timeline-header.no-arrow::after {
  display: none !important;
}

.company-logo {
  margin-bottom: 1rem;
}

.company-logo img {
  max-width: 150px;
  height: auto;
}

/* Layout for Header Elements */
.exp-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

/* Override date style for accordion context */
.timeline-item .timeline-date {
  text-align: left;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-accent);
}

.timeline-summary {
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.click-hint {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-top: 0.5rem;
  opacity: 0.8;
}

/* Accordion: Details - Hidden by default */
.timeline-details {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s ease,
    padding 0.3s ease;
  padding: 0 1.5rem;
  border-top: 1px solid transparent;
  background-color: var(--color-white);
}

.timeline-item.expanded .timeline-details {
  max-height: 3000px;
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.timeline-details-inner {
  color: var(--color-text);
  line-height: 1.7;
}

/* Sections in details */
.detail-section {
  margin-bottom: 1.5rem;
}

.detail-section:last-child {
  margin-bottom: 0;
}

.detail-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-section-title::before {
  content: "";
  width: 4px;
  height: 1rem;
  background-color: var(--color-accent);
  border-radius: 2px;
}

.detail-section-content {
  color: var(--color-text);
  line-height: 1.7;
}

.detail-section-content ul {
  margin-left: 1.5rem;
  list-style-type: disc;
}

.detail-section-content li {
  margin-bottom: 0.5rem;
}

.detail-section-content li strong {
  color: var(--color-primary);
}

/* Badges Styles (Legacy for badges in text, now mainly handled by GEO classes) */
.experience-tech-stack {
  margin-top: 0;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===========================
   SKILLS SECTION
   =========================== */

.skills-section {
  background-color: rgb(239, 246, 255);
  padding: 5rem 0;
  border-top: 1px solid var(--color-border);
}

/* Card Style for Skill Tables */
.skills-table {
  background-color: var(--color-white, #fff);
  border: 1px solid var(--color-border, #e5e7eb);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.skills-table:hover {
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

/* 3 Pillars of Competence Style */
.skills-focus-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.skill-pillar {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-top: 5px solid var(--color-primary);
}

.skill-pillar:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pillar-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f3f4f6;
}

.pillar-icon {
  color: var(--color-primary);
  width: 32px;
  height: 32px;
}

.pillar-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.pillar-intro {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  font-style: italic;
}

.pillar-list {
  list-style: none;
  padding: 0;
}

.pillar-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.pillar-list li::before {
  content: "•";
  color: var(--color-accent);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Tech Tags Cloud */
.tech-category {
  margin-bottom: 1rem;
}
.tech-category strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.tech-tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tags-cloud span {
  background-color: #f3f4f6;
  color: #374151;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid #e5e7eb;
}

/* ===========================
   CONTACT SECTION
   =========================== */

.contact-section {
  padding: 5rem 0;
}

.contact-wrapper {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.contact-intro {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.contact-card-item {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.contact-card-item:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.contact-card-item i {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 1rem;
  color: var(--color-accent);
}

.contact-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.contact-card-value {
  font-size: 1rem;
  font-family: monospace;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.btn-primary-small,
.btn-secondary-small {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary-small {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn-primary-small:hover {
  background-color: rgb(37, 99, 235);
}

.btn-secondary-small {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.btn-secondary-small:hover {
  background-color: rgb(249, 250, 251);
}

/* ===========================
   FOOTER
   =========================== */

.footer {
  background-color: rgb(31, 41, 55);
  color: var(--color-white);
  padding: 2rem 0;
  margin-top: 3rem;
}

.footer .container {
  text-align: center;
}

.footer p {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  color: rgb(156, 163, 175);
}

.footer-links a {
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-accent);
}

/* ===========================
   RESPONSIVE ADJUSTMENTS
   =========================== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 1.5rem;
  }
  .hero-aside {
    align-items: center;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .exp-meta {
    flex-direction: column;
    gap: 0.25rem;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .btn-linkedin {
    justify-content: center;
  }

  /* Timeline responsive adjustments moved inside the accordion section */
}

@media (max-width: 640px) {
  .hero-section,
  .about-section,
  .experience-section,
  .skills-section,
  .contact-section {
    padding: 3rem 0;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.25rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .interests-grid {
    grid-template-columns: 1fr;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   SÉMANTIQUE GEO (IA) - Styles invisibles
   =========================== */

/* Classe utilitaire pour cacher les éléments visuellement
   mais les laisser lisibles pour Google/IA/Lecteurs d'écran */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Conteneur de la liste de définition */
.tech-list-semantic {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

/* Le wrapper div qui contient la paire dt/dd */
.tech-pair {
  display: contents; /* Permet aux enfants (dd) de se comporter comme s'ils étaient en direct dans le flex */
}

/* La définition (la valeur) qui prend le style du badge */
.tech-pair dd {
  margin: 0; /* Reset de la marge par défaut du navigateur */
  /* On réapplique ici tes styles .badge existants */
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}
