/* -----------------------
   Fonts face
-------------------------- */
/* Thin */
@font-face {
  font-family: "Marianne";
  src: url("../fonts/Marianne-Thin.woff2") format("woff2"),
    url("../fonts/Marianne-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Marianne";
  src: url("../fonts/Marianne-Thin_Italic.woff2") format("woff2"),
    url("../fonts/Marianne-Thin_Italic.woff") format("woff");
  font-weight: 100;
  font-style: italic;
}

/* Light */
@font-face {
  font-family: "Marianne";
  src: url("../fonts/Marianne-Light.woff2") format("woff2"),
    url("../fonts/Marianne-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Marianne";
  src: url("../fonts/Marianne-Light_Italic.woff2") format("woff2"),
    url("../fonts/Marianne-Light_Italic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
}

/* Regular */
@font-face {
  font-family: "Marianne";
  src: url("../fonts/Marianne-Regular.woff2") format("woff2"),
    url("../fonts/Marianne-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Marianne";
  src: url("../fonts/Marianne-Regular_Italic.woff2") format("woff2"),
    url("../fonts/Marianne-Regular_Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}

/* Medium */
@font-face {
  font-family: "Marianne";
  src: url("../fonts/Marianne-Medium.woff2") format("woff2"),
    url("../fonts/Marianne-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Marianne";
  src: url("../fonts/Marianne-Medium_Italic.woff2") format("woff2"),
    url("../fonts/Marianne-Medium_Italic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
}

/* Bold */
@font-face {
  font-family: "Marianne";
  src: url("../fonts/Marianne-Bold.woff2") format("woff2"),
    url("../fonts/Marianne-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Marianne";
  src: url("../fonts/Marianne-Bold_Italic.woff2") format("woff2"),
    url("../fonts/Marianne-Bold_Italic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
}

/* ExtraBold */
@font-face {
  font-family: "Marianne";
  src: url("../fonts/Marianne-ExtraBold.woff2") format("woff2"),
    url("../fonts/Marianne-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Marianne";
  src: url("../fonts/Marianne-ExtraBold_Italic.woff2") format("woff2"),
    url("../fonts/Marianne-ExtraBold_Italic.woff") format("woff");
  font-weight: 800;
  font-style: italic;
}
/* -----------------------
   Variables (faciles à modifier)
-------------------------- */
:root {
  --color-primary: #0053a4; /* Bleu FT */
  --color-secondary: white; /* Fond clair */
  --color-text: #1a1a1a; /* Texte principal */
  --color-link: #0053a4;
  --color-accent: #0072ce; /* Accent/hover */
  --font-main: "Marianne", "Segoe UI", Roboto, sans-serif;
  --spacing: 1rem;
  --max-width: 960px;
}

/* -----------------------
   Reset + base
-------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

main {
  flex: 1;
}
html,
body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  /* background: white; */
  height: 100%;
  display: flex;
  flex-direction: column;
}

body {
  padding: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Effet de bulles flottantes en arrière-plan - Version très discrète */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(0, 83, 164, 0.015) 0%, transparent 70%),
    radial-gradient(circle at 80% 30%, rgba(0, 142, 206, 0.01) 0%, transparent 70%),
    radial-gradient(circle at 40% 70%, rgba(40, 50, 118, 0.012) 0%, transparent 70%),
    radial-gradient(circle at 90% 80%, rgba(225, 1, 14, 0.01) 0%, transparent 70%),
    radial-gradient(circle at 10% 90%, rgba(255, 224, 0, 0.015) 0%, transparent 70%),
    radial-gradient(circle at 60% 10%, rgba(242, 159, 196, 0.01) 0%, transparent 70%),
    radial-gradient(circle at 30% 50%, rgba(0, 83, 164, 0.008) 0%, transparent 70%),
    radial-gradient(circle at 70% 60%, rgba(0, 142, 206, 0.01) 0%, transparent 70%),
    radial-gradient(circle at 15% 40%, rgba(40, 50, 118, 0.01) 0%, transparent 70%),
    radial-gradient(circle at 85% 15%, rgba(225, 1, 14, 0.008) 0%, transparent 70%),
    radial-gradient(circle at 50% 85%, rgba(255, 224, 0, 0.012) 0%, transparent 70%),
    radial-gradient(circle at 25% 75%, rgba(242, 159, 196, 0.01) 0%, transparent 70%),
    radial-gradient(circle at 75% 45%, rgba(0, 83, 164, 0.01) 0%, transparent 70%),
    radial-gradient(circle at 5% 60%, rgba(0, 142, 206, 0.008) 0%, transparent 70%),
    radial-gradient(circle at 95% 40%, rgba(40, 50, 118, 0.01) 0%, transparent 70%),
    radial-gradient(circle at 45% 25%, rgba(225, 1, 14, 0.01) 0%, transparent 70%),
    radial-gradient(circle at 65% 95%, rgba(255, 224, 0, 0.01) 0%, transparent 70%),
    radial-gradient(circle at 35% 15%, rgba(242, 159, 196, 0.008) 0%, transparent 70%),
    radial-gradient(circle at 55% 65%, rgba(0, 83, 164, 0.01) 0%, transparent 70%),
    radial-gradient(circle at 80% 5%, rgba(0, 142, 206, 0.01) 0%, transparent 70%);
  animation: floatingBubbles 25s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes floatingBubbles {
  0%, 100% {
    opacity: 0.1;
    transform: translateY(0px) scale(1);
  }
  25% {
    opacity: 0.2;
    transform: translateY(-3px) scale(1.01);
  }
  50% {
    opacity: 0.15;
    transform: translateY(-2px) scale(0.995);
  }
  75% {
    opacity: 0.25;
    transform: translateY(-4px) scale(1.005);
  }
}

a {
  color: var(--color-link);
  text-decoration: none;
}

a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

/* -----------------------
   Containers
-------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--spacing);
  background: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

/* -----------------------
   Headings & Typography
-------------------------- */
h1,
h2,
h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 2rem;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 0.25rem;
}

h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
}

p {
  margin-bottom: 1rem;
}

small {
  color: #666;
}

/* -----------------------
   Navigation
-------------------------- */
nav {
  background: var(--color-primary);
  color: white;
  padding: 0.75rem var(--spacing);
  margin-bottom: var(--spacing);
}

nav a {
  color: white;
  margin-right: 1rem;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* -----------------------
   Project Cards
-------------------------- */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 2rem 1rem;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

/* Responsive grid pour les projets */
@media (min-width: 768px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .project-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 767px) {
  .project-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
  }
}
.project-card {
  background: #fff;
  border: 1px solid #e8f0fe;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 83, 164, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0053a4, #0078d4);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.project-card:hover {
  box-shadow: 0 8px 24px rgba(0, 83, 164, 0.15);
  transform: translateY(-4px);
  border-color: #0053a4;
}

.project-card:hover::before {
  transform: scaleX(1);
}

.project-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0053a4;
  line-height: 1.3;
  transition: color 0.3s ease;
  text-align: center;
}

.project-card:hover h3 {
  color: #003c7d;
}

.project-card p {
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  text-align: center;
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-card .tags-container {
  text-align: center;
  margin: 1rem 0;
}

.project-card .tag {
  display: inline-block;
  background: linear-gradient(135deg, #e8f0fe, #d1e7ff);
  color: #0053a4;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  margin: 0.25rem 0.25rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 83, 164, 0.1);
}

.project-card:hover .tag {
  background: linear-gradient(135deg, #d1e7ff, #b8d4f0);
  transform: scale(1.05);
}

.project-card .button {
  margin-top: 1.5rem;
  align-self: stretch;
  text-align: center;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #0053a4, #0078d4);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 83, 164, 0.2);
}

.project-card .button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.project-card .button:hover {
  background: linear-gradient(135deg, #003c7d, #0053a4);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 83, 164, 0.3);
}

.project-card .button:hover::before {
  left: 100%;
}

/* Images des projets */
.project-card img {
  max-height: 80px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 1rem auto;
  filter: drop-shadow(0 2px 4px rgba(0, 83, 164, 0.1));
  transition: all 0.3s ease;
}

/* Icône de remplacement avec première lettre */
.project-icon {
  width: 80px !important;
  height: 80px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 2rem !important;
  font-weight: bold !important;
  color: white !important;
  margin: 0 auto 1rem auto !important;
  background: linear-gradient(135deg, #0053a4, #1e88e5) !important;
  box-shadow: 0 4px 12px rgba(0, 83, 164, 0.3) !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
}

.project-card:hover .project-icon {
  transform: scale(1.05) !important;
  box-shadow: 0 6px 20px rgba(0, 83, 164, 0.4) !important;
}

.project-card:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0, 83, 164, 0.2));
}

/* Métadonnées des projets */
.project-card .project-meta {
  margin: 1rem 0;
  padding: 1rem;
  background: linear-gradient(135deg, #f8f9ff, #e8f0fe);
  border-radius: 12px;
  border: 1px solid rgba(0, 83, 164, 0.1);
  text-align: center;
}

.project-card .project-meta p {
  margin: 0.25rem 0;
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
  text-align: center;
}

.project-card .project-meta strong {
  color: #0053a4;
  font-weight: 600;
}
/* -----------------------
   Footer
-------------------------- */
footer {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f0fe 100%);
  padding: 3rem 1rem 2rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  margin-top: 4rem;
  border-top: 1px solid #e8f0fe;
  position: relative;
}


.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content .icon {
  height: 32px;
  width: auto;
  vertical-align: middle;
  opacity: 0.8;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 83, 164, 0.1));
}

.footer-content .icon:hover {
  opacity: 1;
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(0, 83, 164, 0.2));
}

.footer-content p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 500;
}

footer a {
  color: #0053a4;
  text-decoration: none;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

footer a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #0053a4, #0078d4);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 83, 164, 0.3);
  text-decoration: none;
}
/* -----------------------
   Project Actions & Share Buttons
-------------------------- */
.project-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.share-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.share-btn {
  background: #f8f9ff;
  border: 1px solid #e8f0fe;
  border-radius: 8px;
  padding: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #0053a4;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
}

.share-btn:hover {
  background: #0053a4;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 83, 164, 0.3);
}

.share-btn svg {
  transition: transform 0.3s ease;
}

.share-btn:hover svg {
  transform: scale(1.1);
}

/* Responsive pour les boutons de partage */
@media (max-width: 767px) {
  .project-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .share-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .share-btn {
    flex: 1;
    max-width: 50px;
  }
}

/* -----------------------
   Responsive
-------------------------- */
@media screen and (max-width: 600px) {
  body {
    padding: 0.5rem;
  }

  nav {
    padding: 0.5rem;
  }

  .container {
    padding: 0.5rem;
  }

  /* Amélioration du footer mobile */
  footer {
    padding: 2rem 1rem 1.5rem 1rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-content p {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
  }

  .footer-content .icon {
    height: 24px;
  }
}

/* -----------------------
   Navbar France Travail
-------------------------- */
.navbar {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f0fe 100%);
  border-bottom: 1px solid #e8f0fe;
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 83, 164, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.navbar-logo img {
  height: 80px;
}

.navbar-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar-links li a {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-links li a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #0053a4, #0078d4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 83, 164, 0.3);
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
  .navbar-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-links {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
}

/* i18n */

.lang-button {
  background: linear-gradient(135deg, #ffffff, #f8f9ff);
  border: 2px solid #0053a4;
  color: #0053a4;
  cursor: pointer;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lang-button:hover {
  background: linear-gradient(135deg, #0053a4, #0078d4);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 83, 164, 0.3);
}

/* -----------------------
         Theme Grid
-------------------------- */

/* Amélioration du conteneur principal */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 83, 164, 0.08);
  backdrop-filter: blur(10px);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Style pour la section principale */
main.container h1 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0053a4;
  line-height: 1.2;
}

main.container p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 3rem;
  max-width: 800px;
}

#themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Responsive grid pour 5 éléments */
@media (min-width: 768px) {
  #themes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  #themes-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

/* Pour les écrans très larges, on peut faire 2+3 */
@media (min-width: 1400px) {
  #themes-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Améliorations mobiles */
@media (max-width: 767px) {
  #themes-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }
  
  .theme-card {
    padding: 1.5rem;
  }
  
  .theme-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .theme-icon {
    max-width: 32px;
    max-height: 32px;
  }
}

.theme-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid #e8f0fe;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 83, 164, 0.08);
  text-decoration: none !important;
  color: inherit;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.theme-card:hover {
  text-decoration: none !important;
}

.theme-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0053a4, #0078d4);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.theme-card:hover {
  box-shadow: 0 8px 24px rgba(0, 83, 164, 0.15);
  transform: translateY(-4px);
  border-color: #0053a4;
}

.theme-card:hover::before {
  transform: scaleX(1);
}

.theme-icon-wrapper {
  width: 72px;
  height: 72px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9ff, #e8f0fe);
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.theme-card:hover .theme-icon-wrapper {
  background: linear-gradient(135deg, #e8f0fe, #d1e7ff);
  transform: scale(1.05);
}

.theme-icon {
  max-width: 40px;
  max-height: 40px;
  filter: drop-shadow(0 2px 4px rgba(0, 83, 164, 0.1));
  transition: all 0.3s ease;
}

.theme-card:hover .theme-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(0, 83, 164, 0.2));
}

/* Bulles colorées pour les thèmes */
.theme-bubble {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 83, 164, 0.15);
  transition: all 0.3s ease;
  margin: 0 auto;
}

.theme-card:hover .theme-bubble {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 83, 164, 0.25);
}

.theme-card h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0053a4;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  transition: color 0.3s ease;
  text-decoration: none;
}

.theme-card:hover h2 {
  color: #003c7d;
  text-decoration: none;
}

.theme-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
}

.theme-card:hover p {
  text-decoration: none;
}

/* Forcer l'absence de soulignement sur tous les éléments des cartes */
.theme-card * {
  text-decoration: none !important;
}

.theme-card:hover * {
  text-decoration: none !important;
}

/* -----------------------
         Construction banner
-------------------------- */

.construction-banner {
  background-color: #fff3cd;
  color: #856404;
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  border-bottom: 1px solid #ffeeba;
  font-weight: 500;
}
