/* ===================================
   POLICES PERSONNALISÉES
   =================================== */
@font-face {
  font-family: 'CcMigHtyMOutH';
  src: url('fonts/CcMigHtyMOutH.woff2') format('woff2'),
       url('fonts/CcMigHtyMOutH.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gelica';
  src: url('fonts/Gelica-Medium.woff2') format('woff2'),
       url('fonts/Gelica-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gelica';
  src: url('fonts/Gelica-Bold.woff2') format('woff2'),
       url('fonts/Gelica-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ===================================
   VARIABLES CSS GLOBALES - Unis pour Agir
   =================================== */
:root {
  /* Couleurs principales - Nouveau code couleur */
  --primary-color: #00ace3;
  --primary-dark: #005185;
  --primary-light: #00ace3;
  --secondary-color: rgb(214 178 49);
  --accent-color: #005185;

  /* Couleurs neutres */
  --text-color: #005185;
  --text-light: #6c757d;
  --bg-color: #ffffff;
  --bg-light: #f8f9fa;
  --card-bg: #ffffff;
  --border-color: #dee2e6;

  /* Typographie */
  --font-primary: "Gelica", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-secondary: "CcMigHtyMOutH", Georgia, serif;

  /* Espacements (système 8px) */
  --space-xs: 0.5rem; /* 8px */
  --space-sm: 1rem; /* 16px */
  --space-md: 1.5rem; /* 24px */
  --space-lg: 2rem; /* 32px */
  --space-xl: 3rem; /* 48px */
  --space-2xl: 4rem; /* 64px */

  /* Tailles conteneur */
  --container-max: 1200px;
  --container-padding: var(--space-md);

  /* Ombres */
  --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 25px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 50%;
}

/* ===================================
   RESET & BASE
   =================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style-position: outside;
}

/* ===================================
   TYPOGRAPHIE
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  color: var(--text-color);
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-xl);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--space-sm);
}

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

.text-light {
  color: var(--text-light);
}

.font-secondary {
  font-family: var(--font-secondary);
}

/* ===================================
   LAYOUT
   =================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--space-2xl) 0;
}

.section-alt {
  background-color: var(--bg-light);
}

/* Grid système */
.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Flexbox utilitaires */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-column {
  flex-direction: column;
}

.gap-sm {
  gap: var(--space-sm);
}
.gap-md {
  gap: var(--space-md);
}
.gap-lg {
  gap: var(--space-lg);
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header {
  background-color: var(--bg-color);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: transform var(--transition-base);
}

.header__logo {
  width: 60px;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) var(--container-padding);
  max-width: var(--container-max);
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav {
  display: flex;
  gap: var(--space-md);
}

body .nav__link {
  background-color: aliceblue;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast);
  font-weight: 500;
  
    text-align-last: center;
    min-width: 162px;
}

.nav__link:hover,
.nav__link--active {
  background-color: var(--primary-color) !important;
  color: white;
}

/* Menu hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: var(--space-xs);
  background: transparent;
}

.nav-toggle__bar {
  width: 24px;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 2px;
  transition:
    transform var(--transition-base),
    opacity var(--transition-base);
}

/* ===================================
   H1 SEO
   =================================== */
.title-seo {
  visibility: hidden;
  position: absolute;
  z-index: -1;
}

/* ===================================
   HERO SECTION HERRY
   =================================== */
.hero-herry {
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    var(--primary-color) 100%
  );
  color: white;
  min-height: 500px;
  display: flex;
  /* align-items: center; */
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero-herry::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 48%);
  pointer-events: none;
}

.hero-herry__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.herry__title,
.herry__subtitle,
.herry__text {
  text-shadow:
    1px 1px 1px black,
    0 0 0px black,
    0 0 0em black;
}

.hero-herry__title {
  color: white;
    padding-top: 6vh;

  margin-bottom: var(--space-md);
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.hero-herry__subtitle {
  font-weight: 600;
    padding-top: 28vh;

  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  opacity: 0.95;
}

.hero-herry__text {
  font-weight: 500;
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
  opacity: 0.9;
}

.hero-herry__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

/* ===================================
   BOUTONS
   =================================== */
.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
  transition: all var(--transition-fast);
  cursor: pointer;
  min-width: 120px;
  min-height: 44px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  width: 100%;

  /* AJOUT : Marge automatique en haut pour "pousser" le bouton vers le bas */
  margin-top: auto;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: #e6c960;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-outline-white {
  border: 2px solid white;
  color: white;
  background-color: transparent;
}

.btn-outline-white:hover {
  background-color: white;
  color: var(--primary-color);
}

/* ===================================
   CARTES
   =================================== */
.card {
  background-color: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);

  /* AJOUT : Permet au contenu de s'étirer */
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card__content {
  padding: var(--space-md);
z-index: 1;
  background: white;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card__title {
  font-size: 1.25rem;    align-self: anchor-center;

  margin-bottom: var(--space-xs);
}

.card__text {
  color: var(--text-light);
  margin-bottom: var(--space-sm);
  margin-right: 0px;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 1.75rem;
}

/* Carte membre */
.member-card {
  text-align: center;
}

.member-card__image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* ===================================
   CALL TO ACTION BOX
   =================================== */
.cta-box {
  background: var(--primary-color);
  color: white;
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  text-align: center;
}

@media (max-width: 768px) {
  body .cta-box {
    padding: 15px;
  }
}

.cta-box h2 {
  color: white;
  margin-bottom: var(--space-md);
}

.cta-box p {
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================
   CAROUSEL VIDÉO
   =================================== */
/* Improved Carousel Styles */
.video-carousel {
  overflow: hidden; /* Prevent horizontal scroll on small screens */
  background: var(--bg-light);
}

.carousel__container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 550px; /* Fixed height for the "stage" */
  margin: 0 auto;
  perspective: 1000px;
}

.carousel__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.video-oval {
  position: absolute;
  left: 50%;
  top: 50%;
  /* We use transform for positioning to keep it responsive */
  transform: translate(-50%, -50%);
  border-radius: 100px; /* Modern pill shape */
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  background: white;
  border: 4px solid white;
}

.video-oval__thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
  transform: translateZ(0);
}

.video-oval:hover .video-oval__thumbnail {
  transform: scale(1.1) translateZ(0);
}

.video-oval__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 15px 10px;
  text-align: center;
  pointer-events: none;
}

/* Dots and Controls */
.carousel__controls {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .carousel__container {
    height: 400px;
  }
}

.video-oval__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
  transition: opacity var(--transition-fast);
}

.video-oval:hover .video-oval__overlay {
  opacity: 0.5;
  background-color: rgba(0, 0, 0, 0.5);
}

.video-oval__info--small {
  bottom: 22px;
  padding: 0 5px;
}

.video-oval__info strong {
  font-size: 0.95rem;
}

.video-oval__info--small strong {
  font-size: 0.7rem;
}

.video-oval__info small {
  font-size: 0.75rem;
}

.video-oval__info--small small {
  font-size: 0.5rem;
}

.play-icon {
  margin-top: 48%;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-full);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.video-oval--side .play-icon {
  width: 45px;
  height: 45px;
}

.video-oval:hover .play-icon {
  transform: scale(1.1);
}

.play-icon::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid var(--primary-color);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

.video-oval--side .play-icon::after {
  border-left-width: 15px;
  border-top-width: 9px;
  border-bottom-width: 9px;
  margin-left: 3px;
}

/* Contrôles carousel */
.carousel__controls {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: 6rem;
}

.carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--primary-color);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color var(--transition-fast);
  font-size: 1.5rem;
}

.carousel__btn:hover {
  background-color: var(--primary-dark);
}

.carousel__dots {
  display: flex;
  gap: var(--space-xs);
  margin-top: var(--space-md);
  justify-content: center;
}

.carousel__dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background-color: var(--border-color);
  transition: background-color var(--transition-fast);
  cursor: pointer;
}

.carousel__dot:hover {
  background-color: rgba(45, 81, 106, 0.5);
}

.carousel__dot--active {
  background-color: var(--primary-color);
}

/* ===================================
   MODAL VIDÉO
   =================================== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: var(--space-lg);
}

.modal--open {
  display: flex;
}

.modal__content {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal__close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: var(--radius-full);
  color: var(--text-color);
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.modal__close:hover {
  background-color: var(--bg-light);
}

.modal__video {
  width: 100%;
  max-height: 90vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background-color: var(--text-color);
  color: white;
  padding: 15px;
}

.footer__content {
  display: grid;
  width: -webkit-fill-available;
  width: 100%;
  width: -moz-available;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-bottom: 10px;
  place-items: anchor-center;
}

.footer__section {
  margin-bottom: auto;
}

.footer__section h4 {
  color: white;
  margin-bottom: var(--space-sm);
}

.footer__section p {
  color: rgba(255, 255, 255, 0.8);
}

.footer__link {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: var(--space-xs);
}

.footer__link:hover {
  color: white;
}

.footer__bottom {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   UTILITAIRES
   =================================== */
.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ===================================
   MEDIA QUERIES - RESPONSIVE CAROUSEL
   =================================== */
@media (max-width: 768px) {
  .carousel__item {
    gap: var(--space-sm);
    padding: 0 var(--space-sm);
  }

  .video-oval--side {
    width: 100px;
    height: 150px;
  }

  .video-oval--center {
    width: 150px;
    height: 210px;
  }

  .video-oval--side .play-icon {
    width: 35px;
    height: 35px;
  }

  .play-icon {
    width: 50px;
    height: 50px;
  }

  .modal__content {
    max-width: 90vw;
  }
}

@media (max-width: 480px) {
  .video-oval--side {
    width: 80px;
    height: 120px;
  }

  .video-oval--center {
    width: 120px;
    height: 170px;
  }
}

/* ===================================
   MEDIA QUERIES - RESPONSIVE
   =================================== */

/* Tablette et mobile */
@media (max-width: 1024px) {
  :root {
    --container-padding: var(--space-sm);
  }

  .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background-color: var(--bg-color);
    flex-direction: column;
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    transform: translateX(-100%);
    transition: transform var(--transition-base);
  }

  .nav--open {
    transform: translateX(0);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle--open .nav-toggle__bar:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
  }

  .nav-toggle--open .nav-toggle__bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle--open .nav-toggle__bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .carousel__item {
    flex: 0 0 100%;
  }

  .hero-herry__actions {
    flex-direction: column;
  }
}

/* Tablette */
@media (min-width: 768px) and (max-width: 1024px) {
  .carousel__item {
    flex: 0 0 50%;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop large */
@media (min-width: 1024px) {
  .carousel__item {
    flex: 0 0 33.333%;
  }
}

/* Animations */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Les styles pour anchor-summary et summary-grid sont définis dans programme.html */

/* ===================================
   MODAL CANDIDATE CARD STYLES
   =================================== */
.candidate-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: var(--radius-lg);
  max-width: 650px;
  margin: auto;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 81, 133, 0.15);
}

.candidate-card__header {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary-light) 100%
  );
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: white;
}

.candidate-card__photo {
  width: 100px;
  height: 100px;
  object-position: top;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.candidate-card__title h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  color: white;
}

.candidate-card__role {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
  font-weight: 500;
}

.candidate-card__body {
  padding: 2rem;
  overflow-y: scroll;
  max-height: 55vh;
}

.candidate-card__section {
  display: flex;
  gap: 1rem;
  margin-bottom: .5rem;
  padding: 1rem;
  background: white;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.candidate-card__section:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.candidate-card__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(0, 172, 227, 0.2);
}

.candidate-card__section > div {
  flex: 1;
}

.candidate-card__section .candidate-card__icon {
  flex: 0 !important;
}

.candidate-card__section p {
  margin: 0;
  line-height: 1.6;
  color: var(--text-color);
}


.candidate-card__footer {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 1.25rem 2rem;
  text-align: center;
  border-top: 1px solid #dee2e6;
}

.hashtag {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Responsive adjustments for candidate card */
@media (max-width: 768px) {
  .candidate-card__header {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .candidate-card__photo {
    width: 80px;
    height: 80px;
  }

  .candidate-card__title h2 {
    font-size: 1.5rem;
  }

  .candidate-card__body {
    padding: 1.5rem;
  }

  .candidate-card__section {
    padding: 0.875rem;
  }

  .candidate-card__icon {
    width: 35px;
    height: 35px;
    font-size: 1.25rem;
  }

  .candidate-card__footer {
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .candidate-card__header {
    padding: 1.25rem;
  }

  .candidate-card__photo {
    width: 70px;
    height: 70px;
  }

  .candidate-card__title h2 {
    font-size: 1.25rem;
  }

  .candidate-card__role {
    font-size: 0.9rem;
  }

  .candidate-card__body {
    padding: 1.25rem;
  }

  .candidate-card__section {
    flex-direction: row;
    gap: 0.75rem;
    padding: 0.75rem;
    margin-bottom: 1rem;
  }

  .candidate-card__icon {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
  
  .candidate-card__footer {
    padding: 0.875rem 1.25rem;
  }

  .hashtag {
    font-size: 0.85rem;
  }
}


     .contact-form {
        max-width: 500px;
      }
      
      .contact-form__group {
        margin-bottom: 1rem;
      }
      
      .contact-form__label {
        display: block;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
      }
      
      .contact-form__input,
      .contact-form__textarea {
        width: 100%;
        padding: 0.4rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        font-size: 1rem;
        font-family: inherit;
        transition: border-color 0.3s, background-color 0.3s;
      }
      
      .contact-form__input:focus,
      .contact-form__textarea:focus {
        outline: none;
        border-color: rgba(255, 255, 255, 0.6);
        background: rgba(255, 255, 255, 0.15);
      }
      
      .contact-form__input::placeholder,
      .contact-form__textarea::placeholder {
        color: rgba(255, 255, 255, 0.5);
      }
      
      .contact-form__textarea {
        resize: vertical;
        min-height: 70px;
      }
      
      .contact-form__button {
        background: #3498db;
        color: white;
        border: none;
        padding: 0.4rem 2rem;
        border-radius: 4px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s, transform 0.2s;
      }
      
      .contact-form__button:hover {
        background: #2980b9;
        transform: translateY(-2px);
      }
      
      .contact-form__button:disabled {
        background: #7f8c8d;
        cursor: not-allowed;
        transform: none;
      }
      
      .contact-form__message {
        margin-top: 1rem;
        padding: 0.75rem;
        border-radius: 4px;
        font-size: 0.9rem;
      }
      
      .contact-form__message--success {
        background: rgba(46, 204, 113, 0.2);
        border: 1px solid rgba(46, 204, 113, 0.5);
        color: #2ecc71;
      }
      
      .contact-form__message--error {
        background: rgba(231, 76, 60, 0.2);
        border: 1px solid rgba(231, 76, 60, 0.5);
        color: #e74c3c;
      }
      
      .contact-form__honeypot {
        position: absolute;
        left: -9999px;
        width: 1px;
        height: 1px;
        opacity: 0;
      }